Hacked By AnonymousFox

Current Path : /var/softaculous/magento24/
Upload File :
Current File : //var/softaculous/magento24/sample_data.sql

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

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `[[dbprefix]]admin_adobe_ims_webapi`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_adobe_ims_webapi`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_adobe_ims_webapi` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Admin User Id',
  `access_token_hash` varchar(255) DEFAULT NULL COMMENT 'Access Token Hash',
  `access_token` text COMMENT 'Access Token',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `last_check_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last check time',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_ADOBE_IMS_WEBAPI_ACCESS_TOKEN_HASH` (`access_token_hash`),
  KEY `[[DBPREFIX]]ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `[[DBPREFIX]]ADM_ADOBE_IMS_WEBAPI_ADM_USR_ID_[[DBPREFIX]]ADM_USR_USR_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin Adobe IMS Webapi';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_adobe_ims_webapi`
--

LOCK TABLES `[[dbprefix]]admin_adobe_ims_webapi` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_adobe_ims_webapi` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_adobe_ims_webapi` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_analytics_usage_version_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_analytics_usage_version_log` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_analytics_usage_version_log`
--

LOCK TABLES `[[dbprefix]]admin_analytics_usage_version_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_passwords`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_passwords` (
  `password_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID',
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `expires` int unsigned NOT NULL DEFAULT '0' COMMENT 'Deprecated',
  `last_updated` int unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated',
  PRIMARY KEY (`password_id`),
  KEY `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID` (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Passwords';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_passwords`
--

LOCK TABLES `[[dbprefix]]admin_passwords` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]admin_passwords` VALUES (1,1,'[[admin_pass]]',0,[[timestamp]]);
/*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_system_messages`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_system_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_system_messages` (
  `identity` varchar(100) NOT NULL COMMENT 'Message ID',
  `severity` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  PRIMARY KEY (`identity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_system_messages`
--

LOCK TABLES `[[dbprefix]]admin_system_messages` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user` (
  `user_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'User ID',
  `firstname` varchar(32) DEFAULT NULL COMMENT 'User First Name',
  `lastname` varchar(32) DEFAULT NULL COMMENT 'User Last Name',
  `email` varchar(128) DEFAULT NULL COMMENT 'User Email',
  `username` varchar(40) DEFAULT NULL COMMENT 'User Login',
  `password` varchar(255) NOT NULL COMMENT 'User Password',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'User Created Time',
  `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'User Modified Time',
  `logdate` timestamp NULL DEFAULT NULL COMMENT 'User Last Login Time',
  `lognum` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'User Login Number',
  `reload_acl_flag` smallint NOT NULL DEFAULT '0' COMMENT 'Reload ACL',
  `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'User Is Active',
  `extra` text COMMENT 'User Extra Data',
  `rp_token` text COMMENT 'Reset Password Link Token',
  `rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date',
  `interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale',
  `failures_num` smallint DEFAULT '0' COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates',
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin User Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user`
--

LOCK TABLES `[[dbprefix]]admin_user` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]admin_user` VALUES (1,'[[admin_fname]]','[[admin_lname]]','[[admin_email]]','[[admin_username]]','[[admin_pass]]','[[regtime]]','[[regtime]]',NULL,0,0,1,NULL,NULL,NULL,'en_US',0,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user_expiration`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user_expiration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user_expiration` (
  `user_id` int unsigned NOT NULL COMMENT 'User ID',
  `expires_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date',
  PRIMARY KEY (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_USER_EXPIRATION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin User expiration dates table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user_expiration`
--

LOCK TABLES `[[dbprefix]]admin_user_expiration` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user_session`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user_session` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `user_id` int unsigned DEFAULT NULL COMMENT 'Admin User ID',
  `status` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Current Session status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  KEY `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID` (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user_session`
--

LOCK TABLES `[[dbprefix]]admin_user_session` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adminnotification_inbox`
--

DROP TABLE IF EXISTS `[[dbprefix]]adminnotification_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adminnotification_inbox` (
  `notification_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID',
  `severity` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `description` text COMMENT 'Description',
  `url` varchar(255) DEFAULT NULL COMMENT 'Url',
  `is_read` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification read',
  `is_remove` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification might be removed',
  PRIMARY KEY (`notification_id`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Adminnotification Inbox';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adminnotification_inbox`
--

LOCK TABLES `[[dbprefix]]adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]adminnotification_inbox` VALUES (1,4,'[[regtime]]','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',0,0);
/*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_asset`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_asset` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `media_gallery_id` int unsigned DEFAULT NULL COMMENT 'Media gallery ID',
  `category_id` int unsigned DEFAULT NULL COMMENT 'Category ID',
  `creator_id` int unsigned DEFAULT NULL COMMENT 'Creator ID',
  `is_licensed` int unsigned NOT NULL DEFAULT '0' COMMENT 'Is Licensed',
  `creation_date` varchar(255) DEFAULT NULL COMMENT 'Creation Date',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_MDA_GLR_ID_[[DBPREFIX]]MDA_GLR_ASSET_ID` (`media_gallery_id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_ID` (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_CATEGORY_ID` (`category_id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_CREATOR_ID` (`creator_id`),
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_CATEGORY_ID_[[DBPREFIX]]ADOBE_STOCK_CATEGORY_ID` FOREIGN KEY (`category_id`) REFERENCES `[[dbprefix]]adobe_stock_category` (`id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_CREATOR_ID_[[DBPREFIX]]ADOBE_STOCK_CREATOR_ID` FOREIGN KEY (`creator_id`) REFERENCES `[[dbprefix]]adobe_stock_creator` (`id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_MDA_GLR_ID_[[DBPREFIX]]MDA_GLR_ASSET_ID` FOREIGN KEY (`media_gallery_id`) REFERENCES `[[dbprefix]]media_gallery_asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_asset`
--

LOCK TABLES `[[dbprefix]]adobe_stock_asset` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_asset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_category`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_category` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_CATEGORY_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Category';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_category`
--

LOCK TABLES `[[dbprefix]]adobe_stock_category` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_creator`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_creator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_creator` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Asset creator''s name',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_CREATOR_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Creator';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_creator`
--

LOCK TABLES `[[dbprefix]]adobe_stock_creator` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_creator` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_creator` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_user_profile`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_user_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_user_profile` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Admin User Id',
  `name` varchar(255) NOT NULL COMMENT 'Display Name',
  `email` varchar(255) NOT NULL COMMENT 'user profile email',
  `image` varchar(255) NOT NULL COMMENT 'user profile avatar',
  `account_type` varchar(255) DEFAULT NULL COMMENT 'Account Type',
  `access_token` text COMMENT 'Access Token',
  `refresh_token` text COMMENT 'Refresh Token',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_USER_PROFILE_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `[[DBPREFIX]]ADOBE_USER_PROFILE_ADMIN_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe IMS User Profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_user_profile`
--

LOCK TABLES `[[dbprefix]]adobe_user_profile` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_user_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_user_profile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]authorization_role`
--

DROP TABLE IF EXISTS `[[dbprefix]]authorization_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]authorization_role` (
  `role_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Role ID',
  `tree_level` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Tree Level',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Sort Order',
  `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `user_type` varchar(16) DEFAULT NULL COMMENT 'User Type',
  `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name',
  PRIMARY KEY (`role_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `[[DBPREFIX]]AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]authorization_role`
--

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

--
-- Table structure for table `[[dbprefix]]authorization_rule`
--

DROP TABLE IF EXISTS `[[dbprefix]]authorization_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]authorization_rule` (
  `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
  `role_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Role ID',
  `resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID',
  `privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges',
  `permission` varchar(10) DEFAULT NULL COMMENT 'Permission',
  PRIMARY KEY (`rule_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `[[DBPREFIX]]AUTHORIZATION_RULE_ROLE_ID_[[DBPREFIX]]AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `[[dbprefix]]authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]authorization_rule`
--

LOCK TABLES `[[dbprefix]]authorization_rule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]authorization_rule` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]authorization_rule` VALUES (1,1,'Magento_Backend::all',NULL,'allow');
/*!40000 ALTER TABLE `[[dbprefix]]authorization_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]braintree_credit_prices`
--

DROP TABLE IF EXISTS `[[dbprefix]]braintree_credit_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]braintree_credit_prices` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product Id',
  `term` int NOT NULL COMMENT 'Credit Term',
  `monthly_payment` decimal(12,2) NOT NULL COMMENT 'Monthly Payment',
  `instalment_rate` decimal(12,2) NOT NULL COMMENT 'Instalment Rate',
  `cost_of_purchase` decimal(12,2) NOT NULL COMMENT 'Cost of purchase',
  `total_inc_interest` decimal(12,2) NOT NULL COMMENT 'Total Inc Interest',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]BRAINTREE_CREDIT_PRICES_PRODUCT_ID_TERM` (`product_id`,`term`),
  KEY `[[DBPREFIX]]BRAINTREE_CREDIT_PRICES_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Braintree credit rates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]braintree_credit_prices`
--

LOCK TABLES `[[dbprefix]]braintree_credit_prices` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_credit_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_credit_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]braintree_transaction_details`
--

DROP TABLE IF EXISTS `[[dbprefix]]braintree_transaction_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]braintree_transaction_details` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `order_id` int unsigned NOT NULL COMMENT 'Order Id',
  `transaction_source` varchar(12) DEFAULT NULL COMMENT 'Transaction Source',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]BRAINTREE_TRANSACTION_DETAILS_ORDER_ID` (`order_id`),
  CONSTRAINT `[[DBPREFIX]]BRAINTREE_TRANSACTION_DETAILS_ORDER_ID_SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Braintree transaction details table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]braintree_transaction_details`
--

LOCK TABLES `[[dbprefix]]braintree_transaction_details` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_transaction_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_transaction_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cache`
--

DROP TABLE IF EXISTS `[[dbprefix]]cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cache` (
  `id` varchar(200) NOT NULL COMMENT 'Cache Id',
  `data` mediumblob COMMENT 'Cache Data',
  `create_time` int DEFAULT NULL COMMENT 'Cache Creation Time',
  `update_time` int DEFAULT NULL COMMENT 'Time of Cache Updating',
  `expire_time` int DEFAULT NULL COMMENT 'Cache Expiration Time',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]CACHE_EXPIRE_TIME` (`expire_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cache`
--

LOCK TABLES `[[dbprefix]]cache` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cache_tag`
--

DROP TABLE IF EXISTS `[[dbprefix]]cache_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cache_tag` (
  `tag` varchar(100) NOT NULL COMMENT 'Tag',
  `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id',
  PRIMARY KEY (`tag`,`cache_id`),
  KEY `[[DBPREFIX]]CACHE_TAG_CACHE_ID` (`cache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tag Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cache_tag`
--

LOCK TABLES `[[dbprefix]]cache_tag` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cache_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cache_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]captcha_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]captcha_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]captcha_log` (
  `type` varchar(32) NOT NULL COMMENT 'Type',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  `count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Count',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`type`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Count Login Attempts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]captcha_log`
--

LOCK TABLES `[[dbprefix]]captcha_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]captcha_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]captcha_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Category ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `path` varchar(255) NOT NULL COMMENT 'Tree Path',
  `position` int NOT NULL COMMENT 'Position',
  `level` int NOT NULL DEFAULT '0' COMMENT 'Tree Level',
  `children_count` int NOT NULL COMMENT 'Child Count',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_entity` VALUES (1,3,0,'[[regtime]]','[[regtime]]','1',0,0,39),(2,3,1,'[[regtime]]','[[regtime]]','1/2',1,1,38),(3,3,2,'[[regtime]]','[[regtime]]','1/2/3',4,2,3),(4,3,3,'[[regtime]]','[[regtime]]','1/2/3/4',1,3,0),(5,3,3,'[[regtime]]','[[regtime]]','1/2/3/5',2,3,0),(6,3,3,'[[regtime]]','[[regtime]]','1/2/3/6',3,3,0),(7,3,2,'[[regtime]]','[[regtime]]','1/2/7',5,2,6),(8,3,7,'[[regtime]]','[[regtime]]','1/2/7/8',1,3,0),(9,3,2,'[[regtime]]','[[regtime]]','1/2/9',5,2,1),(10,3,9,'[[regtime]]','[[regtime]]','1/2/9/10',1,3,0),(11,3,2,'[[regtime]]','[[regtime]]','1/2/11',3,2,8),(12,3,11,'[[regtime]]','[[regtime]]','1/2/11/12',1,3,4),(13,3,11,'[[regtime]]','[[regtime]]','1/2/11/13',2,3,2),(14,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/14',1,4,0),(15,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/15',2,4,0),(16,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/16',3,4,0),(17,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/17',4,4,0),(18,3,13,'[[regtime]]','[[regtime]]','1/2/11/13/18',1,4,0),(19,3,13,'[[regtime]]','[[regtime]]','1/2/11/13/19',2,4,0),(20,3,2,'[[regtime]]','[[regtime]]','1/2/20',2,2,8),(21,3,20,'[[regtime]]','[[regtime]]','1/2/20/21',1,3,4),(22,3,20,'[[regtime]]','[[regtime]]','1/2/20/22',2,3,2),(23,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/23',1,4,0),(24,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/24',2,4,0),(25,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/25',3,4,0),(26,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/26',4,4,0),(27,3,22,'[[regtime]]','[[regtime]]','1/2/20/22/27',1,4,0),(28,3,22,'[[regtime]]','[[regtime]]','1/2/20/22/28',2,4,0),(29,3,2,'[[regtime]]','[[regtime]]','1/2/29',6,2,4),(30,3,29,'[[regtime]]','[[regtime]]','1/2/29/30',1,3,0),(31,3,29,'[[regtime]]','[[regtime]]','1/2/29/31',2,3,0),(32,3,29,'[[regtime]]','[[regtime]]','1/2/29/32',3,3,0),(33,3,29,'[[regtime]]','[[regtime]]','1/2/29/33',4,3,0),(34,3,7,'[[regtime]]','[[regtime]]','1/2/7/34',2,3,0),(35,3,7,'[[regtime]]','[[regtime]]','1/2/7/35',3,3,0),(36,3,7,'[[regtime]]','[[regtime]]','1/2/7/36',4,3,0),(37,3,2,'[[regtime]]','[[regtime]]','1/2/37',6,2,0),(38,3,2,'[[regtime]]','[[regtime]]','1/2/38',1,2,0),(39,3,7,'[[regtime]]','[[regtime]]','1/2/7/39',5,3,0),(40,3,7,'[[regtime]]','[[regtime]]','1/2/7/40',6,3,0);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_datetime`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_INT_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_int`
--

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

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` mediumtext COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_text`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_varchar`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,52,0,2,'PRODUCTS'),(3,45,0,2,'Default Category'),(4,52,0,3,'PAGE'),(5,45,0,3,'Gear'),(6,119,0,3,'gear'),(7,120,0,3,'gear'),(8,45,0,4,'Bags'),(9,119,0,4,'bags'),(10,120,0,4,'gear/bags'),(11,45,0,5,'Fitness Equipment'),(12,119,0,5,'fitness-equipment'),(13,120,0,5,'gear/fitness-equipment'),(14,45,0,6,'Watches'),(15,119,0,6,'watches'),(16,120,0,6,'gear/watches'),(17,52,0,7,'PAGE'),(18,45,0,7,'Collections'),(19,119,0,7,'collections'),(20,120,0,7,'collections'),(21,45,0,8,'New Luma Yoga Collection'),(22,119,0,8,'yoga-new'),(23,120,0,8,'collections/yoga-new'),(24,52,0,9,'PAGE'),(25,45,0,9,'Training'),(26,119,0,9,'training'),(27,120,0,9,'training'),(28,45,0,10,'Video Download'),(29,119,0,10,'training-video'),(30,120,0,10,'training/training-video'),(31,52,0,11,'PAGE'),(32,45,0,11,'Men'),(33,119,0,11,'men'),(34,120,0,11,'men'),(35,45,0,12,'Tops'),(36,119,0,12,'tops-men'),(37,120,0,12,'men/tops-men'),(38,45,0,13,'Bottoms'),(39,119,0,13,'bottoms-men'),(40,120,0,13,'men/bottoms-men'),(41,45,0,14,'Jackets'),(42,119,0,14,'jackets-men'),(43,120,0,14,'men/tops-men/jackets-men'),(44,45,0,15,'Hoodies & Sweatshirts'),(45,119,0,15,'hoodies-and-sweatshirts-men'),(46,120,0,15,'men/tops-men/hoodies-and-sweatshirts-men'),(47,45,0,16,'Tees'),(48,119,0,16,'tees-men'),(49,120,0,16,'men/tops-men/tees-men'),(50,45,0,17,'Tanks'),(51,119,0,17,'tanks-men'),(52,120,0,17,'men/tops-men/tanks-men'),(53,45,0,18,'Pants'),(54,119,0,18,'pants-men'),(55,120,0,18,'men/bottoms-men/pants-men'),(56,45,0,19,'Shorts'),(57,119,0,19,'shorts-men'),(58,120,0,19,'men/bottoms-men/shorts-men'),(59,52,0,20,'PAGE'),(60,45,0,20,'Women'),(61,119,0,20,'women'),(62,120,0,20,'women'),(63,45,0,21,'Tops'),(64,119,0,21,'tops-women'),(65,120,0,21,'women/tops-women'),(66,45,0,22,'Bottoms'),(67,119,0,22,'bottoms-women'),(68,120,0,22,'women/bottoms-women'),(69,45,0,23,'Jackets'),(70,119,0,23,'jackets-women'),(71,120,0,23,'women/tops-women/jackets-women'),(72,45,0,24,'Hoodies & Sweatshirts'),(73,119,0,24,'hoodies-and-sweatshirts-women'),(74,120,0,24,'women/tops-women/hoodies-and-sweatshirts-women'),(75,45,0,25,'Tees'),(76,119,0,25,'tees-women'),(77,120,0,25,'women/tops-women/tees-women'),(78,45,0,26,'Bras & Tanks'),(79,119,0,26,'tanks-women'),(80,120,0,26,'women/tops-women/tanks-women'),(81,45,0,27,'Pants'),(82,119,0,27,'pants-women'),(83,120,0,27,'women/bottoms-women/pants-women'),(84,45,0,28,'Shorts'),(85,119,0,28,'shorts-women'),(86,120,0,28,'women/bottoms-women/shorts-women'),(87,52,0,29,'PAGE'),(88,45,0,29,'Promotions'),(89,119,0,29,'promotions'),(90,120,0,29,'promotions'),(91,45,0,30,'Women Sale'),(92,119,0,30,'women-sale'),(93,120,0,30,'promotions/women-sale'),(94,45,0,31,'Men Sale'),(95,119,0,31,'men-sale'),(96,120,0,31,'promotions/men-sale'),(97,45,0,32,'Pants'),(98,119,0,32,'pants-all'),(99,120,0,32,'promotions/pants-all'),(100,45,0,33,'Tees'),(101,119,0,33,'tees-all'),(102,120,0,33,'promotions/tees-all'),(103,45,0,34,'Erin Recommends'),(104,119,0,34,'erin-recommends'),(105,120,0,34,'collections/erin-recommends'),(106,45,0,35,'Performance Fabrics'),(107,119,0,35,'performance-fabrics'),(108,120,0,35,'collections/performance-fabrics'),(109,45,0,36,'Eco Friendly'),(110,119,0,36,'eco-friendly'),(111,120,0,36,'collections/eco-friendly'),(112,52,0,37,'PAGE'),(113,45,0,37,'Sale'),(114,119,0,37,'sale'),(115,120,0,37,'sale'),(116,52,0,38,'PAGE'),(117,45,0,38,'What\'s New'),(118,119,0,38,'what-is-new'),(119,120,0,38,'what-is-new'),(120,52,0,39,'PAGE'),(121,45,0,39,'Performance Sportswear New'),(122,63,0,39,'1column'),(123,119,0,39,'performance-new'),(124,120,0,39,'collections/performance-new'),(125,52,0,40,'PAGE'),(126,45,0,40,'Eco Collection New'),(127,63,0,40,'1column'),(128,119,0,40,'eco-new'),(129,120,0,40,'collections/eco-new');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product` (
  `entity_id` int NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_PRD_CTGR_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_PRD_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5166 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Category Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product`
--

LOCK TABLES `[[dbprefix]]catalog_category_product` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product` VALUES (1,3,1,0),(2,4,1,0),(3,3,2,0),(4,7,2,0),(5,4,2,0),(6,3,3,0),(7,4,3,0),(8,3,4,0),(9,7,4,0),(10,4,4,0),(11,8,4,0),(12,3,5,0),(13,7,5,0),(14,4,5,0),(15,8,5,0),(16,3,6,0),(17,4,6,0),(18,3,7,0),(19,4,7,0),(20,3,8,0),(21,4,8,0),(22,3,9,0),(23,4,9,0),(24,3,10,0),(25,7,10,0),(26,4,10,0),(27,3,11,0),(28,7,11,0),(29,4,11,0),(30,3,12,0),(31,4,12,0),(32,3,13,0),(33,7,13,0),(34,4,13,0),(35,8,13,0),(36,3,14,0),(37,7,14,0),(38,4,14,0),(39,3,15,0),(40,5,15,0),(41,3,16,0),(42,7,16,0),(43,5,16,0),(44,3,17,0),(45,5,17,0),(46,3,18,0),(47,5,18,0),(48,3,19,0),(49,7,19,0),(50,5,19,0),(51,8,19,0),(52,3,20,0),(53,5,20,0),(54,3,21,0),(55,5,21,0),(56,3,22,0),(57,5,22,0),(58,3,23,0),(59,5,23,0),(60,3,24,0),(61,5,24,0),(62,3,25,0),(63,5,25,0),(64,3,26,0),(65,5,26,0),(66,3,27,0),(67,5,27,0),(68,3,28,0),(69,5,28,0),(70,3,29,0),(71,5,29,0),(72,3,30,0),(73,5,30,0),(74,3,31,0),(75,5,31,0),(76,3,32,0),(77,5,32,0),(78,3,33,0),(79,5,33,0),(80,3,34,0),(81,5,34,0),(82,3,35,0),(83,5,35,0),(84,3,36,0),(85,6,36,0),(86,3,37,0),(87,6,37,0),(88,3,38,0),(89,7,38,0),(90,6,38,0),(91,8,38,0),(92,3,39,0),(93,7,39,0),(94,6,39,0),(95,8,39,0),(96,3,40,0),(97,7,40,0),(98,6,40,0),(99,8,40,0),(100,3,41,0),(101,6,41,0),(102,3,42,0),(103,6,42,0),(104,3,43,0),(105,6,43,0),(106,3,44,0),(107,7,44,0),(108,6,44,0),(109,8,44,0),(110,3,45,0),(111,5,45,0),(112,3,46,0),(113,5,46,0),(114,15,47,-1),(115,36,47,-1),(116,2,47,-1),(117,15,48,-2),(118,36,48,-2),(119,2,48,-2),(120,15,49,-3),(121,36,49,-3),(122,2,49,-3),(123,15,50,-4),(124,36,50,-4),(125,2,50,-4),(126,15,51,-5),(127,36,51,-5),(128,2,51,-5),(129,15,52,-6),(130,36,52,-6),(131,2,52,-6),(132,15,53,-7),(133,36,53,-7),(134,2,53,-7),(135,15,54,-8),(136,36,54,-8),(137,2,54,-8),(138,15,55,-9),(139,36,55,-9),(140,2,55,-9),(141,15,56,-10),(142,36,56,-10),(143,2,56,-10),(144,15,57,-11),(145,36,57,-11),(146,2,57,-11),(147,15,58,-12),(148,36,58,-12),(149,2,58,-12),(150,15,59,-13),(151,36,59,-13),(152,2,59,-13),(153,15,60,-14),(154,36,60,-14),(155,2,60,-14),(156,15,61,-15),(157,36,61,-15),(158,2,61,-15),(159,15,62,-16),(160,36,62,-16),(161,2,62,-16),(162,15,63,-17),(163,15,64,-18),(164,15,65,-19),(165,15,66,-20),(166,15,67,-21),(167,15,68,-22),(168,15,69,-23),(169,15,70,-24),(170,15,71,-25),(171,15,72,-26),(172,15,73,-27),(173,15,74,-28),(174,15,75,-29),(175,15,76,-30),(176,15,77,-31),(177,15,78,-32),(178,15,79,-33),(179,36,79,-17),(180,2,79,-17),(181,15,80,-34),(182,36,80,-18),(183,2,80,-18),(184,15,81,-35),(185,36,81,-19),(186,2,81,-19),(187,15,82,-36),(188,36,82,-20),(189,2,82,-20),(190,15,83,-37),(191,36,83,-21),(192,2,83,-21),(193,15,84,-38),(194,36,84,-22),(195,2,84,-22),(196,15,85,-39),(197,36,85,-23),(198,2,85,-23),(199,15,86,-40),(200,36,86,-24),(201,2,86,-24),(202,15,87,-41),(203,36,87,-25),(204,2,87,-25),(205,15,88,-42),(206,36,88,-26),(207,2,88,-26),(208,15,89,-43),(209,36,89,-27),(210,2,89,-27),(211,15,90,-44),(212,36,90,-28),(213,2,90,-28),(214,15,91,-45),(215,36,91,-29),(216,2,91,-29),(217,15,92,-46),(218,36,92,-30),(219,2,92,-30),(220,15,93,-47),(221,36,93,-31),(222,2,93,-31),(223,15,94,-48),(224,36,94,-32),(225,2,94,-32),(226,15,95,-49),(227,36,95,-33),(228,2,95,-33),(229,15,96,-50),(230,36,96,-34),(231,2,96,-34),(232,15,97,-51),(233,36,97,-35),(234,2,97,-35),(235,15,98,-52),(236,36,98,-36),(237,2,98,-36),(238,15,99,-53),(239,36,99,-37),(240,2,99,-37),(241,15,100,-54),(242,36,100,-38),(243,2,100,-38),(244,15,101,-55),(245,36,101,-39),(246,2,101,-39),(247,15,102,-56),(248,36,102,-40),(249,2,102,-40),(250,15,103,-57),(251,36,103,-41),(252,2,103,-41),(253,15,104,-58),(254,36,104,-42),(255,2,104,-42),(256,15,105,-59),(257,36,105,-43),(258,2,105,-43),(259,15,106,-60),(260,36,106,-44),(261,2,106,-44),(262,15,107,-61),(263,36,107,-45),(264,2,107,-45),(265,15,108,-62),(266,36,108,-46),(267,2,108,-46),(268,15,109,-63),(269,36,109,-47),(270,2,109,-47),(271,15,110,-64),(272,36,110,-48),(273,2,110,-48),(274,15,111,-65),(275,15,112,-66),(276,15,113,-67),(277,15,114,-68),(278,15,115,-69),(279,15,116,-70),(280,15,117,-71),(281,15,118,-72),(282,15,119,-73),(283,15,120,-74),(284,15,121,-75),(285,15,122,-76),(286,15,123,-77),(287,15,124,-78),(288,15,125,-79),(289,15,126,-80),(290,15,127,-81),(291,15,128,-82),(292,15,129,-83),(293,15,130,-84),(294,15,131,-85),(295,15,132,-86),(296,15,133,-87),(297,15,134,-88),(298,15,135,-89),(299,15,136,-90),(300,15,137,-91),(301,15,138,-92),(302,15,139,-93),(303,15,140,-94),(304,15,141,-95),(305,15,142,-96),(306,15,143,-97),(307,15,144,-98),(308,15,145,-99),(309,15,146,-100),(310,15,147,-101),(311,15,148,-102),(312,15,149,-103),(313,15,150,-104),(314,15,151,-105),(315,15,152,-106),(316,15,153,-107),(317,15,154,-108),(318,15,155,-109),(319,15,156,-110),(320,15,157,-111),(321,15,158,-112),(322,15,159,-113),(323,15,160,-114),(324,15,161,-115),(325,15,162,-116),(326,15,163,-117),(327,15,164,-118),(328,15,165,-119),(329,15,166,-120),(330,15,167,-121),(331,15,168,-122),(332,15,169,-123),(333,15,170,-124),(334,15,171,-125),(335,15,172,-126),(336,15,173,-127),(337,15,174,-128),(338,15,175,-129),(339,15,176,-130),(340,15,177,-131),(341,15,178,-132),(342,15,179,-133),(343,15,180,-134),(344,15,181,-135),(345,15,182,-136),(346,15,183,-137),(347,15,184,-138),(348,15,185,-139),(349,15,186,-140),(350,15,187,-141),(351,15,188,-142),(352,15,189,-143),(353,15,190,-144),(354,15,191,-145),(355,15,192,-146),(356,15,193,-147),(357,15,194,-148),(358,15,195,-149),(359,15,196,-150),(360,15,197,-151),(361,15,198,-152),(362,15,199,-153),(363,15,200,-154),(364,15,201,-155),(365,15,202,-156),(366,15,203,-157),(367,15,204,-158),(368,15,205,-159),(369,15,206,-160),(370,15,207,-161),(371,15,208,-162),(372,15,209,-163),(373,15,210,-164),(374,15,211,-165),(375,15,212,-166),(376,15,213,-167),(377,15,214,-168),(378,15,215,-169),(379,15,216,-170),(380,15,217,-171),(381,15,218,-172),(382,15,219,-173),(383,15,220,-174),(384,15,221,-175),(385,15,222,-176),(386,15,223,-177),(387,15,224,-178),(388,15,225,-179),(389,15,226,-180),(390,15,227,-181),(391,15,228,-182),(392,15,229,-183),(393,15,230,-184),(394,15,231,-185),(395,15,232,-186),(396,15,233,-187),(397,15,234,-188),(398,15,235,-189),(399,15,236,-190),(400,15,237,-191),(401,15,238,-192),(402,15,239,-193),(403,15,240,-194),(404,15,241,-195),(405,15,242,-196),(406,15,243,-197),(407,15,244,-198),(408,15,245,-199),(409,15,246,-200),(410,15,247,-201),(411,15,248,-202),(412,15,249,-203),(413,15,250,-204),(414,15,251,-205),(415,15,252,-206),(416,15,253,-207),(417,15,254,-208),(418,14,255,-1),(419,14,256,-2),(420,14,257,-3),(421,14,258,-4),(422,14,259,-5),(423,14,260,-6),(424,14,261,-7),(425,14,262,-8),(426,14,263,-9),(427,14,264,-10),(428,14,265,-11),(429,14,266,-12),(430,14,267,-13),(431,14,268,-14),(432,14,269,-15),(433,14,270,-16),(434,14,271,-17),(435,14,272,-18),(436,14,273,-19),(437,14,274,-20),(438,14,275,-21),(439,14,276,-22),(440,14,277,-23),(441,14,278,-24),(442,14,279,-25),(443,14,280,-26),(444,14,281,-27),(445,14,282,-28),(446,14,283,-29),(447,14,284,-30),(448,14,285,-31),(449,14,286,-32),(450,14,287,-33),(451,36,287,-49),(452,2,287,-49),(453,14,288,-34),(454,36,288,-50),(455,2,288,-50),(456,14,289,-35),(457,36,289,-51),(458,2,289,-51),(459,14,290,-36),(460,36,290,-52),(461,2,290,-52),(462,14,291,-37),(463,36,291,-53),(464,2,291,-53),(465,14,292,-38),(466,36,292,-54),(467,2,292,-54),(468,14,293,-39),(469,36,293,-55),(470,2,293,-55),(471,14,294,-40),(472,36,294,-56),(473,2,294,-56),(474,14,295,-41),(475,36,295,-57),(476,2,295,-57),(477,14,296,-42),(478,36,296,-58),(479,2,296,-58),(480,14,297,-43),(481,36,297,-59),(482,2,297,-59),(483,14,298,-44),(484,36,298,-60),(485,2,298,-60),(486,14,299,-45),(487,36,299,-61),(488,2,299,-61),(489,14,300,-46),(490,36,300,-62),(491,2,300,-62),(492,14,301,-47),(493,36,301,-63),(494,2,301,-63),(495,14,302,-48),(496,36,302,-64),(497,2,302,-64),(498,14,303,-49),(499,14,304,-50),(500,14,305,-51),(501,14,306,-52),(502,14,307,-53),(503,14,308,-54),(504,14,309,-55),(505,14,310,-56),(506,14,311,-57),(507,14,312,-58),(508,14,313,-59),(509,14,314,-60),(510,14,315,-61),(511,14,316,-62),(512,14,317,-63),(513,14,318,-64),(514,14,319,-65),(515,14,320,-66),(516,14,321,-67),(517,14,322,-68),(518,14,323,-69),(519,14,324,-70),(520,14,325,-71),(521,14,326,-72),(522,14,327,-73),(523,14,328,-74),(524,14,329,-75),(525,14,330,-76),(526,14,331,-77),(527,14,332,-78),(528,14,333,-79),(529,14,334,-80),(530,14,335,-81),(531,14,336,-82),(532,14,337,-83),(533,14,338,-84),(534,14,339,-85),(535,14,340,-86),(536,14,341,-87),(537,14,342,-88),(538,14,343,-89),(539,14,344,-90),(540,14,345,-91),(541,14,346,-92),(542,14,347,-93),(543,14,348,-94),(544,14,349,-95),(545,14,350,-96),(546,14,351,-97),(547,14,352,-98),(548,14,353,-99),(549,14,354,-100),(550,14,355,-101),(551,14,356,-102),(552,14,357,-103),(553,14,358,-104),(554,14,359,-105),(555,14,360,-106),(556,14,361,-107),(557,14,362,-108),(558,14,363,-109),(559,14,364,-110),(560,14,365,-111),(561,14,366,-112),(562,14,367,-113),(563,14,368,-114),(564,14,369,-115),(565,14,370,-116),(566,14,371,-117),(567,14,372,-118),(568,14,373,-119),(569,14,374,-120),(570,14,375,-121),(571,14,376,-122),(572,14,377,-123),(573,14,378,-124),(574,14,379,-125),(575,14,380,-126),(576,14,381,-127),(577,14,382,-128),(578,14,383,-129),(579,36,383,-65),(580,2,383,-65),(581,14,384,-130),(582,36,384,-66),(583,2,384,-66),(584,14,385,-131),(585,36,385,-67),(586,2,385,-67),(587,14,386,-132),(588,36,386,-68),(589,2,386,-68),(590,14,387,-133),(591,36,387,-69),(592,2,387,-69),(593,14,388,-134),(594,36,388,-70),(595,2,388,-70),(596,14,389,-135),(597,36,389,-71),(598,2,389,-71),(599,14,390,-136),(600,36,390,-72),(601,2,390,-72),(602,14,391,-137),(603,36,391,-73),(604,2,391,-73),(605,14,392,-138),(606,36,392,-74),(607,2,392,-74),(608,14,393,-139),(609,36,393,-75),(610,2,393,-75),(611,14,394,-140),(612,36,394,-76),(613,2,394,-76),(614,14,395,-141),(615,36,395,-77),(616,2,395,-77),(617,14,396,-142),(618,36,396,-78),(619,2,396,-78),(620,14,397,-143),(621,36,397,-79),(622,2,397,-79),(623,14,398,-144),(624,36,398,-80),(625,2,398,-80),(626,14,399,-145),(627,14,400,-146),(628,14,401,-147),(629,14,402,-148),(630,14,403,-149),(631,14,404,-150),(632,14,405,-151),(633,14,406,-152),(634,14,407,-153),(635,14,408,-154),(636,14,409,-155),(637,14,410,-156),(638,14,411,-157),(639,14,412,-158),(640,14,413,-159),(641,14,414,-160),(642,14,415,-161),(643,14,416,-162),(644,14,417,-163),(645,14,418,-164),(646,14,419,-165),(647,14,420,-166),(648,14,421,-167),(649,14,422,-168),(650,14,423,-169),(651,14,424,-170),(652,14,425,-171),(653,14,426,-172),(654,14,427,-173),(655,14,428,-174),(656,14,429,-175),(657,14,430,-176),(658,16,431,-1),(659,16,432,-2),(660,16,433,-3),(661,16,434,-4),(662,16,435,-5),(663,16,436,-6),(664,16,437,-7),(665,16,438,-8),(666,16,439,-9),(667,16,440,-10),(668,16,441,-11),(669,16,442,-12),(670,16,443,-13),(671,16,444,-14),(672,16,445,-15),(673,16,446,-16),(674,16,447,-17),(675,36,447,-81),(676,2,447,-81),(677,16,448,-18),(678,36,448,-82),(679,2,448,-82),(680,16,449,-19),(681,36,449,-83),(682,2,449,-83),(683,16,450,-20),(684,36,450,-84),(685,2,450,-84),(686,16,451,-21),(687,36,451,-85),(688,2,451,-85),(689,16,452,-22),(690,36,452,-86),(691,2,452,-86),(692,16,453,-23),(693,36,453,-87),(694,2,453,-87),(695,16,454,-24),(696,36,454,-88),(697,2,454,-88),(698,16,455,-25),(699,36,455,-89),(700,2,455,-89),(701,16,456,-26),(702,36,456,-90),(703,2,456,-90),(704,16,457,-27),(705,36,457,-91),(706,2,457,-91),(707,16,458,-28),(708,36,458,-92),(709,2,458,-92),(710,16,459,-29),(711,36,459,-93),(712,2,459,-93),(713,16,460,-30),(714,36,460,-94),(715,2,460,-94),(716,16,461,-31),(717,36,461,-95),(718,2,461,-95),(719,16,462,-32),(720,36,462,-96),(721,2,462,-96),(722,16,463,-33),(723,16,464,-34),(724,16,465,-35),(725,16,466,-36),(726,16,467,-37),(727,16,468,-38),(728,16,469,-39),(729,16,470,-40),(730,16,471,-41),(731,16,472,-42),(732,16,473,-43),(733,16,474,-44),(734,16,475,-45),(735,16,476,-46),(736,16,477,-47),(737,16,478,-48),(738,16,479,-49),(739,16,480,-50),(740,16,481,-51),(741,16,482,-52),(742,16,483,-53),(743,16,484,-54),(744,16,485,-55),(745,16,486,-56),(746,16,487,-57),(747,16,488,-58),(748,16,489,-59),(749,16,490,-60),(750,16,491,-61),(751,16,492,-62),(752,16,493,-63),(753,16,494,-64),(754,16,495,-65),(755,16,496,-66),(756,16,497,-67),(757,16,498,-68),(758,16,499,-69),(759,16,500,-70),(760,16,501,-71),(761,16,502,-72),(762,16,503,-73),(763,16,504,-74),(764,16,505,-75),(765,16,506,-76),(766,16,507,-77),(767,16,508,-78),(768,16,509,-79),(769,16,510,-80),(770,16,511,-81),(771,16,512,-82),(772,16,513,-83),(773,16,514,-84),(774,16,515,-85),(775,16,516,-86),(776,16,517,-87),(777,16,518,-88),(778,16,519,-89),(779,16,520,-90),(780,16,521,-91),(781,16,522,-92),(782,16,523,-93),(783,16,524,-94),(784,16,525,-95),(785,16,526,-96),(786,16,527,-97),(787,16,528,-98),(788,16,529,-99),(789,16,530,-100),(790,16,531,-101),(791,16,532,-102),(792,16,533,-103),(793,16,534,-104),(794,16,535,-105),(795,16,536,-106),(796,16,537,-107),(797,16,538,-108),(798,16,539,-109),(799,16,540,-110),(800,16,541,-111),(801,16,542,-112),(802,16,543,-113),(803,16,544,-114),(804,16,545,-115),(805,16,546,-116),(806,16,547,-117),(807,16,548,-118),(808,16,549,-119),(809,16,550,-120),(810,16,551,-121),(811,16,552,-122),(812,16,553,-123),(813,16,554,-124),(814,16,555,-125),(815,16,556,-126),(816,16,557,-127),(817,16,558,-128),(818,16,559,-129),(819,16,560,-130),(820,16,561,-131),(821,16,562,-132),(822,16,563,-133),(823,16,564,-134),(824,16,565,-135),(825,16,566,-136),(826,16,567,-137),(827,16,568,-138),(828,16,569,-139),(829,16,570,-140),(830,16,571,-141),(831,16,572,-142),(832,16,573,-143),(833,16,574,-144),(834,16,575,-145),(835,16,576,-146),(836,16,577,-147),(837,16,578,-148),(838,16,579,-149),(839,16,580,-150),(840,16,581,-151),(841,16,582,-152),(842,16,583,-153),(843,16,584,-154),(844,16,585,-155),(845,16,586,-156),(846,16,587,-157),(847,16,588,-158),(848,16,589,-159),(849,16,590,-160),(850,16,591,-161),(851,16,592,-162),(852,16,593,-163),(853,16,594,-164),(854,16,595,-165),(855,16,596,-166),(856,16,597,-167),(857,16,598,-168),(858,16,599,-169),(859,16,600,-170),(860,16,601,-171),(861,16,602,-172),(862,16,603,-173),(863,16,604,-174),(864,16,605,-175),(865,16,606,-176),(866,16,607,-177),(867,16,608,-178),(868,16,609,-179),(869,16,610,-180),(870,16,611,-181),(871,16,612,-182),(872,16,613,-183),(873,16,614,-184),(874,16,615,-185),(875,16,616,-186),(876,16,617,-187),(877,16,618,-188),(878,16,619,-189),(879,16,620,-190),(880,16,621,-191),(881,16,622,-192),(882,17,623,-1),(883,17,624,-2),(884,17,625,-3),(885,17,626,-4),(886,17,627,-5),(887,17,628,-6),(888,17,629,-7),(889,17,630,-8),(890,17,631,-9),(891,17,632,-10),(892,17,633,-11),(893,17,634,-12),(894,17,635,-13),(895,17,636,-14),(896,17,637,-15),(897,17,638,-16),(898,17,639,-17),(899,17,640,-18),(900,17,641,-19),(901,17,642,-20),(902,17,643,-21),(903,17,644,-22),(904,17,645,-23),(905,17,646,-24),(906,17,647,-25),(907,17,648,-26),(908,17,649,-27),(909,17,650,-28),(910,17,651,-29),(911,17,652,-30),(912,17,653,-31),(913,17,654,-32),(914,17,655,-33),(915,17,656,-34),(916,17,657,-35),(917,17,658,-36),(918,17,659,-37),(919,17,660,-38),(920,17,661,-39),(921,17,662,-40),(922,17,663,-41),(923,17,664,-42),(924,17,665,-43),(925,17,666,-44),(926,17,667,-45),(927,17,668,-46),(928,17,669,-47),(929,17,670,-48),(930,17,671,-49),(931,17,672,-50),(932,17,673,-51),(933,17,674,-52),(934,17,675,-53),(935,17,676,-54),(936,17,677,-55),(937,17,678,-56),(938,17,679,-57),(939,17,680,-58),(940,17,681,-59),(941,17,682,-60),(942,17,683,-61),(943,17,684,-62),(944,17,685,-63),(945,17,686,-64),(946,17,687,-65),(947,17,688,-66),(948,17,689,-67),(949,36,689,-97),(950,2,689,-97),(951,17,690,-68),(952,36,690,-98),(953,2,690,-98),(954,17,691,-69),(955,36,691,-99),(956,2,691,-99),(957,17,692,-70),(958,36,692,-100),(959,2,692,-100),(960,17,693,-71),(961,36,693,-101),(962,2,693,-101),(963,17,694,-72),(964,36,694,-102),(965,2,694,-102),(966,17,695,-73),(967,17,696,-74),(968,17,697,-75),(969,17,698,-76),(970,17,699,-77),(971,17,700,-78),(972,17,701,-79),(973,17,702,-80),(974,17,703,-81),(975,17,704,-82),(976,17,705,-83),(977,17,706,-84),(978,17,707,-85),(979,17,708,-86),(980,17,709,-87),(981,17,710,-88),(982,17,711,-89),(983,17,712,-90),(984,17,713,-91),(985,36,713,-103),(986,2,713,-103),(987,17,714,-92),(988,36,714,-104),(989,2,714,-104),(990,17,715,-93),(991,36,715,-105),(992,2,715,-105),(993,17,716,-94),(994,36,716,-106),(995,2,716,-106),(996,17,717,-95),(997,36,717,-107),(998,2,717,-107),(999,17,718,-96),(1000,36,718,-108),(1001,2,718,-108),(1002,17,719,-97),(1003,17,720,-98),(1004,17,721,-99),(1005,17,722,-100),(1006,17,723,-101),(1007,17,724,-102),(1008,18,725,-1),(1009,32,725,-1),(1010,2,725,-109),(1011,18,726,-2),(1012,32,726,-2),(1013,2,726,-110),(1014,18,727,-3),(1015,32,727,-3),(1016,2,727,-111),(1017,18,728,-4),(1018,32,728,-4),(1019,2,728,-112),(1020,18,729,-5),(1021,32,729,-5),(1022,2,729,-113),(1023,18,730,-6),(1024,32,730,-6),(1025,2,730,-114),(1026,18,731,-7),(1027,32,731,-7),(1028,2,731,-115),(1029,18,732,-8),(1030,32,732,-8),(1031,2,732,-116),(1032,18,733,-9),(1033,32,733,-9),(1034,2,733,-117),(1035,18,734,-10),(1036,32,734,-10),(1037,2,734,-118),(1038,18,735,-11),(1039,32,735,-11),(1040,2,735,-119),(1041,18,736,-12),(1042,32,736,-12),(1043,2,736,-120),(1044,18,737,-13),(1045,32,737,-13),(1046,2,737,-121),(1047,18,738,-14),(1048,32,738,-14),(1049,35,738,-1),(1050,2,738,-122),(1051,18,739,-15),(1052,32,739,-15),(1053,35,739,-2),(1054,2,739,-123),(1055,18,740,-16),(1056,32,740,-16),(1057,35,740,-3),(1058,2,740,-124),(1059,18,741,-17),(1060,32,741,-17),(1061,35,741,-4),(1062,2,741,-125),(1063,18,742,-18),(1064,32,742,-18),(1065,35,742,-5),(1066,2,742,-126),(1067,18,743,-19),(1068,32,743,-19),(1069,35,743,-6),(1070,2,743,-127),(1071,18,744,-20),(1072,32,744,-20),(1073,35,744,-7),(1074,2,744,-128),(1075,18,745,-21),(1076,32,745,-21),(1077,35,745,-8),(1078,2,745,-129),(1079,18,746,-22),(1080,32,746,-22),(1081,35,746,-9),(1082,2,746,-130),(1083,18,747,-23),(1084,32,747,-23),(1085,35,747,-10),(1086,2,747,-131),(1087,18,748,-24),(1088,32,748,-24),(1089,35,748,-11),(1090,2,748,-132),(1091,18,749,-25),(1092,32,749,-25),(1093,35,749,-12),(1094,2,749,-133),(1095,18,750,-26),(1096,32,750,-26),(1097,35,750,-13),(1098,2,750,-134),(1099,18,751,-27),(1100,32,751,-27),(1101,8,751,-1),(1102,2,751,-135),(1103,18,752,-28),(1104,32,752,-28),(1105,8,752,-2),(1106,2,752,-136),(1107,18,753,-29),(1108,32,753,-29),(1109,8,753,-3),(1110,2,753,-137),(1111,18,754,-30),(1112,32,754,-30),(1113,8,754,-4),(1114,2,754,-138),(1115,18,755,-31),(1116,32,755,-31),(1117,8,755,-5),(1118,2,755,-139),(1119,18,756,-32),(1120,32,756,-32),(1121,8,756,-6),(1122,2,756,-140),(1123,18,757,-33),(1124,32,757,-33),(1125,8,757,-7),(1126,2,757,-141),(1127,18,758,-34),(1128,32,758,-34),(1129,8,758,-8),(1130,2,758,-142),(1131,18,759,-35),(1132,32,759,-35),(1133,8,759,-9),(1134,2,759,-143),(1135,18,760,-36),(1136,32,760,-36),(1137,8,760,-10),(1138,2,760,-144),(1139,18,761,-37),(1140,32,761,-37),(1141,8,761,-11),(1142,2,761,-145),(1143,18,762,-38),(1144,32,762,-38),(1145,8,762,-12),(1146,2,762,-146),(1147,18,763,-39),(1148,32,763,-39),(1149,8,763,-13),(1150,2,763,-147),(1151,18,764,-40),(1152,32,764,-40),(1153,2,764,-148),(1154,18,765,-41),(1155,32,765,-41),(1156,2,765,-149),(1157,18,766,-42),(1158,32,766,-42),(1159,2,766,-150),(1160,18,767,-43),(1161,32,767,-43),(1162,2,767,-151),(1163,18,768,-44),(1164,32,768,-44),(1165,2,768,-152),(1166,18,769,-45),(1167,32,769,-45),(1168,2,769,-153),(1169,18,770,-46),(1170,32,770,-46),(1171,2,770,-154),(1172,18,771,-47),(1173,32,771,-47),(1174,2,771,-155),(1175,18,772,-48),(1176,32,772,-48),(1177,2,772,-156),(1178,18,773,-49),(1179,32,773,-49),(1180,2,773,-157),(1181,18,774,-50),(1182,32,774,-50),(1183,2,774,-158),(1184,18,775,-51),(1185,32,775,-51),(1186,2,775,-159),(1187,18,776,-52),(1188,32,776,-52),(1189,2,776,-160),(1190,18,777,-53),(1191,32,777,-53),(1192,8,777,-14),(1193,2,777,-161),(1194,18,778,-54),(1195,32,778,-54),(1196,8,778,-15),(1197,2,778,-162),(1198,18,779,-55),(1199,32,779,-55),(1200,8,779,-16),(1201,2,779,-163),(1202,18,780,-56),(1203,32,780,-56),(1204,8,780,-17),(1205,2,780,-164),(1206,18,781,-57),(1207,32,781,-57),(1208,8,781,-18),(1209,2,781,-165),(1210,18,782,-58),(1211,32,782,-58),(1212,8,782,-19),(1213,2,782,-166),(1214,18,783,-59),(1215,32,783,-59),(1216,8,783,-20),(1217,2,783,-167),(1218,18,784,-60),(1219,32,784,-60),(1220,8,784,-21),(1221,2,784,-168),(1222,18,785,-61),(1223,32,785,-61),(1224,8,785,-22),(1225,2,785,-169),(1226,18,786,-62),(1227,32,786,-62),(1228,8,786,-23),(1229,2,786,-170),(1230,18,787,-63),(1231,32,787,-63),(1232,8,787,-24),(1233,2,787,-171),(1234,18,788,-64),(1235,32,788,-64),(1236,8,788,-25),(1237,2,788,-172),(1238,18,789,-65),(1239,32,789,-65),(1240,8,789,-26),(1241,2,789,-173),(1242,18,790,-66),(1243,32,790,-66),(1244,36,790,-109),(1245,2,790,-174),(1246,18,791,-67),(1247,32,791,-67),(1248,36,791,-110),(1249,2,791,-175),(1250,18,792,-68),(1251,32,792,-68),(1252,36,792,-111),(1253,2,792,-176),(1254,18,793,-69),(1255,32,793,-69),(1256,36,793,-112),(1257,2,793,-177),(1258,18,794,-70),(1259,32,794,-70),(1260,36,794,-113),(1261,2,794,-178),(1262,18,795,-71),(1263,32,795,-71),(1264,36,795,-114),(1265,2,795,-179),(1266,18,796,-72),(1267,32,796,-72),(1268,36,796,-115),(1269,2,796,-180),(1270,18,797,-73),(1271,32,797,-73),(1272,36,797,-116),(1273,2,797,-181),(1274,18,798,-74),(1275,32,798,-74),(1276,36,798,-117),(1277,2,798,-182),(1278,18,799,-75),(1279,32,799,-75),(1280,36,799,-118),(1281,2,799,-183),(1282,18,800,-76),(1283,32,800,-76),(1284,36,800,-119),(1285,2,800,-184),(1286,18,801,-77),(1287,32,801,-77),(1288,36,801,-120),(1289,2,801,-185),(1290,18,802,-78),(1291,32,802,-78),(1292,36,802,-121),(1293,2,802,-186),(1294,18,803,-79),(1295,32,803,-79),(1296,8,803,-27),(1297,2,803,-187),(1298,18,804,-80),(1299,32,804,-80),(1300,8,804,-28),(1301,2,804,-188),(1302,18,805,-81),(1303,32,805,-81),(1304,8,805,-29),(1305,2,805,-189),(1306,18,806,-82),(1307,32,806,-82),(1308,8,806,-30),(1309,2,806,-190),(1310,18,807,-83),(1311,32,807,-83),(1312,8,807,-31),(1313,2,807,-191),(1314,18,808,-84),(1315,32,808,-84),(1316,8,808,-32),(1317,2,808,-192),(1318,18,809,-85),(1319,32,809,-85),(1320,8,809,-33),(1321,2,809,-193),(1322,18,810,-86),(1323,32,810,-86),(1324,8,810,-34),(1325,2,810,-194),(1326,18,811,-87),(1327,32,811,-87),(1328,8,811,-35),(1329,2,811,-195),(1330,18,812,-88),(1331,32,812,-88),(1332,8,812,-36),(1333,2,812,-196),(1334,18,813,-89),(1335,32,813,-89),(1336,8,813,-37),(1337,2,813,-197),(1338,18,814,-90),(1339,32,814,-90),(1340,8,814,-38),(1341,2,814,-198),(1342,18,815,-91),(1343,32,815,-91),(1344,8,815,-39),(1345,2,815,-199),(1346,18,816,-92),(1347,32,816,-92),(1348,8,816,-40),(1349,2,816,-200),(1350,18,817,-93),(1351,32,817,-93),(1352,8,817,-41),(1353,2,817,-201),(1354,18,818,-94),(1355,32,818,-94),(1356,8,818,-42),(1357,2,818,-202),(1358,18,819,-95),(1359,32,819,-95),(1360,8,819,-43),(1361,2,819,-203),(1362,18,820,-96),(1363,32,820,-96),(1364,8,820,-44),(1365,2,820,-204),(1366,18,821,-97),(1367,32,821,-97),(1368,8,821,-45),(1369,2,821,-205),(1370,18,822,-98),(1371,32,822,-98),(1372,8,822,-46),(1373,2,822,-206),(1374,18,823,-99),(1375,32,823,-99),(1376,8,823,-47),(1377,2,823,-207),(1378,18,824,-100),(1379,32,824,-100),(1380,8,824,-48),(1381,2,824,-208),(1382,18,825,-101),(1383,32,825,-101),(1384,8,825,-49),(1385,2,825,-209),(1386,18,826,-102),(1387,32,826,-102),(1388,8,826,-50),(1389,2,826,-210),(1390,18,827,-103),(1391,32,827,-103),(1392,8,827,-51),(1393,2,827,-211),(1394,18,828,-104),(1395,32,828,-104),(1396,8,828,-52),(1397,2,828,-212),(1398,18,829,-105),(1399,32,829,-105),(1400,8,829,-53),(1401,34,829,-1),(1402,2,829,-213),(1403,18,830,-106),(1404,32,830,-106),(1405,8,830,-54),(1406,34,830,-2),(1407,2,830,-214),(1408,18,831,-107),(1409,32,831,-107),(1410,8,831,-55),(1411,34,831,-3),(1412,2,831,-215),(1413,18,832,-108),(1414,32,832,-108),(1415,8,832,-56),(1416,34,832,-4),(1417,2,832,-216),(1418,18,833,-109),(1419,32,833,-109),(1420,8,833,-57),(1421,34,833,-5),(1422,2,833,-217),(1423,18,834,-110),(1424,32,834,-110),(1425,8,834,-58),(1426,34,834,-6),(1427,2,834,-218),(1428,18,835,-111),(1429,32,835,-111),(1430,8,835,-59),(1431,34,835,-7),(1432,2,835,-219),(1433,18,836,-112),(1434,32,836,-112),(1435,8,836,-60),(1436,34,836,-8),(1437,2,836,-220),(1438,18,837,-113),(1439,32,837,-113),(1440,8,837,-61),(1441,34,837,-9),(1442,2,837,-221),(1443,18,838,-114),(1444,32,838,-114),(1445,8,838,-62),(1446,34,838,-10),(1447,2,838,-222),(1448,18,839,-115),(1449,32,839,-115),(1450,8,839,-63),(1451,34,839,-11),(1452,2,839,-223),(1453,18,840,-116),(1454,32,840,-116),(1455,8,840,-64),(1456,34,840,-12),(1457,2,840,-224),(1458,18,841,-117),(1459,32,841,-117),(1460,8,841,-65),(1461,34,841,-13),(1462,2,841,-225),(1463,18,842,-118),(1464,32,842,-118),(1465,34,842,-14),(1466,2,842,-226),(1467,18,843,-119),(1468,32,843,-119),(1469,34,843,-15),(1470,2,843,-227),(1471,18,844,-120),(1472,32,844,-120),(1473,34,844,-16),(1474,2,844,-228),(1475,18,845,-121),(1476,32,845,-121),(1477,34,845,-17),(1478,2,845,-229),(1479,18,846,-122),(1480,32,846,-122),(1481,34,846,-18),(1482,2,846,-230),(1483,18,847,-123),(1484,32,847,-123),(1485,34,847,-19),(1486,2,847,-231),(1487,18,848,-124),(1488,32,848,-124),(1489,34,848,-20),(1490,2,848,-232),(1491,18,849,-125),(1492,32,849,-125),(1493,34,849,-21),(1494,2,849,-233),(1495,18,850,-126),(1496,32,850,-126),(1497,34,850,-22),(1498,2,850,-234),(1499,18,851,-127),(1500,32,851,-127),(1501,34,851,-23),(1502,2,851,-235),(1503,18,852,-128),(1504,32,852,-128),(1505,34,852,-24),(1506,2,852,-236),(1507,18,853,-129),(1508,32,853,-129),(1509,34,853,-25),(1510,2,853,-237),(1511,18,854,-130),(1512,32,854,-130),(1513,34,854,-26),(1514,2,854,-238),(1515,18,855,-131),(1516,32,855,-131),(1517,34,855,-27),(1518,2,855,-239),(1519,18,856,-132),(1520,32,856,-132),(1521,34,856,-28),(1522,2,856,-240),(1523,18,857,-133),(1524,32,857,-133),(1525,34,857,-29),(1526,2,857,-241),(1527,18,858,-134),(1528,32,858,-134),(1529,34,858,-30),(1530,2,858,-242),(1531,18,859,-135),(1532,32,859,-135),(1533,34,859,-31),(1534,2,859,-243),(1535,18,860,-136),(1536,32,860,-136),(1537,34,860,-32),(1538,2,860,-244),(1539,18,861,-137),(1540,32,861,-137),(1541,34,861,-33),(1542,2,861,-245),(1543,18,862,-138),(1544,32,862,-138),(1545,34,862,-34),(1546,2,862,-246),(1547,18,863,-139),(1548,32,863,-139),(1549,34,863,-35),(1550,2,863,-247),(1551,18,864,-140),(1552,32,864,-140),(1553,34,864,-36),(1554,2,864,-248),(1555,18,865,-141),(1556,32,865,-141),(1557,34,865,-37),(1558,2,865,-249),(1559,18,866,-142),(1560,32,866,-142),(1561,34,866,-38),(1562,2,866,-250),(1563,18,867,-143),(1564,32,867,-143),(1565,34,867,-39),(1566,2,867,-251),(1567,18,868,-144),(1568,32,868,-144),(1569,2,868,-252),(1570,18,869,-145),(1571,32,869,-145),(1572,2,869,-253),(1573,18,870,-146),(1574,32,870,-146),(1575,2,870,-254),(1576,18,871,-147),(1577,32,871,-147),(1578,2,871,-255),(1579,18,872,-148),(1580,32,872,-148),(1581,2,872,-256),(1582,18,873,-149),(1583,32,873,-149),(1584,2,873,-257),(1585,18,874,-150),(1586,32,874,-150),(1587,2,874,-258),(1588,18,875,-151),(1589,32,875,-151),(1590,2,875,-259),(1591,18,876,-152),(1592,32,876,-152),(1593,2,876,-260),(1594,18,877,-153),(1595,32,877,-153),(1596,2,877,-261),(1597,18,878,-154),(1598,32,878,-154),(1599,2,878,-262),(1600,18,879,-155),(1601,32,879,-155),(1602,2,879,-263),(1603,18,880,-156),(1604,32,880,-156),(1605,2,880,-264),(1606,19,881,-1),(1607,34,881,-40),(1608,2,881,-265),(1609,19,882,-2),(1610,34,882,-41),(1611,2,882,-266),(1612,19,883,-3),(1613,34,883,-42),(1614,2,883,-267),(1615,19,884,-4),(1616,34,884,-43),(1617,2,884,-268),(1618,19,885,-5),(1619,34,885,-44),(1620,2,885,-269),(1621,19,886,-6),(1622,34,886,-45),(1623,2,886,-270),(1624,19,887,-7),(1625,34,887,-46),(1626,2,887,-271),(1627,19,888,-8),(1628,34,888,-47),(1629,2,888,-272),(1630,19,889,-9),(1631,34,889,-48),(1632,2,889,-273),(1633,19,890,-10),(1634,34,890,-49),(1635,2,890,-274),(1636,19,891,-11),(1637,34,891,-50),(1638,2,891,-275),(1639,19,892,-12),(1640,34,892,-51),(1641,2,892,-276),(1642,19,893,-13),(1643,34,893,-52),(1644,2,893,-277),(1645,19,894,-14),(1646,19,895,-15),(1647,19,896,-16),(1648,19,897,-17),(1649,19,898,-18),(1650,19,899,-19),(1651,35,899,-14),(1652,2,899,-278),(1653,19,900,-20),(1654,35,900,-15),(1655,2,900,-279),(1656,19,901,-21),(1657,35,901,-16),(1658,2,901,-280),(1659,19,902,-22),(1660,35,902,-17),(1661,2,902,-281),(1662,19,903,-23),(1663,35,903,-18),(1664,2,903,-282),(1665,19,904,-24),(1666,35,904,-19),(1667,2,904,-283),(1668,19,905,-25),(1669,35,905,-20),(1670,2,905,-284),(1671,19,906,-26),(1672,35,906,-21),(1673,2,906,-285),(1674,19,907,-27),(1675,35,907,-22),(1676,2,907,-286),(1677,19,908,-28),(1678,35,908,-23),(1679,2,908,-287),(1680,19,909,-29),(1681,35,909,-24),(1682,2,909,-288),(1683,19,910,-30),(1684,35,910,-25),(1685,2,910,-289),(1686,19,911,-31),(1687,35,911,-26),(1688,2,911,-290),(1689,19,912,-32),(1690,19,913,-33),(1691,19,914,-34),(1692,19,915,-35),(1693,19,916,-36),(1694,19,917,-37),(1695,19,918,-38),(1696,19,919,-39),(1697,19,920,-40),(1698,19,921,-41),(1699,19,922,-42),(1700,19,923,-43),(1701,19,924,-44),(1702,19,925,-45),(1703,35,925,-27),(1704,2,925,-291),(1705,19,926,-46),(1706,35,926,-28),(1707,2,926,-292),(1708,19,927,-47),(1709,35,927,-29),(1710,2,927,-293),(1711,19,928,-48),(1712,35,928,-30),(1713,2,928,-294),(1714,19,929,-49),(1715,35,929,-31),(1716,2,929,-295),(1717,19,930,-50),(1718,35,930,-32),(1719,2,930,-296),(1720,19,931,-51),(1721,35,931,-33),(1722,2,931,-297),(1723,19,932,-52),(1724,35,932,-34),(1725,2,932,-298),(1726,19,933,-53),(1727,35,933,-35),(1728,2,933,-299),(1729,19,934,-54),(1730,35,934,-36),(1731,2,934,-300),(1732,19,935,-55),(1733,35,935,-37),(1734,2,935,-301),(1735,19,936,-56),(1736,35,936,-38),(1737,2,936,-302),(1738,19,937,-57),(1739,35,937,-39),(1740,2,937,-303),(1741,19,938,-58),(1742,8,938,-66),(1743,2,938,-304),(1744,19,939,-59),(1745,8,939,-67),(1746,2,939,-305),(1747,19,940,-60),(1748,8,940,-68),(1749,2,940,-306),(1750,19,941,-61),(1751,8,941,-69),(1752,2,941,-307),(1753,19,942,-62),(1754,8,942,-70),(1755,2,942,-308),(1756,19,943,-63),(1757,8,943,-71),(1758,2,943,-309),(1759,19,944,-64),(1760,8,944,-72),(1761,2,944,-310),(1762,19,945,-65),(1763,8,945,-73),(1764,2,945,-311),(1765,19,946,-66),(1766,8,946,-74),(1767,2,946,-312),(1768,19,947,-67),(1769,8,947,-75),(1770,2,947,-313),(1771,19,948,-68),(1772,8,948,-76),(1773,2,948,-314),(1774,19,949,-69),(1775,8,949,-77),(1776,2,949,-315),(1777,19,950,-70),(1778,8,950,-78),(1779,2,950,-316),(1780,19,951,-71),(1781,31,951,-1),(1782,34,951,-53),(1783,2,951,-317),(1784,19,952,-72),(1785,31,952,-2),(1786,34,952,-54),(1787,2,952,-318),(1788,19,953,-73),(1789,31,953,-3),(1790,34,953,-55),(1791,2,953,-319),(1792,19,954,-74),(1793,31,954,-4),(1794,34,954,-56),(1795,2,954,-320),(1796,19,955,-75),(1797,31,955,-5),(1798,34,955,-57),(1799,2,955,-321),(1800,19,956,-76),(1801,31,956,-6),(1802,34,956,-58),(1803,2,956,-322),(1804,19,957,-77),(1805,31,957,-7),(1806,34,957,-59),(1807,2,957,-323),(1808,19,958,-78),(1809,31,958,-8),(1810,34,958,-60),(1811,2,958,-324),(1812,19,959,-79),(1813,31,959,-9),(1814,34,959,-61),(1815,2,959,-325),(1816,19,960,-80),(1817,31,960,-10),(1818,34,960,-62),(1819,2,960,-326),(1820,19,961,-81),(1821,31,961,-11),(1822,34,961,-63),(1823,2,961,-327),(1824,19,962,-82),(1825,31,962,-12),(1826,34,962,-64),(1827,2,962,-328),(1828,19,963,-83),(1829,31,963,-13),(1830,34,963,-65),(1831,2,963,-329),(1832,19,964,-84),(1833,31,964,-14),(1834,2,964,-330),(1835,19,965,-85),(1836,31,965,-15),(1837,2,965,-331),(1838,19,966,-86),(1839,31,966,-16),(1840,2,966,-332),(1841,19,967,-87),(1842,31,967,-17),(1843,2,967,-333),(1844,19,968,-88),(1845,31,968,-18),(1846,2,968,-334),(1847,19,969,-89),(1848,31,969,-19),(1849,2,969,-335),(1850,19,970,-90),(1851,31,970,-20),(1852,2,970,-336),(1853,19,971,-91),(1854,31,971,-21),(1855,2,971,-337),(1856,19,972,-92),(1857,31,972,-22),(1858,2,972,-338),(1859,19,973,-93),(1860,31,973,-23),(1861,2,973,-339),(1862,19,974,-94),(1863,31,974,-24),(1864,2,974,-340),(1865,19,975,-95),(1866,31,975,-25),(1867,2,975,-341),(1868,19,976,-96),(1869,31,976,-26),(1870,2,976,-342),(1871,19,977,-97),(1872,35,977,-40),(1873,2,977,-343),(1874,19,978,-98),(1875,35,978,-41),(1876,2,978,-344),(1877,19,979,-99),(1878,35,979,-42),(1879,2,979,-345),(1880,19,980,-100),(1881,35,980,-43),(1882,2,980,-346),(1883,19,981,-101),(1884,35,981,-44),(1885,2,981,-347),(1886,19,982,-102),(1887,35,982,-45),(1888,2,982,-348),(1889,19,983,-103),(1890,35,983,-46),(1891,2,983,-349),(1892,19,984,-104),(1893,35,984,-47),(1894,2,984,-350),(1895,19,985,-105),(1896,35,985,-48),(1897,2,985,-351),(1898,19,986,-106),(1899,35,986,-49),(1900,2,986,-352),(1901,19,987,-107),(1902,35,987,-50),(1903,2,987,-353),(1904,19,988,-108),(1905,35,988,-51),(1906,2,988,-354),(1907,19,989,-109),(1908,35,989,-52),(1909,2,989,-355),(1910,19,990,-110),(1911,8,990,-79),(1912,2,990,-356),(1913,19,991,-111),(1914,8,991,-80),(1915,2,991,-357),(1916,19,992,-112),(1917,8,992,-81),(1918,2,992,-358),(1919,19,993,-113),(1920,8,993,-82),(1921,2,993,-359),(1922,19,994,-114),(1923,8,994,-83),(1924,2,994,-360),(1925,19,995,-115),(1926,8,995,-84),(1927,2,995,-361),(1928,19,996,-116),(1929,8,996,-85),(1930,2,996,-362),(1931,19,997,-117),(1932,8,997,-86),(1933,2,997,-363),(1934,19,998,-118),(1935,8,998,-87),(1936,2,998,-364),(1937,19,999,-119),(1938,8,999,-88),(1939,2,999,-365),(1940,19,1000,-120),(1941,8,1000,-89),(1942,2,1000,-366),(1943,19,1001,-121),(1944,8,1001,-90),(1945,2,1001,-367),(1946,19,1002,-122),(1947,8,1002,-91),(1948,2,1002,-368),(1949,19,1003,-123),(1950,19,1004,-124),(1951,19,1005,-125),(1952,19,1006,-126),(1953,19,1007,-127),(1954,19,1008,-128),(1955,19,1009,-129),(1956,19,1010,-130),(1957,19,1011,-131),(1958,19,1012,-132),(1959,19,1013,-133),(1960,19,1014,-134),(1961,19,1015,-135),(1962,19,1016,-136),(1963,31,1016,-27),(1964,2,1016,-369),(1965,19,1017,-137),(1966,31,1017,-28),(1967,2,1017,-370),(1968,19,1018,-138),(1969,31,1018,-29),(1970,2,1018,-371),(1971,19,1019,-139),(1972,31,1019,-30),(1973,2,1019,-372),(1974,19,1020,-140),(1975,31,1020,-31),(1976,2,1020,-373),(1977,19,1021,-141),(1978,31,1021,-32),(1979,2,1021,-374),(1980,19,1022,-142),(1981,31,1022,-33),(1982,2,1022,-375),(1983,19,1023,-143),(1984,31,1023,-34),(1985,2,1023,-376),(1986,19,1024,-144),(1987,31,1024,-35),(1988,2,1024,-377),(1989,19,1025,-145),(1990,31,1025,-36),(1991,2,1025,-378),(1992,19,1026,-146),(1993,31,1026,-37),(1994,2,1026,-379),(1995,19,1027,-147),(1996,31,1027,-38),(1997,2,1027,-380),(1998,19,1028,-148),(1999,31,1028,-39),(2000,2,1028,-381),(2001,24,1029,-1),(2002,8,1029,-92),(2003,34,1029,-66),(2004,2,1029,-382),(2005,24,1030,-2),(2006,8,1030,-93),(2007,34,1030,-67),(2008,2,1030,-383),(2009,24,1031,-3),(2010,8,1031,-94),(2011,34,1031,-68),(2012,2,1031,-384),(2013,24,1032,-4),(2014,8,1032,-95),(2015,34,1032,-69),(2016,2,1032,-385),(2017,24,1033,-5),(2018,8,1033,-96),(2019,34,1033,-70),(2020,2,1033,-386),(2021,24,1034,-6),(2022,8,1034,-97),(2023,34,1034,-71),(2024,2,1034,-387),(2025,24,1035,-7),(2026,8,1035,-98),(2027,34,1035,-72),(2028,2,1035,-388),(2029,24,1036,-8),(2030,8,1036,-99),(2031,34,1036,-73),(2032,2,1036,-389),(2033,24,1037,-9),(2034,8,1037,-100),(2035,34,1037,-74),(2036,2,1037,-390),(2037,24,1038,-10),(2038,8,1038,-101),(2039,34,1038,-75),(2040,2,1038,-391),(2041,24,1039,-11),(2042,8,1039,-102),(2043,34,1039,-76),(2044,2,1039,-392),(2045,24,1040,-12),(2046,8,1040,-103),(2047,34,1040,-77),(2048,2,1040,-393),(2049,24,1041,-13),(2050,8,1041,-104),(2051,34,1041,-78),(2052,2,1041,-394),(2053,24,1042,-14),(2054,8,1042,-105),(2055,34,1042,-79),(2056,2,1042,-395),(2057,24,1043,-15),(2058,8,1043,-106),(2059,34,1043,-80),(2060,2,1043,-396),(2061,24,1044,-16),(2062,8,1044,-107),(2063,34,1044,-81),(2064,2,1044,-397),(2065,24,1045,-17),(2066,30,1045,-1),(2067,2,1045,-398),(2068,24,1046,-18),(2069,30,1046,-2),(2070,2,1046,-399),(2071,24,1047,-19),(2072,30,1047,-3),(2073,2,1047,-400),(2074,24,1048,-20),(2075,30,1048,-4),(2076,2,1048,-401),(2077,24,1049,-21),(2078,30,1049,-5),(2079,2,1049,-402),(2080,24,1050,-22),(2081,30,1050,-6),(2082,2,1050,-403),(2083,24,1051,-23),(2084,30,1051,-7),(2085,2,1051,-404),(2086,24,1052,-24),(2087,30,1052,-8),(2088,2,1052,-405),(2089,24,1053,-25),(2090,30,1053,-9),(2091,2,1053,-406),(2092,24,1054,-26),(2093,30,1054,-10),(2094,2,1054,-407),(2095,24,1055,-27),(2096,30,1055,-11),(2097,2,1055,-408),(2098,24,1056,-28),(2099,30,1056,-12),(2100,2,1056,-409),(2101,24,1057,-29),(2102,30,1057,-13),(2103,2,1057,-410),(2104,24,1058,-30),(2105,30,1058,-14),(2106,2,1058,-411),(2107,24,1059,-31),(2108,30,1059,-15),(2109,2,1059,-412),(2110,24,1060,-32),(2111,30,1060,-16),(2112,2,1060,-413),(2113,24,1061,-33),(2114,24,1062,-34),(2115,24,1063,-35),(2116,24,1064,-36),(2117,24,1065,-37),(2118,24,1066,-38),(2119,24,1067,-39),(2120,24,1068,-40),(2121,24,1069,-41),(2122,24,1070,-42),(2123,24,1071,-43),(2124,24,1072,-44),(2125,24,1073,-45),(2126,24,1074,-46),(2127,24,1075,-47),(2128,24,1076,-48),(2129,24,1077,-49),(2130,24,1078,-50),(2131,24,1079,-51),(2132,24,1080,-52),(2133,24,1081,-53),(2134,24,1082,-54),(2135,24,1083,-55),(2136,24,1084,-56),(2137,24,1085,-57),(2138,24,1086,-58),(2139,24,1087,-59),(2140,24,1088,-60),(2141,24,1089,-61),(2142,24,1090,-62),(2143,24,1091,-63),(2144,24,1092,-64),(2145,24,1093,-65),(2146,24,1094,-66),(2147,24,1095,-67),(2148,24,1096,-68),(2149,24,1097,-69),(2150,24,1098,-70),(2151,24,1099,-71),(2152,24,1100,-72),(2153,24,1101,-73),(2154,24,1102,-74),(2155,24,1103,-75),(2156,24,1104,-76),(2157,24,1105,-77),(2158,24,1106,-78),(2159,24,1107,-79),(2160,24,1108,-80),(2161,24,1109,-81),(2162,24,1110,-82),(2163,24,1111,-83),(2164,24,1112,-84),(2165,24,1113,-85),(2166,24,1114,-86),(2167,24,1115,-87),(2168,8,1115,-108),(2169,34,1115,-82),(2170,2,1115,-414),(2171,24,1116,-88),(2172,8,1116,-109),(2173,34,1116,-83),(2174,2,1116,-415),(2175,24,1117,-89),(2176,8,1117,-110),(2177,34,1117,-84),(2178,2,1117,-416),(2179,24,1118,-90),(2180,8,1118,-111),(2181,34,1118,-85),(2182,2,1118,-417),(2183,24,1119,-91),(2184,8,1119,-112),(2185,34,1119,-86),(2186,2,1119,-418),(2187,24,1120,-92),(2188,8,1120,-113),(2189,34,1120,-87),(2190,2,1120,-419),(2191,24,1121,-93),(2192,8,1121,-114),(2193,34,1121,-88),(2194,2,1121,-420),(2195,24,1122,-94),(2196,8,1122,-115),(2197,34,1122,-89),(2198,2,1122,-421),(2199,24,1123,-95),(2200,8,1123,-116),(2201,34,1123,-90),(2202,2,1123,-422),(2203,24,1124,-96),(2204,8,1124,-117),(2205,34,1124,-91),(2206,2,1124,-423),(2207,24,1125,-97),(2208,8,1125,-118),(2209,34,1125,-92),(2210,2,1125,-424),(2211,24,1126,-98),(2212,8,1126,-119),(2213,34,1126,-93),(2214,2,1126,-425),(2215,24,1127,-99),(2216,8,1127,-120),(2217,34,1127,-94),(2218,2,1127,-426),(2219,24,1128,-100),(2220,8,1128,-121),(2221,34,1128,-95),(2222,2,1128,-427),(2223,24,1129,-101),(2224,8,1129,-122),(2225,34,1129,-96),(2226,2,1129,-428),(2227,24,1130,-102),(2228,8,1130,-123),(2229,34,1130,-97),(2230,2,1130,-429),(2231,24,1131,-103),(2232,30,1131,-17),(2233,35,1131,-53),(2234,2,1131,-430),(2235,24,1132,-104),(2236,30,1132,-18),(2237,35,1132,-54),(2238,2,1132,-431),(2239,24,1133,-105),(2240,30,1133,-19),(2241,35,1133,-55),(2242,2,1133,-432),(2243,24,1134,-106),(2244,30,1134,-20),(2245,35,1134,-56),(2246,2,1134,-433),(2247,24,1135,-107),(2248,30,1135,-21),(2249,35,1135,-57),(2250,2,1135,-434),(2251,24,1136,-108),(2252,30,1136,-22),(2253,35,1136,-58),(2254,2,1136,-435),(2255,24,1137,-109),(2256,30,1137,-23),(2257,35,1137,-59),(2258,2,1137,-436),(2259,24,1138,-110),(2260,30,1138,-24),(2261,35,1138,-60),(2262,2,1138,-437),(2263,24,1139,-111),(2264,30,1139,-25),(2265,35,1139,-61),(2266,2,1139,-438),(2267,24,1140,-112),(2268,30,1140,-26),(2269,35,1140,-62),(2270,2,1140,-439),(2271,24,1141,-113),(2272,30,1141,-27),(2273,35,1141,-63),(2274,2,1141,-440),(2275,24,1142,-114),(2276,30,1142,-28),(2277,35,1142,-64),(2278,2,1142,-441),(2279,24,1143,-115),(2280,30,1143,-29),(2281,35,1143,-65),(2282,2,1143,-442),(2283,24,1144,-116),(2284,30,1144,-30),(2285,35,1144,-66),(2286,2,1144,-443),(2287,24,1145,-117),(2288,30,1145,-31),(2289,35,1145,-67),(2290,2,1145,-444),(2291,24,1146,-118),(2292,30,1146,-32),(2293,35,1146,-68),(2294,2,1146,-445),(2295,24,1147,-119),(2296,36,1147,-122),(2297,2,1147,-446),(2298,24,1148,-120),(2299,36,1148,-123),(2300,2,1148,-447),(2301,24,1149,-121),(2302,36,1149,-124),(2303,2,1149,-448),(2304,24,1150,-122),(2305,36,1150,-125),(2306,2,1150,-449),(2307,24,1151,-123),(2308,36,1151,-126),(2309,2,1151,-450),(2310,24,1152,-124),(2311,36,1152,-127),(2312,2,1152,-451),(2313,24,1153,-125),(2314,36,1153,-128),(2315,2,1153,-452),(2316,24,1154,-126),(2317,36,1154,-129),(2318,2,1154,-453),(2319,24,1155,-127),(2320,36,1155,-130),(2321,2,1155,-454),(2322,24,1156,-128),(2323,36,1156,-131),(2324,2,1156,-455),(2325,24,1157,-129),(2326,36,1157,-132),(2327,2,1157,-456),(2328,24,1158,-130),(2329,36,1158,-133),(2330,2,1158,-457),(2331,24,1159,-131),(2332,36,1159,-134),(2333,2,1159,-458),(2334,24,1160,-132),(2335,36,1160,-135),(2336,2,1160,-459),(2337,24,1161,-133),(2338,36,1161,-136),(2339,2,1161,-460),(2340,24,1162,-134),(2341,36,1162,-137),(2342,2,1162,-461),(2343,24,1163,-135),(2344,8,1163,-124),(2345,2,1163,-462),(2346,24,1164,-136),(2347,8,1164,-125),(2348,2,1164,-463),(2349,24,1165,-137),(2350,8,1165,-126),(2351,2,1165,-464),(2352,24,1166,-138),(2353,8,1166,-127),(2354,2,1166,-465),(2355,24,1167,-139),(2356,8,1167,-128),(2357,2,1167,-466),(2358,24,1168,-140),(2359,8,1168,-129),(2360,2,1168,-467),(2361,24,1169,-141),(2362,8,1169,-130),(2363,2,1169,-468),(2364,24,1170,-142),(2365,8,1170,-131),(2366,2,1170,-469),(2367,24,1171,-143),(2368,8,1171,-132),(2369,2,1171,-470),(2370,24,1172,-144),(2371,8,1172,-133),(2372,2,1172,-471),(2373,24,1173,-145),(2374,8,1173,-134),(2375,2,1173,-472),(2376,24,1174,-146),(2377,8,1174,-135),(2378,2,1174,-473),(2379,24,1175,-147),(2380,8,1175,-136),(2381,2,1175,-474),(2382,24,1176,-148),(2383,8,1176,-137),(2384,2,1176,-475),(2385,24,1177,-149),(2386,8,1177,-138),(2387,2,1177,-476),(2388,24,1178,-150),(2389,8,1178,-139),(2390,2,1178,-477),(2391,24,1179,-151),(2392,34,1179,-98),(2393,2,1179,-478),(2394,24,1180,-152),(2395,34,1180,-99),(2396,2,1180,-479),(2397,24,1181,-153),(2398,34,1181,-100),(2399,2,1181,-480),(2400,24,1182,-154),(2401,34,1182,-101),(2402,2,1182,-481),(2403,24,1183,-155),(2404,34,1183,-102),(2405,2,1183,-482),(2406,24,1184,-156),(2407,34,1184,-103),(2408,2,1184,-483),(2409,24,1185,-157),(2410,34,1185,-104),(2411,2,1185,-484),(2412,24,1186,-158),(2413,34,1186,-105),(2414,2,1186,-485),(2415,24,1187,-159),(2416,34,1187,-106),(2417,2,1187,-486),(2418,24,1188,-160),(2419,34,1188,-107),(2420,2,1188,-487),(2421,24,1189,-161),(2422,34,1189,-108),(2423,2,1189,-488),(2424,24,1190,-162),(2425,34,1190,-109),(2426,2,1190,-489),(2427,24,1191,-163),(2428,34,1191,-110),(2429,2,1191,-490),(2430,24,1192,-164),(2431,34,1192,-111),(2432,2,1192,-491),(2433,24,1193,-165),(2434,34,1193,-112),(2435,2,1193,-492),(2436,24,1194,-166),(2437,34,1194,-113),(2438,2,1194,-493),(2439,24,1195,-167),(2440,35,1195,-69),(2441,2,1195,-494),(2442,24,1196,-168),(2443,35,1196,-70),(2444,2,1196,-495),(2445,24,1197,-169),(2446,35,1197,-71),(2447,2,1197,-496),(2448,24,1198,-170),(2449,35,1198,-72),(2450,2,1198,-497),(2451,24,1199,-171),(2452,35,1199,-73),(2453,2,1199,-498),(2454,24,1200,-172),(2455,35,1200,-74),(2456,2,1200,-499),(2457,24,1201,-173),(2458,35,1201,-75),(2459,2,1201,-500),(2460,24,1202,-174),(2461,35,1202,-76),(2462,2,1202,-501),(2463,24,1203,-175),(2464,35,1203,-77),(2465,2,1203,-502),(2466,24,1204,-176),(2467,35,1204,-78),(2468,2,1204,-503),(2469,24,1205,-177),(2470,35,1205,-79),(2471,2,1205,-504),(2472,24,1206,-178),(2473,35,1206,-80),(2474,2,1206,-505),(2475,24,1207,-179),(2476,35,1207,-81),(2477,2,1207,-506),(2478,24,1208,-180),(2479,35,1208,-82),(2480,2,1208,-507),(2481,24,1209,-181),(2482,35,1209,-83),(2483,2,1209,-508),(2484,24,1210,-182),(2485,35,1210,-84),(2486,2,1210,-509),(2487,23,1211,-1),(2488,8,1211,-140),(2489,34,1211,-114),(2490,2,1211,-510),(2491,23,1212,-2),(2492,8,1212,-141),(2493,34,1212,-115),(2494,2,1212,-511),(2495,23,1213,-3),(2496,8,1213,-142),(2497,34,1213,-116),(2498,2,1213,-512),(2499,23,1214,-4),(2500,8,1214,-143),(2501,34,1214,-117),(2502,2,1214,-513),(2503,23,1215,-5),(2504,8,1215,-144),(2505,34,1215,-118),(2506,2,1215,-514),(2507,23,1216,-6),(2508,8,1216,-145),(2509,34,1216,-119),(2510,2,1216,-515),(2511,23,1217,-7),(2512,8,1217,-146),(2513,34,1217,-120),(2514,2,1217,-516),(2515,23,1218,-8),(2516,8,1218,-147),(2517,34,1218,-121),(2518,2,1218,-517),(2519,23,1219,-9),(2520,8,1219,-148),(2521,34,1219,-122),(2522,2,1219,-518),(2523,23,1220,-10),(2524,8,1220,-149),(2525,34,1220,-123),(2526,2,1220,-519),(2527,23,1221,-11),(2528,30,1221,-33),(2529,2,1221,-520),(2530,23,1222,-12),(2531,30,1222,-34),(2532,2,1222,-521),(2533,23,1223,-13),(2534,30,1223,-35),(2535,2,1223,-522),(2536,23,1224,-14),(2537,30,1224,-36),(2538,2,1224,-523),(2539,23,1225,-15),(2540,30,1225,-37),(2541,2,1225,-524),(2542,23,1226,-16),(2543,30,1226,-38),(2544,2,1226,-525),(2545,23,1227,-17),(2546,30,1227,-39),(2547,2,1227,-526),(2548,23,1228,-18),(2549,30,1228,-40),(2550,2,1228,-527),(2551,23,1229,-19),(2552,30,1229,-41),(2553,2,1229,-528),(2554,23,1230,-20),(2555,30,1230,-42),(2556,2,1230,-529),(2557,23,1231,-21),(2558,30,1231,-43),(2559,2,1231,-530),(2560,23,1232,-22),(2561,30,1232,-44),(2562,2,1232,-531),(2563,23,1233,-23),(2564,30,1233,-45),(2565,2,1233,-532),(2566,23,1234,-24),(2567,30,1234,-46),(2568,2,1234,-533),(2569,23,1235,-25),(2570,30,1235,-47),(2571,2,1235,-534),(2572,23,1236,-26),(2573,30,1236,-48),(2574,2,1236,-535),(2575,23,1237,-27),(2576,23,1238,-28),(2577,23,1239,-29),(2578,23,1240,-30),(2579,23,1241,-31),(2580,23,1242,-32),(2581,23,1243,-33),(2582,23,1244,-34),(2583,23,1245,-35),(2584,23,1246,-36),(2585,23,1247,-37),(2586,23,1248,-38),(2587,23,1249,-39),(2588,23,1250,-40),(2589,23,1251,-41),(2590,23,1252,-42),(2591,23,1253,-43),(2592,8,1253,-150),(2593,35,1253,-85),(2594,2,1253,-536),(2595,23,1254,-44),(2596,8,1254,-151),(2597,35,1254,-86),(2598,2,1254,-537),(2599,23,1255,-45),(2600,8,1255,-152),(2601,35,1255,-87),(2602,2,1255,-538),(2603,23,1256,-46),(2604,8,1256,-153),(2605,35,1256,-88),(2606,2,1256,-539),(2607,23,1257,-47),(2608,8,1257,-154),(2609,35,1257,-89),(2610,2,1257,-540),(2611,23,1258,-48),(2612,8,1258,-155),(2613,35,1258,-90),(2614,2,1258,-541),(2615,23,1259,-49),(2616,8,1259,-156),(2617,35,1259,-91),(2618,2,1259,-542),(2619,23,1260,-50),(2620,8,1260,-157),(2621,35,1260,-92),(2622,2,1260,-543),(2623,23,1261,-51),(2624,8,1261,-158),(2625,35,1261,-93),(2626,2,1261,-544),(2627,23,1262,-52),(2628,8,1262,-159),(2629,35,1262,-94),(2630,2,1262,-545),(2631,23,1263,-53),(2632,8,1263,-160),(2633,35,1263,-95),(2634,2,1263,-546),(2635,23,1264,-54),(2636,8,1264,-161),(2637,35,1264,-96),(2638,2,1264,-547),(2639,23,1265,-55),(2640,8,1265,-162),(2641,35,1265,-97),(2642,2,1265,-548),(2643,23,1266,-56),(2644,8,1266,-163),(2645,35,1266,-98),(2646,2,1266,-549),(2647,23,1267,-57),(2648,8,1267,-164),(2649,35,1267,-99),(2650,2,1267,-550),(2651,23,1268,-58),(2652,8,1268,-165),(2653,35,1268,-100),(2654,2,1268,-551),(2655,23,1269,-59),(2656,23,1270,-60),(2657,23,1271,-61),(2658,23,1272,-62),(2659,23,1273,-63),(2660,23,1274,-64),(2661,23,1275,-65),(2662,23,1276,-66),(2663,23,1277,-67),(2664,23,1278,-68),(2665,23,1279,-69),(2666,23,1280,-70),(2667,23,1281,-71),(2668,23,1282,-72),(2669,23,1283,-73),(2670,23,1284,-74),(2671,23,1285,-75),(2672,23,1286,-76),(2673,23,1287,-77),(2674,23,1288,-78),(2675,23,1289,-79),(2676,23,1290,-80),(2677,23,1291,-81),(2678,23,1292,-82),(2679,23,1293,-83),(2680,23,1294,-84),(2681,23,1295,-85),(2682,23,1296,-86),(2683,23,1297,-87),(2684,23,1298,-88),(2685,23,1299,-89),(2686,23,1300,-90),(2687,23,1301,-91),(2688,30,1301,-49),(2689,34,1301,-124),(2690,2,1301,-552),(2691,23,1302,-92),(2692,30,1302,-50),(2693,34,1302,-125),(2694,2,1302,-553),(2695,23,1303,-93),(2696,30,1303,-51),(2697,34,1303,-126),(2698,2,1303,-554),(2699,23,1304,-94),(2700,30,1304,-52),(2701,34,1304,-127),(2702,2,1304,-555),(2703,23,1305,-95),(2704,30,1305,-53),(2705,34,1305,-128),(2706,2,1305,-556),(2707,23,1306,-96),(2708,30,1306,-54),(2709,34,1306,-129),(2710,2,1306,-557),(2711,23,1307,-97),(2712,30,1307,-55),(2713,34,1307,-130),(2714,2,1307,-558),(2715,23,1308,-98),(2716,30,1308,-56),(2717,34,1308,-131),(2718,2,1308,-559),(2719,23,1309,-99),(2720,30,1309,-57),(2721,34,1309,-132),(2722,2,1309,-560),(2723,23,1310,-100),(2724,30,1310,-58),(2725,34,1310,-133),(2726,2,1310,-561),(2727,23,1311,-101),(2728,30,1311,-59),(2729,34,1311,-134),(2730,2,1311,-562),(2731,23,1312,-102),(2732,30,1312,-60),(2733,34,1312,-135),(2734,2,1312,-563),(2735,23,1313,-103),(2736,30,1313,-61),(2737,34,1313,-136),(2738,2,1313,-564),(2739,23,1314,-104),(2740,30,1314,-62),(2741,34,1314,-137),(2742,2,1314,-565),(2743,23,1315,-105),(2744,30,1315,-63),(2745,34,1315,-138),(2746,2,1315,-566),(2747,23,1316,-106),(2748,30,1316,-64),(2749,34,1316,-139),(2750,2,1316,-567),(2751,23,1317,-107),(2752,34,1317,-140),(2753,2,1317,-568),(2754,23,1318,-108),(2755,34,1318,-141),(2756,2,1318,-569),(2757,23,1319,-109),(2758,34,1319,-142),(2759,2,1319,-570),(2760,23,1320,-110),(2761,34,1320,-143),(2762,2,1320,-571),(2763,23,1321,-111),(2764,34,1321,-144),(2765,2,1321,-572),(2766,23,1322,-112),(2767,34,1322,-145),(2768,2,1322,-573),(2769,23,1323,-113),(2770,34,1323,-146),(2771,2,1323,-574),(2772,23,1324,-114),(2773,34,1324,-147),(2774,2,1324,-575),(2775,23,1325,-115),(2776,34,1325,-148),(2777,2,1325,-576),(2778,23,1326,-116),(2779,34,1326,-149),(2780,2,1326,-577),(2781,23,1327,-117),(2782,34,1327,-150),(2783,2,1327,-578),(2784,23,1328,-118),(2785,34,1328,-151),(2786,2,1328,-579),(2787,23,1329,-119),(2788,34,1329,-152),(2789,2,1329,-580),(2790,23,1330,-120),(2791,34,1330,-153),(2792,2,1330,-581),(2793,23,1331,-121),(2794,34,1331,-154),(2795,2,1331,-582),(2796,23,1332,-122),(2797,34,1332,-155),(2798,2,1332,-583),(2799,23,1333,-123),(2800,8,1333,-166),(2801,35,1333,-101),(2802,2,1333,-584),(2803,23,1334,-124),(2804,8,1334,-167),(2805,35,1334,-102),(2806,2,1334,-585),(2807,23,1335,-125),(2808,8,1335,-168),(2809,35,1335,-103),(2810,2,1335,-586),(2811,23,1336,-126),(2812,8,1336,-169),(2813,35,1336,-104),(2814,2,1336,-587),(2815,23,1337,-127),(2816,8,1337,-170),(2817,35,1337,-105),(2818,2,1337,-588),(2819,23,1338,-128),(2820,8,1338,-171),(2821,35,1338,-106),(2822,2,1338,-589),(2823,23,1339,-129),(2824,8,1339,-172),(2825,35,1339,-107),(2826,2,1339,-590),(2827,23,1340,-130),(2828,8,1340,-173),(2829,35,1340,-108),(2830,2,1340,-591),(2831,23,1341,-131),(2832,8,1341,-174),(2833,35,1341,-109),(2834,2,1341,-592),(2835,23,1342,-132),(2836,8,1342,-175),(2837,35,1342,-110),(2838,2,1342,-593),(2839,23,1343,-133),(2840,8,1343,-176),(2841,35,1343,-111),(2842,2,1343,-594),(2843,23,1344,-134),(2844,8,1344,-177),(2845,35,1344,-112),(2846,2,1344,-595),(2847,23,1345,-135),(2848,8,1345,-178),(2849,35,1345,-113),(2850,2,1345,-596),(2851,23,1346,-136),(2852,8,1346,-179),(2853,35,1346,-114),(2854,2,1346,-597),(2855,23,1347,-137),(2856,8,1347,-180),(2857,35,1347,-115),(2858,2,1347,-598),(2859,23,1348,-138),(2860,8,1348,-181),(2861,35,1348,-116),(2862,2,1348,-599),(2863,23,1349,-139),(2864,8,1349,-182),(2865,2,1349,-600),(2866,23,1350,-140),(2867,8,1350,-183),(2868,2,1350,-601),(2869,23,1351,-141),(2870,8,1351,-184),(2871,2,1351,-602),(2872,23,1352,-142),(2873,8,1352,-185),(2874,2,1352,-603),(2875,23,1353,-143),(2876,8,1353,-186),(2877,2,1353,-604),(2878,23,1354,-144),(2879,8,1354,-187),(2880,2,1354,-605),(2881,23,1355,-145),(2882,8,1355,-188),(2883,2,1355,-606),(2884,23,1356,-146),(2885,8,1356,-189),(2886,2,1356,-607),(2887,23,1357,-147),(2888,8,1357,-190),(2889,2,1357,-608),(2890,23,1358,-148),(2891,8,1358,-191),(2892,2,1358,-609),(2893,23,1359,-149),(2894,8,1359,-192),(2895,2,1359,-610),(2896,23,1360,-150),(2897,8,1360,-193),(2898,2,1360,-611),(2899,23,1361,-151),(2900,8,1361,-194),(2901,2,1361,-612),(2902,23,1362,-152),(2903,8,1362,-195),(2904,2,1362,-613),(2905,23,1363,-153),(2906,8,1363,-196),(2907,2,1363,-614),(2908,23,1364,-154),(2909,8,1364,-197),(2910,2,1364,-615),(2911,23,1365,-155),(2912,30,1365,-65),(2913,35,1365,-117),(2914,2,1365,-616),(2915,23,1366,-156),(2916,30,1366,-66),(2917,35,1366,-118),(2918,2,1366,-617),(2919,23,1367,-157),(2920,30,1367,-67),(2921,35,1367,-119),(2922,2,1367,-618),(2923,23,1368,-158),(2924,30,1368,-68),(2925,35,1368,-120),(2926,2,1368,-619),(2927,23,1369,-159),(2928,30,1369,-69),(2929,35,1369,-121),(2930,2,1369,-620),(2931,23,1370,-160),(2932,30,1370,-70),(2933,35,1370,-122),(2934,2,1370,-621),(2935,23,1371,-161),(2936,30,1371,-71),(2937,35,1371,-123),(2938,2,1371,-622),(2939,23,1372,-162),(2940,30,1372,-72),(2941,35,1372,-124),(2942,2,1372,-623),(2943,23,1373,-163),(2944,30,1373,-73),(2945,35,1373,-125),(2946,2,1373,-624),(2947,23,1374,-164),(2948,30,1374,-74),(2949,35,1374,-126),(2950,2,1374,-625),(2951,23,1375,-165),(2952,30,1375,-75),(2953,35,1375,-127),(2954,2,1375,-626),(2955,23,1376,-166),(2956,30,1376,-76),(2957,35,1376,-128),(2958,2,1376,-627),(2959,23,1377,-167),(2960,30,1377,-77),(2961,35,1377,-129),(2962,2,1377,-628),(2963,23,1378,-168),(2964,30,1378,-78),(2965,35,1378,-130),(2966,2,1378,-629),(2967,23,1379,-169),(2968,30,1379,-79),(2969,35,1379,-131),(2970,2,1379,-630),(2971,23,1380,-170),(2972,30,1380,-80),(2973,35,1380,-132),(2974,2,1380,-631),(2975,23,1381,-171),(2976,30,1381,-81),(2977,35,1381,-133),(2978,2,1381,-632),(2979,23,1382,-172),(2980,30,1382,-82),(2981,35,1382,-134),(2982,2,1382,-633),(2983,23,1383,-173),(2984,30,1383,-83),(2985,35,1383,-135),(2986,2,1383,-634),(2987,23,1384,-174),(2988,30,1384,-84),(2989,35,1384,-136),(2990,2,1384,-635),(2991,23,1385,-175),(2992,30,1385,-85),(2993,35,1385,-137),(2994,2,1385,-636),(2995,23,1386,-176),(2996,30,1386,-86),(2997,35,1386,-138),(2998,2,1386,-637),(2999,23,1387,-177),(3000,30,1387,-87),(3001,35,1387,-139),(3002,2,1387,-638),(3003,23,1388,-178),(3004,30,1388,-88),(3005,35,1388,-140),(3006,2,1388,-639),(3007,23,1389,-179),(3008,30,1389,-89),(3009,35,1389,-141),(3010,2,1389,-640),(3011,23,1390,-180),(3012,30,1390,-90),(3013,35,1390,-142),(3014,2,1390,-641),(3015,23,1391,-181),(3016,30,1391,-91),(3017,35,1391,-143),(3018,2,1391,-642),(3019,23,1392,-182),(3020,30,1392,-92),(3021,35,1392,-144),(3022,2,1392,-643),(3023,23,1393,-183),(3024,30,1393,-93),(3025,35,1393,-145),(3026,2,1393,-644),(3027,23,1394,-184),(3028,30,1394,-94),(3029,35,1394,-146),(3030,2,1394,-645),(3031,23,1395,-185),(3032,30,1395,-95),(3033,35,1395,-147),(3034,2,1395,-646),(3035,23,1396,-186),(3036,30,1396,-96),(3037,35,1396,-148),(3038,2,1396,-647),(3039,25,1397,-1),(3040,33,1397,-1),(3041,8,1397,-198),(3042,2,1397,-648),(3043,25,1398,-2),(3044,33,1398,-2),(3045,8,1398,-199),(3046,2,1398,-649),(3047,25,1399,-3),(3048,33,1399,-3),(3049,8,1399,-200),(3050,2,1399,-650),(3051,25,1400,-4),(3052,33,1400,-4),(3053,8,1400,-201),(3054,2,1400,-651),(3055,25,1401,-5),(3056,33,1401,-5),(3057,8,1401,-202),(3058,2,1401,-652),(3059,25,1402,-6),(3060,33,1402,-6),(3061,8,1402,-203),(3062,2,1402,-653),(3063,25,1403,-7),(3064,33,1403,-7),(3065,8,1403,-204),(3066,2,1403,-654),(3067,25,1404,-8),(3068,33,1404,-8),(3069,8,1404,-205),(3070,2,1404,-655),(3071,25,1405,-9),(3072,33,1405,-9),(3073,8,1405,-206),(3074,2,1405,-656),(3075,25,1406,-10),(3076,33,1406,-10),(3077,8,1406,-207),(3078,2,1406,-657),(3079,25,1407,-11),(3080,33,1407,-11),(3081,8,1407,-208),(3082,2,1407,-658),(3083,25,1408,-12),(3084,33,1408,-12),(3085,8,1408,-209),(3086,2,1408,-659),(3087,25,1409,-13),(3088,33,1409,-13),(3089,8,1409,-210),(3090,2,1409,-660),(3091,25,1410,-14),(3092,33,1410,-14),(3093,8,1410,-211),(3094,2,1410,-661),(3095,25,1411,-15),(3096,33,1411,-15),(3097,8,1411,-212),(3098,2,1411,-662),(3099,25,1412,-16),(3100,33,1412,-16),(3101,8,1412,-213),(3102,2,1412,-663),(3103,25,1413,-17),(3104,33,1413,-17),(3105,35,1413,-149),(3106,2,1413,-664),(3107,25,1414,-18),(3108,33,1414,-18),(3109,35,1414,-150),(3110,2,1414,-665),(3111,25,1415,-19),(3112,33,1415,-19),(3113,35,1415,-151),(3114,2,1415,-666),(3115,25,1416,-20),(3116,33,1416,-20),(3117,35,1416,-152),(3118,2,1416,-667),(3119,25,1417,-21),(3120,33,1417,-21),(3121,35,1417,-153),(3122,2,1417,-668),(3123,25,1418,-22),(3124,33,1418,-22),(3125,35,1418,-154),(3126,2,1418,-669),(3127,25,1419,-23),(3128,33,1419,-23),(3129,35,1419,-155),(3130,2,1419,-670),(3131,25,1420,-24),(3132,33,1420,-24),(3133,35,1420,-156),(3134,2,1420,-671),(3135,25,1421,-25),(3136,33,1421,-25),(3137,35,1421,-157),(3138,2,1421,-672),(3139,25,1422,-26),(3140,33,1422,-26),(3141,35,1422,-158),(3142,2,1422,-673),(3143,25,1423,-27),(3144,33,1423,-27),(3145,35,1423,-159),(3146,2,1423,-674),(3147,25,1424,-28),(3148,33,1424,-28),(3149,35,1424,-160),(3150,2,1424,-675),(3151,25,1425,-29),(3152,33,1425,-29),(3153,35,1425,-161),(3154,2,1425,-676),(3155,25,1426,-30),(3156,33,1426,-30),(3157,35,1426,-162),(3158,2,1426,-677),(3159,25,1427,-31),(3160,33,1427,-31),(3161,35,1427,-163),(3162,2,1427,-678),(3163,25,1428,-32),(3164,33,1428,-32),(3165,35,1428,-164),(3166,2,1428,-679),(3167,25,1429,-33),(3168,33,1429,-33),(3169,8,1429,-214),(3170,36,1429,-138),(3171,2,1429,-680),(3172,25,1430,-34),(3173,33,1430,-34),(3174,8,1430,-215),(3175,36,1430,-139),(3176,2,1430,-681),(3177,25,1431,-35),(3178,33,1431,-35),(3179,8,1431,-216),(3180,36,1431,-140),(3181,2,1431,-682),(3182,25,1432,-36),(3183,33,1432,-36),(3184,8,1432,-217),(3185,36,1432,-141),(3186,2,1432,-683),(3187,25,1433,-37),(3188,33,1433,-37),(3189,8,1433,-218),(3190,36,1433,-142),(3191,2,1433,-684),(3192,25,1434,-38),(3193,33,1434,-38),(3194,8,1434,-219),(3195,36,1434,-143),(3196,2,1434,-685),(3197,25,1435,-39),(3198,33,1435,-39),(3199,8,1435,-220),(3200,36,1435,-144),(3201,2,1435,-686),(3202,25,1436,-40),(3203,33,1436,-40),(3204,8,1436,-221),(3205,36,1436,-145),(3206,2,1436,-687),(3207,25,1437,-41),(3208,33,1437,-41),(3209,8,1437,-222),(3210,36,1437,-146),(3211,2,1437,-688),(3212,25,1438,-42),(3213,33,1438,-42),(3214,8,1438,-223),(3215,36,1438,-147),(3216,2,1438,-689),(3217,25,1439,-43),(3218,33,1439,-43),(3219,8,1439,-224),(3220,36,1439,-148),(3221,2,1439,-690),(3222,25,1440,-44),(3223,33,1440,-44),(3224,8,1440,-225),(3225,36,1440,-149),(3226,2,1440,-691),(3227,25,1441,-45),(3228,33,1441,-45),(3229,8,1441,-226),(3230,36,1441,-150),(3231,2,1441,-692),(3232,25,1442,-46),(3233,33,1442,-46),(3234,8,1442,-227),(3235,36,1442,-151),(3236,2,1442,-693),(3237,25,1443,-47),(3238,33,1443,-47),(3239,8,1443,-228),(3240,36,1443,-152),(3241,2,1443,-694),(3242,25,1444,-48),(3243,33,1444,-48),(3244,8,1444,-229),(3245,36,1444,-153),(3246,2,1444,-695),(3247,25,1445,-49),(3248,33,1445,-49),(3249,8,1445,-230),(3250,36,1445,-154),(3251,2,1445,-696),(3252,25,1446,-50),(3253,33,1446,-50),(3254,8,1446,-231),(3255,36,1446,-155),(3256,2,1446,-697),(3257,25,1447,-51),(3258,33,1447,-51),(3259,8,1447,-232),(3260,36,1447,-156),(3261,2,1447,-698),(3262,25,1448,-52),(3263,33,1448,-52),(3264,8,1448,-233),(3265,36,1448,-157),(3266,2,1448,-699),(3267,25,1449,-53),(3268,33,1449,-53),(3269,8,1449,-234),(3270,36,1449,-158),(3271,2,1449,-700),(3272,25,1450,-54),(3273,33,1450,-54),(3274,8,1450,-235),(3275,36,1450,-159),(3276,2,1450,-701),(3277,25,1451,-55),(3278,33,1451,-55),(3279,8,1451,-236),(3280,36,1451,-160),(3281,2,1451,-702),(3282,25,1452,-56),(3283,33,1452,-56),(3284,8,1452,-237),(3285,36,1452,-161),(3286,2,1452,-703),(3287,25,1453,-57),(3288,33,1453,-57),(3289,8,1453,-238),(3290,36,1453,-162),(3291,2,1453,-704),(3292,25,1454,-58),(3293,33,1454,-58),(3294,8,1454,-239),(3295,36,1454,-163),(3296,2,1454,-705),(3297,25,1455,-59),(3298,33,1455,-59),(3299,8,1455,-240),(3300,36,1455,-164),(3301,2,1455,-706),(3302,25,1456,-60),(3303,33,1456,-60),(3304,8,1456,-241),(3305,36,1456,-165),(3306,2,1456,-707),(3307,25,1457,-61),(3308,33,1457,-61),(3309,8,1457,-242),(3310,36,1457,-166),(3311,2,1457,-708),(3312,25,1458,-62),(3313,33,1458,-62),(3314,8,1458,-243),(3315,36,1458,-167),(3316,2,1458,-709),(3317,25,1459,-63),(3318,33,1459,-63),(3319,8,1459,-244),(3320,36,1459,-168),(3321,2,1459,-710),(3322,25,1460,-64),(3323,33,1460,-64),(3324,8,1460,-245),(3325,36,1460,-169),(3326,2,1460,-711),(3327,25,1461,-65),(3328,33,1461,-65),(3329,8,1461,-246),(3330,34,1461,-156),(3331,2,1461,-712),(3332,25,1462,-66),(3333,33,1462,-66),(3334,8,1462,-247),(3335,34,1462,-157),(3336,2,1462,-713),(3337,25,1463,-67),(3338,33,1463,-67),(3339,8,1463,-248),(3340,34,1463,-158),(3341,2,1463,-714),(3342,25,1464,-68),(3343,33,1464,-68),(3344,8,1464,-249),(3345,34,1464,-159),(3346,2,1464,-715),(3347,25,1465,-69),(3348,33,1465,-69),(3349,8,1465,-250),(3350,34,1465,-160),(3351,2,1465,-716),(3352,25,1466,-70),(3353,33,1466,-70),(3354,8,1466,-251),(3355,34,1466,-161),(3356,2,1466,-717),(3357,25,1467,-71),(3358,33,1467,-71),(3359,8,1467,-252),(3360,34,1467,-162),(3361,2,1467,-718),(3362,25,1468,-72),(3363,33,1468,-72),(3364,8,1468,-253),(3365,34,1468,-163),(3366,2,1468,-719),(3367,25,1469,-73),(3368,33,1469,-73),(3369,8,1469,-254),(3370,34,1469,-164),(3371,2,1469,-720),(3372,25,1470,-74),(3373,33,1470,-74),(3374,8,1470,-255),(3375,34,1470,-165),(3376,2,1470,-721),(3377,25,1471,-75),(3378,33,1471,-75),(3379,8,1471,-256),(3380,34,1471,-166),(3381,2,1471,-722),(3382,25,1472,-76),(3383,33,1472,-76),(3384,8,1472,-257),(3385,34,1472,-167),(3386,2,1472,-723),(3387,25,1473,-77),(3388,33,1473,-77),(3389,8,1473,-258),(3390,34,1473,-168),(3391,2,1473,-724),(3392,25,1474,-78),(3393,33,1474,-78),(3394,8,1474,-259),(3395,34,1474,-169),(3396,2,1474,-725),(3397,25,1475,-79),(3398,33,1475,-79),(3399,8,1475,-260),(3400,34,1475,-170),(3401,2,1475,-726),(3402,25,1476,-80),(3403,33,1476,-80),(3404,8,1476,-261),(3405,34,1476,-171),(3406,2,1476,-727),(3407,25,1477,-81),(3408,33,1477,-81),(3409,30,1477,-97),(3410,2,1477,-728),(3411,25,1478,-82),(3412,33,1478,-82),(3413,30,1478,-98),(3414,2,1478,-729),(3415,25,1479,-83),(3416,33,1479,-83),(3417,30,1479,-99),(3418,2,1479,-730),(3419,25,1480,-84),(3420,33,1480,-84),(3421,30,1480,-100),(3422,2,1480,-731),(3423,25,1481,-85),(3424,33,1481,-85),(3425,30,1481,-101),(3426,2,1481,-732),(3427,25,1482,-86),(3428,33,1482,-86),(3429,30,1482,-102),(3430,2,1482,-733),(3431,25,1483,-87),(3432,33,1483,-87),(3433,30,1483,-103),(3434,2,1483,-734),(3435,25,1484,-88),(3436,33,1484,-88),(3437,30,1484,-104),(3438,2,1484,-735),(3439,25,1485,-89),(3440,33,1485,-89),(3441,30,1485,-105),(3442,2,1485,-736),(3443,25,1486,-90),(3444,33,1486,-90),(3445,30,1486,-106),(3446,2,1486,-737),(3447,25,1487,-91),(3448,33,1487,-91),(3449,30,1487,-107),(3450,2,1487,-738),(3451,25,1488,-92),(3452,33,1488,-92),(3453,30,1488,-108),(3454,2,1488,-739),(3455,25,1489,-93),(3456,33,1489,-93),(3457,30,1489,-109),(3458,2,1489,-740),(3459,25,1490,-94),(3460,33,1490,-94),(3461,30,1490,-110),(3462,2,1490,-741),(3463,25,1491,-95),(3464,33,1491,-95),(3465,30,1491,-111),(3466,2,1491,-742),(3467,25,1492,-96),(3468,33,1492,-96),(3469,30,1492,-112),(3470,2,1492,-743),(3471,25,1493,-97),(3472,33,1493,-97),(3473,30,1493,-113),(3474,36,1493,-170),(3475,2,1493,-744),(3476,25,1494,-98),(3477,33,1494,-98),(3478,30,1494,-114),(3479,36,1494,-171),(3480,2,1494,-745),(3481,25,1495,-99),(3482,33,1495,-99),(3483,30,1495,-115),(3484,36,1495,-172),(3485,2,1495,-746),(3486,25,1496,-100),(3487,33,1496,-100),(3488,30,1496,-116),(3489,36,1496,-173),(3490,2,1496,-747),(3491,25,1497,-101),(3492,33,1497,-101),(3493,30,1497,-117),(3494,36,1497,-174),(3495,2,1497,-748),(3496,25,1498,-102),(3497,33,1498,-102),(3498,30,1498,-118),(3499,36,1498,-175),(3500,2,1498,-749),(3501,25,1499,-103),(3502,33,1499,-103),(3503,30,1499,-119),(3504,36,1499,-176),(3505,2,1499,-750),(3506,25,1500,-104),(3507,33,1500,-104),(3508,30,1500,-120),(3509,36,1500,-177),(3510,2,1500,-751),(3511,25,1501,-105),(3512,33,1501,-105),(3513,30,1501,-121),(3514,36,1501,-178),(3515,2,1501,-752),(3516,25,1502,-106),(3517,33,1502,-106),(3518,30,1502,-122),(3519,36,1502,-179),(3520,2,1502,-753),(3521,25,1503,-107),(3522,33,1503,-107),(3523,30,1503,-123),(3524,36,1503,-180),(3525,2,1503,-754),(3526,25,1504,-108),(3527,33,1504,-108),(3528,30,1504,-124),(3529,36,1504,-181),(3530,2,1504,-755),(3531,25,1505,-109),(3532,33,1505,-109),(3533,30,1505,-125),(3534,36,1505,-182),(3535,2,1505,-756),(3536,25,1506,-110),(3537,33,1506,-110),(3538,30,1506,-126),(3539,36,1506,-183),(3540,2,1506,-757),(3541,25,1507,-111),(3542,33,1507,-111),(3543,30,1507,-127),(3544,36,1507,-184),(3545,2,1507,-758),(3546,25,1508,-112),(3547,33,1508,-112),(3548,30,1508,-128),(3549,36,1508,-185),(3550,2,1508,-759),(3551,25,1509,-113),(3552,33,1509,-113),(3553,35,1509,-165),(3554,2,1509,-760),(3555,25,1510,-114),(3556,33,1510,-114),(3557,35,1510,-166),(3558,2,1510,-761),(3559,25,1511,-115),(3560,33,1511,-115),(3561,35,1511,-167),(3562,2,1511,-762),(3563,25,1512,-116),(3564,33,1512,-116),(3565,35,1512,-168),(3566,2,1512,-763),(3567,25,1513,-117),(3568,33,1513,-117),(3569,35,1513,-169),(3570,2,1513,-764),(3571,25,1514,-118),(3572,33,1514,-118),(3573,35,1514,-170),(3574,2,1514,-765),(3575,25,1515,-119),(3576,33,1515,-119),(3577,35,1515,-171),(3578,2,1515,-766),(3579,25,1516,-120),(3580,33,1516,-120),(3581,35,1516,-172),(3582,2,1516,-767),(3583,25,1517,-121),(3584,33,1517,-121),(3585,35,1517,-173),(3586,2,1517,-768),(3587,25,1518,-122),(3588,33,1518,-122),(3589,35,1518,-174),(3590,2,1518,-769),(3591,25,1519,-123),(3592,33,1519,-123),(3593,35,1519,-175),(3594,2,1519,-770),(3595,25,1520,-124),(3596,33,1520,-124),(3597,35,1520,-176),(3598,2,1520,-771),(3599,25,1521,-125),(3600,33,1521,-125),(3601,35,1521,-177),(3602,2,1521,-772),(3603,25,1522,-126),(3604,33,1522,-126),(3605,35,1522,-178),(3606,2,1522,-773),(3607,25,1523,-127),(3608,33,1523,-127),(3609,35,1523,-179),(3610,2,1523,-774),(3611,25,1524,-128),(3612,33,1524,-128),(3613,35,1524,-180),(3614,2,1524,-775),(3615,25,1525,-129),(3616,33,1525,-129),(3617,30,1525,-129),(3618,34,1525,-172),(3619,2,1525,-776),(3620,25,1526,-130),(3621,33,1526,-130),(3622,30,1526,-130),(3623,34,1526,-173),(3624,2,1526,-777),(3625,25,1527,-131),(3626,33,1527,-131),(3627,30,1527,-131),(3628,34,1527,-174),(3629,2,1527,-778),(3630,25,1528,-132),(3631,33,1528,-132),(3632,30,1528,-132),(3633,34,1528,-175),(3634,2,1528,-779),(3635,25,1529,-133),(3636,33,1529,-133),(3637,30,1529,-133),(3638,34,1529,-176),(3639,2,1529,-780),(3640,25,1530,-134),(3641,33,1530,-134),(3642,30,1530,-134),(3643,34,1530,-177),(3644,2,1530,-781),(3645,25,1531,-135),(3646,33,1531,-135),(3647,30,1531,-135),(3648,34,1531,-178),(3649,2,1531,-782),(3650,25,1532,-136),(3651,33,1532,-136),(3652,30,1532,-136),(3653,34,1532,-179),(3654,2,1532,-783),(3655,25,1533,-137),(3656,33,1533,-137),(3657,30,1533,-137),(3658,34,1533,-180),(3659,2,1533,-784),(3660,25,1534,-138),(3661,33,1534,-138),(3662,30,1534,-138),(3663,34,1534,-181),(3664,2,1534,-785),(3665,25,1535,-139),(3666,33,1535,-139),(3667,30,1535,-139),(3668,34,1535,-182),(3669,2,1535,-786),(3670,25,1536,-140),(3671,33,1536,-140),(3672,30,1536,-140),(3673,34,1536,-183),(3674,2,1536,-787),(3675,25,1537,-141),(3676,33,1537,-141),(3677,30,1537,-141),(3678,34,1537,-184),(3679,2,1537,-788),(3680,25,1538,-142),(3681,33,1538,-142),(3682,30,1538,-142),(3683,34,1538,-185),(3684,2,1538,-789),(3685,25,1539,-143),(3686,33,1539,-143),(3687,30,1539,-143),(3688,34,1539,-186),(3689,2,1539,-790),(3690,25,1540,-144),(3691,33,1540,-144),(3692,30,1540,-144),(3693,34,1540,-187),(3694,2,1540,-791),(3695,25,1541,-145),(3696,33,1541,-145),(3697,35,1541,-181),(3698,2,1541,-792),(3699,25,1542,-146),(3700,33,1542,-146),(3701,35,1542,-182),(3702,2,1542,-793),(3703,25,1543,-147),(3704,33,1543,-147),(3705,35,1543,-183),(3706,2,1543,-794),(3707,25,1544,-148),(3708,33,1544,-148),(3709,35,1544,-184),(3710,2,1544,-795),(3711,25,1545,-149),(3712,33,1545,-149),(3713,35,1545,-185),(3714,2,1545,-796),(3715,25,1546,-150),(3716,33,1546,-150),(3717,35,1546,-186),(3718,2,1546,-797),(3719,25,1547,-151),(3720,33,1547,-151),(3721,35,1547,-187),(3722,2,1547,-798),(3723,25,1548,-152),(3724,33,1548,-152),(3725,35,1548,-188),(3726,2,1548,-799),(3727,25,1549,-153),(3728,33,1549,-153),(3729,35,1549,-189),(3730,2,1549,-800),(3731,25,1550,-154),(3732,33,1550,-154),(3733,35,1550,-190),(3734,2,1550,-801),(3735,25,1551,-155),(3736,33,1551,-155),(3737,35,1551,-191),(3738,2,1551,-802),(3739,25,1552,-156),(3740,33,1552,-156),(3741,35,1552,-192),(3742,2,1552,-803),(3743,25,1553,-157),(3744,33,1553,-157),(3745,35,1553,-193),(3746,2,1553,-804),(3747,25,1554,-158),(3748,33,1554,-158),(3749,35,1554,-194),(3750,2,1554,-805),(3751,25,1555,-159),(3752,33,1555,-159),(3753,35,1555,-195),(3754,2,1555,-806),(3755,25,1556,-160),(3756,33,1556,-160),(3757,35,1556,-196),(3758,2,1556,-807),(3759,25,1557,-161),(3760,33,1557,-161),(3761,2,1557,-808),(3762,25,1558,-162),(3763,33,1558,-162),(3764,2,1558,-809),(3765,25,1559,-163),(3766,33,1559,-163),(3767,2,1559,-810),(3768,25,1560,-164),(3769,33,1560,-164),(3770,2,1560,-811),(3771,25,1561,-165),(3772,33,1561,-165),(3773,2,1561,-812),(3774,25,1562,-166),(3775,33,1562,-166),(3776,2,1562,-813),(3777,25,1563,-167),(3778,33,1563,-167),(3779,2,1563,-814),(3780,25,1564,-168),(3781,33,1564,-168),(3782,2,1564,-815),(3783,25,1565,-169),(3784,33,1565,-169),(3785,2,1565,-816),(3786,25,1566,-170),(3787,33,1566,-170),(3788,2,1566,-817),(3789,25,1567,-171),(3790,33,1567,-171),(3791,2,1567,-818),(3792,25,1568,-172),(3793,33,1568,-172),(3794,2,1568,-819),(3795,25,1569,-173),(3796,33,1569,-173),(3797,2,1569,-820),(3798,25,1570,-174),(3799,33,1570,-174),(3800,2,1570,-821),(3801,25,1571,-175),(3802,33,1571,-175),(3803,2,1571,-822),(3804,25,1572,-176),(3805,33,1572,-176),(3806,2,1572,-823),(3807,25,1573,-177),(3808,33,1573,-177),(3809,2,1573,-824),(3810,25,1574,-178),(3811,33,1574,-178),(3812,2,1574,-825),(3813,25,1575,-179),(3814,33,1575,-179),(3815,2,1575,-826),(3816,25,1576,-180),(3817,33,1576,-180),(3818,2,1576,-827),(3819,25,1577,-181),(3820,33,1577,-181),(3821,2,1577,-828),(3822,25,1578,-182),(3823,33,1578,-182),(3824,2,1578,-829),(3825,25,1579,-183),(3826,33,1579,-183),(3827,2,1579,-830),(3828,25,1580,-184),(3829,33,1580,-184),(3830,2,1580,-831),(3831,25,1581,-185),(3832,33,1581,-185),(3833,2,1581,-832),(3834,25,1582,-186),(3835,33,1582,-186),(3836,2,1582,-833),(3837,25,1583,-187),(3838,33,1583,-187),(3839,2,1583,-834),(3840,25,1584,-188),(3841,33,1584,-188),(3842,2,1584,-835),(3843,25,1585,-189),(3844,33,1585,-189),(3845,2,1585,-836),(3846,25,1586,-190),(3847,33,1586,-190),(3848,2,1586,-837),(3849,25,1587,-191),(3850,33,1587,-191),(3851,2,1587,-838),(3852,25,1588,-192),(3853,33,1588,-192),(3854,2,1588,-839),(3855,26,1589,-1),(3856,30,1589,-145),(3857,36,1589,-186),(3858,2,1589,-840),(3859,26,1590,-2),(3860,30,1590,-146),(3861,36,1590,-187),(3862,2,1590,-841),(3863,26,1591,-3),(3864,30,1591,-147),(3865,36,1591,-188),(3866,2,1591,-842),(3867,26,1592,-4),(3868,30,1592,-148),(3869,36,1592,-189),(3870,2,1592,-843),(3871,26,1593,-5),(3872,30,1593,-149),(3873,36,1593,-190),(3874,2,1593,-844),(3875,26,1594,-6),(3876,30,1594,-150),(3877,36,1594,-191),(3878,2,1594,-845),(3879,26,1595,-7),(3880,30,1595,-151),(3881,36,1595,-192),(3882,2,1595,-846),(3883,26,1596,-8),(3884,30,1596,-152),(3885,36,1596,-193),(3886,2,1596,-847),(3887,26,1597,-9),(3888,30,1597,-153),(3889,36,1597,-194),(3890,2,1597,-848),(3891,26,1598,-10),(3892,30,1598,-154),(3893,36,1598,-195),(3894,2,1598,-849),(3895,26,1599,-11),(3896,30,1599,-155),(3897,36,1599,-196),(3898,2,1599,-850),(3899,26,1600,-12),(3900,30,1600,-156),(3901,36,1600,-197),(3902,2,1600,-851),(3903,26,1601,-13),(3904,30,1601,-157),(3905,36,1601,-198),(3906,2,1601,-852),(3907,26,1602,-14),(3908,30,1602,-158),(3909,36,1602,-199),(3910,2,1602,-853),(3911,26,1603,-15),(3912,30,1603,-159),(3913,36,1603,-200),(3914,2,1603,-854),(3915,26,1604,-16),(3916,30,1604,-160),(3917,36,1604,-201),(3918,2,1604,-855),(3919,26,1605,-17),(3920,26,1606,-18),(3921,26,1607,-19),(3922,26,1608,-20),(3923,26,1609,-21),(3924,26,1610,-22),(3925,26,1611,-23),(3926,26,1612,-24),(3927,26,1613,-25),(3928,26,1614,-26),(3929,26,1615,-27),(3930,26,1616,-28),(3931,26,1617,-29),(3932,26,1618,-30),(3933,26,1619,-31),(3934,26,1620,-32),(3935,26,1621,-33),(3936,8,1621,-262),(3937,35,1621,-197),(3938,2,1621,-856),(3939,26,1622,-34),(3940,8,1622,-263),(3941,35,1622,-198),(3942,2,1622,-857),(3943,26,1623,-35),(3944,8,1623,-264),(3945,35,1623,-199),(3946,2,1623,-858),(3947,26,1624,-36),(3948,8,1624,-265),(3949,35,1624,-200),(3950,2,1624,-859),(3951,26,1625,-37),(3952,8,1625,-266),(3953,35,1625,-201),(3954,2,1625,-860),(3955,26,1626,-38),(3956,8,1626,-267),(3957,35,1626,-202),(3958,2,1626,-861),(3959,26,1627,-39),(3960,8,1627,-268),(3961,35,1627,-203),(3962,2,1627,-862),(3963,26,1628,-40),(3964,8,1628,-269),(3965,35,1628,-204),(3966,2,1628,-863),(3967,26,1629,-41),(3968,8,1629,-270),(3969,35,1629,-205),(3970,2,1629,-864),(3971,26,1630,-42),(3972,8,1630,-271),(3973,35,1630,-206),(3974,2,1630,-865),(3975,26,1631,-43),(3976,8,1631,-272),(3977,35,1631,-207),(3978,2,1631,-866),(3979,26,1632,-44),(3980,8,1632,-273),(3981,35,1632,-208),(3982,2,1632,-867),(3983,26,1633,-45),(3984,8,1633,-274),(3985,35,1633,-209),(3986,2,1633,-868),(3987,26,1634,-46),(3988,8,1634,-275),(3989,35,1634,-210),(3990,2,1634,-869),(3991,26,1635,-47),(3992,8,1635,-276),(3993,35,1635,-211),(3994,2,1635,-870),(3995,26,1636,-48),(3996,8,1636,-277),(3997,35,1636,-212),(3998,2,1636,-871),(3999,26,1637,-49),(4000,26,1638,-50),(4001,26,1639,-51),(4002,26,1640,-52),(4003,26,1641,-53),(4004,26,1642,-54),(4005,26,1643,-55),(4006,26,1644,-56),(4007,26,1645,-57),(4008,26,1646,-58),(4009,26,1647,-59),(4010,26,1648,-60),(4011,26,1649,-61),(4012,26,1650,-62),(4013,26,1651,-63),(4014,26,1652,-64),(4015,26,1653,-65),(4016,26,1654,-66),(4017,26,1655,-67),(4018,26,1656,-68),(4019,26,1657,-69),(4020,26,1658,-70),(4021,26,1659,-71),(4022,26,1660,-72),(4023,26,1661,-73),(4024,26,1662,-74),(4025,26,1663,-75),(4026,26,1664,-76),(4027,26,1665,-77),(4028,26,1666,-78),(4029,26,1667,-79),(4030,26,1668,-80),(4031,26,1669,-81),(4032,36,1669,-202),(4033,2,1669,-872),(4034,26,1670,-82),(4035,36,1670,-203),(4036,2,1670,-873),(4037,26,1671,-83),(4038,36,1671,-204),(4039,2,1671,-874),(4040,26,1672,-84),(4041,36,1672,-205),(4042,2,1672,-875),(4043,26,1673,-85),(4044,36,1673,-206),(4045,2,1673,-876),(4046,26,1674,-86),(4047,36,1674,-207),(4048,2,1674,-877),(4049,26,1675,-87),(4050,36,1675,-208),(4051,2,1675,-878),(4052,26,1676,-88),(4053,36,1676,-209),(4054,2,1676,-879),(4055,26,1677,-89),(4056,36,1677,-210),(4057,2,1677,-880),(4058,26,1678,-90),(4059,36,1678,-211),(4060,2,1678,-881),(4061,26,1679,-91),(4062,36,1679,-212),(4063,2,1679,-882),(4064,26,1680,-92),(4065,36,1680,-213),(4066,2,1680,-883),(4067,26,1681,-93),(4068,36,1681,-214),(4069,2,1681,-884),(4070,26,1682,-94),(4071,36,1682,-215),(4072,2,1682,-885),(4073,26,1683,-95),(4074,36,1683,-216),(4075,2,1683,-886),(4076,26,1684,-96),(4077,36,1684,-217),(4078,2,1684,-887),(4079,26,1685,-97),(4080,26,1686,-98),(4081,26,1687,-99),(4082,26,1688,-100),(4083,26,1689,-101),(4084,26,1690,-102),(4085,26,1691,-103),(4086,26,1692,-104),(4087,26,1693,-105),(4088,26,1694,-106),(4089,26,1695,-107),(4090,26,1696,-108),(4091,26,1697,-109),(4092,26,1698,-110),(4093,26,1699,-111),(4094,26,1700,-112),(4095,26,1701,-113),(4096,8,1701,-278),(4097,34,1701,-188),(4098,2,1701,-888),(4099,26,1702,-114),(4100,8,1702,-279),(4101,34,1702,-189),(4102,2,1702,-889),(4103,26,1703,-115),(4104,8,1703,-280),(4105,34,1703,-190),(4106,2,1703,-890),(4107,26,1704,-116),(4108,8,1704,-281),(4109,34,1704,-191),(4110,2,1704,-891),(4111,26,1705,-117),(4112,8,1705,-282),(4113,34,1705,-192),(4114,2,1705,-892),(4115,26,1706,-118),(4116,8,1706,-283),(4117,34,1706,-193),(4118,2,1706,-893),(4119,26,1707,-119),(4120,8,1707,-284),(4121,34,1707,-194),(4122,2,1707,-894),(4123,26,1708,-120),(4124,8,1708,-285),(4125,34,1708,-195),(4126,2,1708,-895),(4127,26,1709,-121),(4128,8,1709,-286),(4129,34,1709,-196),(4130,2,1709,-896),(4131,26,1710,-122),(4132,8,1710,-287),(4133,34,1710,-197),(4134,2,1710,-897),(4135,26,1711,-123),(4136,8,1711,-288),(4137,34,1711,-198),(4138,2,1711,-898),(4139,26,1712,-124),(4140,8,1712,-289),(4141,34,1712,-199),(4142,2,1712,-899),(4143,26,1713,-125),(4144,8,1713,-290),(4145,34,1713,-200),(4146,2,1713,-900),(4147,26,1714,-126),(4148,8,1714,-291),(4149,34,1714,-201),(4150,2,1714,-901),(4151,26,1715,-127),(4152,8,1715,-292),(4153,34,1715,-202),(4154,2,1715,-902),(4155,26,1716,-128),(4156,8,1716,-293),(4157,34,1716,-203),(4158,2,1716,-903),(4159,26,1717,-129),(4160,35,1717,-213),(4161,2,1717,-904),(4162,26,1718,-130),(4163,35,1718,-214),(4164,2,1718,-905),(4165,26,1719,-131),(4166,35,1719,-215),(4167,2,1719,-906),(4168,26,1720,-132),(4169,35,1720,-216),(4170,2,1720,-907),(4171,26,1721,-133),(4172,35,1721,-217),(4173,2,1721,-908),(4174,26,1722,-134),(4175,35,1722,-218),(4176,2,1722,-909),(4177,26,1723,-135),(4178,35,1723,-219),(4179,2,1723,-910),(4180,26,1724,-136),(4181,35,1724,-220),(4182,2,1724,-911),(4183,26,1725,-137),(4184,35,1725,-221),(4185,2,1725,-912),(4186,26,1726,-138),(4187,35,1726,-222),(4188,2,1726,-913),(4189,26,1727,-139),(4190,35,1727,-223),(4191,2,1727,-914),(4192,26,1728,-140),(4193,35,1728,-224),(4194,2,1728,-915),(4195,26,1729,-141),(4196,35,1729,-225),(4197,2,1729,-916),(4198,26,1730,-142),(4199,35,1730,-226),(4200,2,1730,-917),(4201,26,1731,-143),(4202,35,1731,-227),(4203,2,1731,-918),(4204,26,1732,-144),(4205,35,1732,-228),(4206,2,1732,-919),(4207,26,1733,-145),(4208,34,1733,-204),(4209,2,1733,-920),(4210,26,1734,-146),(4211,34,1734,-205),(4212,2,1734,-921),(4213,26,1735,-147),(4214,34,1735,-206),(4215,2,1735,-922),(4216,26,1736,-148),(4217,34,1736,-207),(4218,2,1736,-923),(4219,26,1737,-149),(4220,34,1737,-208),(4221,2,1737,-924),(4222,26,1738,-150),(4223,34,1738,-209),(4224,2,1738,-925),(4225,26,1739,-151),(4226,34,1739,-210),(4227,2,1739,-926),(4228,26,1740,-152),(4229,34,1740,-211),(4230,2,1740,-927),(4231,26,1741,-153),(4232,34,1741,-212),(4233,2,1741,-928),(4234,26,1742,-154),(4235,34,1742,-213),(4236,2,1742,-929),(4237,26,1743,-155),(4238,34,1743,-214),(4239,2,1743,-930),(4240,26,1744,-156),(4241,34,1744,-215),(4242,2,1744,-931),(4243,26,1745,-157),(4244,34,1745,-216),(4245,2,1745,-932),(4246,26,1746,-158),(4247,34,1746,-217),(4248,2,1746,-933),(4249,26,1747,-159),(4250,34,1747,-218),(4251,2,1747,-934),(4252,26,1748,-160),(4253,34,1748,-219),(4254,2,1748,-935),(4255,26,1749,-161),(4256,26,1750,-162),(4257,26,1751,-163),(4258,26,1752,-164),(4259,26,1753,-165),(4260,26,1754,-166),(4261,26,1755,-167),(4262,26,1756,-168),(4263,26,1757,-169),(4264,26,1758,-170),(4265,26,1759,-171),(4266,26,1760,-172),(4267,26,1761,-173),(4268,26,1762,-174),(4269,26,1763,-175),(4270,26,1764,-176),(4271,26,1765,-177),(4272,35,1765,-229),(4273,2,1765,-936),(4274,26,1766,-178),(4275,35,1766,-230),(4276,2,1766,-937),(4277,26,1767,-179),(4278,35,1767,-231),(4279,2,1767,-938),(4280,26,1768,-180),(4281,35,1768,-232),(4282,2,1768,-939),(4283,26,1769,-181),(4284,35,1769,-233),(4285,2,1769,-940),(4286,26,1770,-182),(4287,35,1770,-234),(4288,2,1770,-941),(4289,26,1771,-183),(4290,35,1771,-235),(4291,2,1771,-942),(4292,26,1772,-184),(4293,35,1772,-236),(4294,2,1772,-943),(4295,26,1773,-185),(4296,35,1773,-237),(4297,2,1773,-944),(4298,26,1774,-186),(4299,35,1774,-238),(4300,2,1774,-945),(4301,26,1775,-187),(4302,35,1775,-239),(4303,2,1775,-946),(4304,26,1776,-188),(4305,35,1776,-240),(4306,2,1776,-947),(4307,26,1777,-189),(4308,35,1777,-241),(4309,2,1777,-948),(4310,26,1778,-190),(4311,35,1778,-242),(4312,2,1778,-949),(4313,26,1779,-191),(4314,35,1779,-243),(4315,2,1779,-950),(4316,26,1780,-192),(4317,35,1780,-244),(4318,2,1780,-951),(4319,26,1781,-193),(4320,30,1781,-161),(4321,35,1781,-245),(4322,2,1781,-952),(4323,26,1782,-194),(4324,30,1782,-162),(4325,35,1782,-246),(4326,2,1782,-953),(4327,26,1783,-195),(4328,30,1783,-163),(4329,35,1783,-247),(4330,2,1783,-954),(4331,26,1784,-196),(4332,30,1784,-164),(4333,35,1784,-248),(4334,2,1784,-955),(4335,26,1785,-197),(4336,30,1785,-165),(4337,35,1785,-249),(4338,2,1785,-956),(4339,26,1786,-198),(4340,30,1786,-166),(4341,35,1786,-250),(4342,2,1786,-957),(4343,26,1787,-199),(4344,30,1787,-167),(4345,35,1787,-251),(4346,2,1787,-958),(4347,26,1788,-200),(4348,30,1788,-168),(4349,35,1788,-252),(4350,2,1788,-959),(4351,26,1789,-201),(4352,30,1789,-169),(4353,35,1789,-253),(4354,2,1789,-960),(4355,26,1790,-202),(4356,30,1790,-170),(4357,35,1790,-254),(4358,2,1790,-961),(4359,26,1791,-203),(4360,30,1791,-171),(4361,35,1791,-255),(4362,2,1791,-962),(4363,26,1792,-204),(4364,30,1792,-172),(4365,35,1792,-256),(4366,2,1792,-963),(4367,26,1793,-205),(4368,30,1793,-173),(4369,35,1793,-257),(4370,2,1793,-964),(4371,26,1794,-206),(4372,30,1794,-174),(4373,35,1794,-258),(4374,2,1794,-965),(4375,26,1795,-207),(4376,30,1795,-175),(4377,35,1795,-259),(4378,2,1795,-966),(4379,26,1796,-208),(4380,30,1796,-176),(4381,35,1796,-260),(4382,2,1796,-967),(4383,26,1797,-209),(4384,30,1797,-177),(4385,34,1797,-220),(4386,2,1797,-968),(4387,26,1798,-210),(4388,30,1798,-178),(4389,34,1798,-221),(4390,2,1798,-969),(4391,26,1799,-211),(4392,30,1799,-179),(4393,34,1799,-222),(4394,2,1799,-970),(4395,26,1800,-212),(4396,30,1800,-180),(4397,34,1800,-223),(4398,2,1800,-971),(4399,26,1801,-213),(4400,30,1801,-181),(4401,34,1801,-224),(4402,2,1801,-972),(4403,26,1802,-214),(4404,30,1802,-182),(4405,34,1802,-225),(4406,2,1802,-973),(4407,26,1803,-215),(4408,30,1803,-183),(4409,34,1803,-226),(4410,2,1803,-974),(4411,26,1804,-216),(4412,30,1804,-184),(4413,34,1804,-227),(4414,2,1804,-975),(4415,26,1805,-217),(4416,30,1805,-185),(4417,34,1805,-228),(4418,2,1805,-976),(4419,26,1806,-218),(4420,30,1806,-186),(4421,34,1806,-229),(4422,2,1806,-977),(4423,26,1807,-219),(4424,30,1807,-187),(4425,34,1807,-230),(4426,2,1807,-978),(4427,26,1808,-220),(4428,30,1808,-188),(4429,34,1808,-231),(4430,2,1808,-979),(4431,26,1809,-221),(4432,30,1809,-189),(4433,34,1809,-232),(4434,2,1809,-980),(4435,26,1810,-222),(4436,30,1810,-190),(4437,34,1810,-233),(4438,2,1810,-981),(4439,26,1811,-223),(4440,30,1811,-191),(4441,34,1811,-234),(4442,2,1811,-982),(4443,26,1812,-224),(4444,30,1812,-192),(4445,34,1812,-235),(4446,2,1812,-983),(4447,27,1813,-1),(4448,32,1813,-157),(4449,35,1813,-261),(4450,2,1813,-984),(4451,27,1814,-2),(4452,32,1814,-158),(4453,35,1814,-262),(4454,2,1814,-985),(4455,27,1815,-3),(4456,32,1815,-159),(4457,35,1815,-263),(4458,2,1815,-986),(4459,27,1816,-4),(4460,32,1816,-160),(4461,35,1816,-264),(4462,2,1816,-987),(4463,27,1817,-5),(4464,32,1817,-161),(4465,35,1817,-265),(4466,2,1817,-988),(4467,27,1818,-6),(4468,32,1818,-162),(4469,35,1818,-266),(4470,2,1818,-989),(4471,27,1819,-7),(4472,32,1819,-163),(4473,35,1819,-267),(4474,2,1819,-990),(4475,27,1820,-8),(4476,32,1820,-164),(4477,35,1820,-268),(4478,2,1820,-991),(4479,27,1821,-9),(4480,32,1821,-165),(4481,35,1821,-269),(4482,2,1821,-992),(4483,27,1822,-10),(4484,32,1822,-166),(4485,35,1822,-270),(4486,2,1822,-993),(4487,27,1823,-11),(4488,32,1823,-167),(4489,35,1823,-271),(4490,2,1823,-994),(4491,27,1824,-12),(4492,32,1824,-168),(4493,35,1824,-272),(4494,2,1824,-995),(4495,27,1825,-13),(4496,32,1825,-169),(4497,35,1825,-273),(4498,2,1825,-996),(4499,27,1826,-14),(4500,32,1826,-170),(4501,35,1826,-274),(4502,2,1826,-997),(4503,27,1827,-15),(4504,32,1827,-171),(4505,8,1827,-294),(4506,2,1827,-998),(4507,27,1828,-16),(4508,32,1828,-172),(4509,8,1828,-295),(4510,2,1828,-999),(4511,27,1829,-17),(4512,32,1829,-173),(4513,8,1829,-296),(4514,2,1829,-1000),(4515,27,1830,-18),(4516,32,1830,-174),(4517,8,1830,-297),(4518,2,1830,-1001),(4519,27,1831,-19),(4520,32,1831,-175),(4521,8,1831,-298),(4522,2,1831,-1002),(4523,27,1832,-20),(4524,32,1832,-176),(4525,8,1832,-299),(4526,2,1832,-1003),(4527,27,1833,-21),(4528,32,1833,-177),(4529,8,1833,-300),(4530,2,1833,-1004),(4531,27,1834,-22),(4532,32,1834,-178),(4533,2,1834,-1005),(4534,27,1835,-23),(4535,32,1835,-179),(4536,2,1835,-1006),(4537,27,1836,-24),(4538,32,1836,-180),(4539,2,1836,-1007),(4540,27,1837,-25),(4541,32,1837,-181),(4542,2,1837,-1008),(4543,27,1838,-26),(4544,32,1838,-182),(4545,2,1838,-1009),(4546,27,1839,-27),(4547,32,1839,-183),(4548,2,1839,-1010),(4549,27,1840,-28),(4550,32,1840,-184),(4551,2,1840,-1011),(4552,27,1841,-29),(4553,32,1841,-185),(4554,34,1841,-236),(4555,2,1841,-1012),(4556,27,1842,-30),(4557,32,1842,-186),(4558,34,1842,-237),(4559,2,1842,-1013),(4560,27,1843,-31),(4561,32,1843,-187),(4562,34,1843,-238),(4563,2,1843,-1014),(4564,27,1844,-32),(4565,32,1844,-188),(4566,34,1844,-239),(4567,2,1844,-1015),(4568,27,1845,-33),(4569,32,1845,-189),(4570,34,1845,-240),(4571,2,1845,-1016),(4572,27,1846,-34),(4573,32,1846,-190),(4574,34,1846,-241),(4575,2,1846,-1017),(4576,27,1847,-35),(4577,32,1847,-191),(4578,34,1847,-242),(4579,2,1847,-1018),(4580,27,1848,-36),(4581,32,1848,-192),(4582,34,1848,-243),(4583,2,1848,-1019),(4584,27,1849,-37),(4585,32,1849,-193),(4586,34,1849,-244),(4587,2,1849,-1020),(4588,27,1850,-38),(4589,32,1850,-194),(4590,34,1850,-245),(4591,2,1850,-1021),(4592,27,1851,-39),(4593,32,1851,-195),(4594,34,1851,-246),(4595,2,1851,-1022),(4596,27,1852,-40),(4597,32,1852,-196),(4598,34,1852,-247),(4599,2,1852,-1023),(4600,27,1853,-41),(4601,32,1853,-197),(4602,34,1853,-248),(4603,2,1853,-1024),(4604,27,1854,-42),(4605,32,1854,-198),(4606,34,1854,-249),(4607,2,1854,-1025),(4608,27,1855,-43),(4609,32,1855,-199),(4610,35,1855,-275),(4611,2,1855,-1026),(4612,27,1856,-44),(4613,32,1856,-200),(4614,35,1856,-276),(4615,2,1856,-1027),(4616,27,1857,-45),(4617,32,1857,-201),(4618,35,1857,-277),(4619,2,1857,-1028),(4620,27,1858,-46),(4621,32,1858,-202),(4622,35,1858,-278),(4623,2,1858,-1029),(4624,27,1859,-47),(4625,32,1859,-203),(4626,35,1859,-279),(4627,2,1859,-1030),(4628,27,1860,-48),(4629,32,1860,-204),(4630,35,1860,-280),(4631,2,1860,-1031),(4632,27,1861,-49),(4633,32,1861,-205),(4634,35,1861,-281),(4635,2,1861,-1032),(4636,27,1862,-50),(4637,32,1862,-206),(4638,2,1862,-1033),(4639,27,1863,-51),(4640,32,1863,-207),(4641,2,1863,-1034),(4642,27,1864,-52),(4643,32,1864,-208),(4644,2,1864,-1035),(4645,27,1865,-53),(4646,32,1865,-209),(4647,2,1865,-1036),(4648,27,1866,-54),(4649,32,1866,-210),(4650,2,1866,-1037),(4651,27,1867,-55),(4652,32,1867,-211),(4653,2,1867,-1038),(4654,27,1868,-56),(4655,32,1868,-212),(4656,2,1868,-1039),(4657,27,1869,-57),(4658,32,1869,-213),(4659,2,1869,-1040),(4660,27,1870,-58),(4661,32,1870,-214),(4662,2,1870,-1041),(4663,27,1871,-59),(4664,32,1871,-215),(4665,2,1871,-1042),(4666,27,1872,-60),(4667,32,1872,-216),(4668,2,1872,-1043),(4669,27,1873,-61),(4670,32,1873,-217),(4671,2,1873,-1044),(4672,27,1874,-62),(4673,32,1874,-218),(4674,2,1874,-1045),(4675,27,1875,-63),(4676,32,1875,-219),(4677,2,1875,-1046),(4678,27,1876,-64),(4679,32,1876,-220),(4680,36,1876,-218),(4681,2,1876,-1047),(4682,27,1877,-65),(4683,32,1877,-221),(4684,36,1877,-219),(4685,2,1877,-1048),(4686,27,1878,-66),(4687,32,1878,-222),(4688,36,1878,-220),(4689,2,1878,-1049),(4690,27,1879,-67),(4691,32,1879,-223),(4692,36,1879,-221),(4693,2,1879,-1050),(4694,27,1880,-68),(4695,32,1880,-224),(4696,36,1880,-222),(4697,2,1880,-1051),(4698,27,1881,-69),(4699,32,1881,-225),(4700,36,1881,-223),(4701,2,1881,-1052),(4702,27,1882,-70),(4703,32,1882,-226),(4704,36,1882,-224),(4705,2,1882,-1053),(4706,27,1883,-71),(4707,32,1883,-227),(4708,2,1883,-1054),(4709,27,1884,-72),(4710,32,1884,-228),(4711,2,1884,-1055),(4712,27,1885,-73),(4713,32,1885,-229),(4714,2,1885,-1056),(4715,27,1886,-74),(4716,32,1886,-230),(4717,2,1886,-1057),(4718,27,1887,-75),(4719,32,1887,-231),(4720,2,1887,-1058),(4721,27,1888,-76),(4722,32,1888,-232),(4723,2,1888,-1059),(4724,27,1889,-77),(4725,32,1889,-233),(4726,2,1889,-1060),(4727,27,1890,-78),(4728,32,1890,-234),(4729,35,1890,-282),(4730,2,1890,-1061),(4731,27,1891,-79),(4732,32,1891,-235),(4733,35,1891,-283),(4734,2,1891,-1062),(4735,27,1892,-80),(4736,32,1892,-236),(4737,35,1892,-284),(4738,2,1892,-1063),(4739,27,1893,-81),(4740,32,1893,-237),(4741,35,1893,-285),(4742,2,1893,-1064),(4743,27,1894,-82),(4744,32,1894,-238),(4745,35,1894,-286),(4746,2,1894,-1065),(4747,27,1895,-83),(4748,32,1895,-239),(4749,35,1895,-287),(4750,2,1895,-1066),(4751,27,1896,-84),(4752,32,1896,-240),(4753,35,1896,-288),(4754,2,1896,-1067),(4755,27,1897,-85),(4756,32,1897,-241),(4757,34,1897,-250),(4758,2,1897,-1068),(4759,27,1898,-86),(4760,32,1898,-242),(4761,34,1898,-251),(4762,2,1898,-1069),(4763,27,1899,-87),(4764,32,1899,-243),(4765,34,1899,-252),(4766,2,1899,-1070),(4767,27,1900,-88),(4768,32,1900,-244),(4769,34,1900,-253),(4770,2,1900,-1071),(4771,27,1901,-89),(4772,32,1901,-245),(4773,34,1901,-254),(4774,2,1901,-1072),(4775,27,1902,-90),(4776,32,1902,-246),(4777,34,1902,-255),(4778,2,1902,-1073),(4779,27,1903,-91),(4780,32,1903,-247),(4781,34,1903,-256),(4782,2,1903,-1074),(4783,28,1904,-1),(4784,8,1904,-301),(4785,36,1904,-225),(4786,2,1904,-1075),(4787,28,1905,-2),(4788,8,1905,-302),(4789,36,1905,-226),(4790,2,1905,-1076),(4791,28,1906,-3),(4792,8,1906,-303),(4793,36,1906,-227),(4794,2,1906,-1077),(4795,28,1907,-4),(4796,8,1907,-304),(4797,36,1907,-228),(4798,2,1907,-1078),(4799,28,1908,-5),(4800,8,1908,-305),(4801,36,1908,-229),(4802,2,1908,-1079),(4803,28,1909,-6),(4804,8,1909,-306),(4805,36,1909,-230),(4806,2,1909,-1080),(4807,28,1910,-7),(4808,8,1910,-307),(4809,36,1910,-231),(4810,2,1910,-1081),(4811,28,1911,-8),(4812,8,1911,-308),(4813,36,1911,-232),(4814,2,1911,-1082),(4815,28,1912,-9),(4816,8,1912,-309),(4817,36,1912,-233),(4818,2,1912,-1083),(4819,28,1913,-10),(4820,8,1913,-310),(4821,36,1913,-234),(4822,2,1913,-1084),(4823,28,1914,-11),(4824,8,1914,-311),(4825,36,1914,-235),(4826,2,1914,-1085),(4827,28,1915,-12),(4828,8,1915,-312),(4829,36,1915,-236),(4830,2,1915,-1086),(4831,28,1916,-13),(4832,8,1916,-313),(4833,36,1916,-237),(4834,2,1916,-1087),(4835,28,1917,-14),(4836,8,1917,-314),(4837,36,1917,-238),(4838,2,1917,-1088),(4839,28,1918,-15),(4840,8,1918,-315),(4841,36,1918,-239),(4842,2,1918,-1089),(4843,28,1919,-16),(4844,8,1919,-316),(4845,36,1919,-240),(4846,2,1919,-1090),(4847,28,1920,-17),(4848,30,1920,-193),(4849,2,1920,-1091),(4850,28,1921,-18),(4851,30,1921,-194),(4852,2,1921,-1092),(4853,28,1922,-19),(4854,30,1922,-195),(4855,2,1922,-1093),(4856,28,1923,-20),(4857,30,1923,-196),(4858,2,1923,-1094),(4859,28,1924,-21),(4860,30,1924,-197),(4861,2,1924,-1095),(4862,28,1925,-22),(4863,30,1925,-198),(4864,2,1925,-1096),(4865,28,1926,-23),(4866,30,1926,-199),(4867,2,1926,-1097),(4868,28,1927,-24),(4869,30,1927,-200),(4870,2,1927,-1098),(4871,28,1928,-25),(4872,30,1928,-201),(4873,2,1928,-1099),(4874,28,1929,-26),(4875,30,1929,-202),(4876,2,1929,-1100),(4877,28,1930,-27),(4878,30,1930,-203),(4879,2,1930,-1101),(4880,28,1931,-28),(4881,30,1931,-204),(4882,2,1931,-1102),(4883,28,1932,-29),(4884,30,1932,-205),(4885,2,1932,-1103),(4886,28,1933,-30),(4887,30,1933,-206),(4888,2,1933,-1104),(4889,28,1934,-31),(4890,30,1934,-207),(4891,2,1934,-1105),(4892,28,1935,-32),(4893,30,1935,-208),(4894,2,1935,-1106),(4895,28,1936,-33),(4896,8,1936,-317),(4897,35,1936,-289),(4898,2,1936,-1107),(4899,28,1937,-34),(4900,8,1937,-318),(4901,35,1937,-290),(4902,2,1937,-1108),(4903,28,1938,-35),(4904,8,1938,-319),(4905,35,1938,-291),(4906,2,1938,-1109),(4907,28,1939,-36),(4908,8,1939,-320),(4909,35,1939,-292),(4910,2,1939,-1110),(4911,28,1940,-37),(4912,8,1940,-321),(4913,35,1940,-293),(4914,2,1940,-1111),(4915,28,1941,-38),(4916,8,1941,-322),(4917,35,1941,-294),(4918,2,1941,-1112),(4919,28,1942,-39),(4920,8,1942,-323),(4921,35,1942,-295),(4922,2,1942,-1113),(4923,28,1943,-40),(4924,8,1943,-324),(4925,35,1943,-296),(4926,2,1943,-1114),(4927,28,1944,-41),(4928,8,1944,-325),(4929,35,1944,-297),(4930,2,1944,-1115),(4931,28,1945,-42),(4932,8,1945,-326),(4933,35,1945,-298),(4934,2,1945,-1116),(4935,28,1946,-43),(4936,8,1946,-327),(4937,35,1946,-299),(4938,2,1946,-1117),(4939,28,1947,-44),(4940,8,1947,-328),(4941,35,1947,-300),(4942,2,1947,-1118),(4943,28,1948,-45),(4944,8,1948,-329),(4945,35,1948,-301),(4946,2,1948,-1119),(4947,28,1949,-46),(4948,8,1949,-330),(4949,35,1949,-302),(4950,2,1949,-1120),(4951,28,1950,-47),(4952,8,1950,-331),(4953,35,1950,-303),(4954,2,1950,-1121),(4955,28,1951,-48),(4956,8,1951,-332),(4957,35,1951,-304),(4958,2,1951,-1122),(4959,28,1952,-49),(4960,28,1953,-50),(4961,28,1954,-51),(4962,28,1955,-52),(4963,28,1956,-53),(4964,28,1957,-54),(4965,28,1958,-55),(4966,28,1959,-56),(4967,28,1960,-57),(4968,28,1961,-58),(4969,28,1962,-59),(4970,28,1963,-60),(4971,28,1964,-61),(4972,28,1965,-62),(4973,28,1966,-63),(4974,28,1967,-64),(4975,28,1968,-65),(4976,30,1968,-209),(4977,2,1968,-1123),(4978,28,1969,-66),(4979,30,1969,-210),(4980,2,1969,-1124),(4981,28,1970,-67),(4982,30,1970,-211),(4983,2,1970,-1125),(4984,28,1971,-68),(4985,30,1971,-212),(4986,2,1971,-1126),(4987,28,1972,-69),(4988,30,1972,-213),(4989,2,1972,-1127),(4990,28,1973,-70),(4991,30,1973,-214),(4992,2,1973,-1128),(4993,28,1974,-71),(4994,30,1974,-215),(4995,2,1974,-1129),(4996,28,1975,-72),(4997,30,1975,-216),(4998,2,1975,-1130),(4999,28,1976,-73),(5000,30,1976,-217),(5001,2,1976,-1131),(5002,28,1977,-74),(5003,30,1977,-218),(5004,2,1977,-1132),(5005,28,1978,-75),(5006,30,1978,-219),(5007,2,1978,-1133),(5008,28,1979,-76),(5009,30,1979,-220),(5010,2,1979,-1134),(5011,28,1980,-77),(5012,30,1980,-221),(5013,2,1980,-1135),(5014,28,1981,-78),(5015,30,1981,-222),(5016,2,1981,-1136),(5017,28,1982,-79),(5018,30,1982,-223),(5019,2,1982,-1137),(5020,28,1983,-80),(5021,30,1983,-224),(5022,2,1983,-1138),(5023,28,1984,-81),(5024,28,1985,-82),(5025,28,1986,-83),(5026,28,1987,-84),(5027,28,1988,-85),(5028,28,1989,-86),(5029,28,1990,-87),(5030,28,1991,-88),(5031,8,1991,-333),(5032,2,1991,-1139),(5033,28,1992,-89),(5034,8,1992,-334),(5035,2,1992,-1140),(5036,28,1993,-90),(5037,8,1993,-335),(5038,2,1993,-1141),(5039,28,1994,-91),(5040,8,1994,-336),(5041,2,1994,-1142),(5042,28,1995,-92),(5043,8,1995,-337),(5044,2,1995,-1143),(5045,28,1996,-93),(5046,8,1996,-338),(5047,2,1996,-1144),(5048,28,1997,-94),(5049,8,1997,-339),(5050,2,1997,-1145),(5051,28,1998,-95),(5052,35,1998,-305),(5053,2,1998,-1146),(5054,28,1999,-96),(5055,35,1999,-306),(5056,2,1999,-1147),(5057,28,2000,-97),(5058,35,2000,-307),(5059,2,2000,-1148),(5060,28,2001,-98),(5061,35,2001,-308),(5062,2,2001,-1149),(5063,28,2002,-99),(5064,35,2002,-309),(5065,2,2002,-1150),(5066,28,2003,-100),(5067,35,2003,-310),(5068,2,2003,-1151),(5069,28,2004,-101),(5070,28,2005,-102),(5071,28,2006,-103),(5072,28,2007,-104),(5073,28,2008,-105),(5074,28,2009,-106),(5075,28,2010,-107),(5076,28,2011,-108),(5077,36,2011,-241),(5078,2,2011,-1152),(5079,28,2012,-109),(5080,36,2012,-242),(5081,2,2012,-1153),(5082,28,2013,-110),(5083,36,2013,-243),(5084,2,2013,-1154),(5085,28,2014,-111),(5086,36,2014,-244),(5087,2,2014,-1155),(5088,28,2015,-112),(5089,36,2015,-245),(5090,2,2015,-1156),(5091,28,2016,-113),(5092,36,2016,-246),(5093,2,2016,-1157),(5094,28,2017,-114),(5095,36,2017,-247),(5096,2,2017,-1158),(5097,28,2018,-115),(5098,34,2018,-257),(5099,2,2018,-1159),(5100,28,2019,-116),(5101,34,2019,-258),(5102,2,2019,-1160),(5103,28,2020,-117),(5104,34,2020,-259),(5105,2,2020,-1161),(5106,28,2021,-118),(5107,34,2021,-260),(5108,2,2021,-1162),(5109,28,2022,-119),(5110,34,2022,-261),(5111,2,2022,-1163),(5112,28,2023,-120),(5113,34,2023,-262),(5114,2,2023,-1164),(5115,28,2024,-121),(5116,34,2024,-263),(5117,2,2024,-1165),(5118,28,2025,-122),(5119,34,2025,-264),(5120,2,2025,-1166),(5121,28,2026,-123),(5122,34,2026,-265),(5123,2,2026,-1167),(5124,28,2027,-124),(5125,34,2027,-266),(5126,2,2027,-1168),(5127,28,2028,-125),(5128,34,2028,-267),(5129,2,2028,-1169),(5130,28,2029,-126),(5131,34,2029,-268),(5132,2,2029,-1170),(5133,28,2030,-127),(5134,34,2030,-269),(5135,2,2030,-1171),(5136,28,2031,-128),(5137,34,2031,-270),(5138,2,2031,-1172),(5139,28,2032,-129),(5140,34,2032,-271),(5141,2,2032,-1173),(5142,28,2033,-130),(5143,34,2033,-272),(5144,2,2033,-1174),(5145,28,2034,-131),(5146,34,2034,-273),(5147,2,2034,-1175),(5148,28,2035,-132),(5149,34,2035,-274),(5150,2,2035,-1176),(5151,28,2036,-133),(5152,34,2036,-275),(5153,2,2036,-1177),(5154,28,2037,-134),(5155,34,2037,-276),(5156,2,2037,-1178),(5157,28,2038,-135),(5158,34,2038,-277),(5159,2,2038,-1179),(5160,28,2039,-136),(5161,34,2039,-278),(5162,2,2039,-1180),(5163,28,2040,-137),(5164,34,2040,-279),(5165,2,2040,-1181);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalog_category_product_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_cl`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_BB4A590114301ED9D94C8239D3EF6DA8` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_replica` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_BB4A590114301ED9D94C8239D3EF6DA8` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_replica`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_store1`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_store1` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_EAA97D781ECAB4B7D46CE05989FB5FCE` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Prmg Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_store1`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_store1` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product_index_store1` VALUES (2,2040,-1181,1,1,4),(2,2024,-1165,1,1,4),(2,2017,-1158,1,1,4),(2,2003,-1151,1,1,4),(2,1997,-1145,1,1,4),(2,1983,-1138,1,1,4),(2,1951,-1122,1,1,4),(2,1935,-1106,1,1,4),(2,1919,-1090,1,1,4),(2,1903,-1074,1,1,4),(2,1896,-1067,1,1,4),(2,1889,-1060,1,1,4),(2,1882,-1053,1,1,4),(2,1875,-1046,1,1,4),(2,1868,-1039,1,1,4),(2,1861,-1032,1,1,4),(2,1854,-1025,1,1,4),(2,1847,-1018,1,1,4),(2,1840,-1011,1,1,4),(2,1833,-1004,1,1,4),(2,1826,-997,1,1,4),(2,1819,-990,1,1,4),(2,1812,-983,1,1,4),(2,1796,-967,1,1,4),(2,1780,-951,1,1,4),(2,1748,-935,1,1,4),(2,1732,-919,1,1,4),(2,1716,-903,1,1,4),(2,1684,-887,1,1,4),(2,1636,-871,1,1,4),(2,1604,-855,1,1,4),(2,1588,-839,1,1,4),(2,1572,-823,1,1,4),(2,1556,-807,1,1,4),(2,1540,-791,1,1,4),(2,1524,-775,1,1,4),(2,1508,-759,1,1,4),(2,1492,-743,1,1,4),(2,1476,-727,1,1,4),(2,1460,-711,1,1,4),(2,1444,-695,1,1,4),(2,1428,-679,1,1,4),(2,1412,-663,1,1,4),(2,1396,-647,1,1,4),(2,1380,-631,1,1,4),(2,1364,-615,1,1,4),(2,1348,-599,1,1,4),(2,1332,-583,1,1,4),(2,1316,-567,1,1,4),(2,1268,-551,1,1,4),(2,1236,-535,1,1,4),(2,1220,-519,1,1,4),(2,1210,-509,1,1,4),(2,1194,-493,1,1,4),(2,1178,-477,1,1,4),(2,1162,-461,1,1,4),(2,1146,-445,1,1,4),(2,1130,-429,1,1,4),(2,1060,-413,1,1,4),(2,1044,-397,1,1,4),(2,1028,-381,1,1,4),(2,1002,-368,1,1,4),(2,989,-355,1,1,4),(2,976,-342,1,1,4),(2,963,-329,1,1,4),(2,950,-316,1,1,4),(2,937,-303,1,1,4),(2,911,-290,1,1,4),(2,893,-277,1,1,4),(2,880,-264,1,1,4),(2,867,-251,1,1,4),(2,854,-238,1,1,4),(2,841,-225,1,1,4),(2,828,-212,1,1,4),(2,254,-208,1,1,4),(2,815,-199,1,1,4),(2,238,-192,1,1,4),(2,622,-192,1,1,4),(2,802,-186,1,1,4),(2,222,-176,1,1,4),(2,430,-176,1,1,4),(2,606,-176,1,1,4),(2,1764,-176,1,1,4),(2,789,-173,1,1,4),(2,206,-160,1,1,4),(2,414,-160,1,1,4),(2,590,-160,1,1,4),(2,776,-160,1,1,4),(2,763,-147,1,1,4),(2,190,-144,1,1,4),(2,398,-144,1,1,4),(2,574,-144,1,1,4),(2,1015,-135,1,1,4),(2,750,-134,1,1,4),(2,174,-128,1,1,4),(2,382,-128,1,1,4),(2,558,-128,1,1,4),(2,737,-121,1,1,4),(2,158,-112,1,1,4),(2,366,-112,1,1,4),(2,542,-112,1,1,4),(2,1700,-112,1,1,4),(2,718,-108,1,1,4),(2,2010,-107,1,1,4),(2,694,-102,1,1,4),(2,724,-102,1,1,4),(2,142,-96,1,1,4),(2,350,-96,1,1,4),(2,462,-96,1,1,4),(2,526,-96,1,1,4),(2,712,-90,1,1,4),(2,1300,-90,1,1,4),(2,1990,-87,1,1,4),(2,1114,-86,1,1,4),(2,706,-84,1,1,4),(2,126,-80,1,1,4),(2,334,-80,1,1,4),(2,510,-80,1,1,4),(2,1108,-80,1,1,4),(2,1668,-80,1,1,4),(2,700,-78,1,1,4),(2,1284,-74,1,1,4),(2,688,-66,1,1,4),(2,110,-64,1,1,4),(2,302,-64,1,1,4),(2,318,-64,1,1,4),(2,494,-64,1,1,4),(2,1092,-64,1,1,4),(2,1652,-64,1,1,4),(2,1967,-64,1,1,4),(2,682,-60,1,1,4),(2,676,-54,1,1,4),(2,94,-48,1,1,4),(2,478,-48,1,1,4),(2,670,-48,1,1,4),(2,1076,-48,1,1,4),(2,924,-44,1,1,4),(2,1252,-42,1,1,4),(2,78,-32,1,1,4),(2,286,-32,1,1,4),(2,654,-32,1,1,4),(2,1620,-32,1,1,4),(2,898,-18,1,1,4),(2,62,-16,1,1,4),(2,270,-16,1,1,4),(2,446,-16,1,1,4),(2,638,-16,1,1,4),(2,1,0,1,1,4),(2,2,0,1,1,4),(2,3,0,1,1,4),(2,4,0,1,1,4),(2,5,0,1,1,4),(2,6,0,1,1,4),(2,7,0,1,1,4),(2,8,0,1,1,4),(2,9,0,1,1,4),(2,10,0,1,1,4),(2,11,0,1,1,4),(2,12,0,1,1,4),(2,13,0,1,1,4),(2,14,0,1,1,4),(2,15,0,1,1,4),(2,16,0,1,1,4),(2,17,0,1,1,4),(2,18,0,1,1,4),(2,19,0,1,1,4),(2,20,0,1,1,4),(2,21,0,1,1,4),(2,22,0,1,1,4),(2,23,0,1,1,4),(2,36,0,1,1,4),(2,37,0,1,1,4),(2,38,0,1,1,4),(2,39,0,1,1,4),(2,40,0,1,1,4),(2,41,0,1,1,4),(2,42,0,1,1,4),(2,43,0,1,1,4),(2,44,0,1,1,4),(2,45,0,1,1,4),(2,46,0,1,1,4),(3,1,0,1,1,4),(3,2,0,1,1,4),(3,3,0,1,1,4),(3,4,0,1,1,4),(3,5,0,1,1,4),(3,6,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,15,0,1,1,4),(3,16,0,1,1,4),(3,17,0,1,1,4),(3,18,0,1,1,4),(3,19,0,1,1,4),(3,20,0,1,1,4),(3,21,0,1,1,4),(3,22,0,1,1,4),(3,23,0,1,1,4),(3,36,0,1,1,4),(3,37,0,1,1,4),(3,38,0,1,1,4),(3,39,0,1,1,4),(3,40,0,1,1,4),(3,41,0,1,1,4),(3,42,0,1,1,4),(3,43,0,1,1,4),(3,44,0,1,1,4),(3,45,0,1,1,4),(3,46,0,1,1,4),(4,1,0,1,1,4),(4,2,0,1,1,4),(4,3,0,1,1,4),(4,4,0,1,1,4),(4,5,0,1,1,4),(4,6,0,1,1,4),(4,7,0,1,1,4),(4,8,0,1,1,4),(4,9,0,1,1,4),(4,10,0,1,1,4),(4,11,0,1,1,4),(4,12,0,1,1,4),(4,13,0,1,1,4),(4,14,0,1,1,4),(5,15,0,1,1,4),(5,16,0,1,1,4),(5,17,0,1,1,4),(5,18,0,1,1,4),(5,19,0,1,1,4),(5,20,0,1,1,4),(5,21,0,1,1,4),(5,22,0,1,1,4),(5,23,0,1,1,4),(5,45,0,1,1,4),(5,46,0,1,1,4),(6,36,0,1,1,4),(6,37,0,1,1,4),(6,38,0,1,1,4),(6,39,0,1,1,4),(6,40,0,1,1,4),(6,41,0,1,1,4),(6,42,0,1,1,4),(6,43,0,1,1,4),(6,44,0,1,1,4),(7,2,0,1,1,4),(7,4,0,1,1,4),(7,5,0,1,1,4),(7,10,0,1,1,4),(7,11,0,1,1,4),(7,13,0,1,1,4),(7,14,0,1,1,4),(7,16,0,1,1,4),(7,19,0,1,1,4),(7,38,0,1,1,4),(7,39,0,1,1,4),(7,40,0,1,1,4),(7,44,0,1,1,4),(8,1997,-339,1,1,4),(8,1951,-332,1,1,4),(8,1919,-316,1,1,4),(8,1833,-300,1,1,4),(8,1716,-293,1,1,4),(8,1636,-277,1,1,4),(8,1476,-261,1,1,4),(8,1460,-245,1,1,4),(8,1444,-229,1,1,4),(8,1412,-213,1,1,4),(8,1364,-197,1,1,4),(8,1348,-181,1,1,4),(8,1268,-165,1,1,4),(8,1220,-149,1,1,4),(8,1178,-139,1,1,4),(8,1130,-123,1,1,4),(8,1044,-107,1,1,4),(8,1002,-91,1,1,4),(8,950,-78,1,1,4),(8,841,-65,1,1,4),(8,828,-52,1,1,4),(8,815,-39,1,1,4),(8,789,-26,1,1,4),(8,763,-13,1,1,4),(8,4,0,1,1,4),(8,5,0,1,1,4),(8,13,0,1,1,4),(8,19,0,1,1,4),(8,38,0,1,1,4),(8,39,0,1,1,4),(8,40,0,1,1,4),(8,44,0,1,1,4),(12,254,9792,0,1,4),(12,238,9808,0,1,4),(12,622,9808,0,1,4),(12,222,9824,0,1,4),(12,430,9824,0,1,4),(12,606,9824,0,1,4),(12,206,9840,0,1,4),(12,414,9840,0,1,4),(12,590,9840,0,1,4),(12,190,9856,0,1,4),(12,398,9856,0,1,4),(12,574,9856,0,1,4),(12,174,9872,0,1,4),(12,382,9872,0,1,4),(12,558,9872,0,1,4),(12,158,9888,0,1,4),(12,366,9888,0,1,4),(12,542,9888,0,1,4),(12,724,9898,0,1,4),(12,142,9904,0,1,4),(12,350,9904,0,1,4),(12,526,9904,0,1,4),(12,718,9904,0,1,4),(12,712,9910,0,1,4),(12,706,9916,0,1,4),(12,126,9920,0,1,4),(12,334,9920,0,1,4),(12,510,9920,0,1,4),(12,700,9922,0,1,4),(12,694,9928,0,1,4),(12,688,9934,0,1,4),(12,110,9936,0,1,4),(12,318,9936,0,1,4),(12,494,9936,0,1,4),(12,682,9940,0,1,4),(12,676,9946,0,1,4),(12,94,9952,0,1,4),(12,302,9952,0,1,4),(12,478,9952,0,1,4),(12,670,9952,0,1,4),(12,78,9968,0,1,4),(12,286,9968,0,1,4),(12,462,9968,0,1,4),(12,654,9968,0,1,4),(12,62,9984,0,1,4),(12,270,9984,0,1,4),(12,446,9984,0,1,4),(12,638,9984,0,1,4),(13,880,9844,0,1,4),(13,1028,9852,0,1,4),(13,867,9857,0,1,4),(13,1015,9865,0,1,4),(13,854,9870,0,1,4),(13,1002,9878,0,1,4),(13,841,9883,0,1,4),(13,989,9891,0,1,4),(13,828,9896,0,1,4),(13,976,9904,0,1,4),(13,815,9909,0,1,4),(13,963,9917,0,1,4),(13,802,9922,0,1,4),(13,950,9930,0,1,4),(13,789,9935,0,1,4),(13,937,9943,0,1,4),(13,776,9948,0,1,4),(13,924,9956,0,1,4),(13,763,9961,0,1,4),(13,911,9969,0,1,4),(13,750,9974,0,1,4),(13,898,9982,0,1,4),(13,737,9987,0,1,4),(13,893,9987,0,1,4),(14,430,-176,1,1,4),(14,414,-160,1,1,4),(14,398,-144,1,1,4),(14,382,-128,1,1,4),(14,366,-112,1,1,4),(14,350,-96,1,1,4),(14,334,-80,1,1,4),(14,318,-64,1,1,4),(14,302,-48,1,1,4),(14,286,-32,1,1,4),(14,270,-16,1,1,4),(15,254,-208,1,1,4),(15,238,-192,1,1,4),(15,222,-176,1,1,4),(15,206,-160,1,1,4),(15,190,-144,1,1,4),(15,174,-128,1,1,4),(15,158,-112,1,1,4),(15,142,-96,1,1,4),(15,126,-80,1,1,4),(15,110,-64,1,1,4),(15,94,-48,1,1,4),(15,78,-32,1,1,4),(15,62,-16,1,1,4),(16,622,-192,1,1,4),(16,606,-176,1,1,4),(16,590,-160,1,1,4),(16,574,-144,1,1,4),(16,558,-128,1,1,4),(16,542,-112,1,1,4),(16,526,-96,1,1,4),(16,510,-80,1,1,4),(16,494,-64,1,1,4),(16,478,-48,1,1,4),(16,462,-32,1,1,4),(16,446,-16,1,1,4),(17,724,-102,1,1,4),(17,718,-96,1,1,4),(17,712,-90,1,1,4),(17,706,-84,1,1,4),(17,700,-78,1,1,4),(17,694,-72,1,1,4),(17,688,-66,1,1,4),(17,682,-60,1,1,4),(17,676,-54,1,1,4),(17,670,-48,1,1,4),(17,654,-32,1,1,4),(17,638,-16,1,1,4),(18,880,-156,1,1,4),(18,867,-143,1,1,4),(18,854,-130,1,1,4),(18,841,-117,1,1,4),(18,828,-104,1,1,4),(18,815,-91,1,1,4),(18,802,-78,1,1,4),(18,789,-65,1,1,4),(18,776,-52,1,1,4),(18,763,-39,1,1,4),(18,750,-26,1,1,4),(18,737,-13,1,1,4),(19,1028,-148,1,1,4),(19,1015,-135,1,1,4),(19,1002,-122,1,1,4),(19,989,-109,1,1,4),(19,976,-96,1,1,4),(19,963,-83,1,1,4),(19,950,-70,1,1,4),(19,937,-57,1,1,4),(19,924,-44,1,1,4),(19,911,-31,1,1,4),(19,898,-18,1,1,4),(19,893,-13,1,1,4),(21,1812,9776,0,1,4),(21,1796,9792,0,1,4),(21,1588,9808,0,1,4),(21,1780,9808,0,1,4),(21,1396,9814,0,1,4),(21,1210,9818,0,1,4),(21,1572,9824,0,1,4),(21,1764,9824,0,1,4),(21,1380,9830,0,1,4),(21,1194,9834,0,1,4),(21,1556,9840,0,1,4),(21,1748,9840,0,1,4),(21,1364,9846,0,1,4),(21,1178,9850,0,1,4),(21,1540,9856,0,1,4),(21,1732,9856,0,1,4),(21,1348,9862,0,1,4),(21,1162,9866,0,1,4),(21,1524,9872,0,1,4),(21,1716,9872,0,1,4),(21,1332,9878,0,1,4),(21,1146,9882,0,1,4),(21,1508,9888,0,1,4),(21,1700,9888,0,1,4),(21,1316,9894,0,1,4),(21,1130,9898,0,1,4),(21,1492,9904,0,1,4),(21,1684,9904,0,1,4),(21,1300,9910,0,1,4),(21,1114,9914,0,1,4),(21,1108,9920,0,1,4),(21,1476,9920,0,1,4),(21,1668,9920,0,1,4),(21,1284,9926,0,1,4),(21,1092,9936,0,1,4),(21,1460,9936,0,1,4),(21,1652,9936,0,1,4),(21,1268,9942,0,1,4),(21,1076,9952,0,1,4),(21,1444,9952,0,1,4),(21,1636,9952,0,1,4),(21,1252,9958,0,1,4),(21,1060,9968,0,1,4),(21,1428,9968,0,1,4),(21,1620,9968,0,1,4),(21,1236,9974,0,1,4),(21,1044,9984,0,1,4),(21,1412,9984,0,1,4),(21,1604,9984,0,1,4),(21,1220,9990,0,1,4),(22,2040,9863,0,1,4),(22,2024,9879,0,1,4),(22,2017,9886,0,1,4),(22,2010,9893,0,1,4),(22,2003,9900,0,1,4),(22,1997,9906,0,1,4),(22,1903,9909,0,1,4),(22,1990,9913,0,1,4),(22,1896,9916,0,1,4),(22,1983,9920,0,1,4),(22,1889,9923,0,1,4),(22,1882,9930,0,1,4),(22,1967,9936,0,1,4),(22,1875,9937,0,1,4),(22,1868,9944,0,1,4),(22,1861,9951,0,1,4),(22,1951,9952,0,1,4),(22,1854,9958,0,1,4),(22,1847,9965,0,1,4),(22,1935,9968,0,1,4),(22,1840,9972,0,1,4),(22,1833,9979,0,1,4),(22,1919,9984,0,1,4),(22,1826,9986,0,1,4),(22,1819,9993,0,1,4),(23,1396,-186,1,1,4),(23,1380,-170,1,1,4),(23,1364,-154,1,1,4),(23,1348,-138,1,1,4),(23,1332,-122,1,1,4),(23,1316,-106,1,1,4),(23,1300,-90,1,1,4),(23,1284,-74,1,1,4),(23,1268,-58,1,1,4),(23,1252,-42,1,1,4),(23,1236,-26,1,1,4),(23,1220,-10,1,1,4),(24,1210,-182,1,1,4),(24,1194,-166,1,1,4),(24,1178,-150,1,1,4),(24,1162,-134,1,1,4),(24,1146,-118,1,1,4),(24,1130,-102,1,1,4),(24,1114,-86,1,1,4),(24,1108,-80,1,1,4),(24,1092,-64,1,1,4),(24,1076,-48,1,1,4),(24,1060,-32,1,1,4),(24,1044,-16,1,1,4),(25,1588,-192,1,1,4),(25,1572,-176,1,1,4),(25,1556,-160,1,1,4),(25,1540,-144,1,1,4),(25,1524,-128,1,1,4),(25,1508,-112,1,1,4),(25,1492,-96,1,1,4),(25,1476,-80,1,1,4),(25,1460,-64,1,1,4),(25,1444,-48,1,1,4),(25,1428,-32,1,1,4),(25,1412,-16,1,1,4),(26,1812,-224,1,1,4),(26,1796,-208,1,1,4),(26,1780,-192,1,1,4),(26,1764,-176,1,1,4),(26,1748,-160,1,1,4),(26,1732,-144,1,1,4),(26,1716,-128,1,1,4),(26,1700,-112,1,1,4),(26,1684,-96,1,1,4),(26,1668,-80,1,1,4),(26,1652,-64,1,1,4),(26,1636,-48,1,1,4),(26,1620,-32,1,1,4),(26,1604,-16,1,1,4),(27,1903,-91,1,1,4),(27,1896,-84,1,1,4),(27,1889,-77,1,1,4),(27,1882,-70,1,1,4),(27,1875,-63,1,1,4),(27,1868,-56,1,1,4),(27,1861,-49,1,1,4),(27,1854,-42,1,1,4),(27,1847,-35,1,1,4),(27,1840,-28,1,1,4),(27,1833,-21,1,1,4),(27,1826,-14,1,1,4),(27,1819,-7,1,1,4),(28,2040,-137,1,1,4),(28,2024,-121,1,1,4),(28,2017,-114,1,1,4),(28,2010,-107,1,1,4),(28,2003,-100,1,1,4),(28,1997,-94,1,1,4),(28,1990,-87,1,1,4),(28,1983,-80,1,1,4),(28,1967,-64,1,1,4),(28,1951,-48,1,1,4),(28,1935,-32,1,1,4),(28,1919,-16,1,1,4),(30,1983,-224,1,1,4),(30,1935,-208,1,1,4),(30,1812,-192,1,1,4),(30,1796,-176,1,1,4),(30,1604,-160,1,1,4),(30,1540,-144,1,1,4),(30,1508,-128,1,1,4),(30,1492,-112,1,1,4),(30,1396,-96,1,1,4),(30,1380,-80,1,1,4),(30,1316,-64,1,1,4),(30,1236,-48,1,1,4),(30,1146,-32,1,1,4),(30,1060,-16,1,1,4),(31,1028,-39,1,1,4),(31,976,-26,1,1,4),(31,963,-13,1,1,4),(32,1903,-247,1,1,4),(32,1896,-240,1,1,4),(32,1889,-233,1,1,4),(32,1882,-226,1,1,4),(32,1875,-219,1,1,4),(32,1868,-212,1,1,4),(32,1861,-205,1,1,4),(32,1854,-198,1,1,4),(32,1847,-191,1,1,4),(32,1840,-184,1,1,4),(32,1833,-177,1,1,4),(32,1826,-170,1,1,4),(32,1819,-163,1,1,4),(32,880,-156,1,1,4),(32,867,-143,1,1,4),(32,854,-130,1,1,4),(32,841,-117,1,1,4),(32,828,-104,1,1,4),(32,815,-91,1,1,4),(32,802,-78,1,1,4),(32,789,-65,1,1,4),(32,776,-52,1,1,4),(32,763,-39,1,1,4),(32,750,-26,1,1,4),(32,737,-13,1,1,4),(33,1588,-192,1,1,4),(33,1572,-176,1,1,4),(33,1556,-160,1,1,4),(33,1540,-144,1,1,4),(33,1524,-128,1,1,4),(33,1508,-112,1,1,4),(33,1492,-96,1,1,4),(33,1476,-80,1,1,4),(33,1460,-64,1,1,4),(33,1444,-48,1,1,4),(33,1428,-32,1,1,4),(33,1412,-16,1,1,4),(34,2040,-279,1,1,4),(34,2024,-263,1,1,4),(34,1903,-256,1,1,4),(34,1854,-249,1,1,4),(34,1847,-242,1,1,4),(34,1812,-235,1,1,4),(34,1748,-219,1,1,4),(34,1716,-203,1,1,4),(34,1540,-187,1,1,4),(34,1476,-171,1,1,4),(34,1332,-155,1,1,4),(34,1316,-139,1,1,4),(34,1220,-123,1,1,4),(34,1194,-113,1,1,4),(34,1130,-97,1,1,4),(34,1044,-81,1,1,4),(34,963,-65,1,1,4),(34,893,-52,1,1,4),(34,867,-39,1,1,4),(34,854,-26,1,1,4),(34,841,-13,1,1,4),(35,2003,-310,1,1,4),(35,1951,-304,1,1,4),(35,1896,-288,1,1,4),(35,1861,-281,1,1,4),(35,1826,-274,1,1,4),(35,1819,-267,1,1,4),(35,1796,-260,1,1,4),(35,1780,-244,1,1,4),(35,1732,-228,1,1,4),(35,1636,-212,1,1,4),(35,1556,-196,1,1,4),(35,1524,-180,1,1,4),(35,1428,-164,1,1,4),(35,1396,-148,1,1,4),(35,1380,-132,1,1,4),(35,1348,-116,1,1,4),(35,1268,-100,1,1,4),(35,1210,-84,1,1,4),(35,1146,-68,1,1,4),(35,989,-52,1,1,4),(35,937,-39,1,1,4),(35,911,-26,1,1,4),(35,750,-13,1,1,4),(36,2017,-247,1,1,4),(36,1919,-240,1,1,4),(36,1882,-224,1,1,4),(36,1684,-217,1,1,4),(36,1604,-201,1,1,4),(36,1508,-185,1,1,4),(36,1460,-169,1,1,4),(36,1444,-153,1,1,4),(36,1162,-137,1,1,4),(36,802,-121,1,1,4),(36,718,-108,1,1,4),(36,694,-102,1,1,4),(36,462,-96,1,1,4),(36,398,-80,1,1,4),(36,302,-64,1,1,4),(36,110,-48,1,1,4),(36,94,-32,1,1,4),(36,62,-16,1,1,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_store1_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_store1_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `IDX_6FBAC0A8825789D69AB86505B4914089` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_8F15547F72AF00C7861A223EC6C69052` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Prmg Catalog Category Product Index Store1 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_store1_replica`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_store1_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product_index_store1_replica` VALUES (2,2040,-1181,1,1,4),(2,2024,-1165,1,1,4),(2,2017,-1158,1,1,4),(2,2003,-1151,1,1,4),(2,1997,-1145,1,1,4),(2,1983,-1138,1,1,4),(2,1951,-1122,1,1,4),(2,1935,-1106,1,1,4),(2,1919,-1090,1,1,4),(2,1903,-1074,1,1,4),(2,1896,-1067,1,1,4),(2,1889,-1060,1,1,4),(2,1882,-1053,1,1,4),(2,1875,-1046,1,1,4),(2,1868,-1039,1,1,4),(2,1861,-1032,1,1,4),(2,1854,-1025,1,1,4),(2,1847,-1018,1,1,4),(2,1840,-1011,1,1,4),(2,1833,-1004,1,1,4),(2,1826,-997,1,1,4),(2,1819,-990,1,1,4),(2,1812,-983,1,1,4),(2,1796,-967,1,1,4),(2,1780,-951,1,1,4),(2,1748,-935,1,1,4),(2,1732,-919,1,1,4),(2,1716,-903,1,1,4),(2,1684,-887,1,1,4),(2,1636,-871,1,1,4),(2,1604,-855,1,1,4),(2,1588,-839,1,1,4),(2,1572,-823,1,1,4),(2,1556,-807,1,1,4),(2,1540,-791,1,1,4),(2,1524,-775,1,1,4),(2,1508,-759,1,1,4),(2,1492,-743,1,1,4),(2,1476,-727,1,1,4),(2,1460,-711,1,1,4),(2,1444,-695,1,1,4),(2,1428,-679,1,1,4),(2,1412,-663,1,1,4),(2,1396,-647,1,1,4),(2,1380,-631,1,1,4),(2,1364,-615,1,1,4),(2,1348,-599,1,1,4),(2,1332,-583,1,1,4),(2,1316,-567,1,1,4),(2,1268,-551,1,1,4),(2,1236,-535,1,1,4),(2,1220,-519,1,1,4),(2,1210,-509,1,1,4),(2,1194,-493,1,1,4),(2,1178,-477,1,1,4),(2,1162,-461,1,1,4),(2,1146,-445,1,1,4),(2,1130,-429,1,1,4),(2,1060,-413,1,1,4),(2,1044,-397,1,1,4),(2,1028,-381,1,1,4),(2,1002,-368,1,1,4),(2,989,-355,1,1,4),(2,976,-342,1,1,4),(2,963,-329,1,1,4),(2,950,-316,1,1,4),(2,937,-303,1,1,4),(2,911,-290,1,1,4),(2,893,-277,1,1,4),(2,880,-264,1,1,4),(2,867,-251,1,1,4),(2,854,-238,1,1,4),(2,841,-225,1,1,4),(2,828,-212,1,1,4),(2,254,-208,1,1,4),(2,815,-199,1,1,4),(2,238,-192,1,1,4),(2,622,-192,1,1,4),(2,802,-186,1,1,4),(2,222,-176,1,1,4),(2,430,-176,1,1,4),(2,606,-176,1,1,4),(2,1764,-176,1,1,4),(2,789,-173,1,1,4),(2,206,-160,1,1,4),(2,414,-160,1,1,4),(2,590,-160,1,1,4),(2,776,-160,1,1,4),(2,763,-147,1,1,4),(2,190,-144,1,1,4),(2,398,-144,1,1,4),(2,574,-144,1,1,4),(2,1015,-135,1,1,4),(2,750,-134,1,1,4),(2,174,-128,1,1,4),(2,382,-128,1,1,4),(2,558,-128,1,1,4),(2,737,-121,1,1,4),(2,158,-112,1,1,4),(2,366,-112,1,1,4),(2,542,-112,1,1,4),(2,1700,-112,1,1,4),(2,718,-108,1,1,4),(2,2010,-107,1,1,4),(2,694,-102,1,1,4),(2,724,-102,1,1,4),(2,142,-96,1,1,4),(2,350,-96,1,1,4),(2,462,-96,1,1,4),(2,526,-96,1,1,4),(2,712,-90,1,1,4),(2,1300,-90,1,1,4),(2,1990,-87,1,1,4),(2,1114,-86,1,1,4),(2,706,-84,1,1,4),(2,126,-80,1,1,4),(2,334,-80,1,1,4),(2,510,-80,1,1,4),(2,1108,-80,1,1,4),(2,1668,-80,1,1,4),(2,700,-78,1,1,4),(2,1284,-74,1,1,4),(2,688,-66,1,1,4),(2,110,-64,1,1,4),(2,302,-64,1,1,4),(2,318,-64,1,1,4),(2,494,-64,1,1,4),(2,1092,-64,1,1,4),(2,1652,-64,1,1,4),(2,1967,-64,1,1,4),(2,682,-60,1,1,4),(2,676,-54,1,1,4),(2,94,-48,1,1,4),(2,478,-48,1,1,4),(2,670,-48,1,1,4),(2,1076,-48,1,1,4),(2,924,-44,1,1,4),(2,1252,-42,1,1,4),(2,78,-32,1,1,4),(2,286,-32,1,1,4),(2,654,-32,1,1,4),(2,1620,-32,1,1,4),(2,898,-18,1,1,4),(2,62,-16,1,1,4),(2,270,-16,1,1,4),(2,446,-16,1,1,4),(2,638,-16,1,1,4),(2,1,0,1,1,4),(2,2,0,1,1,4),(2,3,0,1,1,4),(2,4,0,1,1,4),(2,5,0,1,1,4),(2,6,0,1,1,4),(2,7,0,1,1,4),(2,8,0,1,1,4),(2,9,0,1,1,4),(2,10,0,1,1,4),(2,11,0,1,1,4),(2,12,0,1,1,4),(2,13,0,1,1,4),(2,14,0,1,1,4),(2,15,0,1,1,4),(2,16,0,1,1,4),(2,17,0,1,1,4),(2,18,0,1,1,4),(2,19,0,1,1,4),(2,20,0,1,1,4),(2,21,0,1,1,4),(2,22,0,1,1,4),(2,23,0,1,1,4),(2,36,0,1,1,4),(2,37,0,1,1,4),(2,38,0,1,1,4),(2,39,0,1,1,4),(2,40,0,1,1,4),(2,41,0,1,1,4),(2,42,0,1,1,4),(2,43,0,1,1,4),(2,44,0,1,1,4),(2,45,0,1,1,4),(2,46,0,1,1,4),(3,1,0,1,1,4),(3,2,0,1,1,4),(3,3,0,1,1,4),(3,4,0,1,1,4),(3,5,0,1,1,4),(3,6,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,15,0,1,1,4),(3,16,0,1,1,4),(3,17,0,1,1,4),(3,18,0,1,1,4),(3,19,0,1,1,4),(3,20,0,1,1,4),(3,21,0,1,1,4),(3,22,0,1,1,4),(3,23,0,1,1,4),(3,36,0,1,1,4),(3,37,0,1,1,4),(3,38,0,1,1,4),(3,39,0,1,1,4),(3,40,0,1,1,4),(3,41,0,1,1,4),(3,42,0,1,1,4),(3,43,0,1,1,4),(3,44,0,1,1,4),(3,45,0,1,1,4),(3,46,0,1,1,4),(4,1,0,1,1,4),(4,2,0,1,1,4),(4,3,0,1,1,4),(4,4,0,1,1,4),(4,5,0,1,1,4),(4,6,0,1,1,4),(4,7,0,1,1,4),(4,8,0,1,1,4),(4,9,0,1,1,4),(4,10,0,1,1,4),(4,11,0,1,1,4),(4,12,0,1,1,4),(4,13,0,1,1,4),(4,14,0,1,1,4),(5,15,0,1,1,4),(5,16,0,1,1,4),(5,17,0,1,1,4),(5,18,0,1,1,4),(5,19,0,1,1,4),(5,20,0,1,1,4),(5,21,0,1,1,4),(5,22,0,1,1,4),(5,23,0,1,1,4),(5,45,0,1,1,4),(5,46,0,1,1,4),(6,36,0,1,1,4),(6,37,0,1,1,4),(6,38,0,1,1,4),(6,39,0,1,1,4),(6,40,0,1,1,4),(6,41,0,1,1,4),(6,42,0,1,1,4),(6,43,0,1,1,4),(6,44,0,1,1,4),(7,2,0,1,1,4),(7,4,0,1,1,4),(7,5,0,1,1,4),(7,10,0,1,1,4),(7,11,0,1,1,4),(7,13,0,1,1,4),(7,14,0,1,1,4),(7,16,0,1,1,4),(7,19,0,1,1,4),(7,38,0,1,1,4),(7,39,0,1,1,4),(7,40,0,1,1,4),(7,44,0,1,1,4),(8,1997,-339,1,1,4),(8,1951,-332,1,1,4),(8,1919,-316,1,1,4),(8,1833,-300,1,1,4),(8,1716,-293,1,1,4),(8,1636,-277,1,1,4),(8,1476,-261,1,1,4),(8,1460,-245,1,1,4),(8,1444,-229,1,1,4),(8,1412,-213,1,1,4),(8,1364,-197,1,1,4),(8,1348,-181,1,1,4),(8,1268,-165,1,1,4),(8,1220,-149,1,1,4),(8,1178,-139,1,1,4),(8,1130,-123,1,1,4),(8,1044,-107,1,1,4),(8,1002,-91,1,1,4),(8,950,-78,1,1,4),(8,841,-65,1,1,4),(8,828,-52,1,1,4),(8,815,-39,1,1,4),(8,789,-26,1,1,4),(8,763,-13,1,1,4),(8,4,0,1,1,4),(8,5,0,1,1,4),(8,13,0,1,1,4),(8,19,0,1,1,4),(8,38,0,1,1,4),(8,39,0,1,1,4),(8,40,0,1,1,4),(8,44,0,1,1,4),(12,254,9792,0,1,4),(12,238,9808,0,1,4),(12,622,9808,0,1,4),(12,222,9824,0,1,4),(12,430,9824,0,1,4),(12,606,9824,0,1,4),(12,206,9840,0,1,4),(12,414,9840,0,1,4),(12,590,9840,0,1,4),(12,190,9856,0,1,4),(12,398,9856,0,1,4),(12,574,9856,0,1,4),(12,174,9872,0,1,4),(12,382,9872,0,1,4),(12,558,9872,0,1,4),(12,158,9888,0,1,4),(12,366,9888,0,1,4),(12,542,9888,0,1,4),(12,724,9898,0,1,4),(12,142,9904,0,1,4),(12,350,9904,0,1,4),(12,526,9904,0,1,4),(12,718,9904,0,1,4),(12,712,9910,0,1,4),(12,706,9916,0,1,4),(12,126,9920,0,1,4),(12,334,9920,0,1,4),(12,510,9920,0,1,4),(12,700,9922,0,1,4),(12,694,9928,0,1,4),(12,688,9934,0,1,4),(12,110,9936,0,1,4),(12,318,9936,0,1,4),(12,494,9936,0,1,4),(12,682,9940,0,1,4),(12,676,9946,0,1,4),(12,94,9952,0,1,4),(12,302,9952,0,1,4),(12,478,9952,0,1,4),(12,670,9952,0,1,4),(12,78,9968,0,1,4),(12,286,9968,0,1,4),(12,462,9968,0,1,4),(12,654,9968,0,1,4),(12,62,9984,0,1,4),(12,270,9984,0,1,4),(12,446,9984,0,1,4),(12,638,9984,0,1,4),(13,880,9844,0,1,4),(13,1028,9852,0,1,4),(13,867,9857,0,1,4),(13,1015,9865,0,1,4),(13,854,9870,0,1,4),(13,1002,9878,0,1,4),(13,841,9883,0,1,4),(13,989,9891,0,1,4),(13,828,9896,0,1,4),(13,976,9904,0,1,4),(13,815,9909,0,1,4),(13,963,9917,0,1,4),(13,802,9922,0,1,4),(13,950,9930,0,1,4),(13,789,9935,0,1,4),(13,937,9943,0,1,4),(13,776,9948,0,1,4),(13,924,9956,0,1,4),(13,763,9961,0,1,4),(13,911,9969,0,1,4),(13,750,9974,0,1,4),(13,898,9982,0,1,4),(13,737,9987,0,1,4),(13,893,9987,0,1,4),(14,430,-176,1,1,4),(14,414,-160,1,1,4),(14,398,-144,1,1,4),(14,382,-128,1,1,4),(14,366,-112,1,1,4),(14,350,-96,1,1,4),(14,334,-80,1,1,4),(14,318,-64,1,1,4),(14,302,-48,1,1,4),(14,286,-32,1,1,4),(14,270,-16,1,1,4),(15,254,-208,1,1,4),(15,238,-192,1,1,4),(15,222,-176,1,1,4),(15,206,-160,1,1,4),(15,190,-144,1,1,4),(15,174,-128,1,1,4),(15,158,-112,1,1,4),(15,142,-96,1,1,4),(15,126,-80,1,1,4),(15,110,-64,1,1,4),(15,94,-48,1,1,4),(15,78,-32,1,1,4),(15,62,-16,1,1,4),(16,622,-192,1,1,4),(16,606,-176,1,1,4),(16,590,-160,1,1,4),(16,574,-144,1,1,4),(16,558,-128,1,1,4),(16,542,-112,1,1,4),(16,526,-96,1,1,4),(16,510,-80,1,1,4),(16,494,-64,1,1,4),(16,478,-48,1,1,4),(16,462,-32,1,1,4),(16,446,-16,1,1,4),(17,724,-102,1,1,4),(17,718,-96,1,1,4),(17,712,-90,1,1,4),(17,706,-84,1,1,4),(17,700,-78,1,1,4),(17,694,-72,1,1,4),(17,688,-66,1,1,4),(17,682,-60,1,1,4),(17,676,-54,1,1,4),(17,670,-48,1,1,4),(17,654,-32,1,1,4),(17,638,-16,1,1,4),(18,880,-156,1,1,4),(18,867,-143,1,1,4),(18,854,-130,1,1,4),(18,841,-117,1,1,4),(18,828,-104,1,1,4),(18,815,-91,1,1,4),(18,802,-78,1,1,4),(18,789,-65,1,1,4),(18,776,-52,1,1,4),(18,763,-39,1,1,4),(18,750,-26,1,1,4),(18,737,-13,1,1,4),(19,1028,-148,1,1,4),(19,1015,-135,1,1,4),(19,1002,-122,1,1,4),(19,989,-109,1,1,4),(19,976,-96,1,1,4),(19,963,-83,1,1,4),(19,950,-70,1,1,4),(19,937,-57,1,1,4),(19,924,-44,1,1,4),(19,911,-31,1,1,4),(19,898,-18,1,1,4),(19,893,-13,1,1,4),(21,1812,9776,0,1,4),(21,1796,9792,0,1,4),(21,1588,9808,0,1,4),(21,1780,9808,0,1,4),(21,1396,9814,0,1,4),(21,1210,9818,0,1,4),(21,1572,9824,0,1,4),(21,1764,9824,0,1,4),(21,1380,9830,0,1,4),(21,1194,9834,0,1,4),(21,1556,9840,0,1,4),(21,1748,9840,0,1,4),(21,1364,9846,0,1,4),(21,1178,9850,0,1,4),(21,1540,9856,0,1,4),(21,1732,9856,0,1,4),(21,1348,9862,0,1,4),(21,1162,9866,0,1,4),(21,1524,9872,0,1,4),(21,1716,9872,0,1,4),(21,1332,9878,0,1,4),(21,1146,9882,0,1,4),(21,1508,9888,0,1,4),(21,1700,9888,0,1,4),(21,1316,9894,0,1,4),(21,1130,9898,0,1,4),(21,1492,9904,0,1,4),(21,1684,9904,0,1,4),(21,1300,9910,0,1,4),(21,1114,9914,0,1,4),(21,1108,9920,0,1,4),(21,1476,9920,0,1,4),(21,1668,9920,0,1,4),(21,1284,9926,0,1,4),(21,1092,9936,0,1,4),(21,1460,9936,0,1,4),(21,1652,9936,0,1,4),(21,1268,9942,0,1,4),(21,1076,9952,0,1,4),(21,1444,9952,0,1,4),(21,1636,9952,0,1,4),(21,1252,9958,0,1,4),(21,1060,9968,0,1,4),(21,1428,9968,0,1,4),(21,1620,9968,0,1,4),(21,1236,9974,0,1,4),(21,1044,9984,0,1,4),(21,1412,9984,0,1,4),(21,1604,9984,0,1,4),(21,1220,9990,0,1,4),(22,2040,9863,0,1,4),(22,2024,9879,0,1,4),(22,2017,9886,0,1,4),(22,2010,9893,0,1,4),(22,2003,9900,0,1,4),(22,1997,9906,0,1,4),(22,1903,9909,0,1,4),(22,1990,9913,0,1,4),(22,1896,9916,0,1,4),(22,1983,9920,0,1,4),(22,1889,9923,0,1,4),(22,1882,9930,0,1,4),(22,1967,9936,0,1,4),(22,1875,9937,0,1,4),(22,1868,9944,0,1,4),(22,1861,9951,0,1,4),(22,1951,9952,0,1,4),(22,1854,9958,0,1,4),(22,1847,9965,0,1,4),(22,1935,9968,0,1,4),(22,1840,9972,0,1,4),(22,1833,9979,0,1,4),(22,1919,9984,0,1,4),(22,1826,9986,0,1,4),(22,1819,9993,0,1,4),(23,1396,-186,1,1,4),(23,1380,-170,1,1,4),(23,1364,-154,1,1,4),(23,1348,-138,1,1,4),(23,1332,-122,1,1,4),(23,1316,-106,1,1,4),(23,1300,-90,1,1,4),(23,1284,-74,1,1,4),(23,1268,-58,1,1,4),(23,1252,-42,1,1,4),(23,1236,-26,1,1,4),(23,1220,-10,1,1,4),(24,1210,-182,1,1,4),(24,1194,-166,1,1,4),(24,1178,-150,1,1,4),(24,1162,-134,1,1,4),(24,1146,-118,1,1,4),(24,1130,-102,1,1,4),(24,1114,-86,1,1,4),(24,1108,-80,1,1,4),(24,1092,-64,1,1,4),(24,1076,-48,1,1,4),(24,1060,-32,1,1,4),(24,1044,-16,1,1,4),(25,1588,-192,1,1,4),(25,1572,-176,1,1,4),(25,1556,-160,1,1,4),(25,1540,-144,1,1,4),(25,1524,-128,1,1,4),(25,1508,-112,1,1,4),(25,1492,-96,1,1,4),(25,1476,-80,1,1,4),(25,1460,-64,1,1,4),(25,1444,-48,1,1,4),(25,1428,-32,1,1,4),(25,1412,-16,1,1,4),(26,1812,-224,1,1,4),(26,1796,-208,1,1,4),(26,1780,-192,1,1,4),(26,1764,-176,1,1,4),(26,1748,-160,1,1,4),(26,1732,-144,1,1,4),(26,1716,-128,1,1,4),(26,1700,-112,1,1,4),(26,1684,-96,1,1,4),(26,1668,-80,1,1,4),(26,1652,-64,1,1,4),(26,1636,-48,1,1,4),(26,1620,-32,1,1,4),(26,1604,-16,1,1,4),(27,1903,-91,1,1,4),(27,1896,-84,1,1,4),(27,1889,-77,1,1,4),(27,1882,-70,1,1,4),(27,1875,-63,1,1,4),(27,1868,-56,1,1,4),(27,1861,-49,1,1,4),(27,1854,-42,1,1,4),(27,1847,-35,1,1,4),(27,1840,-28,1,1,4),(27,1833,-21,1,1,4),(27,1826,-14,1,1,4),(27,1819,-7,1,1,4),(28,2040,-137,1,1,4),(28,2024,-121,1,1,4),(28,2017,-114,1,1,4),(28,2010,-107,1,1,4),(28,2003,-100,1,1,4),(28,1997,-94,1,1,4),(28,1990,-87,1,1,4),(28,1983,-80,1,1,4),(28,1967,-64,1,1,4),(28,1951,-48,1,1,4),(28,1935,-32,1,1,4),(28,1919,-16,1,1,4),(30,1983,-224,1,1,4),(30,1935,-208,1,1,4),(30,1812,-192,1,1,4),(30,1796,-176,1,1,4),(30,1604,-160,1,1,4),(30,1540,-144,1,1,4),(30,1508,-128,1,1,4),(30,1492,-112,1,1,4),(30,1396,-96,1,1,4),(30,1380,-80,1,1,4),(30,1316,-64,1,1,4),(30,1236,-48,1,1,4),(30,1146,-32,1,1,4),(30,1060,-16,1,1,4),(31,1028,-39,1,1,4),(31,976,-26,1,1,4),(31,963,-13,1,1,4),(32,1903,-247,1,1,4),(32,1896,-240,1,1,4),(32,1889,-233,1,1,4),(32,1882,-226,1,1,4),(32,1875,-219,1,1,4),(32,1868,-212,1,1,4),(32,1861,-205,1,1,4),(32,1854,-198,1,1,4),(32,1847,-191,1,1,4),(32,1840,-184,1,1,4),(32,1833,-177,1,1,4),(32,1826,-170,1,1,4),(32,1819,-163,1,1,4),(32,880,-156,1,1,4),(32,867,-143,1,1,4),(32,854,-130,1,1,4),(32,841,-117,1,1,4),(32,828,-104,1,1,4),(32,815,-91,1,1,4),(32,802,-78,1,1,4),(32,789,-65,1,1,4),(32,776,-52,1,1,4),(32,763,-39,1,1,4),(32,750,-26,1,1,4),(32,737,-13,1,1,4),(33,1588,-192,1,1,4),(33,1572,-176,1,1,4),(33,1556,-160,1,1,4),(33,1540,-144,1,1,4),(33,1524,-128,1,1,4),(33,1508,-112,1,1,4),(33,1492,-96,1,1,4),(33,1476,-80,1,1,4),(33,1460,-64,1,1,4),(33,1444,-48,1,1,4),(33,1428,-32,1,1,4),(33,1412,-16,1,1,4),(34,2040,-279,1,1,4),(34,2024,-263,1,1,4),(34,1903,-256,1,1,4),(34,1854,-249,1,1,4),(34,1847,-242,1,1,4),(34,1812,-235,1,1,4),(34,1748,-219,1,1,4),(34,1716,-203,1,1,4),(34,1540,-187,1,1,4),(34,1476,-171,1,1,4),(34,1332,-155,1,1,4),(34,1316,-139,1,1,4),(34,1220,-123,1,1,4),(34,1194,-113,1,1,4),(34,1130,-97,1,1,4),(34,1044,-81,1,1,4),(34,963,-65,1,1,4),(34,893,-52,1,1,4),(34,867,-39,1,1,4),(34,854,-26,1,1,4),(34,841,-13,1,1,4),(35,2003,-310,1,1,4),(35,1951,-304,1,1,4),(35,1896,-288,1,1,4),(35,1861,-281,1,1,4),(35,1826,-274,1,1,4),(35,1819,-267,1,1,4),(35,1796,-260,1,1,4),(35,1780,-244,1,1,4),(35,1732,-228,1,1,4),(35,1636,-212,1,1,4),(35,1556,-196,1,1,4),(35,1524,-180,1,1,4),(35,1428,-164,1,1,4),(35,1396,-148,1,1,4),(35,1380,-132,1,1,4),(35,1348,-116,1,1,4),(35,1268,-100,1,1,4),(35,1210,-84,1,1,4),(35,1146,-68,1,1,4),(35,989,-52,1,1,4),(35,937,-39,1,1,4),(35,911,-26,1,1,4),(35,750,-13,1,1,4),(36,2017,-247,1,1,4),(36,1919,-240,1,1,4),(36,1882,-224,1,1,4),(36,1684,-217,1,1,4),(36,1604,-201,1,1,4),(36,1508,-185,1,1,4),(36,1460,-169,1,1,4),(36,1444,-153,1,1,4),(36,1162,-137,1,1,4),(36,802,-121,1,1,4),(36,718,-108,1,1,4),(36,694,-102,1,1,4),(36,462,-96,1,1,4),(36,398,-80,1,1,4),(36,302,-64,1,1,4),(36,110,-48,1,1,4),(36,94,-32,1,1,4),(36,62,-16,1,1,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_tmp` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Indexer temporary table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_compare_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_compare_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_compare_item` (
  `catalog_compare_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID',
  `visitor_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Visitor ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `list_id` int unsigned DEFAULT NULL COMMENT 'List ID',
  PRIMARY KEY (`catalog_compare_item_id`),
  KEY `[[DBPREFIX]]CAT_CMP_ITEM_LIST_ID_[[DBPREFIX]]CAT_CMP_LIST_LIST_ID` (`list_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_LIST_ID_[[DBPREFIX]]CAT_CMP_LIST_LIST_ID` FOREIGN KEY (`list_id`) REFERENCES `[[dbprefix]]catalog_compare_list` (`list_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_COMPARE_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_compare_item`
--

LOCK TABLES `[[dbprefix]]catalog_compare_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_compare_list`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_compare_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_compare_list` (
  `list_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare List ID',
  `list_id_mask` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`list_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_COMPARE_LIST_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_LIST_LIST_ID_MASK` (`list_id_mask`),
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_LIST_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare List with hash Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_compare_list`
--

LOCK TABLES `[[dbprefix]]catalog_compare_list` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_eav_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_eav_attribute` (
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `frontend_input_renderer` varchar(255) DEFAULT NULL COMMENT 'Frontend Input Renderer',
  `is_global` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Global',
  `is_visible` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible',
  `is_searchable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable',
  `is_filterable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable',
  `is_comparable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Comparable',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `is_html_allowed_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is HTML Allowed On Front',
  `is_used_for_price_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Price Rules',
  `is_filterable_in_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable In Search',
  `used_in_product_listing` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used In Product Listing',
  `used_for_sort_by` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Sorting',
  `apply_to` varchar(255) DEFAULT NULL COMMENT 'Apply To',
  `is_visible_in_advanced_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible In Advanced Search',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_wysiwyg_enabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is WYSIWYG Enabled',
  `is_used_for_promo_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Promo Rules',
  `is_required_in_admin_store` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Required In Admin Store',
  `is_used_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid',
  `search_weight` float NOT NULL DEFAULT '1' COMMENT 'Search Weight',
  `is_pagebuilder_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is PageBuilder Enabled',
  `additional_data` text COMMENT 'Additional swatch attributes data',
  PRIMARY KEY (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `[[DBPREFIX]]CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `[[DBPREFIX]]CAT_EAV_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog EAV Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_eav_attribute`
--

LOCK TABLES `[[dbprefix]]catalog_eav_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_eav_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_eav_attribute` VALUES (45,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(47,NULL,0,1,0,0,0,0,1,0,0,0,0,NULL,0,0,1,0,0,0,0,0,1,0,NULL),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(51,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(54,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(59,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(63,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(64,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(65,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(66,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(67,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\Available',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(68,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\DefaultSortby',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(70,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(71,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(72,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(73,NULL,0,1,1,0,0,0,0,0,0,1,1,NULL,1,0,0,0,0,0,0,0,5,0,NULL),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,NULL,1,0,0,1,0,0,0,0,6,0,NULL),(75,NULL,0,1,1,0,1,0,1,0,0,0,0,NULL,1,0,1,0,0,0,0,0,1,1,NULL),(76,NULL,0,1,1,0,1,0,1,0,0,1,0,NULL,1,0,1,0,0,1,0,0,1,0,NULL),(77,NULL,1,1,1,1,0,0,0,0,0,1,1,'simple,virtual,bundle,downloadable,configurable',1,0,0,0,0,0,0,0,1,0,NULL),(78,NULL,1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(79,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(80,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(81,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable',0,0,0,0,0,1,0,1,1,0,NULL),(82,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight',1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(83,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,configurable',1,0,0,0,0,1,0,1,1,0,NULL),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(86,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(88,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(89,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(90,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(91,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(92,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(93,NULL,1,1,0,1,0,0,1,0,0,1,0,'simple,virtual,configurable',0,0,0,1,0,1,0,1,1,0,'{\"swatch_input_type\":\"visual\",\"update_product_preview_image\":1,\"use_product_image_for_swatch\":0}'),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(95,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(96,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(97,'Magento\\Framework\\Data\\Form\\Element\\Hidden',2,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(98,NULL,0,0,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(101,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(103,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(105,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Category',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(107,NULL,1,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(109,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(110,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(111,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(112,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(113,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(114,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable,grouped',0,0,0,0,0,1,0,1,1,0,NULL),(115,'Magento\\CatalogInventory\\Block\\Adminhtml\\Form\\Field\\Stock',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(116,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(117,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(118,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(119,NULL,0,1,1,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(120,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(121,NULL,0,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(122,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(123,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type',1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(124,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price',2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(125,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(126,NULL,1,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(127,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(128,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(129,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(130,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(131,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(132,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(133,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(134,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(135,NULL,1,1,0,1,1,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(136,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(137,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(138,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(139,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(140,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(141,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(142,NULL,1,1,0,1,0,0,1,0,0,1,0,NULL,0,0,0,1,0,0,0,0,1,0,'{\"swatch_input_type\":\"text\",\"update_product_preview_image\":1,\"use_product_image_for_swatch\":0}'),(143,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(144,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(145,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(146,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(147,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(148,'Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(149,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(150,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(151,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(152,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(153,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(154,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(155,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(156,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_attribute_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_attribute_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_attribute_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalog_product_attribute_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_attribute_cl`
--

LOCK TABLES `[[dbprefix]]catalog_product_attribute_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_attribute_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_attribute_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `required` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required',
  `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `type` varchar(255) DEFAULT NULL COMMENT 'Type',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_OPT_PARENT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_option`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_option` VALUES (1,45,1,1,'radio'),(2,45,1,2,'radio'),(3,45,1,3,'radio'),(4,45,1,4,'radio');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_option_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_option_value` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `option_id` int unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_OPT_VAL_OPT_ID_[[DBPREFIX]]CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_option_value`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_option_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option_value` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_option_value` VALUES (1,1,0,'Sprite Stasis Ball',45),(2,2,0,'Sprite Foam Yoga Brick',45),(3,3,0,'Sprite Yoga Strap',45),(4,4,0,'Sprite Foam Roller',45);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_price_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_price_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_price_index` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `min_price` decimal(20,6) NOT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) NOT NULL COMMENT 'Max Price',
  PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `FK_8DB5B8954D6EEC1C9A89C61D561C2D39` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_PRICE_IDX_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Price Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_price_index`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_price_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_price_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_price_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_selection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_selection` (
  `selection_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Selection ID',
  `option_id` int unsigned NOT NULL COMMENT 'Option ID',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_default` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default',
  `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Selection Price Value',
  `selection_qty` decimal(12,4) DEFAULT NULL COMMENT 'Selection Qty',
  `selection_can_change_qty` smallint NOT NULL DEFAULT '0' COMMENT 'Selection Can Change Qty',
  PRIMARY KEY (`selection_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_OPT_ID_[[DBPREFIX]]CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_selection`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_selection` VALUES (1,1,45,26,1,1,0,0.0000,1.0000,1),(2,1,45,29,2,0,0,0.0000,1.0000,1),(3,1,45,32,3,0,0,0.0000,1.0000,1),(4,2,45,21,1,1,0,0.0000,1.0000,1),(5,3,45,33,1,1,0,0.0000,1.0000,1),(6,3,45,34,2,0,0,0.0000,1.0000,1),(7,3,45,35,3,0,0,0.0000,1.0000,1),(8,4,45,22,1,1,0,0.0000,1.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_selection_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_selection_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_selection_price` (
  `selection_id` int unsigned NOT NULL COMMENT 'Selection ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Selection Price Value',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_48A0D40A08C88AC5E40947636D598C57` FOREIGN KEY (`selection_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_selection_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_selection_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_stock_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_stock_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_stock_index` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `stock_status` smallint DEFAULT '0' COMMENT 'Stock Status',
  PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Stock Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_stock_index`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_stock_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_stock_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_stock_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_category_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_category_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_category_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalog_product_category_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_category_cl`
--

LOCK TABLES `[[dbprefix]]catalog_product_category_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_category_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_category_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type ID',
  `sku` varchar(64) NOT NULL COMMENT 'SKU',
  `has_options` smallint NOT NULL DEFAULT '0' COMMENT 'Has Options',
  `required_options` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required Options',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_SKU` (`sku`)
) ENGINE=InnoDB AUTO_INCREMENT=2041 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity` VALUES (1,15,'simple','24-MB01',0,0,'[[regtime]]','[[regtime]]'),(2,15,'simple','24-MB04',0,0,'[[regtime]]','[[regtime]]'),(3,15,'simple','24-MB03',0,0,'[[regtime]]','[[regtime]]'),(4,15,'simple','24-MB05',0,0,'[[regtime]]','[[regtime]]'),(5,15,'simple','24-MB06',0,0,'[[regtime]]','[[regtime]]'),(6,15,'simple','24-MB02',0,0,'[[regtime]]','[[regtime]]'),(7,15,'simple','24-UB02',0,0,'[[regtime]]','[[regtime]]'),(8,15,'simple','24-WB01',0,0,'[[regtime]]','[[regtime]]'),(9,15,'simple','24-WB02',0,0,'[[regtime]]','[[regtime]]'),(10,15,'simple','24-WB05',0,0,'[[regtime]]','[[regtime]]'),(11,15,'simple','24-WB06',0,0,'[[regtime]]','[[regtime]]'),(12,15,'simple','24-WB03',0,0,'[[regtime]]','[[regtime]]'),(13,15,'simple','24-WB07',0,0,'[[regtime]]','[[regtime]]'),(14,15,'simple','24-WB04',0,0,'[[regtime]]','[[regtime]]'),(15,11,'simple','24-UG06',0,0,'[[regtime]]','[[regtime]]'),(16,11,'simple','24-UG07',0,0,'[[regtime]]','[[regtime]]'),(17,11,'simple','24-UG04',0,0,'[[regtime]]','[[regtime]]'),(18,11,'simple','24-UG02',0,0,'[[regtime]]','[[regtime]]'),(19,11,'simple','24-UG05',0,0,'[[regtime]]','[[regtime]]'),(20,11,'simple','24-UG01',0,0,'[[regtime]]','[[regtime]]'),(21,11,'simple','24-WG084',0,0,'[[regtime]]','[[regtime]]'),(22,11,'simple','24-WG088',0,0,'[[regtime]]','[[regtime]]'),(23,11,'simple','24-UG03',0,0,'[[regtime]]','[[regtime]]'),(24,12,'simple','24-WG081-gray',0,0,'[[regtime]]','[[regtime]]'),(25,12,'simple','24-WG081-pink',0,0,'[[regtime]]','[[regtime]]'),(26,12,'simple','24-WG081-blue',0,0,'[[regtime]]','[[regtime]]'),(27,12,'simple','24-WG082-gray',0,0,'[[regtime]]','[[regtime]]'),(28,12,'simple','24-WG082-pink',0,0,'[[regtime]]','[[regtime]]'),(29,12,'simple','24-WG082-blue',0,0,'[[regtime]]','[[regtime]]'),(30,12,'simple','24-WG083-gray',0,0,'[[regtime]]','[[regtime]]'),(31,12,'simple','24-WG083-pink',0,0,'[[regtime]]','[[regtime]]'),(32,12,'simple','24-WG083-blue',0,0,'[[regtime]]','[[regtime]]'),(33,13,'simple','24-WG085',0,0,'[[regtime]]','[[regtime]]'),(34,13,'simple','24-WG086',0,0,'[[regtime]]','[[regtime]]'),(35,13,'simple','24-WG087',0,0,'[[regtime]]','[[regtime]]'),(36,11,'simple','24-MG04',0,0,'[[regtime]]','[[regtime]]'),(37,11,'simple','24-MG01',0,0,'[[regtime]]','[[regtime]]'),(38,11,'simple','24-MG03',0,0,'[[regtime]]','[[regtime]]'),(39,11,'simple','24-MG05',0,0,'[[regtime]]','[[regtime]]'),(40,11,'simple','24-MG02',0,0,'[[regtime]]','[[regtime]]'),(41,11,'simple','24-WG09',0,0,'[[regtime]]','[[regtime]]'),(42,11,'simple','24-WG01',0,0,'[[regtime]]','[[regtime]]'),(43,11,'simple','24-WG03',0,0,'[[regtime]]','[[regtime]]'),(44,11,'simple','24-WG02',0,0,'[[regtime]]','[[regtime]]'),(45,11,'bundle','24-WG080',1,1,'[[regtime]]','[[regtime]]'),(46,11,'grouped','24-WG085_Group',0,0,'[[regtime]]','[[regtime]]'),(47,9,'simple','MH01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(48,9,'simple','MH01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(49,9,'simple','MH01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(50,9,'simple','MH01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(51,9,'simple','MH01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(52,9,'simple','MH01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(53,9,'simple','MH01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(54,9,'simple','MH01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(55,9,'simple','MH01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(56,9,'simple','MH01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(57,9,'simple','MH01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(58,9,'simple','MH01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(59,9,'simple','MH01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(60,9,'simple','MH01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(61,9,'simple','MH01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(62,9,'configurable','MH01',1,0,'[[regtime]]','[[regtime]]'),(63,9,'simple','MH02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(64,9,'simple','MH02-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(65,9,'simple','MH02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(66,9,'simple','MH02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(67,9,'simple','MH02-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(68,9,'simple','MH02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(69,9,'simple','MH02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(70,9,'simple','MH02-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(71,9,'simple','MH02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(72,9,'simple','MH02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(73,9,'simple','MH02-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(74,9,'simple','MH02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(75,9,'simple','MH02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(76,9,'simple','MH02-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(77,9,'simple','MH02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(78,9,'configurable','MH02',1,0,'[[regtime]]','[[regtime]]'),(79,9,'simple','MH03-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(80,9,'simple','MH03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(81,9,'simple','MH03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(82,9,'simple','MH03-S-Black',0,0,'[[regtime]]','[[regtime]]'),(83,9,'simple','MH03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(84,9,'simple','MH03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(85,9,'simple','MH03-M-Black',0,0,'[[regtime]]','[[regtime]]'),(86,9,'simple','MH03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(87,9,'simple','MH03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(88,9,'simple','MH03-L-Black',0,0,'[[regtime]]','[[regtime]]'),(89,9,'simple','MH03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(90,9,'simple','MH03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(91,9,'simple','MH03-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(92,9,'simple','MH03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(93,9,'simple','MH03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(94,9,'configurable','MH03',1,0,'[[regtime]]','[[regtime]]'),(95,9,'simple','MH04-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(96,9,'simple','MH04-XS-White',0,0,'[[regtime]]','[[regtime]]'),(97,9,'simple','MH04-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(98,9,'simple','MH04-S-Green',0,0,'[[regtime]]','[[regtime]]'),(99,9,'simple','MH04-S-White',0,0,'[[regtime]]','[[regtime]]'),(100,9,'simple','MH04-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(101,9,'simple','MH04-M-Green',0,0,'[[regtime]]','[[regtime]]'),(102,9,'simple','MH04-M-White',0,0,'[[regtime]]','[[regtime]]'),(103,9,'simple','MH04-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(104,9,'simple','MH04-L-Green',0,0,'[[regtime]]','[[regtime]]'),(105,9,'simple','MH04-L-White',0,0,'[[regtime]]','[[regtime]]'),(106,9,'simple','MH04-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(107,9,'simple','MH04-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(108,9,'simple','MH04-XL-White',0,0,'[[regtime]]','[[regtime]]'),(109,9,'simple','MH04-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(110,9,'configurable','MH04',1,0,'[[regtime]]','[[regtime]]'),(111,9,'simple','MH05-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(112,9,'simple','MH05-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(113,9,'simple','MH05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(114,9,'simple','MH05-S-Green',0,0,'[[regtime]]','[[regtime]]'),(115,9,'simple','MH05-S-Red',0,0,'[[regtime]]','[[regtime]]'),(116,9,'simple','MH05-S-White',0,0,'[[regtime]]','[[regtime]]'),(117,9,'simple','MH05-M-Green',0,0,'[[regtime]]','[[regtime]]'),(118,9,'simple','MH05-M-Red',0,0,'[[regtime]]','[[regtime]]'),(119,9,'simple','MH05-M-White',0,0,'[[regtime]]','[[regtime]]'),(120,9,'simple','MH05-L-Green',0,0,'[[regtime]]','[[regtime]]'),(121,9,'simple','MH05-L-Red',0,0,'[[regtime]]','[[regtime]]'),(122,9,'simple','MH05-L-White',0,0,'[[regtime]]','[[regtime]]'),(123,9,'simple','MH05-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(124,9,'simple','MH05-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(125,9,'simple','MH05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(126,9,'configurable','MH05',1,0,'[[regtime]]','[[regtime]]'),(127,9,'simple','MH06-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(128,9,'simple','MH06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(129,9,'simple','MH06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(130,9,'simple','MH06-S-Black',0,0,'[[regtime]]','[[regtime]]'),(131,9,'simple','MH06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(132,9,'simple','MH06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(133,9,'simple','MH06-M-Black',0,0,'[[regtime]]','[[regtime]]'),(134,9,'simple','MH06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(135,9,'simple','MH06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(136,9,'simple','MH06-L-Black',0,0,'[[regtime]]','[[regtime]]'),(137,9,'simple','MH06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(138,9,'simple','MH06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(139,9,'simple','MH06-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(140,9,'simple','MH06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(141,9,'simple','MH06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(142,9,'configurable','MH06',1,0,'[[regtime]]','[[regtime]]'),(143,9,'simple','MH07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(144,9,'simple','MH07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(145,9,'simple','MH07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(146,9,'simple','MH07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(147,9,'simple','MH07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(148,9,'simple','MH07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(149,9,'simple','MH07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(150,9,'simple','MH07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(151,9,'simple','MH07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(152,9,'simple','MH07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(153,9,'simple','MH07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(154,9,'simple','MH07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(155,9,'simple','MH07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(156,9,'simple','MH07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(157,9,'simple','MH07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(158,9,'configurable','MH07',1,0,'[[regtime]]','[[regtime]]'),(159,9,'simple','MH08-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(160,9,'simple','MH08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(161,9,'simple','MH08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(162,9,'simple','MH08-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(163,9,'simple','MH08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(164,9,'simple','MH08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(165,9,'simple','MH08-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(166,9,'simple','MH08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(167,9,'simple','MH08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(168,9,'simple','MH08-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(169,9,'simple','MH08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(170,9,'simple','MH08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(171,9,'simple','MH08-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(172,9,'simple','MH08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(173,9,'simple','MH08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(174,9,'configurable','MH08',1,0,'[[regtime]]','[[regtime]]'),(175,9,'simple','MH09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(176,9,'simple','MH09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(177,9,'simple','MH09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(178,9,'simple','MH09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(179,9,'simple','MH09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(180,9,'simple','MH09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(181,9,'simple','MH09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(182,9,'simple','MH09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(183,9,'simple','MH09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(184,9,'simple','MH09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(185,9,'simple','MH09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(186,9,'simple','MH09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(187,9,'simple','MH09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(188,9,'simple','MH09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(189,9,'simple','MH09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(190,9,'configurable','MH09',1,0,'[[regtime]]','[[regtime]]'),(191,9,'simple','MH10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(192,9,'simple','MH10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(193,9,'simple','MH10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(194,9,'simple','MH10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(195,9,'simple','MH10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(196,9,'simple','MH10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(197,9,'simple','MH10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(198,9,'simple','MH10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(199,9,'simple','MH10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(200,9,'simple','MH10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(201,9,'simple','MH10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(202,9,'simple','MH10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(203,9,'simple','MH10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(204,9,'simple','MH10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(205,9,'simple','MH10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(206,9,'configurable','MH10',1,0,'[[regtime]]','[[regtime]]'),(207,9,'simple','MH11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(208,9,'simple','MH11-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(209,9,'simple','MH11-XS-White',0,0,'[[regtime]]','[[regtime]]'),(210,9,'simple','MH11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(211,9,'simple','MH11-S-Red',0,0,'[[regtime]]','[[regtime]]'),(212,9,'simple','MH11-S-White',0,0,'[[regtime]]','[[regtime]]'),(213,9,'simple','MH11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(214,9,'simple','MH11-M-Red',0,0,'[[regtime]]','[[regtime]]'),(215,9,'simple','MH11-M-White',0,0,'[[regtime]]','[[regtime]]'),(216,9,'simple','MH11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(217,9,'simple','MH11-L-Red',0,0,'[[regtime]]','[[regtime]]'),(218,9,'simple','MH11-L-White',0,0,'[[regtime]]','[[regtime]]'),(219,9,'simple','MH11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(220,9,'simple','MH11-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(221,9,'simple','MH11-XL-White',0,0,'[[regtime]]','[[regtime]]'),(222,9,'configurable','MH11',1,0,'[[regtime]]','[[regtime]]'),(223,9,'simple','MH12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(224,9,'simple','MH12-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(225,9,'simple','MH12-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(226,9,'simple','MH12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(227,9,'simple','MH12-S-Green',0,0,'[[regtime]]','[[regtime]]'),(228,9,'simple','MH12-S-Red',0,0,'[[regtime]]','[[regtime]]'),(229,9,'simple','MH12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(230,9,'simple','MH12-M-Green',0,0,'[[regtime]]','[[regtime]]'),(231,9,'simple','MH12-M-Red',0,0,'[[regtime]]','[[regtime]]'),(232,9,'simple','MH12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(233,9,'simple','MH12-L-Green',0,0,'[[regtime]]','[[regtime]]'),(234,9,'simple','MH12-L-Red',0,0,'[[regtime]]','[[regtime]]'),(235,9,'simple','MH12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(236,9,'simple','MH12-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(237,9,'simple','MH12-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(238,9,'configurable','MH12',1,0,'[[regtime]]','[[regtime]]'),(239,9,'simple','MH13-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(240,9,'simple','MH13-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(241,9,'simple','MH13-XS-Lavender',0,0,'[[regtime]]','[[regtime]]'),(242,9,'simple','MH13-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(243,9,'simple','MH13-S-Green',0,0,'[[regtime]]','[[regtime]]'),(244,9,'simple','MH13-S-Lavender',0,0,'[[regtime]]','[[regtime]]'),(245,9,'simple','MH13-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(246,9,'simple','MH13-M-Green',0,0,'[[regtime]]','[[regtime]]'),(247,9,'simple','MH13-M-Lavender',0,0,'[[regtime]]','[[regtime]]'),(248,9,'simple','MH13-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(249,9,'simple','MH13-L-Green',0,0,'[[regtime]]','[[regtime]]'),(250,9,'simple','MH13-L-Lavender',0,0,'[[regtime]]','[[regtime]]'),(251,9,'simple','MH13-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(252,9,'simple','MH13-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(253,9,'simple','MH13-XL-Lavender',0,0,'[[regtime]]','[[regtime]]'),(254,9,'configurable','MH13',1,0,'[[regtime]]','[[regtime]]'),(255,9,'simple','MJ01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(256,9,'simple','MJ01-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(257,9,'simple','MJ01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(258,9,'simple','MJ01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(259,9,'simple','MJ01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(260,9,'simple','MJ01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(261,9,'simple','MJ01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(262,9,'simple','MJ01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(263,9,'simple','MJ01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(264,9,'simple','MJ01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(265,9,'simple','MJ01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(266,9,'simple','MJ01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(267,9,'simple','MJ01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(268,9,'simple','MJ01-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(269,9,'simple','MJ01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(270,9,'configurable','MJ01',1,0,'[[regtime]]','[[regtime]]'),(271,9,'simple','MJ02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(272,9,'simple','MJ02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(273,9,'simple','MJ02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(274,9,'simple','MJ02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(275,9,'simple','MJ02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(276,9,'simple','MJ02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(277,9,'simple','MJ02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(278,9,'simple','MJ02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(279,9,'simple','MJ02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(280,9,'simple','MJ02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(281,9,'simple','MJ02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(282,9,'simple','MJ02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(283,9,'simple','MJ02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(284,9,'simple','MJ02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(285,9,'simple','MJ02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(286,9,'configurable','MJ02',1,0,'[[regtime]]','[[regtime]]'),(287,9,'simple','MJ04-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(288,9,'simple','MJ04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(289,9,'simple','MJ04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(290,9,'simple','MJ04-S-Black',0,0,'[[regtime]]','[[regtime]]'),(291,9,'simple','MJ04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(292,9,'simple','MJ04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(293,9,'simple','MJ04-M-Black',0,0,'[[regtime]]','[[regtime]]'),(294,9,'simple','MJ04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(295,9,'simple','MJ04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(296,9,'simple','MJ04-L-Black',0,0,'[[regtime]]','[[regtime]]'),(297,9,'simple','MJ04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(298,9,'simple','MJ04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(299,9,'simple','MJ04-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(300,9,'simple','MJ04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(301,9,'simple','MJ04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(302,9,'configurable','MJ04',1,0,'[[regtime]]','[[regtime]]'),(303,9,'simple','MJ07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(304,9,'simple','MJ07-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(305,9,'simple','MJ07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(306,9,'simple','MJ07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(307,9,'simple','MJ07-S-Red',0,0,'[[regtime]]','[[regtime]]'),(308,9,'simple','MJ07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(309,9,'simple','MJ07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(310,9,'simple','MJ07-M-Red',0,0,'[[regtime]]','[[regtime]]'),(311,9,'simple','MJ07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(312,9,'simple','MJ07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(313,9,'simple','MJ07-L-Red',0,0,'[[regtime]]','[[regtime]]'),(314,9,'simple','MJ07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(315,9,'simple','MJ07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(316,9,'simple','MJ07-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(317,9,'simple','MJ07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(318,9,'configurable','MJ07',1,0,'[[regtime]]','[[regtime]]'),(319,9,'simple','MJ08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(320,9,'simple','MJ08-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(321,9,'simple','MJ08-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(322,9,'simple','MJ08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(323,9,'simple','MJ08-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(324,9,'simple','MJ08-S-Green',0,0,'[[regtime]]','[[regtime]]'),(325,9,'simple','MJ08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(326,9,'simple','MJ08-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(327,9,'simple','MJ08-M-Green',0,0,'[[regtime]]','[[regtime]]'),(328,9,'simple','MJ08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(329,9,'simple','MJ08-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(330,9,'simple','MJ08-L-Green',0,0,'[[regtime]]','[[regtime]]'),(331,9,'simple','MJ08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(332,9,'simple','MJ08-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(333,9,'simple','MJ08-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(334,9,'configurable','MJ08',1,0,'[[regtime]]','[[regtime]]'),(335,9,'simple','MJ09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(336,9,'simple','MJ09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(337,9,'simple','MJ09-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(338,9,'simple','MJ09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(339,9,'simple','MJ09-S-White',0,0,'[[regtime]]','[[regtime]]'),(340,9,'simple','MJ09-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(341,9,'simple','MJ09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(342,9,'simple','MJ09-M-White',0,0,'[[regtime]]','[[regtime]]'),(343,9,'simple','MJ09-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(344,9,'simple','MJ09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(345,9,'simple','MJ09-L-White',0,0,'[[regtime]]','[[regtime]]'),(346,9,'simple','MJ09-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(347,9,'simple','MJ09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(348,9,'simple','MJ09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(349,9,'simple','MJ09-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(350,9,'configurable','MJ09',1,0,'[[regtime]]','[[regtime]]'),(351,9,'simple','MJ10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(352,9,'simple','MJ10-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(353,9,'simple','MJ10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(354,9,'simple','MJ10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(355,9,'simple','MJ10-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(356,9,'simple','MJ10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(357,9,'simple','MJ10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(358,9,'simple','MJ10-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(359,9,'simple','MJ10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(360,9,'simple','MJ10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(361,9,'simple','MJ10-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(362,9,'simple','MJ10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(363,9,'simple','MJ10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(364,9,'simple','MJ10-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(365,9,'simple','MJ10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(366,9,'configurable','MJ10',1,0,'[[regtime]]','[[regtime]]'),(367,9,'simple','MJ11-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(368,9,'simple','MJ11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(369,9,'simple','MJ11-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(370,9,'simple','MJ11-S-Black',0,0,'[[regtime]]','[[regtime]]'),(371,9,'simple','MJ11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(372,9,'simple','MJ11-S-Red',0,0,'[[regtime]]','[[regtime]]'),(373,9,'simple','MJ11-M-Black',0,0,'[[regtime]]','[[regtime]]'),(374,9,'simple','MJ11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(375,9,'simple','MJ11-M-Red',0,0,'[[regtime]]','[[regtime]]'),(376,9,'simple','MJ11-L-Black',0,0,'[[regtime]]','[[regtime]]'),(377,9,'simple','MJ11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(378,9,'simple','MJ11-L-Red',0,0,'[[regtime]]','[[regtime]]'),(379,9,'simple','MJ11-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(380,9,'simple','MJ11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(381,9,'simple','MJ11-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(382,9,'configurable','MJ11',1,0,'[[regtime]]','[[regtime]]'),(383,9,'simple','MJ06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(384,9,'simple','MJ06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(385,9,'simple','MJ06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(386,9,'simple','MJ06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(387,9,'simple','MJ06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(388,9,'simple','MJ06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(389,9,'simple','MJ06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(390,9,'simple','MJ06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(391,9,'simple','MJ06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(392,9,'simple','MJ06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(393,9,'simple','MJ06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(394,9,'simple','MJ06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(395,9,'simple','MJ06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(396,9,'simple','MJ06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(397,9,'simple','MJ06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(398,9,'configurable','MJ06',1,0,'[[regtime]]','[[regtime]]'),(399,9,'simple','MJ03-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(400,9,'simple','MJ03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(401,9,'simple','MJ03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(402,9,'simple','MJ03-S-Black',0,0,'[[regtime]]','[[regtime]]'),(403,9,'simple','MJ03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(404,9,'simple','MJ03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(405,9,'simple','MJ03-M-Black',0,0,'[[regtime]]','[[regtime]]'),(406,9,'simple','MJ03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(407,9,'simple','MJ03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(408,9,'simple','MJ03-L-Black',0,0,'[[regtime]]','[[regtime]]'),(409,9,'simple','MJ03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(410,9,'simple','MJ03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(411,9,'simple','MJ03-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(412,9,'simple','MJ03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(413,9,'simple','MJ03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(414,9,'configurable','MJ03',1,0,'[[regtime]]','[[regtime]]'),(415,9,'simple','MJ12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(416,9,'simple','MJ12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(417,9,'simple','MJ12-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(418,9,'simple','MJ12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(419,9,'simple','MJ12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(420,9,'simple','MJ12-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(421,9,'simple','MJ12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(422,9,'simple','MJ12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(423,9,'simple','MJ12-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(424,9,'simple','MJ12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(425,9,'simple','MJ12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(426,9,'simple','MJ12-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(427,9,'simple','MJ12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(428,9,'simple','MJ12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(429,9,'simple','MJ12-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(430,9,'configurable','MJ12',1,0,'[[regtime]]','[[regtime]]'),(431,9,'simple','MS04-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(432,9,'simple','MS04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(433,9,'simple','MS04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(434,9,'simple','MS04-S-Black',0,0,'[[regtime]]','[[regtime]]'),(435,9,'simple','MS04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(436,9,'simple','MS04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(437,9,'simple','MS04-M-Black',0,0,'[[regtime]]','[[regtime]]'),(438,9,'simple','MS04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(439,9,'simple','MS04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(440,9,'simple','MS04-L-Black',0,0,'[[regtime]]','[[regtime]]'),(441,9,'simple','MS04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(442,9,'simple','MS04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(443,9,'simple','MS04-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(444,9,'simple','MS04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(445,9,'simple','MS04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(446,9,'configurable','MS04',1,0,'[[regtime]]','[[regtime]]'),(447,9,'simple','MS05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(448,9,'simple','MS05-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(449,9,'simple','MS05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(450,9,'simple','MS05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(451,9,'simple','MS05-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(452,9,'simple','MS05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(453,9,'simple','MS05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(454,9,'simple','MS05-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(455,9,'simple','MS05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(456,9,'simple','MS05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(457,9,'simple','MS05-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(458,9,'simple','MS05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(459,9,'simple','MS05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(460,9,'simple','MS05-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(461,9,'simple','MS05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(462,9,'configurable','MS05',1,0,'[[regtime]]','[[regtime]]'),(463,9,'simple','MS09-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(464,9,'simple','MS09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(465,9,'simple','MS09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(466,9,'simple','MS09-S-Black',0,0,'[[regtime]]','[[regtime]]'),(467,9,'simple','MS09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(468,9,'simple','MS09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(469,9,'simple','MS09-M-Black',0,0,'[[regtime]]','[[regtime]]'),(470,9,'simple','MS09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(471,9,'simple','MS09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(472,9,'simple','MS09-L-Black',0,0,'[[regtime]]','[[regtime]]'),(473,9,'simple','MS09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(474,9,'simple','MS09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(475,9,'simple','MS09-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(476,9,'simple','MS09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(477,9,'simple','MS09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(478,9,'configurable','MS09',1,0,'[[regtime]]','[[regtime]]'),(479,9,'simple','MS11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(480,9,'simple','MS11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(481,9,'simple','MS11-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(482,9,'simple','MS11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(483,9,'simple','MS11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(484,9,'simple','MS11-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(485,9,'simple','MS11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(486,9,'simple','MS11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(487,9,'simple','MS11-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(488,9,'simple','MS11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(489,9,'simple','MS11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(490,9,'simple','MS11-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(491,9,'simple','MS11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(492,9,'simple','MS11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(493,9,'simple','MS11-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(494,9,'configurable','MS11',1,0,'[[regtime]]','[[regtime]]'),(495,9,'simple','MS12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(496,9,'simple','MS12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(497,9,'simple','MS12-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(498,9,'simple','MS12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(499,9,'simple','MS12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(500,9,'simple','MS12-S-Red',0,0,'[[regtime]]','[[regtime]]'),(501,9,'simple','MS12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(502,9,'simple','MS12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(503,9,'simple','MS12-M-Red',0,0,'[[regtime]]','[[regtime]]'),(504,9,'simple','MS12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(505,9,'simple','MS12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(506,9,'simple','MS12-L-Red',0,0,'[[regtime]]','[[regtime]]'),(507,9,'simple','MS12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(508,9,'simple','MS12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(509,9,'simple','MS12-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(510,9,'configurable','MS12',1,0,'[[regtime]]','[[regtime]]'),(511,9,'simple','MS03-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(512,9,'simple','MS03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(513,9,'simple','MS03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(514,9,'simple','MS03-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(515,9,'simple','MS03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(516,9,'simple','MS03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(517,9,'simple','MS03-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(518,9,'simple','MS03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(519,9,'simple','MS03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(520,9,'simple','MS03-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(521,9,'simple','MS03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(522,9,'simple','MS03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(523,9,'simple','MS03-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(524,9,'simple','MS03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(525,9,'simple','MS03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(526,9,'configurable','MS03',1,0,'[[regtime]]','[[regtime]]'),(527,9,'simple','MS06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(528,9,'simple','MS06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(529,9,'simple','MS06-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(530,9,'simple','MS06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(531,9,'simple','MS06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(532,9,'simple','MS06-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(533,9,'simple','MS06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(534,9,'simple','MS06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(535,9,'simple','MS06-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(536,9,'simple','MS06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(537,9,'simple','MS06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(538,9,'simple','MS06-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(539,9,'simple','MS06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(540,9,'simple','MS06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(541,9,'simple','MS06-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(542,9,'configurable','MS06',1,0,'[[regtime]]','[[regtime]]'),(543,9,'simple','MS01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(544,9,'simple','MS01-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(545,9,'simple','MS01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(546,9,'simple','MS01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(547,9,'simple','MS01-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(548,9,'simple','MS01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(549,9,'simple','MS01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(550,9,'simple','MS01-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(551,9,'simple','MS01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(552,9,'simple','MS01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(553,9,'simple','MS01-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(554,9,'simple','MS01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(555,9,'simple','MS01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(556,9,'simple','MS01-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(557,9,'simple','MS01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(558,9,'configurable','MS01',1,0,'[[regtime]]','[[regtime]]'),(559,9,'simple','MS02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(560,9,'simple','MS02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(561,9,'simple','MS02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(562,9,'simple','MS02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(563,9,'simple','MS02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(564,9,'simple','MS02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(565,9,'simple','MS02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(566,9,'simple','MS02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(567,9,'simple','MS02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(568,9,'simple','MS02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(569,9,'simple','MS02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(570,9,'simple','MS02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(571,9,'simple','MS02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(572,9,'simple','MS02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(573,9,'simple','MS02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(574,9,'configurable','MS02',1,0,'[[regtime]]','[[regtime]]'),(575,9,'simple','MS10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(576,9,'simple','MS10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(577,9,'simple','MS10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(578,9,'simple','MS10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(579,9,'simple','MS10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(580,9,'simple','MS10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(581,9,'simple','MS10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(582,9,'simple','MS10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(583,9,'simple','MS10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(584,9,'simple','MS10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(585,9,'simple','MS10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(586,9,'simple','MS10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(587,9,'simple','MS10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(588,9,'simple','MS10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(589,9,'simple','MS10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(590,9,'configurable','MS10',1,0,'[[regtime]]','[[regtime]]'),(591,9,'simple','MS07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(592,9,'simple','MS07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(593,9,'simple','MS07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(594,9,'simple','MS07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(595,9,'simple','MS07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(596,9,'simple','MS07-S-White',0,0,'[[regtime]]','[[regtime]]'),(597,9,'simple','MS07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(598,9,'simple','MS07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(599,9,'simple','MS07-M-White',0,0,'[[regtime]]','[[regtime]]'),(600,9,'simple','MS07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(601,9,'simple','MS07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(602,9,'simple','MS07-L-White',0,0,'[[regtime]]','[[regtime]]'),(603,9,'simple','MS07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(604,9,'simple','MS07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(605,9,'simple','MS07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(606,9,'configurable','MS07',1,0,'[[regtime]]','[[regtime]]'),(607,9,'simple','MS08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(608,9,'simple','MS08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(609,9,'simple','MS08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(610,9,'simple','MS08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(611,9,'simple','MS08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(612,9,'simple','MS08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(613,9,'simple','MS08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(614,9,'simple','MS08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(615,9,'simple','MS08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(616,9,'simple','MS08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(617,9,'simple','MS08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(618,9,'simple','MS08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(619,9,'simple','MS08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(620,9,'simple','MS08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(621,9,'simple','MS08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(622,9,'configurable','MS08',1,0,'[[regtime]]','[[regtime]]'),(623,9,'simple','MT01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(624,9,'simple','MT01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(625,9,'simple','MT01-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(626,9,'simple','MT01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(627,9,'simple','MT01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(628,9,'simple','MT01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(629,9,'simple','MT01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(630,9,'simple','MT01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(631,9,'simple','MT01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(632,9,'simple','MT01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(633,9,'simple','MT01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(634,9,'simple','MT01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(635,9,'simple','MT01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(636,9,'simple','MT01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(637,9,'simple','MT01-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(638,9,'configurable','MT01',1,0,'[[regtime]]','[[regtime]]'),(639,9,'simple','MT02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(640,9,'simple','MT02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(641,9,'simple','MT02-XS-White',0,0,'[[regtime]]','[[regtime]]'),(642,9,'simple','MT02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(643,9,'simple','MT02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(644,9,'simple','MT02-S-White',0,0,'[[regtime]]','[[regtime]]'),(645,9,'simple','MT02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(646,9,'simple','MT02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(647,9,'simple','MT02-M-White',0,0,'[[regtime]]','[[regtime]]'),(648,9,'simple','MT02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(649,9,'simple','MT02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(650,9,'simple','MT02-L-White',0,0,'[[regtime]]','[[regtime]]'),(651,9,'simple','MT02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(652,9,'simple','MT02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(653,9,'simple','MT02-XL-White',0,0,'[[regtime]]','[[regtime]]'),(654,9,'configurable','MT02',1,0,'[[regtime]]','[[regtime]]'),(655,9,'simple','MT03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(656,9,'simple','MT03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(657,9,'simple','MT03-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(658,9,'simple','MT03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(659,9,'simple','MT03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(660,9,'simple','MT03-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(661,9,'simple','MT03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(662,9,'simple','MT03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(663,9,'simple','MT03-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(664,9,'simple','MT03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(665,9,'simple','MT03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(666,9,'simple','MT03-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(667,9,'simple','MT03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(668,9,'simple','MT03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(669,9,'simple','MT03-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(670,9,'configurable','MT03',1,0,'[[regtime]]','[[regtime]]'),(671,9,'simple','MT04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(672,9,'simple','MT04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(673,9,'simple','MT04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(674,9,'simple','MT04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(675,9,'simple','MT04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(676,9,'configurable','MT04',1,0,'[[regtime]]','[[regtime]]'),(677,9,'simple','MT05-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(678,9,'simple','MT05-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(679,9,'simple','MT05-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(680,9,'simple','MT05-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(681,9,'simple','MT05-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(682,9,'configurable','MT05',1,0,'[[regtime]]','[[regtime]]'),(683,9,'simple','MT06-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(684,9,'simple','MT06-S-Black',0,0,'[[regtime]]','[[regtime]]'),(685,9,'simple','MT06-M-Black',0,0,'[[regtime]]','[[regtime]]'),(686,9,'simple','MT06-L-Black',0,0,'[[regtime]]','[[regtime]]'),(687,9,'simple','MT06-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(688,9,'configurable','MT06',1,0,'[[regtime]]','[[regtime]]'),(689,9,'simple','MT07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(690,9,'simple','MT07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(691,9,'simple','MT07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(692,9,'simple','MT07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(693,9,'simple','MT07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(694,9,'configurable','MT07',1,0,'[[regtime]]','[[regtime]]'),(695,9,'simple','MT08-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(696,9,'simple','MT08-S-Green',0,0,'[[regtime]]','[[regtime]]'),(697,9,'simple','MT08-M-Green',0,0,'[[regtime]]','[[regtime]]'),(698,9,'simple','MT08-L-Green',0,0,'[[regtime]]','[[regtime]]'),(699,9,'simple','MT08-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(700,9,'configurable','MT08',1,0,'[[regtime]]','[[regtime]]'),(701,9,'simple','MT09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(702,9,'simple','MT09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(703,9,'simple','MT09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(704,9,'simple','MT09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(705,9,'simple','MT09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(706,9,'configurable','MT09',1,0,'[[regtime]]','[[regtime]]'),(707,9,'simple','MT10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(708,9,'simple','MT10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(709,9,'simple','MT10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(710,9,'simple','MT10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(711,9,'simple','MT10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(712,9,'configurable','MT10',1,0,'[[regtime]]','[[regtime]]'),(713,9,'simple','MT11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(714,9,'simple','MT11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(715,9,'simple','MT11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(716,9,'simple','MT11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(717,9,'simple','MT11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(718,9,'configurable','MT11',1,0,'[[regtime]]','[[regtime]]'),(719,9,'simple','MT12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(720,9,'simple','MT12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(721,9,'simple','MT12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(722,9,'simple','MT12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(723,9,'simple','MT12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(724,9,'configurable','MT12',1,0,'[[regtime]]','[[regtime]]'),(725,10,'simple','MP01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(726,10,'simple','MP01-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(727,10,'simple','MP01-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(728,10,'simple','MP01-33-Black',0,0,'[[regtime]]','[[regtime]]'),(729,10,'simple','MP01-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(730,10,'simple','MP01-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(731,10,'simple','MP01-34-Black',0,0,'[[regtime]]','[[regtime]]'),(732,10,'simple','MP01-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(733,10,'simple','MP01-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(734,10,'simple','MP01-36-Black',0,0,'[[regtime]]','[[regtime]]'),(735,10,'simple','MP01-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(736,10,'simple','MP01-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(737,10,'configurable','MP01',1,0,'[[regtime]]','[[regtime]]'),(738,10,'simple','MP02-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(739,10,'simple','MP02-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(740,10,'simple','MP02-32-Red',0,0,'[[regtime]]','[[regtime]]'),(741,10,'simple','MP02-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(742,10,'simple','MP02-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(743,10,'simple','MP02-33-Red',0,0,'[[regtime]]','[[regtime]]'),(744,10,'simple','MP02-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(745,10,'simple','MP02-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(746,10,'simple','MP02-34-Red',0,0,'[[regtime]]','[[regtime]]'),(747,10,'simple','MP02-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(748,10,'simple','MP02-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(749,10,'simple','MP02-36-Red',0,0,'[[regtime]]','[[regtime]]'),(750,10,'configurable','MP02',1,0,'[[regtime]]','[[regtime]]'),(751,10,'simple','MP03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(752,10,'simple','MP03-32-Green',0,0,'[[regtime]]','[[regtime]]'),(753,10,'simple','MP03-32-Red',0,0,'[[regtime]]','[[regtime]]'),(754,10,'simple','MP03-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(755,10,'simple','MP03-33-Green',0,0,'[[regtime]]','[[regtime]]'),(756,10,'simple','MP03-33-Red',0,0,'[[regtime]]','[[regtime]]'),(757,10,'simple','MP03-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(758,10,'simple','MP03-34-Green',0,0,'[[regtime]]','[[regtime]]'),(759,10,'simple','MP03-34-Red',0,0,'[[regtime]]','[[regtime]]'),(760,10,'simple','MP03-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(761,10,'simple','MP03-36-Green',0,0,'[[regtime]]','[[regtime]]'),(762,10,'simple','MP03-36-Red',0,0,'[[regtime]]','[[regtime]]'),(763,10,'configurable','MP03',1,0,'[[regtime]]','[[regtime]]'),(764,10,'simple','MP04-32-Black',0,0,'[[regtime]]','[[regtime]]'),(765,10,'simple','MP04-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(766,10,'simple','MP04-32-Green',0,0,'[[regtime]]','[[regtime]]'),(767,10,'simple','MP04-33-Black',0,0,'[[regtime]]','[[regtime]]'),(768,10,'simple','MP04-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(769,10,'simple','MP04-33-Green',0,0,'[[regtime]]','[[regtime]]'),(770,10,'simple','MP04-34-Black',0,0,'[[regtime]]','[[regtime]]'),(771,10,'simple','MP04-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(772,10,'simple','MP04-34-Green',0,0,'[[regtime]]','[[regtime]]'),(773,10,'simple','MP04-36-Black',0,0,'[[regtime]]','[[regtime]]'),(774,10,'simple','MP04-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(775,10,'simple','MP04-36-Green',0,0,'[[regtime]]','[[regtime]]'),(776,10,'configurable','MP04',1,0,'[[regtime]]','[[regtime]]'),(777,10,'simple','MP05-32-Black',0,0,'[[regtime]]','[[regtime]]'),(778,10,'simple','MP05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(779,10,'simple','MP05-32-Green',0,0,'[[regtime]]','[[regtime]]'),(780,10,'simple','MP05-33-Black',0,0,'[[regtime]]','[[regtime]]'),(781,10,'simple','MP05-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(782,10,'simple','MP05-33-Green',0,0,'[[regtime]]','[[regtime]]'),(783,10,'simple','MP05-34-Black',0,0,'[[regtime]]','[[regtime]]'),(784,10,'simple','MP05-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(785,10,'simple','MP05-34-Green',0,0,'[[regtime]]','[[regtime]]'),(786,10,'simple','MP05-36-Black',0,0,'[[regtime]]','[[regtime]]'),(787,10,'simple','MP05-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(788,10,'simple','MP05-36-Green',0,0,'[[regtime]]','[[regtime]]'),(789,10,'configurable','MP05',1,0,'[[regtime]]','[[regtime]]'),(790,10,'simple','MP06-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(791,10,'simple','MP06-32-Green',0,0,'[[regtime]]','[[regtime]]'),(792,10,'simple','MP06-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(793,10,'simple','MP06-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(794,10,'simple','MP06-33-Green',0,0,'[[regtime]]','[[regtime]]'),(795,10,'simple','MP06-33-Orange',0,0,'[[regtime]]','[[regtime]]'),(796,10,'simple','MP06-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(797,10,'simple','MP06-34-Green',0,0,'[[regtime]]','[[regtime]]'),(798,10,'simple','MP06-34-Orange',0,0,'[[regtime]]','[[regtime]]'),(799,10,'simple','MP06-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(800,10,'simple','MP06-36-Green',0,0,'[[regtime]]','[[regtime]]'),(801,10,'simple','MP06-36-Orange',0,0,'[[regtime]]','[[regtime]]'),(802,10,'configurable','MP06',1,0,'[[regtime]]','[[regtime]]'),(803,10,'simple','MP07-32-Black',0,0,'[[regtime]]','[[regtime]]'),(804,10,'simple','MP07-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(805,10,'simple','MP07-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(806,10,'simple','MP07-33-Black',0,0,'[[regtime]]','[[regtime]]'),(807,10,'simple','MP07-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(808,10,'simple','MP07-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(809,10,'simple','MP07-34-Black',0,0,'[[regtime]]','[[regtime]]'),(810,10,'simple','MP07-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(811,10,'simple','MP07-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(812,10,'simple','MP07-36-Black',0,0,'[[regtime]]','[[regtime]]'),(813,10,'simple','MP07-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(814,10,'simple','MP07-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(815,10,'configurable','MP07',1,0,'[[regtime]]','[[regtime]]'),(816,10,'simple','MP08-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(817,10,'simple','MP08-32-Green',0,0,'[[regtime]]','[[regtime]]'),(818,10,'simple','MP08-32-Red',0,0,'[[regtime]]','[[regtime]]'),(819,10,'simple','MP08-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(820,10,'simple','MP08-33-Green',0,0,'[[regtime]]','[[regtime]]'),(821,10,'simple','MP08-33-Red',0,0,'[[regtime]]','[[regtime]]'),(822,10,'simple','MP08-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(823,10,'simple','MP08-34-Green',0,0,'[[regtime]]','[[regtime]]'),(824,10,'simple','MP08-34-Red',0,0,'[[regtime]]','[[regtime]]'),(825,10,'simple','MP08-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(826,10,'simple','MP08-36-Green',0,0,'[[regtime]]','[[regtime]]'),(827,10,'simple','MP08-36-Red',0,0,'[[regtime]]','[[regtime]]'),(828,10,'configurable','MP08',1,0,'[[regtime]]','[[regtime]]'),(829,10,'simple','MP09-32-Black',0,0,'[[regtime]]','[[regtime]]'),(830,10,'simple','MP09-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(831,10,'simple','MP09-32-Red',0,0,'[[regtime]]','[[regtime]]'),(832,10,'simple','MP09-33-Black',0,0,'[[regtime]]','[[regtime]]'),(833,10,'simple','MP09-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(834,10,'simple','MP09-33-Red',0,0,'[[regtime]]','[[regtime]]'),(835,10,'simple','MP09-34-Black',0,0,'[[regtime]]','[[regtime]]'),(836,10,'simple','MP09-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(837,10,'simple','MP09-34-Red',0,0,'[[regtime]]','[[regtime]]'),(838,10,'simple','MP09-36-Black',0,0,'[[regtime]]','[[regtime]]'),(839,10,'simple','MP09-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(840,10,'simple','MP09-36-Red',0,0,'[[regtime]]','[[regtime]]'),(841,10,'configurable','MP09',1,0,'[[regtime]]','[[regtime]]'),(842,10,'simple','MP10-32-Black',0,0,'[[regtime]]','[[regtime]]'),(843,10,'simple','MP10-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(844,10,'simple','MP10-32-Green',0,0,'[[regtime]]','[[regtime]]'),(845,10,'simple','MP10-33-Black',0,0,'[[regtime]]','[[regtime]]'),(846,10,'simple','MP10-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(847,10,'simple','MP10-33-Green',0,0,'[[regtime]]','[[regtime]]'),(848,10,'simple','MP10-34-Black',0,0,'[[regtime]]','[[regtime]]'),(849,10,'simple','MP10-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(850,10,'simple','MP10-34-Green',0,0,'[[regtime]]','[[regtime]]'),(851,10,'simple','MP10-36-Black',0,0,'[[regtime]]','[[regtime]]'),(852,10,'simple','MP10-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(853,10,'simple','MP10-36-Green',0,0,'[[regtime]]','[[regtime]]'),(854,10,'configurable','MP10',1,0,'[[regtime]]','[[regtime]]'),(855,10,'simple','MP11-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(856,10,'simple','MP11-32-Brown',0,0,'[[regtime]]','[[regtime]]'),(857,10,'simple','MP11-32-Green',0,0,'[[regtime]]','[[regtime]]'),(858,10,'simple','MP11-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(859,10,'simple','MP11-33-Brown',0,0,'[[regtime]]','[[regtime]]'),(860,10,'simple','MP11-33-Green',0,0,'[[regtime]]','[[regtime]]'),(861,10,'simple','MP11-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(862,10,'simple','MP11-34-Brown',0,0,'[[regtime]]','[[regtime]]'),(863,10,'simple','MP11-34-Green',0,0,'[[regtime]]','[[regtime]]'),(864,10,'simple','MP11-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(865,10,'simple','MP11-36-Brown',0,0,'[[regtime]]','[[regtime]]'),(866,10,'simple','MP11-36-Green',0,0,'[[regtime]]','[[regtime]]'),(867,10,'configurable','MP11',1,0,'[[regtime]]','[[regtime]]'),(868,10,'simple','MP12-32-Black',0,0,'[[regtime]]','[[regtime]]'),(869,10,'simple','MP12-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(870,10,'simple','MP12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(871,10,'simple','MP12-33-Black',0,0,'[[regtime]]','[[regtime]]'),(872,10,'simple','MP12-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(873,10,'simple','MP12-33-Red',0,0,'[[regtime]]','[[regtime]]'),(874,10,'simple','MP12-34-Black',0,0,'[[regtime]]','[[regtime]]'),(875,10,'simple','MP12-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(876,10,'simple','MP12-34-Red',0,0,'[[regtime]]','[[regtime]]'),(877,10,'simple','MP12-36-Black',0,0,'[[regtime]]','[[regtime]]'),(878,10,'simple','MP12-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(879,10,'simple','MP12-36-Red',0,0,'[[regtime]]','[[regtime]]'),(880,10,'configurable','MP12',1,0,'[[regtime]]','[[regtime]]'),(881,10,'simple','MSH01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(882,10,'simple','MSH01-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(883,10,'simple','MSH01-32-Red',0,0,'[[regtime]]','[[regtime]]'),(884,10,'simple','MSH01-33-Black',0,0,'[[regtime]]','[[regtime]]'),(885,10,'simple','MSH01-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(886,10,'simple','MSH01-33-Red',0,0,'[[regtime]]','[[regtime]]'),(887,10,'simple','MSH01-34-Black',0,0,'[[regtime]]','[[regtime]]'),(888,10,'simple','MSH01-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(889,10,'simple','MSH01-34-Red',0,0,'[[regtime]]','[[regtime]]'),(890,10,'simple','MSH01-36-Black',0,0,'[[regtime]]','[[regtime]]'),(891,10,'simple','MSH01-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(892,10,'simple','MSH01-36-Red',0,0,'[[regtime]]','[[regtime]]'),(893,10,'configurable','MSH01',1,0,'[[regtime]]','[[regtime]]'),(894,10,'simple','MSH02-32-Black',0,0,'[[regtime]]','[[regtime]]'),(895,10,'simple','MSH02-33-Black',0,0,'[[regtime]]','[[regtime]]'),(896,10,'simple','MSH02-34-Black',0,0,'[[regtime]]','[[regtime]]'),(897,10,'simple','MSH02-36-Black',0,0,'[[regtime]]','[[regtime]]'),(898,10,'configurable','MSH02',1,0,'[[regtime]]','[[regtime]]'),(899,10,'simple','MSH03-32-Black',0,0,'[[regtime]]','[[regtime]]'),(900,10,'simple','MSH03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(901,10,'simple','MSH03-32-Green',0,0,'[[regtime]]','[[regtime]]'),(902,10,'simple','MSH03-33-Black',0,0,'[[regtime]]','[[regtime]]'),(903,10,'simple','MSH03-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(904,10,'simple','MSH03-33-Green',0,0,'[[regtime]]','[[regtime]]'),(905,10,'simple','MSH03-34-Black',0,0,'[[regtime]]','[[regtime]]'),(906,10,'simple','MSH03-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(907,10,'simple','MSH03-34-Green',0,0,'[[regtime]]','[[regtime]]'),(908,10,'simple','MSH03-36-Black',0,0,'[[regtime]]','[[regtime]]'),(909,10,'simple','MSH03-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(910,10,'simple','MSH03-36-Green',0,0,'[[regtime]]','[[regtime]]'),(911,10,'configurable','MSH03',1,0,'[[regtime]]','[[regtime]]'),(912,10,'simple','MSH04-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(913,10,'simple','MSH04-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(914,10,'simple','MSH04-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(915,10,'simple','MSH04-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(916,10,'simple','MSH04-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(917,10,'simple','MSH04-33-Yellow',0,0,'[[regtime]]','[[regtime]]'),(918,10,'simple','MSH04-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(919,10,'simple','MSH04-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(920,10,'simple','MSH04-34-Yellow',0,0,'[[regtime]]','[[regtime]]'),(921,10,'simple','MSH04-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(922,10,'simple','MSH04-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(923,10,'simple','MSH04-36-Yellow',0,0,'[[regtime]]','[[regtime]]'),(924,10,'configurable','MSH04',1,0,'[[regtime]]','[[regtime]]'),(925,10,'simple','MSH05-32-Black',0,0,'[[regtime]]','[[regtime]]'),(926,10,'simple','MSH05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(927,10,'simple','MSH05-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(928,10,'simple','MSH05-33-Black',0,0,'[[regtime]]','[[regtime]]'),(929,10,'simple','MSH05-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(930,10,'simple','MSH05-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(931,10,'simple','MSH05-34-Black',0,0,'[[regtime]]','[[regtime]]'),(932,10,'simple','MSH05-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(933,10,'simple','MSH05-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(934,10,'simple','MSH05-36-Black',0,0,'[[regtime]]','[[regtime]]'),(935,10,'simple','MSH05-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(936,10,'simple','MSH05-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(937,10,'configurable','MSH05',1,0,'[[regtime]]','[[regtime]]'),(938,10,'simple','MSH06-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(939,10,'simple','MSH06-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(940,10,'simple','MSH06-32-Red',0,0,'[[regtime]]','[[regtime]]'),(941,10,'simple','MSH06-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(942,10,'simple','MSH06-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(943,10,'simple','MSH06-33-Red',0,0,'[[regtime]]','[[regtime]]'),(944,10,'simple','MSH06-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(945,10,'simple','MSH06-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(946,10,'simple','MSH06-34-Red',0,0,'[[regtime]]','[[regtime]]'),(947,10,'simple','MSH06-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(948,10,'simple','MSH06-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(949,10,'simple','MSH06-36-Red',0,0,'[[regtime]]','[[regtime]]'),(950,10,'configurable','MSH06',1,0,'[[regtime]]','[[regtime]]'),(951,10,'simple','MSH07-32-Black',0,0,'[[regtime]]','[[regtime]]'),(952,10,'simple','MSH07-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(953,10,'simple','MSH07-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(954,10,'simple','MSH07-33-Black',0,0,'[[regtime]]','[[regtime]]'),(955,10,'simple','MSH07-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(956,10,'simple','MSH07-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(957,10,'simple','MSH07-34-Black',0,0,'[[regtime]]','[[regtime]]'),(958,10,'simple','MSH07-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(959,10,'simple','MSH07-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(960,10,'simple','MSH07-36-Black',0,0,'[[regtime]]','[[regtime]]'),(961,10,'simple','MSH07-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(962,10,'simple','MSH07-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(963,10,'configurable','MSH07',1,0,'[[regtime]]','[[regtime]]'),(964,10,'simple','MSH08-32-Black',0,0,'[[regtime]]','[[regtime]]'),(965,10,'simple','MSH08-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(966,10,'simple','MSH08-32-Green',0,0,'[[regtime]]','[[regtime]]'),(967,10,'simple','MSH08-33-Black',0,0,'[[regtime]]','[[regtime]]'),(968,10,'simple','MSH08-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(969,10,'simple','MSH08-33-Green',0,0,'[[regtime]]','[[regtime]]'),(970,10,'simple','MSH08-34-Black',0,0,'[[regtime]]','[[regtime]]'),(971,10,'simple','MSH08-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(972,10,'simple','MSH08-34-Green',0,0,'[[regtime]]','[[regtime]]'),(973,10,'simple','MSH08-36-Black',0,0,'[[regtime]]','[[regtime]]'),(974,10,'simple','MSH08-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(975,10,'simple','MSH08-36-Green',0,0,'[[regtime]]','[[regtime]]'),(976,10,'configurable','MSH08',1,0,'[[regtime]]','[[regtime]]'),(977,10,'simple','MSH09-32-Black',0,0,'[[regtime]]','[[regtime]]'),(978,10,'simple','MSH09-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(979,10,'simple','MSH09-32-Green',0,0,'[[regtime]]','[[regtime]]'),(980,10,'simple','MSH09-33-Black',0,0,'[[regtime]]','[[regtime]]'),(981,10,'simple','MSH09-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(982,10,'simple','MSH09-33-Green',0,0,'[[regtime]]','[[regtime]]'),(983,10,'simple','MSH09-34-Black',0,0,'[[regtime]]','[[regtime]]'),(984,10,'simple','MSH09-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(985,10,'simple','MSH09-34-Green',0,0,'[[regtime]]','[[regtime]]'),(986,10,'simple','MSH09-36-Black',0,0,'[[regtime]]','[[regtime]]'),(987,10,'simple','MSH09-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(988,10,'simple','MSH09-36-Green',0,0,'[[regtime]]','[[regtime]]'),(989,10,'configurable','MSH09',1,0,'[[regtime]]','[[regtime]]'),(990,10,'simple','MSH10-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(991,10,'simple','MSH10-32-Green',0,0,'[[regtime]]','[[regtime]]'),(992,10,'simple','MSH10-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(993,10,'simple','MSH10-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(994,10,'simple','MSH10-33-Green',0,0,'[[regtime]]','[[regtime]]'),(995,10,'simple','MSH10-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(996,10,'simple','MSH10-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(997,10,'simple','MSH10-34-Green',0,0,'[[regtime]]','[[regtime]]'),(998,10,'simple','MSH10-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(999,10,'simple','MSH10-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(1000,10,'simple','MSH10-36-Green',0,0,'[[regtime]]','[[regtime]]'),(1001,10,'simple','MSH10-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(1002,10,'configurable','MSH10',1,0,'[[regtime]]','[[regtime]]'),(1003,10,'simple','MSH11-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1004,10,'simple','MSH11-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1005,10,'simple','MSH11-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1006,10,'simple','MSH11-33-Black',0,0,'[[regtime]]','[[regtime]]'),(1007,10,'simple','MSH11-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(1008,10,'simple','MSH11-33-Red',0,0,'[[regtime]]','[[regtime]]'),(1009,10,'simple','MSH11-34-Black',0,0,'[[regtime]]','[[regtime]]'),(1010,10,'simple','MSH11-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(1011,10,'simple','MSH11-34-Red',0,0,'[[regtime]]','[[regtime]]'),(1012,10,'simple','MSH11-36-Black',0,0,'[[regtime]]','[[regtime]]'),(1013,10,'simple','MSH11-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(1014,10,'simple','MSH11-36-Red',0,0,'[[regtime]]','[[regtime]]'),(1015,10,'configurable','MSH11',1,0,'[[regtime]]','[[regtime]]'),(1016,10,'simple','MSH12-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1017,10,'simple','MSH12-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1018,10,'simple','MSH12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1019,10,'simple','MSH12-33-Black',0,0,'[[regtime]]','[[regtime]]'),(1020,10,'simple','MSH12-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(1021,10,'simple','MSH12-33-Red',0,0,'[[regtime]]','[[regtime]]'),(1022,10,'simple','MSH12-34-Black',0,0,'[[regtime]]','[[regtime]]'),(1023,10,'simple','MSH12-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(1024,10,'simple','MSH12-34-Red',0,0,'[[regtime]]','[[regtime]]'),(1025,10,'simple','MSH12-36-Black',0,0,'[[regtime]]','[[regtime]]'),(1026,10,'simple','MSH12-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(1027,10,'simple','MSH12-36-Red',0,0,'[[regtime]]','[[regtime]]'),(1028,10,'configurable','MSH12',1,0,'[[regtime]]','[[regtime]]'),(1029,9,'simple','WH01-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1030,9,'simple','WH01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1031,9,'simple','WH01-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1032,9,'simple','WH01-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1033,9,'simple','WH01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1034,9,'simple','WH01-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1035,9,'simple','WH01-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1036,9,'simple','WH01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1037,9,'simple','WH01-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1038,9,'simple','WH01-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1039,9,'simple','WH01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1040,9,'simple','WH01-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1041,9,'simple','WH01-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1042,9,'simple','WH01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1043,9,'simple','WH01-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1044,9,'configurable','WH01',1,0,'[[regtime]]','[[regtime]]'),(1045,9,'simple','WH02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1046,9,'simple','WH02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1047,9,'simple','WH02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1048,9,'simple','WH02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1049,9,'simple','WH02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1050,9,'simple','WH02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1051,9,'simple','WH02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1052,9,'simple','WH02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1053,9,'simple','WH02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1054,9,'simple','WH02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1055,9,'simple','WH02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1056,9,'simple','WH02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1057,9,'simple','WH02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1058,9,'simple','WH02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1059,9,'simple','WH02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1060,9,'configurable','WH02',1,0,'[[regtime]]','[[regtime]]'),(1061,9,'simple','WH03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1062,9,'simple','WH03-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1063,9,'simple','WH03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1064,9,'simple','WH03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1065,9,'simple','WH03-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1066,9,'simple','WH03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1067,9,'simple','WH03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1068,9,'simple','WH03-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1069,9,'simple','WH03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1070,9,'simple','WH03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1071,9,'simple','WH03-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1072,9,'simple','WH03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1073,9,'simple','WH03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1074,9,'simple','WH03-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1075,9,'simple','WH03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1076,9,'configurable','WH03',1,0,'[[regtime]]','[[regtime]]'),(1077,9,'simple','WH04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1078,9,'simple','WH04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1079,9,'simple','WH04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1080,9,'simple','WH04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1081,9,'simple','WH04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1082,9,'simple','WH04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1083,9,'simple','WH04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1084,9,'simple','WH04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1085,9,'simple','WH04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1086,9,'simple','WH04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1087,9,'simple','WH04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1088,9,'simple','WH04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1089,9,'simple','WH04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1090,9,'simple','WH04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1091,9,'simple','WH04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1092,9,'configurable','WH04',1,0,'[[regtime]]','[[regtime]]'),(1093,9,'simple','WH05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1094,9,'simple','WH05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1095,9,'simple','WH05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1096,9,'simple','WH05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1097,9,'simple','WH05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1098,9,'simple','WH05-S-White',0,0,'[[regtime]]','[[regtime]]'),(1099,9,'simple','WH05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1100,9,'simple','WH05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1101,9,'simple','WH05-M-White',0,0,'[[regtime]]','[[regtime]]'),(1102,9,'simple','WH05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1103,9,'simple','WH05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1104,9,'simple','WH05-L-White',0,0,'[[regtime]]','[[regtime]]'),(1105,9,'simple','WH05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1106,9,'simple','WH05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1107,9,'simple','WH05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1108,9,'configurable','WH05',1,0,'[[regtime]]','[[regtime]]'),(1109,9,'simple','WH06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1110,9,'simple','WH06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1111,9,'simple','WH06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1112,9,'simple','WH06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1113,9,'simple','WH06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1114,9,'configurable','WH06',1,0,'[[regtime]]','[[regtime]]'),(1115,9,'simple','WH07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1116,9,'simple','WH07-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1117,9,'simple','WH07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1118,9,'simple','WH07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1119,9,'simple','WH07-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1120,9,'simple','WH07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1121,9,'simple','WH07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1122,9,'simple','WH07-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1123,9,'simple','WH07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1124,9,'simple','WH07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1125,9,'simple','WH07-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1126,9,'simple','WH07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1127,9,'simple','WH07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1128,9,'simple','WH07-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1129,9,'simple','WH07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1130,9,'configurable','WH07',1,0,'[[regtime]]','[[regtime]]'),(1131,9,'simple','WH08-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1132,9,'simple','WH08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1133,9,'simple','WH08-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1134,9,'simple','WH08-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1135,9,'simple','WH08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1136,9,'simple','WH08-S-White',0,0,'[[regtime]]','[[regtime]]'),(1137,9,'simple','WH08-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1138,9,'simple','WH08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1139,9,'simple','WH08-M-White',0,0,'[[regtime]]','[[regtime]]'),(1140,9,'simple','WH08-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1141,9,'simple','WH08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1142,9,'simple','WH08-L-White',0,0,'[[regtime]]','[[regtime]]'),(1143,9,'simple','WH08-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1144,9,'simple','WH08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1145,9,'simple','WH08-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1146,9,'configurable','WH08',1,0,'[[regtime]]','[[regtime]]'),(1147,9,'simple','WH09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1148,9,'simple','WH09-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1149,9,'simple','WH09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1150,9,'simple','WH09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1151,9,'simple','WH09-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1152,9,'simple','WH09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1153,9,'simple','WH09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1154,9,'simple','WH09-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1155,9,'simple','WH09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1156,9,'simple','WH09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1157,9,'simple','WH09-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1158,9,'simple','WH09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1159,9,'simple','WH09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1160,9,'simple','WH09-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1161,9,'simple','WH09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1162,9,'configurable','WH09',1,0,'[[regtime]]','[[regtime]]'),(1163,9,'simple','WH10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1164,9,'simple','WH10-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1165,9,'simple','WH10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1166,9,'simple','WH10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1167,9,'simple','WH10-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1168,9,'simple','WH10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1169,9,'simple','WH10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1170,9,'simple','WH10-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1171,9,'simple','WH10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1172,9,'simple','WH10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1173,9,'simple','WH10-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1174,9,'simple','WH10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1175,9,'simple','WH10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1176,9,'simple','WH10-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1177,9,'simple','WH10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1178,9,'configurable','WH10',1,0,'[[regtime]]','[[regtime]]'),(1179,9,'simple','WH11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1180,9,'simple','WH11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1181,9,'simple','WH11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1182,9,'simple','WH11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1183,9,'simple','WH11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1184,9,'simple','WH11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1185,9,'simple','WH11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1186,9,'simple','WH11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1187,9,'simple','WH11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1188,9,'simple','WH11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1189,9,'simple','WH11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1190,9,'simple','WH11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1191,9,'simple','WH11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1192,9,'simple','WH11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1193,9,'simple','WH11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1194,9,'configurable','WH11',1,0,'[[regtime]]','[[regtime]]'),(1195,9,'simple','WH12-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1196,9,'simple','WH12-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1197,9,'simple','WH12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1198,9,'simple','WH12-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1199,9,'simple','WH12-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1200,9,'simple','WH12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1201,9,'simple','WH12-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1202,9,'simple','WH12-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1203,9,'simple','WH12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1204,9,'simple','WH12-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1205,9,'simple','WH12-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1206,9,'simple','WH12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1207,9,'simple','WH12-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1208,9,'simple','WH12-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1209,9,'simple','WH12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1210,9,'configurable','WH12',1,0,'[[regtime]]','[[regtime]]'),(1211,9,'simple','WJ01-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1212,9,'simple','WJ01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1213,9,'simple','WJ01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1214,9,'simple','WJ01-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1215,9,'simple','WJ01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1216,9,'simple','WJ01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1217,9,'simple','WJ01-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1218,9,'simple','WJ01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1219,9,'simple','WJ01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1220,9,'configurable','WJ01',1,0,'[[regtime]]','[[regtime]]'),(1221,9,'simple','WJ02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1222,9,'simple','WJ02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1223,9,'simple','WJ02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1224,9,'simple','WJ02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1225,9,'simple','WJ02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1226,9,'simple','WJ02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1227,9,'simple','WJ02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1228,9,'simple','WJ02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1229,9,'simple','WJ02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1230,9,'simple','WJ02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1231,9,'simple','WJ02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1232,9,'simple','WJ02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1233,9,'simple','WJ02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1234,9,'simple','WJ02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1235,9,'simple','WJ02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1236,9,'configurable','WJ02',1,0,'[[regtime]]','[[regtime]]'),(1237,9,'simple','WJ03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1238,9,'simple','WJ03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1239,9,'simple','WJ03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1240,9,'simple','WJ03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1241,9,'simple','WJ03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1242,9,'simple','WJ03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1243,9,'simple','WJ03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1244,9,'simple','WJ03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1245,9,'simple','WJ03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1246,9,'simple','WJ03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1247,9,'simple','WJ03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1248,9,'simple','WJ03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1249,9,'simple','WJ03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1250,9,'simple','WJ03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1251,9,'simple','WJ03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1252,9,'configurable','WJ03',1,0,'[[regtime]]','[[regtime]]'),(1253,9,'simple','WJ04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1254,9,'simple','WJ04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1255,9,'simple','WJ04-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1256,9,'simple','WJ04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1257,9,'simple','WJ04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1258,9,'simple','WJ04-S-White',0,0,'[[regtime]]','[[regtime]]'),(1259,9,'simple','WJ04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1260,9,'simple','WJ04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1261,9,'simple','WJ04-M-White',0,0,'[[regtime]]','[[regtime]]'),(1262,9,'simple','WJ04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1263,9,'simple','WJ04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1264,9,'simple','WJ04-L-White',0,0,'[[regtime]]','[[regtime]]'),(1265,9,'simple','WJ04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1266,9,'simple','WJ04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1267,9,'simple','WJ04-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1268,9,'configurable','WJ04',1,0,'[[regtime]]','[[regtime]]'),(1269,9,'simple','WJ05-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(1270,9,'simple','WJ05-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1271,9,'simple','WJ05-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1272,9,'simple','WJ05-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(1273,9,'simple','WJ05-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1274,9,'simple','WJ05-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1275,9,'simple','WJ05-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(1276,9,'simple','WJ05-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1277,9,'simple','WJ05-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1278,9,'simple','WJ05-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(1279,9,'simple','WJ05-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1280,9,'simple','WJ05-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1281,9,'simple','WJ05-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(1282,9,'simple','WJ05-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1283,9,'simple','WJ05-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1284,9,'configurable','WJ05',1,0,'[[regtime]]','[[regtime]]'),(1285,9,'simple','WJ07-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1286,9,'simple','WJ07-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1287,9,'simple','WJ07-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1288,9,'simple','WJ07-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1289,9,'simple','WJ07-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1290,9,'simple','WJ07-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1291,9,'simple','WJ07-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1292,9,'simple','WJ07-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1293,9,'simple','WJ07-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1294,9,'simple','WJ07-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1295,9,'simple','WJ07-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1296,9,'simple','WJ07-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1297,9,'simple','WJ07-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1298,9,'simple','WJ07-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1299,9,'simple','WJ07-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1300,9,'configurable','WJ07',1,0,'[[regtime]]','[[regtime]]'),(1301,9,'simple','WJ08-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1302,9,'simple','WJ08-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1303,9,'simple','WJ08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1304,9,'simple','WJ08-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1305,9,'simple','WJ08-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1306,9,'simple','WJ08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1307,9,'simple','WJ08-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1308,9,'simple','WJ08-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1309,9,'simple','WJ08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1310,9,'simple','WJ08-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1311,9,'simple','WJ08-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1312,9,'simple','WJ08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1313,9,'simple','WJ08-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1314,9,'simple','WJ08-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1315,9,'simple','WJ08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1316,9,'configurable','WJ08',1,0,'[[regtime]]','[[regtime]]'),(1317,9,'simple','WJ09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1318,9,'simple','WJ09-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1319,9,'simple','WJ09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1320,9,'simple','WJ09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1321,9,'simple','WJ09-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1322,9,'simple','WJ09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1323,9,'simple','WJ09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1324,9,'simple','WJ09-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1325,9,'simple','WJ09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1326,9,'simple','WJ09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1327,9,'simple','WJ09-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1328,9,'simple','WJ09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1329,9,'simple','WJ09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1330,9,'simple','WJ09-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1331,9,'simple','WJ09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1332,9,'configurable','WJ09',1,0,'[[regtime]]','[[regtime]]'),(1333,9,'simple','WJ10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1334,9,'simple','WJ10-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1335,9,'simple','WJ10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1336,9,'simple','WJ10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1337,9,'simple','WJ10-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1338,9,'simple','WJ10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1339,9,'simple','WJ10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1340,9,'simple','WJ10-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1341,9,'simple','WJ10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1342,9,'simple','WJ10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1343,9,'simple','WJ10-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1344,9,'simple','WJ10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1345,9,'simple','WJ10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1346,9,'simple','WJ10-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1347,9,'simple','WJ10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1348,9,'configurable','WJ10',1,0,'[[regtime]]','[[regtime]]'),(1349,9,'simple','WJ11-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1350,9,'simple','WJ11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1351,9,'simple','WJ11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1352,9,'simple','WJ11-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1353,9,'simple','WJ11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1354,9,'simple','WJ11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1355,9,'simple','WJ11-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1356,9,'simple','WJ11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1357,9,'simple','WJ11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1358,9,'simple','WJ11-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1359,9,'simple','WJ11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1360,9,'simple','WJ11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1361,9,'simple','WJ11-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1362,9,'simple','WJ11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1363,9,'simple','WJ11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1364,9,'configurable','WJ11',1,0,'[[regtime]]','[[regtime]]'),(1365,9,'simple','WJ06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1366,9,'simple','WJ06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1367,9,'simple','WJ06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1368,9,'simple','WJ06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1369,9,'simple','WJ06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1370,9,'simple','WJ06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1371,9,'simple','WJ06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1372,9,'simple','WJ06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1373,9,'simple','WJ06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1374,9,'simple','WJ06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1375,9,'simple','WJ06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1376,9,'simple','WJ06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1377,9,'simple','WJ06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1378,9,'simple','WJ06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1379,9,'simple','WJ06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1380,9,'configurable','WJ06',1,0,'[[regtime]]','[[regtime]]'),(1381,9,'simple','WJ12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1382,9,'simple','WJ12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1383,9,'simple','WJ12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1384,9,'simple','WJ12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1385,9,'simple','WJ12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1386,9,'simple','WJ12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1387,9,'simple','WJ12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1388,9,'simple','WJ12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1389,9,'simple','WJ12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1390,9,'simple','WJ12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1391,9,'simple','WJ12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1392,9,'simple','WJ12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1393,9,'simple','WJ12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1394,9,'simple','WJ12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1395,9,'simple','WJ12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1396,9,'configurable','WJ12',1,0,'[[regtime]]','[[regtime]]'),(1397,9,'simple','WS02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1398,9,'simple','WS02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1399,9,'simple','WS02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1400,9,'simple','WS02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1401,9,'simple','WS02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1402,9,'simple','WS02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1403,9,'simple','WS02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1404,9,'simple','WS02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1405,9,'simple','WS02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1406,9,'simple','WS02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1407,9,'simple','WS02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1408,9,'simple','WS02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1409,9,'simple','WS02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1410,9,'simple','WS02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1411,9,'simple','WS02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1412,9,'configurable','WS02',1,0,'[[regtime]]','[[regtime]]'),(1413,9,'simple','WS03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1414,9,'simple','WS03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1415,9,'simple','WS03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1416,9,'simple','WS03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1417,9,'simple','WS03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1418,9,'simple','WS03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1419,9,'simple','WS03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1420,9,'simple','WS03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1421,9,'simple','WS03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1422,9,'simple','WS03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1423,9,'simple','WS03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1424,9,'simple','WS03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1425,9,'simple','WS03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1426,9,'simple','WS03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1427,9,'simple','WS03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1428,9,'configurable','WS03',1,0,'[[regtime]]','[[regtime]]'),(1429,9,'simple','WS04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1430,9,'simple','WS04-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1431,9,'simple','WS04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1432,9,'simple','WS04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1433,9,'simple','WS04-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1434,9,'simple','WS04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1435,9,'simple','WS04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1436,9,'simple','WS04-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1437,9,'simple','WS04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1438,9,'simple','WS04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1439,9,'simple','WS04-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1440,9,'simple','WS04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1441,9,'simple','WS04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1442,9,'simple','WS04-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1443,9,'simple','WS04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1444,9,'configurable','WS04',1,0,'[[regtime]]','[[regtime]]'),(1445,9,'simple','WS06-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1446,9,'simple','WS06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1447,9,'simple','WS06-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1448,9,'simple','WS06-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1449,9,'simple','WS06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1450,9,'simple','WS06-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1451,9,'simple','WS06-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1452,9,'simple','WS06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1453,9,'simple','WS06-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1454,9,'simple','WS06-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1455,9,'simple','WS06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1456,9,'simple','WS06-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1457,9,'simple','WS06-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1458,9,'simple','WS06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1459,9,'simple','WS06-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1460,9,'configurable','WS06',1,0,'[[regtime]]','[[regtime]]'),(1461,9,'simple','WS07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1462,9,'simple','WS07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1463,9,'simple','WS07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1464,9,'simple','WS07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1465,9,'simple','WS07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1466,9,'simple','WS07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1467,9,'simple','WS07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1468,9,'simple','WS07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1469,9,'simple','WS07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1470,9,'simple','WS07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1471,9,'simple','WS07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1472,9,'simple','WS07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1473,9,'simple','WS07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1474,9,'simple','WS07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1475,9,'simple','WS07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1476,9,'configurable','WS07',1,0,'[[regtime]]','[[regtime]]'),(1477,9,'simple','WS08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1478,9,'simple','WS08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1479,9,'simple','WS08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1480,9,'simple','WS08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1481,9,'simple','WS08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1482,9,'simple','WS08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1483,9,'simple','WS08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1484,9,'simple','WS08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1485,9,'simple','WS08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1486,9,'simple','WS08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1487,9,'simple','WS08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1488,9,'simple','WS08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1489,9,'simple','WS08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1490,9,'simple','WS08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1491,9,'simple','WS08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1492,9,'configurable','WS08',1,0,'[[regtime]]','[[regtime]]'),(1493,9,'simple','WS09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1494,9,'simple','WS09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1495,9,'simple','WS09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1496,9,'simple','WS09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1497,9,'simple','WS09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1498,9,'simple','WS09-S-White',0,0,'[[regtime]]','[[regtime]]'),(1499,9,'simple','WS09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1500,9,'simple','WS09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1501,9,'simple','WS09-M-White',0,0,'[[regtime]]','[[regtime]]'),(1502,9,'simple','WS09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1503,9,'simple','WS09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1504,9,'simple','WS09-L-White',0,0,'[[regtime]]','[[regtime]]'),(1505,9,'simple','WS09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1506,9,'simple','WS09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1507,9,'simple','WS09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1508,9,'configurable','WS09',1,0,'[[regtime]]','[[regtime]]'),(1509,9,'simple','WS10-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1510,9,'simple','WS10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1511,9,'simple','WS10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1512,9,'simple','WS10-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1513,9,'simple','WS10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1514,9,'simple','WS10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1515,9,'simple','WS10-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1516,9,'simple','WS10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1517,9,'simple','WS10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1518,9,'simple','WS10-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1519,9,'simple','WS10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1520,9,'simple','WS10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1521,9,'simple','WS10-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1522,9,'simple','WS10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1523,9,'simple','WS10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1524,9,'configurable','WS10',1,0,'[[regtime]]','[[regtime]]'),(1525,9,'simple','WS11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1526,9,'simple','WS11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1527,9,'simple','WS11-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1528,9,'simple','WS11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1529,9,'simple','WS11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1530,9,'simple','WS11-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1531,9,'simple','WS11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1532,9,'simple','WS11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1533,9,'simple','WS11-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1534,9,'simple','WS11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1535,9,'simple','WS11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1536,9,'simple','WS11-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1537,9,'simple','WS11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1538,9,'simple','WS11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1539,9,'simple','WS11-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1540,9,'configurable','WS11',1,0,'[[regtime]]','[[regtime]]'),(1541,9,'simple','WS12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1542,9,'simple','WS12-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1543,9,'simple','WS12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1544,9,'simple','WS12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1545,9,'simple','WS12-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1546,9,'simple','WS12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1547,9,'simple','WS12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1548,9,'simple','WS12-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1549,9,'simple','WS12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1550,9,'simple','WS12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1551,9,'simple','WS12-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1552,9,'simple','WS12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1553,9,'simple','WS12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1554,9,'simple','WS12-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1555,9,'simple','WS12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1556,9,'configurable','WS12',1,0,'[[regtime]]','[[regtime]]'),(1557,9,'simple','WS01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1558,9,'simple','WS01-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1559,9,'simple','WS01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1560,9,'simple','WS01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1561,9,'simple','WS01-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1562,9,'simple','WS01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1563,9,'simple','WS01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1564,9,'simple','WS01-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1565,9,'simple','WS01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1566,9,'simple','WS01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1567,9,'simple','WS01-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1568,9,'simple','WS01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1569,9,'simple','WS01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1570,9,'simple','WS01-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1571,9,'simple','WS01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1572,9,'configurable','WS01',1,0,'[[regtime]]','[[regtime]]'),(1573,9,'simple','WS05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1574,9,'simple','WS05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1575,9,'simple','WS05-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1576,9,'simple','WS05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1577,9,'simple','WS05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1578,9,'simple','WS05-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1579,9,'simple','WS05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1580,9,'simple','WS05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1581,9,'simple','WS05-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1582,9,'simple','WS05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1583,9,'simple','WS05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1584,9,'simple','WS05-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1585,9,'simple','WS05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1586,9,'simple','WS05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1587,9,'simple','WS05-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1588,9,'configurable','WS05',1,0,'[[regtime]]','[[regtime]]'),(1589,9,'simple','WB01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1590,9,'simple','WB01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1591,9,'simple','WB01-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1592,9,'simple','WB01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1593,9,'simple','WB01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1594,9,'simple','WB01-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1595,9,'simple','WB01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1596,9,'simple','WB01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1597,9,'simple','WB01-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1598,9,'simple','WB01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1599,9,'simple','WB01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1600,9,'simple','WB01-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1601,9,'simple','WB01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1602,9,'simple','WB01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1603,9,'simple','WB01-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1604,9,'configurable','WB01',1,0,'[[regtime]]','[[regtime]]'),(1605,9,'simple','WB02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1606,9,'simple','WB02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1607,9,'simple','WB02-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1608,9,'simple','WB02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1609,9,'simple','WB02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1610,9,'simple','WB02-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1611,9,'simple','WB02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1612,9,'simple','WB02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1613,9,'simple','WB02-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1614,9,'simple','WB02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1615,9,'simple','WB02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1616,9,'simple','WB02-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1617,9,'simple','WB02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1618,9,'simple','WB02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1619,9,'simple','WB02-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1620,9,'configurable','WB02',1,0,'[[regtime]]','[[regtime]]'),(1621,9,'simple','WB03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1622,9,'simple','WB03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1623,9,'simple','WB03-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1624,9,'simple','WB03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1625,9,'simple','WB03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1626,9,'simple','WB03-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1627,9,'simple','WB03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1628,9,'simple','WB03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1629,9,'simple','WB03-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1630,9,'simple','WB03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1631,9,'simple','WB03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1632,9,'simple','WB03-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1633,9,'simple','WB03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1634,9,'simple','WB03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1635,9,'simple','WB03-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1636,9,'configurable','WB03',1,0,'[[regtime]]','[[regtime]]'),(1637,9,'simple','WB04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1638,9,'simple','WB04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1639,9,'simple','WB04-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1640,9,'simple','WB04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1641,9,'simple','WB04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1642,9,'simple','WB04-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1643,9,'simple','WB04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1644,9,'simple','WB04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1645,9,'simple','WB04-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1646,9,'simple','WB04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1647,9,'simple','WB04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1648,9,'simple','WB04-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1649,9,'simple','WB04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1650,9,'simple','WB04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1651,9,'simple','WB04-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1652,9,'configurable','WB04',1,0,'[[regtime]]','[[regtime]]'),(1653,9,'simple','WB05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1654,9,'simple','WB05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1655,9,'simple','WB05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1656,9,'simple','WB05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1657,9,'simple','WB05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1658,9,'simple','WB05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1659,9,'simple','WB05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1660,9,'simple','WB05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1661,9,'simple','WB05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1662,9,'simple','WB05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1663,9,'simple','WB05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1664,9,'simple','WB05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1665,9,'simple','WB05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1666,9,'simple','WB05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1667,9,'simple','WB05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1668,9,'configurable','WB05',1,0,'[[regtime]]','[[regtime]]'),(1669,9,'simple','WT01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1670,9,'simple','WT01-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1671,9,'simple','WT01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1672,9,'simple','WT01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1673,9,'simple','WT01-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1674,9,'simple','WT01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1675,9,'simple','WT01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1676,9,'simple','WT01-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1677,9,'simple','WT01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1678,9,'simple','WT01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1679,9,'simple','WT01-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1680,9,'simple','WT01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1681,9,'simple','WT01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1682,9,'simple','WT01-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1683,9,'simple','WT01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1684,9,'configurable','WT01',1,0,'[[regtime]]','[[regtime]]'),(1685,9,'simple','WT02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1686,9,'simple','WT02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1687,9,'simple','WT02-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1688,9,'simple','WT02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1689,9,'simple','WT02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1690,9,'simple','WT02-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1691,9,'simple','WT02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1692,9,'simple','WT02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1693,9,'simple','WT02-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1694,9,'simple','WT02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1695,9,'simple','WT02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1696,9,'simple','WT02-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1697,9,'simple','WT02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1698,9,'simple','WT02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1699,9,'simple','WT02-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1700,9,'configurable','WT02',1,0,'[[regtime]]','[[regtime]]'),(1701,9,'simple','WT03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1702,9,'simple','WT03-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1703,9,'simple','WT03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1704,9,'simple','WT03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1705,9,'simple','WT03-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1706,9,'simple','WT03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1707,9,'simple','WT03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1708,9,'simple','WT03-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1709,9,'simple','WT03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1710,9,'simple','WT03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1711,9,'simple','WT03-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1712,9,'simple','WT03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1713,9,'simple','WT03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1714,9,'simple','WT03-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1715,9,'simple','WT03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1716,9,'configurable','WT03',1,0,'[[regtime]]','[[regtime]]'),(1717,9,'simple','WT04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1718,9,'simple','WT04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1719,9,'simple','WT04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1720,9,'simple','WT04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1721,9,'simple','WT04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1722,9,'simple','WT04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1723,9,'simple','WT04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1724,9,'simple','WT04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1725,9,'simple','WT04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1726,9,'simple','WT04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1727,9,'simple','WT04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1728,9,'simple','WT04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1729,9,'simple','WT04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1730,9,'simple','WT04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1731,9,'simple','WT04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1732,9,'configurable','WT04',1,0,'[[regtime]]','[[regtime]]'),(1733,9,'simple','WT05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1734,9,'simple','WT05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1735,9,'simple','WT05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1736,9,'simple','WT05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1737,9,'simple','WT05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1738,9,'simple','WT05-S-White',0,0,'[[regtime]]','[[regtime]]'),(1739,9,'simple','WT05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1740,9,'simple','WT05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1741,9,'simple','WT05-M-White',0,0,'[[regtime]]','[[regtime]]'),(1742,9,'simple','WT05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1743,9,'simple','WT05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1744,9,'simple','WT05-L-White',0,0,'[[regtime]]','[[regtime]]'),(1745,9,'simple','WT05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1746,9,'simple','WT05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1747,9,'simple','WT05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1748,9,'configurable','WT05',1,0,'[[regtime]]','[[regtime]]'),(1749,9,'simple','WT06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1750,9,'simple','WT06-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1751,9,'simple','WT06-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1752,9,'simple','WT06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1753,9,'simple','WT06-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1754,9,'simple','WT06-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1755,9,'simple','WT06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1756,9,'simple','WT06-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1757,9,'simple','WT06-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1758,9,'simple','WT06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1759,9,'simple','WT06-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1760,9,'simple','WT06-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1761,9,'simple','WT06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1762,9,'simple','WT06-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1763,9,'simple','WT06-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1764,9,'configurable','WT06',1,0,'[[regtime]]','[[regtime]]'),(1765,9,'simple','WT07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1766,9,'simple','WT07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1767,9,'simple','WT07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1768,9,'simple','WT07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1769,9,'simple','WT07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1770,9,'simple','WT07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1771,9,'simple','WT07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1772,9,'simple','WT07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1773,9,'simple','WT07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1774,9,'simple','WT07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1775,9,'simple','WT07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1776,9,'simple','WT07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1777,9,'simple','WT07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1778,9,'simple','WT07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1779,9,'simple','WT07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1780,9,'configurable','WT07',1,0,'[[regtime]]','[[regtime]]'),(1781,9,'simple','WT08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1782,9,'simple','WT08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1783,9,'simple','WT08-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1784,9,'simple','WT08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1785,9,'simple','WT08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1786,9,'simple','WT08-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1787,9,'simple','WT08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1788,9,'simple','WT08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1789,9,'simple','WT08-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1790,9,'simple','WT08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1791,9,'simple','WT08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1792,9,'simple','WT08-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1793,9,'simple','WT08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1794,9,'simple','WT08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1795,9,'simple','WT08-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1796,9,'configurable','WT08',1,0,'[[regtime]]','[[regtime]]'),(1797,9,'simple','WT09-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1798,9,'simple','WT09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1799,9,'simple','WT09-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1800,9,'simple','WT09-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1801,9,'simple','WT09-S-White',0,0,'[[regtime]]','[[regtime]]'),(1802,9,'simple','WT09-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1803,9,'simple','WT09-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1804,9,'simple','WT09-M-White',0,0,'[[regtime]]','[[regtime]]'),(1805,9,'simple','WT09-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1806,9,'simple','WT09-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1807,9,'simple','WT09-L-White',0,0,'[[regtime]]','[[regtime]]'),(1808,9,'simple','WT09-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1809,9,'simple','WT09-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1810,9,'simple','WT09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1811,9,'simple','WT09-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1812,9,'configurable','WT09',1,0,'[[regtime]]','[[regtime]]'),(1813,10,'simple','WP01-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1814,10,'simple','WP01-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1815,10,'simple','WP01-28-White',0,0,'[[regtime]]','[[regtime]]'),(1816,10,'simple','WP01-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1817,10,'simple','WP01-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1818,10,'simple','WP01-29-White',0,0,'[[regtime]]','[[regtime]]'),(1819,10,'configurable','WP01',1,0,'[[regtime]]','[[regtime]]'),(1820,10,'simple','WP02-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1821,10,'simple','WP02-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1822,10,'simple','WP02-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1823,10,'simple','WP02-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1824,10,'simple','WP02-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1825,10,'simple','WP02-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1826,10,'configurable','WP02',1,0,'[[regtime]]','[[regtime]]'),(1827,10,'simple','WP03-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1828,10,'simple','WP03-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1829,10,'simple','WP03-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1830,10,'simple','WP03-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1831,10,'simple','WP03-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1832,10,'simple','WP03-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1833,10,'configurable','WP03',1,0,'[[regtime]]','[[regtime]]'),(1834,10,'simple','WP04-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1835,10,'simple','WP04-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1836,10,'simple','WP04-28-White',0,0,'[[regtime]]','[[regtime]]'),(1837,10,'simple','WP04-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1838,10,'simple','WP04-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1839,10,'simple','WP04-29-White',0,0,'[[regtime]]','[[regtime]]'),(1840,10,'configurable','WP04',1,0,'[[regtime]]','[[regtime]]'),(1841,10,'simple','WP05-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1842,10,'simple','WP05-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1843,10,'simple','WP05-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1844,10,'simple','WP05-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1845,10,'simple','WP05-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1846,10,'simple','WP05-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1847,10,'configurable','WP05',1,0,'[[regtime]]','[[regtime]]'),(1848,10,'simple','WP06-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1849,10,'simple','WP06-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1850,10,'simple','WP06-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1851,10,'simple','WP06-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1852,10,'simple','WP06-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1853,10,'simple','WP06-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1854,10,'configurable','WP06',1,0,'[[regtime]]','[[regtime]]'),(1855,10,'simple','WP07-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1856,10,'simple','WP07-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1857,10,'simple','WP07-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1858,10,'simple','WP07-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1859,10,'simple','WP07-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1860,10,'simple','WP07-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1861,10,'configurable','WP07',1,0,'[[regtime]]','[[regtime]]'),(1862,10,'simple','WP08-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1863,10,'simple','WP08-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1864,10,'simple','WP08-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1865,10,'simple','WP08-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1866,10,'simple','WP08-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1867,10,'simple','WP08-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1868,10,'configurable','WP08',1,0,'[[regtime]]','[[regtime]]'),(1869,10,'simple','WP09-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1870,10,'simple','WP09-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1871,10,'simple','WP09-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1872,10,'simple','WP09-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1873,10,'simple','WP09-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1874,10,'simple','WP09-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1875,10,'configurable','WP09',1,0,'[[regtime]]','[[regtime]]'),(1876,10,'simple','WP10-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1877,10,'simple','WP10-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1878,10,'simple','WP10-28-White',0,0,'[[regtime]]','[[regtime]]'),(1879,10,'simple','WP10-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1880,10,'simple','WP10-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1881,10,'simple','WP10-29-White',0,0,'[[regtime]]','[[regtime]]'),(1882,10,'configurable','WP10',1,0,'[[regtime]]','[[regtime]]'),(1883,10,'simple','WP11-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1884,10,'simple','WP11-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1885,10,'simple','WP11-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1886,10,'simple','WP11-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1887,10,'simple','WP11-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1888,10,'simple','WP11-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1889,10,'configurable','WP11',1,0,'[[regtime]]','[[regtime]]'),(1890,10,'simple','WP12-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1891,10,'simple','WP12-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1892,10,'simple','WP12-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1893,10,'simple','WP12-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1894,10,'simple','WP12-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1895,10,'simple','WP12-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1896,10,'configurable','WP12',1,0,'[[regtime]]','[[regtime]]'),(1897,10,'simple','WP13-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1898,10,'simple','WP13-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1899,10,'simple','WP13-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1900,10,'simple','WP13-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1901,10,'simple','WP13-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1902,10,'simple','WP13-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1903,10,'configurable','WP13',1,0,'[[regtime]]','[[regtime]]'),(1904,10,'simple','WSH01-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1905,10,'simple','WSH01-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1906,10,'simple','WSH01-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1907,10,'simple','WSH01-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1908,10,'simple','WSH01-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1909,10,'simple','WSH01-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1910,10,'simple','WSH01-30-Black',0,0,'[[regtime]]','[[regtime]]'),(1911,10,'simple','WSH01-30-Green',0,0,'[[regtime]]','[[regtime]]'),(1912,10,'simple','WSH01-30-Red',0,0,'[[regtime]]','[[regtime]]'),(1913,10,'simple','WSH01-31-Black',0,0,'[[regtime]]','[[regtime]]'),(1914,10,'simple','WSH01-31-Green',0,0,'[[regtime]]','[[regtime]]'),(1915,10,'simple','WSH01-31-Red',0,0,'[[regtime]]','[[regtime]]'),(1916,10,'simple','WSH01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1917,10,'simple','WSH01-32-Green',0,0,'[[regtime]]','[[regtime]]'),(1918,10,'simple','WSH01-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1919,10,'configurable','WSH01',1,0,'[[regtime]]','[[regtime]]'),(1920,10,'simple','WSH02-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1921,10,'simple','WSH02-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1922,10,'simple','WSH02-28-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1923,10,'simple','WSH02-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1924,10,'simple','WSH02-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1925,10,'simple','WSH02-29-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1926,10,'simple','WSH02-30-Gray',0,0,'[[regtime]]','[[regtime]]'),(1927,10,'simple','WSH02-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1928,10,'simple','WSH02-30-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1929,10,'simple','WSH02-31-Gray',0,0,'[[regtime]]','[[regtime]]'),(1930,10,'simple','WSH02-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1931,10,'simple','WSH02-31-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1932,10,'simple','WSH02-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1933,10,'simple','WSH02-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1934,10,'simple','WSH02-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1935,10,'configurable','WSH02',1,0,'[[regtime]]','[[regtime]]'),(1936,10,'simple','WSH03-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1937,10,'simple','WSH03-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1938,10,'simple','WSH03-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1939,10,'simple','WSH03-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1940,10,'simple','WSH03-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1941,10,'simple','WSH03-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1942,10,'simple','WSH03-30-Blue',0,0,'[[regtime]]','[[regtime]]'),(1943,10,'simple','WSH03-30-Gray',0,0,'[[regtime]]','[[regtime]]'),(1944,10,'simple','WSH03-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1945,10,'simple','WSH03-31-Blue',0,0,'[[regtime]]','[[regtime]]'),(1946,10,'simple','WSH03-31-Gray',0,0,'[[regtime]]','[[regtime]]'),(1947,10,'simple','WSH03-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1948,10,'simple','WSH03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1949,10,'simple','WSH03-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1950,10,'simple','WSH03-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1951,10,'configurable','WSH03',1,0,'[[regtime]]','[[regtime]]'),(1952,10,'simple','WSH04-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1953,10,'simple','WSH04-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1954,10,'simple','WSH04-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1955,10,'simple','WSH04-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1956,10,'simple','WSH04-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1957,10,'simple','WSH04-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1958,10,'simple','WSH04-30-Black',0,0,'[[regtime]]','[[regtime]]'),(1959,10,'simple','WSH04-30-Green',0,0,'[[regtime]]','[[regtime]]'),(1960,10,'simple','WSH04-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1961,10,'simple','WSH04-31-Black',0,0,'[[regtime]]','[[regtime]]'),(1962,10,'simple','WSH04-31-Green',0,0,'[[regtime]]','[[regtime]]'),(1963,10,'simple','WSH04-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1964,10,'simple','WSH04-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1965,10,'simple','WSH04-32-Green',0,0,'[[regtime]]','[[regtime]]'),(1966,10,'simple','WSH04-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1967,10,'configurable','WSH04',1,0,'[[regtime]]','[[regtime]]'),(1968,10,'simple','WSH05-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1969,10,'simple','WSH05-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1970,10,'simple','WSH05-28-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1971,10,'simple','WSH05-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1972,10,'simple','WSH05-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1973,10,'simple','WSH05-29-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1974,10,'simple','WSH05-30-Blue',0,0,'[[regtime]]','[[regtime]]'),(1975,10,'simple','WSH05-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(1976,10,'simple','WSH05-30-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1977,10,'simple','WSH05-31-Blue',0,0,'[[regtime]]','[[regtime]]'),(1978,10,'simple','WSH05-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(1979,10,'simple','WSH05-31-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1980,10,'simple','WSH05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1981,10,'simple','WSH05-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(1982,10,'simple','WSH05-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1983,10,'configurable','WSH05',1,0,'[[regtime]]','[[regtime]]'),(1984,10,'simple','WSH06-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1985,10,'simple','WSH06-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1986,10,'simple','WSH06-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1987,10,'simple','WSH06-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1988,10,'simple','WSH06-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1989,10,'simple','WSH06-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1990,10,'configurable','WSH06',1,0,'[[regtime]]','[[regtime]]'),(1991,10,'simple','WSH07-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1992,10,'simple','WSH07-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1993,10,'simple','WSH07-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1994,10,'simple','WSH07-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1995,10,'simple','WSH07-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1996,10,'simple','WSH07-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1997,10,'configurable','WSH07',1,0,'[[regtime]]','[[regtime]]'),(1998,10,'simple','WSH08-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1999,10,'simple','WSH08-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(2000,10,'simple','WSH08-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(2001,10,'simple','WSH08-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(2002,10,'simple','WSH08-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(2003,10,'configurable','WSH08',1,0,'[[regtime]]','[[regtime]]'),(2004,10,'simple','WSH09-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(2005,10,'simple','WSH09-28-Green',0,0,'[[regtime]]','[[regtime]]'),(2006,10,'simple','WSH09-28-White',0,0,'[[regtime]]','[[regtime]]'),(2007,10,'simple','WSH09-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(2008,10,'simple','WSH09-29-Green',0,0,'[[regtime]]','[[regtime]]'),(2009,10,'simple','WSH09-29-White',0,0,'[[regtime]]','[[regtime]]'),(2010,10,'configurable','WSH09',1,0,'[[regtime]]','[[regtime]]'),(2011,10,'simple','WSH10-28-Black',0,0,'[[regtime]]','[[regtime]]'),(2012,10,'simple','WSH10-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(2013,10,'simple','WSH10-28-White',0,0,'[[regtime]]','[[regtime]]'),(2014,10,'simple','WSH10-29-Black',0,0,'[[regtime]]','[[regtime]]'),(2015,10,'simple','WSH10-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(2016,10,'simple','WSH10-29-White',0,0,'[[regtime]]','[[regtime]]'),(2017,10,'configurable','WSH10',1,0,'[[regtime]]','[[regtime]]'),(2018,10,'simple','WSH11-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(2019,10,'simple','WSH11-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(2020,10,'simple','WSH11-28-Red',0,0,'[[regtime]]','[[regtime]]'),(2021,10,'simple','WSH11-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(2022,10,'simple','WSH11-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(2023,10,'simple','WSH11-29-Red',0,0,'[[regtime]]','[[regtime]]'),(2024,10,'configurable','WSH11',1,0,'[[regtime]]','[[regtime]]'),(2025,10,'simple','WSH12-28-Green',0,0,'[[regtime]]','[[regtime]]'),(2026,10,'simple','WSH12-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(2027,10,'simple','WSH12-28-Red',0,0,'[[regtime]]','[[regtime]]'),(2028,10,'simple','WSH12-29-Green',0,0,'[[regtime]]','[[regtime]]'),(2029,10,'simple','WSH12-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(2030,10,'simple','WSH12-29-Red',0,0,'[[regtime]]','[[regtime]]'),(2031,10,'simple','WSH12-30-Green',0,0,'[[regtime]]','[[regtime]]'),(2032,10,'simple','WSH12-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(2033,10,'simple','WSH12-30-Red',0,0,'[[regtime]]','[[regtime]]'),(2034,10,'simple','WSH12-31-Green',0,0,'[[regtime]]','[[regtime]]'),(2035,10,'simple','WSH12-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(2036,10,'simple','WSH12-31-Red',0,0,'[[regtime]]','[[regtime]]'),(2037,10,'simple','WSH12-32-Green',0,0,'[[regtime]]','[[regtime]]'),(2038,10,'simple','WSH12-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(2039,10,'simple','WSH12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(2040,10,'configurable','WSH12',1,0,'[[regtime]]','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_datetime`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_datetime` VALUES (1,79,0,2,'[[regtime]]'),(2,79,0,10,'[[regtime]]'),(3,79,0,11,'[[regtime]]'),(4,79,0,16,'[[regtime]]'),(5,79,0,41,'[[regtime]]'),(6,79,0,42,'[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3904 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_decimal` VALUES (1,77,0,1,34.000000),(2,77,0,2,32.000000),(3,78,0,2,32.000000),(4,77,0,3,38.000000),(5,77,0,4,45.000000),(6,77,0,5,45.000000),(7,77,0,6,59.000000),(8,77,0,7,74.000000),(9,77,0,8,32.000000),(10,77,0,9,32.000000),(11,77,0,10,32.000000),(12,78,0,10,24.000000),(13,77,0,11,33.000000),(14,78,0,11,33.000000),(15,77,0,12,36.000000),(16,77,0,13,45.000000),(17,77,0,14,45.000000),(18,77,0,15,7.000000),(19,77,0,16,12.000000),(20,78,0,16,12.000000),(21,77,0,17,12.000000),(22,77,0,18,16.000000),(23,77,0,19,19.000000),(24,77,0,20,19.000000),(25,77,0,21,5.000000),(26,77,0,22,19.000000),(27,77,0,23,22.000000),(28,77,0,24,23.000000),(29,77,0,25,23.000000),(30,77,0,26,23.000000),(31,77,0,27,27.000000),(32,77,0,28,27.000000),(33,77,0,29,27.000000),(34,77,0,30,32.000000),(35,77,0,31,32.000000),(36,77,0,32,32.000000),(37,77,0,33,14.000000),(38,77,0,34,17.000000),(39,77,0,35,21.000000),(40,77,0,36,45.000000),(41,77,0,37,49.000000),(42,77,0,38,54.000000),(43,77,0,39,55.000000),(44,77,0,40,92.000000),(45,77,0,41,43.000000),(46,78,0,41,43.000000),(47,77,0,42,49.000000),(48,78,0,42,49.000000),(49,77,0,43,54.000000),(50,77,0,44,92.000000),(51,77,0,47,52.000000),(52,82,0,47,1.000000),(53,77,0,48,52.000000),(54,82,0,48,1.000000),(55,77,0,49,52.000000),(56,82,0,49,1.000000),(57,77,0,50,52.000000),(58,82,0,50,1.000000),(59,77,0,51,52.000000),(60,82,0,51,1.000000),(61,77,0,52,52.000000),(62,82,0,52,1.000000),(63,77,0,53,52.000000),(64,82,0,53,1.000000),(65,77,0,54,52.000000),(66,82,0,54,1.000000),(67,77,0,55,52.000000),(68,82,0,55,1.000000),(69,77,0,56,52.000000),(70,82,0,56,1.000000),(71,77,0,57,52.000000),(72,82,0,57,1.000000),(73,77,0,58,52.000000),(74,82,0,58,1.000000),(75,77,0,59,52.000000),(76,82,0,59,1.000000),(77,77,0,60,52.000000),(78,82,0,60,1.000000),(79,77,0,61,52.000000),(80,82,0,61,1.000000),(81,77,0,62,52.000000),(82,77,0,63,70.000000),(83,82,0,63,1.000000),(84,77,0,64,70.000000),(85,82,0,64,1.000000),(86,77,0,65,70.000000),(87,82,0,65,1.000000),(88,77,0,66,70.000000),(89,82,0,66,1.000000),(90,77,0,67,70.000000),(91,82,0,67,1.000000),(92,77,0,68,70.000000),(93,82,0,68,1.000000),(94,77,0,69,70.000000),(95,82,0,69,1.000000),(96,77,0,70,70.000000),(97,82,0,70,1.000000),(98,77,0,71,70.000000),(99,82,0,71,1.000000),(100,77,0,72,70.000000),(101,82,0,72,1.000000),(102,77,0,73,70.000000),(103,82,0,73,1.000000),(104,77,0,74,70.000000),(105,82,0,74,1.000000),(106,77,0,75,70.000000),(107,82,0,75,1.000000),(108,77,0,76,70.000000),(109,82,0,76,1.000000),(110,77,0,77,70.000000),(111,82,0,77,1.000000),(112,77,0,78,70.000000),(113,77,0,79,63.000000),(114,82,0,79,1.000000),(115,77,0,80,63.000000),(116,82,0,80,1.000000),(117,77,0,81,63.000000),(118,82,0,81,1.000000),(119,77,0,82,63.000000),(120,82,0,82,1.000000),(121,77,0,83,63.000000),(122,82,0,83,1.000000),(123,77,0,84,63.000000),(124,82,0,84,1.000000),(125,77,0,85,63.000000),(126,82,0,85,1.000000),(127,77,0,86,63.000000),(128,82,0,86,1.000000),(129,77,0,87,63.000000),(130,82,0,87,1.000000),(131,77,0,88,63.000000),(132,82,0,88,1.000000),(133,77,0,89,63.000000),(134,82,0,89,1.000000),(135,77,0,90,63.000000),(136,82,0,90,1.000000),(137,77,0,91,63.000000),(138,82,0,91,1.000000),(139,77,0,92,63.000000),(140,82,0,92,1.000000),(141,77,0,93,63.000000),(142,82,0,93,1.000000),(143,77,0,94,63.000000),(144,77,0,95,60.000000),(145,82,0,95,1.000000),(146,77,0,96,60.000000),(147,82,0,96,1.000000),(148,77,0,97,60.000000),(149,82,0,97,1.000000),(150,77,0,98,60.000000),(151,82,0,98,1.000000),(152,77,0,99,60.000000),(153,82,0,99,1.000000),(154,77,0,100,60.000000),(155,82,0,100,1.000000),(156,77,0,101,60.000000),(157,82,0,101,1.000000),(158,77,0,102,60.000000),(159,82,0,102,1.000000),(160,77,0,103,60.000000),(161,82,0,103,1.000000),(162,77,0,104,60.000000),(163,82,0,104,1.000000),(164,77,0,105,60.000000),(165,82,0,105,1.000000),(166,77,0,106,60.000000),(167,82,0,106,1.000000),(168,77,0,107,60.000000),(169,82,0,107,1.000000),(170,77,0,108,60.000000),(171,82,0,108,1.000000),(172,77,0,109,60.000000),(173,82,0,109,1.000000),(174,77,0,110,60.000000),(175,77,0,111,52.000000),(176,82,0,111,1.000000),(177,77,0,112,52.000000),(178,82,0,112,1.000000),(179,77,0,113,52.000000),(180,82,0,113,1.000000),(181,77,0,114,52.000000),(182,82,0,114,1.000000),(183,77,0,115,52.000000),(184,82,0,115,1.000000),(185,77,0,116,52.000000),(186,82,0,116,1.000000),(187,77,0,117,52.000000),(188,82,0,117,1.000000),(189,77,0,118,52.000000),(190,82,0,118,1.000000),(191,77,0,119,52.000000),(192,82,0,119,1.000000),(193,77,0,120,52.000000),(194,82,0,120,1.000000),(195,77,0,121,52.000000),(196,82,0,121,1.000000),(197,77,0,122,52.000000),(198,82,0,122,1.000000),(199,77,0,123,52.000000),(200,82,0,123,1.000000),(201,77,0,124,52.000000),(202,82,0,124,1.000000),(203,77,0,125,52.000000),(204,82,0,125,1.000000),(205,77,0,126,52.000000),(206,77,0,127,42.000000),(207,82,0,127,1.000000),(208,77,0,128,42.000000),(209,82,0,128,1.000000),(210,77,0,129,42.000000),(211,82,0,129,1.000000),(212,77,0,130,42.000000),(213,82,0,130,1.000000),(214,77,0,131,42.000000),(215,82,0,131,1.000000),(216,77,0,132,42.000000),(217,82,0,132,1.000000),(218,77,0,133,42.000000),(219,82,0,133,1.000000),(220,77,0,134,42.000000),(221,82,0,134,1.000000),(222,77,0,135,42.000000),(223,82,0,135,1.000000),(224,77,0,136,42.000000),(225,82,0,136,1.000000),(226,77,0,137,42.000000),(227,82,0,137,1.000000),(228,77,0,138,42.000000),(229,82,0,138,1.000000),(230,77,0,139,42.000000),(231,82,0,139,1.000000),(232,77,0,140,42.000000),(233,82,0,140,1.000000),(234,77,0,141,42.000000),(235,82,0,141,1.000000),(236,77,0,142,42.000000),(237,77,0,143,54.000000),(238,82,0,143,1.000000),(239,77,0,144,54.000000),(240,82,0,144,1.000000),(241,77,0,145,54.000000),(242,82,0,145,1.000000),(243,77,0,146,54.000000),(244,82,0,146,1.000000),(245,77,0,147,54.000000),(246,82,0,147,1.000000),(247,77,0,148,54.000000),(248,82,0,148,1.000000),(249,77,0,149,54.000000),(250,82,0,149,1.000000),(251,77,0,150,54.000000),(252,82,0,150,1.000000),(253,77,0,151,54.000000),(254,82,0,151,1.000000),(255,77,0,152,54.000000),(256,82,0,152,1.000000),(257,77,0,153,54.000000),(258,82,0,153,1.000000),(259,77,0,154,54.000000),(260,82,0,154,1.000000),(261,77,0,155,54.000000),(262,82,0,155,1.000000),(263,77,0,156,54.000000),(264,82,0,156,1.000000),(265,77,0,157,54.000000),(266,82,0,157,1.000000),(267,77,0,158,54.000000),(268,77,0,159,42.000000),(269,82,0,159,1.000000),(270,77,0,160,42.000000),(271,82,0,160,1.000000),(272,77,0,161,42.000000),(273,82,0,161,1.000000),(274,77,0,162,42.000000),(275,82,0,162,1.000000),(276,77,0,163,42.000000),(277,82,0,163,1.000000),(278,77,0,164,42.000000),(279,82,0,164,1.000000),(280,77,0,165,42.000000),(281,82,0,165,1.000000),(282,77,0,166,42.000000),(283,82,0,166,1.000000),(284,77,0,167,42.000000),(285,82,0,167,1.000000),(286,77,0,168,42.000000),(287,82,0,168,1.000000),(288,77,0,169,42.000000),(289,82,0,169,1.000000),(290,77,0,170,42.000000),(291,82,0,170,1.000000),(292,77,0,171,42.000000),(293,82,0,171,1.000000),(294,77,0,172,42.000000),(295,82,0,172,1.000000),(296,77,0,173,42.000000),(297,82,0,173,1.000000),(298,77,0,174,42.000000),(299,77,0,175,69.000000),(300,82,0,175,1.000000),(301,77,0,176,69.000000),(302,82,0,176,1.000000),(303,77,0,177,69.000000),(304,82,0,177,1.000000),(305,77,0,178,69.000000),(306,82,0,178,1.000000),(307,77,0,179,69.000000),(308,82,0,179,1.000000),(309,77,0,180,69.000000),(310,82,0,180,1.000000),(311,77,0,181,69.000000),(312,82,0,181,1.000000),(313,77,0,182,69.000000),(314,82,0,182,1.000000),(315,77,0,183,69.000000),(316,82,0,183,1.000000),(317,77,0,184,69.000000),(318,82,0,184,1.000000),(319,77,0,185,69.000000),(320,82,0,185,1.000000),(321,77,0,186,69.000000),(322,82,0,186,1.000000),(323,77,0,187,69.000000),(324,82,0,187,1.000000),(325,77,0,188,69.000000),(326,82,0,188,1.000000),(327,77,0,189,69.000000),(328,82,0,189,1.000000),(329,77,0,190,69.000000),(330,77,0,191,62.000000),(331,82,0,191,1.000000),(332,77,0,192,62.000000),(333,82,0,192,1.000000),(334,77,0,193,62.000000),(335,82,0,193,1.000000),(336,77,0,194,62.000000),(337,82,0,194,1.000000),(338,77,0,195,62.000000),(339,82,0,195,1.000000),(340,77,0,196,62.000000),(341,82,0,196,1.000000),(342,77,0,197,62.000000),(343,82,0,197,1.000000),(344,77,0,198,62.000000),(345,82,0,198,1.000000),(346,77,0,199,62.000000),(347,82,0,199,1.000000),(348,77,0,200,62.000000),(349,82,0,200,1.000000),(350,77,0,201,62.000000),(351,82,0,201,1.000000),(352,77,0,202,62.000000),(353,82,0,202,1.000000),(354,77,0,203,62.000000),(355,82,0,203,1.000000),(356,77,0,204,62.000000),(357,82,0,204,1.000000),(358,77,0,205,62.000000),(359,82,0,205,1.000000),(360,77,0,206,62.000000),(361,77,0,207,64.000000),(362,82,0,207,1.000000),(363,77,0,208,64.000000),(364,82,0,208,1.000000),(365,77,0,209,64.000000),(366,82,0,209,1.000000),(367,77,0,210,64.000000),(368,82,0,210,1.000000),(369,77,0,211,64.000000),(370,82,0,211,1.000000),(371,77,0,212,64.000000),(372,82,0,212,1.000000),(373,77,0,213,64.000000),(374,82,0,213,1.000000),(375,77,0,214,64.000000),(376,82,0,214,1.000000),(377,77,0,215,64.000000),(378,82,0,215,1.000000),(379,77,0,216,64.000000),(380,82,0,216,1.000000),(381,77,0,217,64.000000),(382,82,0,217,1.000000),(383,77,0,218,64.000000),(384,82,0,218,1.000000),(385,77,0,219,64.000000),(386,82,0,219,1.000000),(387,77,0,220,64.000000),(388,82,0,220,1.000000),(389,77,0,221,64.000000),(390,82,0,221,1.000000),(391,77,0,222,64.000000),(392,77,0,223,69.000000),(393,82,0,223,1.000000),(394,77,0,224,69.000000),(395,82,0,224,1.000000),(396,77,0,225,69.000000),(397,82,0,225,1.000000),(398,77,0,226,69.000000),(399,82,0,226,1.000000),(400,77,0,227,69.000000),(401,82,0,227,1.000000),(402,77,0,228,69.000000),(403,82,0,228,1.000000),(404,77,0,229,69.000000),(405,82,0,229,1.000000),(406,77,0,230,69.000000),(407,82,0,230,1.000000),(408,77,0,231,69.000000),(409,82,0,231,1.000000),(410,77,0,232,69.000000),(411,82,0,232,1.000000),(412,77,0,233,69.000000),(413,82,0,233,1.000000),(414,77,0,234,69.000000),(415,82,0,234,1.000000),(416,77,0,235,69.000000),(417,82,0,235,1.000000),(418,77,0,236,69.000000),(419,82,0,236,1.000000),(420,77,0,237,69.000000),(421,82,0,237,1.000000),(422,77,0,238,69.000000),(423,77,0,239,74.000000),(424,82,0,239,1.000000),(425,77,0,240,74.000000),(426,82,0,240,1.000000),(427,77,0,241,74.000000),(428,82,0,241,1.000000),(429,77,0,242,74.000000),(430,82,0,242,1.000000),(431,77,0,243,74.000000),(432,82,0,243,1.000000),(433,77,0,244,74.000000),(434,82,0,244,1.000000),(435,77,0,245,74.000000),(436,82,0,245,1.000000),(437,77,0,246,74.000000),(438,82,0,246,1.000000),(439,77,0,247,74.000000),(440,82,0,247,1.000000),(441,77,0,248,74.000000),(442,82,0,248,1.000000),(443,77,0,249,74.000000),(444,82,0,249,1.000000),(445,77,0,250,74.000000),(446,82,0,250,1.000000),(447,77,0,251,74.000000),(448,82,0,251,1.000000),(449,77,0,252,74.000000),(450,82,0,252,1.000000),(451,77,0,253,74.000000),(452,82,0,253,1.000000),(453,77,0,254,74.000000),(454,77,0,255,42.000000),(455,82,0,255,1.000000),(456,77,0,256,42.000000),(457,82,0,256,1.000000),(458,77,0,257,42.000000),(459,82,0,257,1.000000),(460,77,0,258,42.000000),(461,82,0,258,1.000000),(462,77,0,259,42.000000),(463,82,0,259,1.000000),(464,77,0,260,42.000000),(465,82,0,260,1.000000),(466,77,0,261,42.000000),(467,82,0,261,1.000000),(468,77,0,262,42.000000),(469,82,0,262,1.000000),(470,77,0,263,42.000000),(471,82,0,263,1.000000),(472,77,0,264,42.000000),(473,82,0,264,1.000000),(474,77,0,265,42.000000),(475,82,0,265,1.000000),(476,77,0,266,42.000000),(477,82,0,266,1.000000),(478,77,0,267,42.000000),(479,82,0,267,1.000000),(480,77,0,268,42.000000),(481,82,0,268,1.000000),(482,77,0,269,42.000000),(483,82,0,269,1.000000),(484,77,0,270,42.000000),(485,77,0,271,51.000000),(486,82,0,271,1.000000),(487,77,0,272,51.000000),(488,82,0,272,1.000000),(489,77,0,273,51.000000),(490,82,0,273,1.000000),(491,77,0,274,51.000000),(492,82,0,274,1.000000),(493,77,0,275,51.000000),(494,82,0,275,1.000000),(495,77,0,276,51.000000),(496,82,0,276,1.000000),(497,77,0,277,51.000000),(498,82,0,277,1.000000),(499,77,0,278,51.000000),(500,82,0,278,1.000000),(501,77,0,279,51.000000),(502,82,0,279,1.000000),(503,77,0,280,51.000000),(504,82,0,280,1.000000),(505,77,0,281,51.000000),(506,82,0,281,1.000000),(507,77,0,282,51.000000),(508,82,0,282,1.000000),(509,77,0,283,51.000000),(510,82,0,283,1.000000),(511,77,0,284,51.000000),(512,82,0,284,1.000000),(513,77,0,285,51.000000),(514,82,0,285,1.000000),(515,77,0,286,51.000000),(516,77,0,287,47.000000),(517,82,0,287,1.000000),(518,77,0,288,47.000000),(519,82,0,288,1.000000),(520,77,0,289,47.000000),(521,82,0,289,1.000000),(522,77,0,290,47.000000),(523,82,0,290,1.000000),(524,77,0,291,47.000000),(525,82,0,291,1.000000),(526,77,0,292,47.000000),(527,82,0,292,1.000000),(528,77,0,293,47.000000),(529,82,0,293,1.000000),(530,77,0,294,47.000000),(531,82,0,294,1.000000),(532,77,0,295,47.000000),(533,82,0,295,1.000000),(534,77,0,296,47.000000),(535,82,0,296,1.000000),(536,77,0,297,47.000000),(537,82,0,297,1.000000),(538,77,0,298,47.000000),(539,82,0,298,1.000000),(540,77,0,299,47.000000),(541,82,0,299,1.000000),(542,77,0,300,47.000000),(543,82,0,300,1.000000),(544,77,0,301,47.000000),(545,82,0,301,1.000000),(546,77,0,302,47.000000),(547,77,0,303,72.000000),(548,82,0,303,1.000000),(549,77,0,304,72.000000),(550,82,0,304,1.000000),(551,77,0,305,72.000000),(552,82,0,305,1.000000),(553,77,0,306,72.000000),(554,82,0,306,1.000000),(555,77,0,307,72.000000),(556,82,0,307,1.000000),(557,77,0,308,72.000000),(558,82,0,308,1.000000),(559,77,0,309,72.000000),(560,82,0,309,1.000000),(561,77,0,310,72.000000),(562,82,0,310,1.000000),(563,77,0,311,72.000000),(564,82,0,311,1.000000),(565,77,0,312,72.000000),(566,82,0,312,1.000000),(567,77,0,313,72.000000),(568,82,0,313,1.000000),(569,77,0,314,72.000000),(570,82,0,314,1.000000),(571,77,0,315,72.000000),(572,82,0,315,1.000000),(573,77,0,316,72.000000),(574,82,0,316,1.000000),(575,77,0,317,72.000000),(576,82,0,317,1.000000),(577,77,0,318,72.000000),(578,77,0,319,99.000000),(579,82,0,319,1.000000),(580,77,0,320,99.000000),(581,82,0,320,1.000000),(582,77,0,321,99.000000),(583,82,0,321,1.000000),(584,77,0,322,99.000000),(585,82,0,322,1.000000),(586,77,0,323,99.000000),(587,82,0,323,1.000000),(588,77,0,324,99.000000),(589,82,0,324,1.000000),(590,77,0,325,99.000000),(591,82,0,325,1.000000),(592,77,0,326,99.000000),(593,82,0,326,1.000000),(594,77,0,327,99.000000),(595,82,0,327,1.000000),(596,77,0,328,99.000000),(597,82,0,328,1.000000),(598,77,0,329,99.000000),(599,82,0,329,1.000000),(600,77,0,330,99.000000),(601,82,0,330,1.000000),(602,77,0,331,99.000000),(603,82,0,331,1.000000),(604,77,0,332,99.000000),(605,82,0,332,1.000000),(606,77,0,333,99.000000),(607,82,0,333,1.000000),(608,77,0,334,99.000000),(609,77,0,335,65.000000),(610,82,0,335,1.000000),(611,77,0,336,65.000000),(612,82,0,336,1.000000),(613,77,0,337,65.000000),(614,82,0,337,1.000000),(615,77,0,338,65.000000),(616,82,0,338,1.000000),(617,77,0,339,65.000000),(618,82,0,339,1.000000),(619,77,0,340,65.000000),(620,82,0,340,1.000000),(621,77,0,341,65.000000),(622,82,0,341,1.000000),(623,77,0,342,65.000000),(624,82,0,342,1.000000),(625,77,0,343,65.000000),(626,82,0,343,1.000000),(627,77,0,344,65.000000),(628,82,0,344,1.000000),(629,77,0,345,65.000000),(630,82,0,345,1.000000),(631,77,0,346,65.000000),(632,82,0,346,1.000000),(633,77,0,347,65.000000),(634,82,0,347,1.000000),(635,77,0,348,65.000000),(636,82,0,348,1.000000),(637,77,0,349,65.000000),(638,82,0,349,1.000000),(639,77,0,350,65.000000),(640,77,0,351,66.000000),(641,82,0,351,1.000000),(642,77,0,352,66.000000),(643,82,0,352,1.000000),(644,77,0,353,66.000000),(645,82,0,353,1.000000),(646,77,0,354,66.000000),(647,82,0,354,1.000000),(648,77,0,355,66.000000),(649,82,0,355,1.000000),(650,77,0,356,66.000000),(651,82,0,356,1.000000),(652,77,0,357,66.000000),(653,82,0,357,1.000000),(654,77,0,358,66.000000),(655,82,0,358,1.000000),(656,77,0,359,66.000000),(657,82,0,359,1.000000),(658,77,0,360,66.000000),(659,82,0,360,1.000000),(660,77,0,361,66.000000),(661,82,0,361,1.000000),(662,77,0,362,66.000000),(663,82,0,362,1.000000),(664,77,0,363,66.000000),(665,82,0,363,1.000000),(666,77,0,364,66.000000),(667,82,0,364,1.000000),(668,77,0,365,66.000000),(669,82,0,365,1.000000),(670,77,0,366,66.000000),(671,77,0,367,60.000000),(672,82,0,367,1.000000),(673,77,0,368,60.000000),(674,82,0,368,1.000000),(675,77,0,369,60.000000),(676,82,0,369,1.000000),(677,77,0,370,60.000000),(678,82,0,370,1.000000),(679,77,0,371,60.000000),(680,82,0,371,1.000000),(681,77,0,372,60.000000),(682,82,0,372,1.000000),(683,77,0,373,60.000000),(684,82,0,373,1.000000),(685,77,0,374,60.000000),(686,82,0,374,1.000000),(687,77,0,375,60.000000),(688,82,0,375,1.000000),(689,77,0,376,60.000000),(690,82,0,376,1.000000),(691,77,0,377,60.000000),(692,82,0,377,1.000000),(693,77,0,378,60.000000),(694,82,0,378,1.000000),(695,77,0,379,60.000000),(696,82,0,379,1.000000),(697,77,0,380,60.000000),(698,82,0,380,1.000000),(699,77,0,381,60.000000),(700,82,0,381,1.000000),(701,77,0,382,60.000000),(702,77,0,383,56.990000),(703,82,0,383,1.000000),(704,77,0,384,56.990000),(705,82,0,384,1.000000),(706,77,0,385,56.990000),(707,82,0,385,1.000000),(708,77,0,386,56.990000),(709,82,0,386,1.000000),(710,77,0,387,56.990000),(711,82,0,387,1.000000),(712,77,0,388,56.990000),(713,82,0,388,1.000000),(714,77,0,389,56.990000),(715,82,0,389,1.000000),(716,77,0,390,56.990000),(717,82,0,390,1.000000),(718,77,0,391,56.990000),(719,82,0,391,1.000000),(720,77,0,392,56.990000),(721,82,0,392,1.000000),(722,77,0,393,56.990000),(723,82,0,393,1.000000),(724,77,0,394,56.990000),(725,82,0,394,1.000000),(726,77,0,395,56.990000),(727,82,0,395,1.000000),(728,77,0,396,56.990000),(729,82,0,396,1.000000),(730,77,0,397,56.990000),(731,82,0,397,1.000000),(732,77,0,398,56.990000),(733,77,0,399,49.000000),(734,82,0,399,1.000000),(735,77,0,400,49.000000),(736,82,0,400,1.000000),(737,77,0,401,49.000000),(738,82,0,401,1.000000),(739,77,0,402,49.000000),(740,82,0,402,1.000000),(741,77,0,403,49.000000),(742,82,0,403,1.000000),(743,77,0,404,49.000000),(744,82,0,404,1.000000),(745,77,0,405,49.000000),(746,82,0,405,1.000000),(747,77,0,406,49.000000),(748,82,0,406,1.000000),(749,77,0,407,49.000000),(750,82,0,407,1.000000),(751,77,0,408,49.000000),(752,82,0,408,1.000000),(753,77,0,409,49.000000),(754,82,0,409,1.000000),(755,77,0,410,49.000000),(756,82,0,410,1.000000),(757,77,0,411,49.000000),(758,82,0,411,1.000000),(759,77,0,412,49.000000),(760,82,0,412,1.000000),(761,77,0,413,49.000000),(762,82,0,413,1.000000),(763,77,0,414,49.000000),(764,77,0,415,45.000000),(765,82,0,415,1.000000),(766,77,0,416,45.000000),(767,82,0,416,1.000000),(768,77,0,417,45.000000),(769,82,0,417,1.000000),(770,77,0,418,45.000000),(771,82,0,418,1.000000),(772,77,0,419,45.000000),(773,82,0,419,1.000000),(774,77,0,420,45.000000),(775,82,0,420,1.000000),(776,77,0,421,45.000000),(777,82,0,421,1.000000),(778,77,0,422,45.000000),(779,82,0,422,1.000000),(780,77,0,423,45.000000),(781,82,0,423,1.000000),(782,77,0,424,45.000000),(783,82,0,424,1.000000),(784,77,0,425,45.000000),(785,82,0,425,1.000000),(786,77,0,426,45.000000),(787,82,0,426,1.000000),(788,77,0,427,45.000000),(789,82,0,427,1.000000),(790,77,0,428,45.000000),(791,82,0,428,1.000000),(792,77,0,429,45.000000),(793,82,0,429,1.000000),(794,77,0,430,45.000000),(795,77,0,431,29.000000),(796,82,0,431,1.000000),(797,77,0,432,29.000000),(798,82,0,432,1.000000),(799,77,0,433,29.000000),(800,82,0,433,1.000000),(801,77,0,434,29.000000),(802,82,0,434,1.000000),(803,77,0,435,29.000000),(804,82,0,435,1.000000),(805,77,0,436,29.000000),(806,82,0,436,1.000000),(807,77,0,437,29.000000),(808,82,0,437,1.000000),(809,77,0,438,29.000000),(810,82,0,438,1.000000),(811,77,0,439,29.000000),(812,82,0,439,1.000000),(813,77,0,440,29.000000),(814,82,0,440,1.000000),(815,77,0,441,29.000000),(816,82,0,441,1.000000),(817,77,0,442,29.000000),(818,82,0,442,1.000000),(819,77,0,443,29.000000),(820,82,0,443,1.000000),(821,77,0,444,29.000000),(822,82,0,444,1.000000),(823,77,0,445,29.000000),(824,82,0,445,1.000000),(825,77,0,446,29.000000),(826,77,0,447,24.000000),(827,82,0,447,1.000000),(828,77,0,448,24.000000),(829,82,0,448,1.000000),(830,77,0,449,24.000000),(831,82,0,449,1.000000),(832,77,0,450,24.000000),(833,82,0,450,1.000000),(834,77,0,451,24.000000),(835,82,0,451,1.000000),(836,77,0,452,24.000000),(837,82,0,452,1.000000),(838,77,0,453,24.000000),(839,82,0,453,1.000000),(840,77,0,454,24.000000),(841,82,0,454,1.000000),(842,77,0,455,24.000000),(843,82,0,455,1.000000),(844,77,0,456,24.000000),(845,82,0,456,1.000000),(846,77,0,457,24.000000),(847,82,0,457,1.000000),(848,77,0,458,24.000000),(849,82,0,458,1.000000),(850,77,0,459,24.000000),(851,82,0,459,1.000000),(852,77,0,460,24.000000),(853,82,0,460,1.000000),(854,77,0,461,24.000000),(855,82,0,461,1.000000),(856,77,0,462,24.000000),(857,77,0,463,32.000000),(858,82,0,463,1.000000),(859,77,0,464,32.000000),(860,82,0,464,1.000000),(861,77,0,465,32.000000),(862,82,0,465,1.000000),(863,77,0,466,32.000000),(864,82,0,466,1.000000),(865,77,0,467,32.000000),(866,82,0,467,1.000000),(867,77,0,468,32.000000),(868,82,0,468,1.000000),(869,77,0,469,32.000000),(870,82,0,469,1.000000),(871,77,0,470,32.000000),(872,82,0,470,1.000000),(873,77,0,471,32.000000),(874,82,0,471,1.000000),(875,77,0,472,32.000000),(876,82,0,472,1.000000),(877,77,0,473,32.000000),(878,82,0,473,1.000000),(879,77,0,474,32.000000),(880,82,0,474,1.000000),(881,77,0,475,32.000000),(882,82,0,475,1.000000),(883,77,0,476,32.000000),(884,82,0,476,1.000000),(885,77,0,477,32.000000),(886,82,0,477,1.000000),(887,77,0,478,32.000000),(888,77,0,479,28.000000),(889,82,0,479,1.000000),(890,77,0,480,28.000000),(891,82,0,480,1.000000),(892,77,0,481,28.000000),(893,82,0,481,1.000000),(894,77,0,482,28.000000),(895,82,0,482,1.000000),(896,77,0,483,28.000000),(897,82,0,483,1.000000),(898,77,0,484,28.000000),(899,82,0,484,1.000000),(900,77,0,485,28.000000),(901,82,0,485,1.000000),(902,77,0,486,28.000000),(903,82,0,486,1.000000),(904,77,0,487,28.000000),(905,82,0,487,1.000000),(906,77,0,488,28.000000),(907,82,0,488,1.000000),(908,77,0,489,28.000000),(909,82,0,489,1.000000),(910,77,0,490,28.000000),(911,82,0,490,1.000000),(912,77,0,491,28.000000),(913,82,0,491,1.000000),(914,77,0,492,28.000000),(915,82,0,492,1.000000),(916,77,0,493,28.000000),(917,82,0,493,1.000000),(918,77,0,494,28.000000),(919,77,0,495,29.000000),(920,82,0,495,1.000000),(921,77,0,496,29.000000),(922,82,0,496,1.000000),(923,77,0,497,29.000000),(924,82,0,497,1.000000),(925,77,0,498,29.000000),(926,82,0,498,1.000000),(927,77,0,499,29.000000),(928,82,0,499,1.000000),(929,77,0,500,29.000000),(930,82,0,500,1.000000),(931,77,0,501,29.000000),(932,82,0,501,1.000000),(933,77,0,502,29.000000),(934,82,0,502,1.000000),(935,77,0,503,29.000000),(936,82,0,503,1.000000),(937,77,0,504,29.000000),(938,82,0,504,1.000000),(939,77,0,505,29.000000),(940,82,0,505,1.000000),(941,77,0,506,29.000000),(942,82,0,506,1.000000),(943,77,0,507,29.000000),(944,82,0,507,1.000000),(945,77,0,508,29.000000),(946,82,0,508,1.000000),(947,77,0,509,29.000000),(948,82,0,509,1.000000),(949,77,0,510,29.000000),(950,77,0,511,29.000000),(951,82,0,511,1.000000),(952,77,0,512,29.000000),(953,82,0,512,1.000000),(954,77,0,513,29.000000),(955,82,0,513,1.000000),(956,77,0,514,29.000000),(957,82,0,514,1.000000),(958,77,0,515,29.000000),(959,82,0,515,1.000000),(960,77,0,516,29.000000),(961,82,0,516,1.000000),(962,77,0,517,29.000000),(963,82,0,517,1.000000),(964,77,0,518,29.000000),(965,82,0,518,1.000000),(966,77,0,519,29.000000),(967,82,0,519,1.000000),(968,77,0,520,29.000000),(969,82,0,520,1.000000),(970,77,0,521,29.000000),(971,82,0,521,1.000000),(972,77,0,522,29.000000),(973,82,0,522,1.000000),(974,77,0,523,29.000000),(975,82,0,523,1.000000),(976,77,0,524,29.000000),(977,82,0,524,1.000000),(978,77,0,525,29.000000),(979,82,0,525,1.000000),(980,77,0,526,29.000000),(981,77,0,527,29.000000),(982,82,0,527,1.000000),(983,77,0,528,29.000000),(984,82,0,528,1.000000),(985,77,0,529,29.000000),(986,82,0,529,1.000000),(987,77,0,530,29.000000),(988,82,0,530,1.000000),(989,77,0,531,29.000000),(990,82,0,531,1.000000),(991,77,0,532,29.000000),(992,82,0,532,1.000000),(993,77,0,533,29.000000),(994,82,0,533,1.000000),(995,77,0,534,29.000000),(996,82,0,534,1.000000),(997,77,0,535,29.000000),(998,82,0,535,1.000000),(999,77,0,536,29.000000),(1000,82,0,536,1.000000),(1001,77,0,537,29.000000),(1002,82,0,537,1.000000),(1003,77,0,538,29.000000),(1004,82,0,538,1.000000),(1005,77,0,539,29.000000),(1006,82,0,539,1.000000),(1007,77,0,540,29.000000),(1008,82,0,540,1.000000),(1009,77,0,541,29.000000),(1010,82,0,541,1.000000),(1011,77,0,542,29.000000),(1012,77,0,543,24.000000),(1013,82,0,543,1.000000),(1014,77,0,544,24.000000),(1015,82,0,544,1.000000),(1016,77,0,545,24.000000),(1017,82,0,545,1.000000),(1018,77,0,546,24.000000),(1019,82,0,546,1.000000),(1020,77,0,547,24.000000),(1021,82,0,547,1.000000),(1022,77,0,548,24.000000),(1023,82,0,548,1.000000),(1024,77,0,549,24.000000),(1025,82,0,549,1.000000),(1026,77,0,550,24.000000),(1027,82,0,550,1.000000),(1028,77,0,551,24.000000),(1029,82,0,551,1.000000),(1030,77,0,552,24.000000),(1031,82,0,552,1.000000),(1032,77,0,553,24.000000),(1033,82,0,553,1.000000),(1034,77,0,554,24.000000),(1035,82,0,554,1.000000),(1036,77,0,555,24.000000),(1037,82,0,555,1.000000),(1038,77,0,556,24.000000),(1039,82,0,556,1.000000),(1040,77,0,557,24.000000),(1041,82,0,557,1.000000),(1042,77,0,558,24.000000),(1043,77,0,559,28.000000),(1044,82,0,559,1.000000),(1045,77,0,560,28.000000),(1046,82,0,560,1.000000),(1047,77,0,561,28.000000),(1048,82,0,561,1.000000),(1049,77,0,562,28.000000),(1050,82,0,562,1.000000),(1051,77,0,563,28.000000),(1052,82,0,563,1.000000),(1053,77,0,564,28.000000),(1054,82,0,564,1.000000),(1055,77,0,565,28.000000),(1056,82,0,565,1.000000),(1057,77,0,566,28.000000),(1058,82,0,566,1.000000),(1059,77,0,567,28.000000),(1060,82,0,567,1.000000),(1061,77,0,568,28.000000),(1062,82,0,568,1.000000),(1063,77,0,569,28.000000),(1064,82,0,569,1.000000),(1065,77,0,570,28.000000),(1066,82,0,570,1.000000),(1067,77,0,571,28.000000),(1068,82,0,571,1.000000),(1069,77,0,572,28.000000),(1070,82,0,572,1.000000),(1071,77,0,573,28.000000),(1072,82,0,573,1.000000),(1073,77,0,574,28.000000),(1074,77,0,575,24.000000),(1075,82,0,575,1.000000),(1076,77,0,576,24.000000),(1077,82,0,576,1.000000),(1078,77,0,577,24.000000),(1079,82,0,577,1.000000),(1080,77,0,578,24.000000),(1081,82,0,578,1.000000),(1082,77,0,579,24.000000),(1083,82,0,579,1.000000),(1084,77,0,580,24.000000),(1085,82,0,580,1.000000),(1086,77,0,581,24.000000),(1087,82,0,581,1.000000),(1088,77,0,582,24.000000),(1089,82,0,582,1.000000),(1090,77,0,583,24.000000),(1091,82,0,583,1.000000),(1092,77,0,584,24.000000),(1093,82,0,584,1.000000),(1094,77,0,585,24.000000),(1095,82,0,585,1.000000),(1096,77,0,586,24.000000),(1097,82,0,586,1.000000),(1098,77,0,587,24.000000),(1099,82,0,587,1.000000),(1100,77,0,588,24.000000),(1101,82,0,588,1.000000),(1102,77,0,589,24.000000),(1103,82,0,589,1.000000),(1104,77,0,590,24.000000),(1105,77,0,591,39.000000),(1106,82,0,591,1.000000),(1107,77,0,592,39.000000),(1108,82,0,592,1.000000),(1109,77,0,593,39.000000),(1110,82,0,593,1.000000),(1111,77,0,594,39.000000),(1112,82,0,594,1.000000),(1113,77,0,595,39.000000),(1114,82,0,595,1.000000),(1115,77,0,596,39.000000),(1116,82,0,596,1.000000),(1117,77,0,597,39.000000),(1118,82,0,597,1.000000),(1119,77,0,598,39.000000),(1120,82,0,598,1.000000),(1121,77,0,599,39.000000),(1122,82,0,599,1.000000),(1123,77,0,600,39.000000),(1124,82,0,600,1.000000),(1125,77,0,601,39.000000),(1126,82,0,601,1.000000),(1127,77,0,602,39.000000),(1128,82,0,602,1.000000),(1129,77,0,603,39.000000),(1130,82,0,603,1.000000),(1131,77,0,604,39.000000),(1132,82,0,604,1.000000),(1133,77,0,605,39.000000),(1134,82,0,605,1.000000),(1135,77,0,606,39.000000),(1136,77,0,607,39.000000),(1137,82,0,607,1.000000),(1138,77,0,608,39.000000),(1139,82,0,608,1.000000),(1140,77,0,609,39.000000),(1141,82,0,609,1.000000),(1142,77,0,610,39.000000),(1143,82,0,610,1.000000),(1144,77,0,611,39.000000),(1145,82,0,611,1.000000),(1146,77,0,612,39.000000),(1147,82,0,612,1.000000),(1148,77,0,613,39.000000),(1149,82,0,613,1.000000),(1150,77,0,614,39.000000),(1151,82,0,614,1.000000),(1152,77,0,615,39.000000),(1153,82,0,615,1.000000),(1154,77,0,616,39.000000),(1155,82,0,616,1.000000),(1156,77,0,617,39.000000),(1157,82,0,617,1.000000),(1158,77,0,618,39.000000),(1159,82,0,618,1.000000),(1160,77,0,619,39.000000),(1161,82,0,619,1.000000),(1162,77,0,620,39.000000),(1163,82,0,620,1.000000),(1164,77,0,621,39.000000),(1165,82,0,621,1.000000),(1166,77,0,622,39.000000),(1167,77,0,623,29.000000),(1168,82,0,623,1.000000),(1169,77,0,624,29.000000),(1170,82,0,624,1.000000),(1171,77,0,625,29.000000),(1172,82,0,625,1.000000),(1173,77,0,626,29.000000),(1174,82,0,626,1.000000),(1175,77,0,627,29.000000),(1176,82,0,627,1.000000),(1177,77,0,628,29.000000),(1178,82,0,628,1.000000),(1179,77,0,629,29.000000),(1180,82,0,629,1.000000),(1181,77,0,630,29.000000),(1182,82,0,630,1.000000),(1183,77,0,631,29.000000),(1184,82,0,631,1.000000),(1185,77,0,632,29.000000),(1186,82,0,632,1.000000),(1187,77,0,633,29.000000),(1188,82,0,633,1.000000),(1189,77,0,634,29.000000),(1190,82,0,634,1.000000),(1191,77,0,635,29.000000),(1192,82,0,635,1.000000),(1193,77,0,636,29.000000),(1194,82,0,636,1.000000),(1195,77,0,637,29.000000),(1196,82,0,637,1.000000),(1197,77,0,638,29.000000),(1198,77,0,639,29.000000),(1199,82,0,639,1.000000),(1200,77,0,640,29.000000),(1201,82,0,640,1.000000),(1202,77,0,641,29.000000),(1203,82,0,641,1.000000),(1204,77,0,642,29.000000),(1205,82,0,642,1.000000),(1206,77,0,643,29.000000),(1207,82,0,643,1.000000),(1208,77,0,644,29.000000),(1209,82,0,644,1.000000),(1210,77,0,645,29.000000),(1211,82,0,645,1.000000),(1212,77,0,646,29.000000),(1213,82,0,646,1.000000),(1214,77,0,647,29.000000),(1215,82,0,647,1.000000),(1216,77,0,648,29.000000),(1217,82,0,648,1.000000),(1218,77,0,649,29.000000),(1219,82,0,649,1.000000),(1220,77,0,650,29.000000),(1221,82,0,650,1.000000),(1222,77,0,651,29.000000),(1223,82,0,651,1.000000),(1224,77,0,652,29.000000),(1225,82,0,652,1.000000),(1226,77,0,653,29.000000),(1227,82,0,653,1.000000),(1228,77,0,654,29.000000),(1229,77,0,655,29.000000),(1230,82,0,655,1.000000),(1231,77,0,656,29.000000),(1232,82,0,656,1.000000),(1233,77,0,657,29.000000),(1234,82,0,657,1.000000),(1235,77,0,658,29.000000),(1236,82,0,658,1.000000),(1237,77,0,659,29.000000),(1238,82,0,659,1.000000),(1239,77,0,660,29.000000),(1240,82,0,660,1.000000),(1241,77,0,661,29.000000),(1242,82,0,661,1.000000),(1243,77,0,662,29.000000),(1244,82,0,662,1.000000),(1245,77,0,663,29.000000),(1246,82,0,663,1.000000),(1247,77,0,664,29.000000),(1248,82,0,664,1.000000),(1249,77,0,665,29.000000),(1250,82,0,665,1.000000),(1251,77,0,666,29.000000),(1252,82,0,666,1.000000),(1253,77,0,667,29.000000),(1254,82,0,667,1.000000),(1255,77,0,668,29.000000),(1256,82,0,668,1.000000),(1257,77,0,669,29.000000),(1258,82,0,669,1.000000),(1259,77,0,670,29.000000),(1260,77,0,671,32.000000),(1261,82,0,671,1.000000),(1262,77,0,672,32.000000),(1263,82,0,672,1.000000),(1264,77,0,673,32.000000),(1265,82,0,673,1.000000),(1266,77,0,674,32.000000),(1267,82,0,674,1.000000),(1268,77,0,675,32.000000),(1269,82,0,675,1.000000),(1270,77,0,676,32.000000),(1271,77,0,677,24.000000),(1272,82,0,677,1.000000),(1273,77,0,678,24.000000),(1274,82,0,678,1.000000),(1275,77,0,679,24.000000),(1276,82,0,679,1.000000),(1277,77,0,680,24.000000),(1278,82,0,680,1.000000),(1279,77,0,681,24.000000),(1280,82,0,681,1.000000),(1281,77,0,682,24.000000),(1282,77,0,683,28.000000),(1283,82,0,683,1.000000),(1284,77,0,684,28.000000),(1285,82,0,684,1.000000),(1286,77,0,685,28.000000),(1287,82,0,685,1.000000),(1288,77,0,686,28.000000),(1289,82,0,686,1.000000),(1290,77,0,687,28.000000),(1291,82,0,687,1.000000),(1292,77,0,688,28.000000),(1293,77,0,689,22.000000),(1294,82,0,689,1.000000),(1295,77,0,690,22.000000),(1296,82,0,690,1.000000),(1297,77,0,691,22.000000),(1298,82,0,691,1.000000),(1299,77,0,692,22.000000),(1300,82,0,692,1.000000),(1301,77,0,693,22.000000),(1302,82,0,693,1.000000),(1303,77,0,694,22.000000),(1304,77,0,695,29.000000),(1305,82,0,695,1.000000),(1306,77,0,696,29.000000),(1307,82,0,696,1.000000),(1308,77,0,697,29.000000),(1309,82,0,697,1.000000),(1310,77,0,698,29.000000),(1311,82,0,698,1.000000),(1312,77,0,699,29.000000),(1313,82,0,699,1.000000),(1314,77,0,700,29.000000),(1315,77,0,701,29.000000),(1316,82,0,701,1.000000),(1317,77,0,702,29.000000),(1318,82,0,702,1.000000),(1319,77,0,703,29.000000),(1320,82,0,703,1.000000),(1321,77,0,704,29.000000),(1322,82,0,704,1.000000),(1323,77,0,705,29.000000),(1324,82,0,705,1.000000),(1325,77,0,706,29.000000),(1326,77,0,707,18.000000),(1327,82,0,707,1.000000),(1328,77,0,708,18.000000),(1329,82,0,708,1.000000),(1330,77,0,709,18.000000),(1331,82,0,709,1.000000),(1332,77,0,710,18.000000),(1333,82,0,710,1.000000),(1334,77,0,711,18.000000),(1335,82,0,711,1.000000),(1336,77,0,712,18.000000),(1337,77,0,713,18.000000),(1338,82,0,713,1.000000),(1339,77,0,714,18.000000),(1340,82,0,714,1.000000),(1341,77,0,715,18.000000),(1342,82,0,715,1.000000),(1343,77,0,716,18.000000),(1344,82,0,716,1.000000),(1345,77,0,717,18.000000),(1346,82,0,717,1.000000),(1347,77,0,718,18.000000),(1348,77,0,719,18.000000),(1349,82,0,719,1.000000),(1350,77,0,720,18.000000),(1351,82,0,720,1.000000),(1352,77,0,721,18.000000),(1353,82,0,721,1.000000),(1354,77,0,722,18.000000),(1355,82,0,722,1.000000),(1356,77,0,723,18.000000),(1357,82,0,723,1.000000),(1358,77,0,724,18.000000),(1359,77,0,725,35.000000),(1360,82,0,725,1.000000),(1361,77,0,726,35.000000),(1362,82,0,726,1.000000),(1363,77,0,727,35.000000),(1364,82,0,727,1.000000),(1365,77,0,728,35.000000),(1366,82,0,728,1.000000),(1367,77,0,729,35.000000),(1368,82,0,729,1.000000),(1369,77,0,730,35.000000),(1370,82,0,730,1.000000),(1371,77,0,731,35.000000),(1372,82,0,731,1.000000),(1373,77,0,732,35.000000),(1374,82,0,732,1.000000),(1375,77,0,733,35.000000),(1376,82,0,733,1.000000),(1377,77,0,734,35.000000),(1378,82,0,734,1.000000),(1379,77,0,735,35.000000),(1380,82,0,735,1.000000),(1381,77,0,736,35.000000),(1382,82,0,736,1.000000),(1383,77,0,737,35.000000),(1384,77,0,738,46.000000),(1385,82,0,738,1.000000),(1386,77,0,739,46.000000),(1387,82,0,739,1.000000),(1388,77,0,740,46.000000),(1389,82,0,740,1.000000),(1390,77,0,741,46.000000),(1391,82,0,741,1.000000),(1392,77,0,742,46.000000),(1393,82,0,742,1.000000),(1394,77,0,743,46.000000),(1395,82,0,743,1.000000),(1396,77,0,744,46.000000),(1397,82,0,744,1.000000),(1398,77,0,745,46.000000),(1399,82,0,745,1.000000),(1400,77,0,746,46.000000),(1401,82,0,746,1.000000),(1402,77,0,747,46.000000),(1403,82,0,747,1.000000),(1404,77,0,748,46.000000),(1405,82,0,748,1.000000),(1406,77,0,749,46.000000),(1407,82,0,749,1.000000),(1408,77,0,750,46.000000),(1409,77,0,751,51.000000),(1410,82,0,751,1.000000),(1411,77,0,752,51.000000),(1412,82,0,752,1.000000),(1413,77,0,753,51.000000),(1414,82,0,753,1.000000),(1415,77,0,754,51.000000),(1416,82,0,754,1.000000),(1417,77,0,755,51.000000),(1418,82,0,755,1.000000),(1419,77,0,756,51.000000),(1420,82,0,756,1.000000),(1421,77,0,757,51.000000),(1422,82,0,757,1.000000),(1423,77,0,758,51.000000),(1424,82,0,758,1.000000),(1425,77,0,759,51.000000),(1426,82,0,759,1.000000),(1427,77,0,760,51.000000),(1428,82,0,760,1.000000),(1429,77,0,761,51.000000),(1430,82,0,761,1.000000),(1431,77,0,762,51.000000),(1432,82,0,762,1.000000),(1433,77,0,763,51.000000),(1434,77,0,764,45.000000),(1435,82,0,764,1.000000),(1436,77,0,765,45.000000),(1437,82,0,765,1.000000),(1438,77,0,766,45.000000),(1439,82,0,766,1.000000),(1440,77,0,767,45.000000),(1441,82,0,767,1.000000),(1442,77,0,768,45.000000),(1443,82,0,768,1.000000),(1444,77,0,769,45.000000),(1445,82,0,769,1.000000),(1446,77,0,770,45.000000),(1447,82,0,770,1.000000),(1448,77,0,771,45.000000),(1449,82,0,771,1.000000),(1450,77,0,772,45.000000),(1451,82,0,772,1.000000),(1452,77,0,773,45.000000),(1453,82,0,773,1.000000),(1454,77,0,774,45.000000),(1455,82,0,774,1.000000),(1456,77,0,775,45.000000),(1457,82,0,775,1.000000),(1458,77,0,776,45.000000),(1459,77,0,777,57.000000),(1460,82,0,777,1.000000),(1461,77,0,778,57.000000),(1462,82,0,778,1.000000),(1463,77,0,779,57.000000),(1464,82,0,779,1.000000),(1465,77,0,780,57.000000),(1466,82,0,780,1.000000),(1467,77,0,781,57.000000),(1468,82,0,781,1.000000),(1469,77,0,782,57.000000),(1470,82,0,782,1.000000),(1471,77,0,783,57.000000),(1472,82,0,783,1.000000),(1473,77,0,784,57.000000),(1474,82,0,784,1.000000),(1475,77,0,785,57.000000),(1476,82,0,785,1.000000),(1477,77,0,786,57.000000),(1478,82,0,786,1.000000),(1479,77,0,787,57.000000),(1480,82,0,787,1.000000),(1481,77,0,788,57.000000),(1482,82,0,788,1.000000),(1483,77,0,789,57.000000),(1484,77,0,790,28.000000),(1485,82,0,790,1.000000),(1486,77,0,791,28.000000),(1487,82,0,791,1.000000),(1488,77,0,792,28.000000),(1489,82,0,792,1.000000),(1490,77,0,793,28.000000),(1491,82,0,793,1.000000),(1492,77,0,794,28.000000),(1493,82,0,794,1.000000),(1494,77,0,795,28.000000),(1495,82,0,795,1.000000),(1496,77,0,796,28.000000),(1497,82,0,796,1.000000),(1498,77,0,797,28.000000),(1499,82,0,797,1.000000),(1500,77,0,798,28.000000),(1501,82,0,798,1.000000),(1502,77,0,799,28.000000),(1503,82,0,799,1.000000),(1504,77,0,800,28.000000),(1505,82,0,800,1.000000),(1506,77,0,801,28.000000),(1507,82,0,801,1.000000),(1508,77,0,802,28.000000),(1509,77,0,803,68.000000),(1510,82,0,803,1.000000),(1511,77,0,804,68.000000),(1512,82,0,804,1.000000),(1513,77,0,805,68.000000),(1514,82,0,805,1.000000),(1515,77,0,806,68.000000),(1516,82,0,806,1.000000),(1517,77,0,807,68.000000),(1518,82,0,807,1.000000),(1519,77,0,808,68.000000),(1520,82,0,808,1.000000),(1521,77,0,809,68.000000),(1522,82,0,809,1.000000),(1523,77,0,810,68.000000),(1524,82,0,810,1.000000),(1525,77,0,811,68.000000),(1526,82,0,811,1.000000),(1527,77,0,812,68.000000),(1528,82,0,812,1.000000),(1529,77,0,813,68.000000),(1530,82,0,813,1.000000),(1531,77,0,814,68.000000),(1532,82,0,814,1.000000),(1533,77,0,815,68.000000),(1534,77,0,816,82.000000),(1535,82,0,816,1.000000),(1536,77,0,817,82.000000),(1537,82,0,817,1.000000),(1538,77,0,818,82.000000),(1539,82,0,818,1.000000),(1540,77,0,819,82.000000),(1541,82,0,819,1.000000),(1542,77,0,820,82.000000),(1543,82,0,820,1.000000),(1544,77,0,821,82.000000),(1545,82,0,821,1.000000),(1546,77,0,822,82.000000),(1547,82,0,822,1.000000),(1548,77,0,823,82.000000),(1549,82,0,823,1.000000),(1550,77,0,824,82.000000),(1551,82,0,824,1.000000),(1552,77,0,825,82.000000),(1553,82,0,825,1.000000),(1554,77,0,826,82.000000),(1555,82,0,826,1.000000),(1556,77,0,827,82.000000),(1557,82,0,827,1.000000),(1558,77,0,828,82.000000),(1559,77,0,829,75.000000),(1560,82,0,829,1.000000),(1561,77,0,830,75.000000),(1562,82,0,830,1.000000),(1563,77,0,831,75.000000),(1564,82,0,831,1.000000),(1565,77,0,832,75.000000),(1566,82,0,832,1.000000),(1567,77,0,833,75.000000),(1568,82,0,833,1.000000),(1569,77,0,834,75.000000),(1570,82,0,834,1.000000),(1571,77,0,835,75.000000),(1572,82,0,835,1.000000),(1573,77,0,836,75.000000),(1574,82,0,836,1.000000),(1575,77,0,837,75.000000),(1576,82,0,837,1.000000),(1577,77,0,838,75.000000),(1578,82,0,838,1.000000),(1579,77,0,839,75.000000),(1580,82,0,839,1.000000),(1581,77,0,840,75.000000),(1582,82,0,840,1.000000),(1583,77,0,841,75.000000),(1584,77,0,842,66.000000),(1585,82,0,842,1.000000),(1586,77,0,843,66.000000),(1587,82,0,843,1.000000),(1588,77,0,844,66.000000),(1589,82,0,844,1.000000),(1590,77,0,845,66.000000),(1591,82,0,845,1.000000),(1592,77,0,846,66.000000),(1593,82,0,846,1.000000),(1594,77,0,847,66.000000),(1595,82,0,847,1.000000),(1596,77,0,848,66.000000),(1597,82,0,848,1.000000),(1598,77,0,849,66.000000),(1599,82,0,849,1.000000),(1600,77,0,850,66.000000),(1601,82,0,850,1.000000),(1602,77,0,851,66.000000),(1603,82,0,851,1.000000),(1604,77,0,852,66.000000),(1605,82,0,852,1.000000),(1606,77,0,853,66.000000),(1607,82,0,853,1.000000),(1608,77,0,854,66.000000),(1609,77,0,855,74.000000),(1610,82,0,855,1.000000),(1611,77,0,856,74.000000),(1612,82,0,856,1.000000),(1613,77,0,857,74.000000),(1614,82,0,857,1.000000),(1615,77,0,858,74.000000),(1616,82,0,858,1.000000),(1617,77,0,859,74.000000),(1618,82,0,859,1.000000),(1619,77,0,860,74.000000),(1620,82,0,860,1.000000),(1621,77,0,861,74.000000),(1622,82,0,861,1.000000),(1623,77,0,862,74.000000),(1624,82,0,862,1.000000),(1625,77,0,863,74.000000),(1626,82,0,863,1.000000),(1627,77,0,864,74.000000),(1628,82,0,864,1.000000),(1629,77,0,865,74.000000),(1630,82,0,865,1.000000),(1631,77,0,866,74.000000),(1632,82,0,866,1.000000),(1633,77,0,867,74.000000),(1634,77,0,868,48.000000),(1635,82,0,868,1.000000),(1636,77,0,869,48.000000),(1637,82,0,869,1.000000),(1638,77,0,870,48.000000),(1639,82,0,870,1.000000),(1640,77,0,871,48.000000),(1641,82,0,871,1.000000),(1642,77,0,872,48.000000),(1643,82,0,872,1.000000),(1644,77,0,873,48.000000),(1645,82,0,873,1.000000),(1646,77,0,874,48.000000),(1647,82,0,874,1.000000),(1648,77,0,875,48.000000),(1649,82,0,875,1.000000),(1650,77,0,876,48.000000),(1651,82,0,876,1.000000),(1652,77,0,877,48.000000),(1653,82,0,877,1.000000),(1654,77,0,878,48.000000),(1655,82,0,878,1.000000),(1656,77,0,879,48.000000),(1657,82,0,879,1.000000),(1658,77,0,880,48.000000),(1659,77,0,881,44.000000),(1660,82,0,881,1.000000),(1661,77,0,882,44.000000),(1662,82,0,882,1.000000),(1663,77,0,883,44.000000),(1664,82,0,883,1.000000),(1665,77,0,884,44.000000),(1666,82,0,884,1.000000),(1667,77,0,885,44.000000),(1668,82,0,885,1.000000),(1669,77,0,886,44.000000),(1670,82,0,886,1.000000),(1671,77,0,887,44.000000),(1672,82,0,887,1.000000),(1673,77,0,888,44.000000),(1674,82,0,888,1.000000),(1675,77,0,889,44.000000),(1676,82,0,889,1.000000),(1677,77,0,890,44.000000),(1678,82,0,890,1.000000),(1679,77,0,891,44.000000),(1680,82,0,891,1.000000),(1681,77,0,892,44.000000),(1682,82,0,892,1.000000),(1683,77,0,893,44.000000),(1684,77,0,894,32.500000),(1685,82,0,894,1.000000),(1686,77,0,895,32.500000),(1687,82,0,895,1.000000),(1688,77,0,896,32.500000),(1689,82,0,896,1.000000),(1690,77,0,897,32.500000),(1691,82,0,897,1.000000),(1692,77,0,898,32.500000),(1693,77,0,899,32.500000),(1694,82,0,899,1.000000),(1695,77,0,900,32.500000),(1696,82,0,900,1.000000),(1697,77,0,901,32.500000),(1698,82,0,901,1.000000),(1699,77,0,902,32.500000),(1700,82,0,902,1.000000),(1701,77,0,903,32.500000),(1702,82,0,903,1.000000),(1703,77,0,904,32.500000),(1704,82,0,904,1.000000),(1705,77,0,905,32.500000),(1706,82,0,905,1.000000),(1707,77,0,906,32.500000),(1708,82,0,906,1.000000),(1709,77,0,907,32.500000),(1710,82,0,907,1.000000),(1711,77,0,908,32.500000),(1712,82,0,908,1.000000),(1713,77,0,909,32.500000),(1714,82,0,909,1.000000),(1715,77,0,910,32.500000),(1716,82,0,910,1.000000),(1717,77,0,911,32.500000),(1718,77,0,912,32.500000),(1719,82,0,912,1.000000),(1720,77,0,913,32.500000),(1721,82,0,913,1.000000),(1722,77,0,914,32.500000),(1723,82,0,914,1.000000),(1724,77,0,915,32.500000),(1725,82,0,915,1.000000),(1726,77,0,916,32.500000),(1727,82,0,916,1.000000),(1728,77,0,917,32.500000),(1729,82,0,917,1.000000),(1730,77,0,918,32.500000),(1731,82,0,918,1.000000),(1732,77,0,919,32.500000),(1733,82,0,919,1.000000),(1734,77,0,920,32.500000),(1735,82,0,920,1.000000),(1736,77,0,921,32.500000),(1737,82,0,921,1.000000),(1738,77,0,922,32.500000),(1739,82,0,922,1.000000),(1740,77,0,923,32.500000),(1741,82,0,923,1.000000),(1742,77,0,924,32.500000),(1743,77,0,925,29.000000),(1744,82,0,925,1.000000),(1745,77,0,926,29.000000),(1746,82,0,926,1.000000),(1747,77,0,927,29.000000),(1748,82,0,927,1.000000),(1749,77,0,928,29.000000),(1750,82,0,928,1.000000),(1751,77,0,929,29.000000),(1752,82,0,929,1.000000),(1753,77,0,930,29.000000),(1754,82,0,930,1.000000),(1755,77,0,931,29.000000),(1756,82,0,931,1.000000),(1757,77,0,932,29.000000),(1758,82,0,932,1.000000),(1759,77,0,933,29.000000),(1760,82,0,933,1.000000),(1761,77,0,934,29.000000),(1762,82,0,934,1.000000),(1763,77,0,935,29.000000),(1764,82,0,935,1.000000),(1765,77,0,936,29.000000),(1766,82,0,936,1.000000),(1767,77,0,937,29.000000),(1768,77,0,938,32.000000),(1769,82,0,938,1.000000),(1770,77,0,939,32.000000),(1771,82,0,939,1.000000),(1772,77,0,940,32.000000),(1773,82,0,940,1.000000),(1774,77,0,941,32.000000),(1775,82,0,941,1.000000),(1776,77,0,942,32.000000),(1777,82,0,942,1.000000),(1778,77,0,943,32.000000),(1779,82,0,943,1.000000),(1780,77,0,944,32.000000),(1781,82,0,944,1.000000),(1782,77,0,945,32.000000),(1783,82,0,945,1.000000),(1784,77,0,946,32.000000),(1785,82,0,946,1.000000),(1786,77,0,947,32.000000),(1787,82,0,947,1.000000),(1788,77,0,948,32.000000),(1789,82,0,948,1.000000),(1790,77,0,949,32.000000),(1791,82,0,949,1.000000),(1792,77,0,950,32.000000),(1793,77,0,951,35.000000),(1794,82,0,951,1.000000),(1795,77,0,952,35.000000),(1796,82,0,952,1.000000),(1797,77,0,953,35.000000),(1798,82,0,953,1.000000),(1799,77,0,954,35.000000),(1800,82,0,954,1.000000),(1801,77,0,955,35.000000),(1802,82,0,955,1.000000),(1803,77,0,956,35.000000),(1804,82,0,956,1.000000),(1805,77,0,957,35.000000),(1806,82,0,957,1.000000),(1807,77,0,958,35.000000),(1808,82,0,958,1.000000),(1809,77,0,959,35.000000),(1810,82,0,959,1.000000),(1811,77,0,960,35.000000),(1812,82,0,960,1.000000),(1813,77,0,961,35.000000),(1814,82,0,961,1.000000),(1815,77,0,962,35.000000),(1816,82,0,962,1.000000),(1817,77,0,963,35.000000),(1818,77,0,964,35.000000),(1819,82,0,964,1.000000),(1820,77,0,965,35.000000),(1821,82,0,965,1.000000),(1822,77,0,966,35.000000),(1823,82,0,966,1.000000),(1824,77,0,967,35.000000),(1825,82,0,967,1.000000),(1826,77,0,968,35.000000),(1827,82,0,968,1.000000),(1828,77,0,969,35.000000),(1829,82,0,969,1.000000),(1830,77,0,970,35.000000),(1831,82,0,970,1.000000),(1832,77,0,971,35.000000),(1833,82,0,971,1.000000),(1834,77,0,972,35.000000),(1835,82,0,972,1.000000),(1836,77,0,973,35.000000),(1837,82,0,973,1.000000),(1838,77,0,974,35.000000),(1839,82,0,974,1.000000),(1840,77,0,975,35.000000),(1841,82,0,975,1.000000),(1842,77,0,976,35.000000),(1843,77,0,977,24.000000),(1844,82,0,977,1.000000),(1845,77,0,978,24.000000),(1846,82,0,978,1.000000),(1847,77,0,979,24.000000),(1848,82,0,979,1.000000),(1849,77,0,980,24.000000),(1850,82,0,980,1.000000),(1851,77,0,981,24.000000),(1852,82,0,981,1.000000),(1853,77,0,982,24.000000),(1854,82,0,982,1.000000),(1855,77,0,983,24.000000),(1856,82,0,983,1.000000),(1857,77,0,984,24.000000),(1858,82,0,984,1.000000),(1859,77,0,985,24.000000),(1860,82,0,985,1.000000),(1861,77,0,986,24.000000),(1862,82,0,986,1.000000),(1863,77,0,987,24.000000),(1864,82,0,987,1.000000),(1865,77,0,988,24.000000),(1866,82,0,988,1.000000),(1867,77,0,989,24.000000),(1868,77,0,990,32.000000),(1869,82,0,990,1.000000),(1870,77,0,991,32.000000),(1871,82,0,991,1.000000),(1872,77,0,992,32.000000),(1873,82,0,992,1.000000),(1874,77,0,993,32.000000),(1875,82,0,993,1.000000),(1876,77,0,994,32.000000),(1877,82,0,994,1.000000),(1878,77,0,995,32.000000),(1879,82,0,995,1.000000),(1880,77,0,996,32.000000),(1881,82,0,996,1.000000),(1882,77,0,997,32.000000),(1883,82,0,997,1.000000),(1884,77,0,998,32.000000),(1885,82,0,998,1.000000),(1886,77,0,999,32.000000),(1887,82,0,999,1.000000),(1888,77,0,1000,32.000000),(1889,82,0,1000,1.000000),(1890,77,0,1001,32.000000),(1891,82,0,1001,1.000000),(1892,77,0,1002,32.000000),(1893,77,0,1003,20.000000),(1894,82,0,1003,1.000000),(1895,77,0,1004,20.000000),(1896,82,0,1004,1.000000),(1897,77,0,1005,20.000000),(1898,82,0,1005,1.000000),(1899,77,0,1006,20.000000),(1900,82,0,1006,1.000000),(1901,77,0,1007,20.000000),(1902,82,0,1007,1.000000),(1903,77,0,1008,20.000000),(1904,82,0,1008,1.000000),(1905,77,0,1009,20.000000),(1906,82,0,1009,1.000000),(1907,77,0,1010,20.000000),(1908,82,0,1010,1.000000),(1909,77,0,1011,20.000000),(1910,82,0,1011,1.000000),(1911,77,0,1012,20.000000),(1912,82,0,1012,1.000000),(1913,77,0,1013,20.000000),(1914,82,0,1013,1.000000),(1915,77,0,1014,20.000000),(1916,82,0,1014,1.000000),(1917,77,0,1015,20.000000),(1918,77,0,1016,27.000000),(1919,82,0,1016,1.000000),(1920,77,0,1017,27.000000),(1921,82,0,1017,1.000000),(1922,77,0,1018,27.000000),(1923,82,0,1018,1.000000),(1924,77,0,1019,27.000000),(1925,82,0,1019,1.000000),(1926,77,0,1020,27.000000),(1927,82,0,1020,1.000000),(1928,77,0,1021,27.000000),(1929,82,0,1021,1.000000),(1930,77,0,1022,27.000000),(1931,82,0,1022,1.000000),(1932,77,0,1023,27.000000),(1933,82,0,1023,1.000000),(1934,77,0,1024,27.000000),(1935,82,0,1024,1.000000),(1936,77,0,1025,27.000000),(1937,82,0,1025,1.000000),(1938,77,0,1026,27.000000),(1939,82,0,1026,1.000000),(1940,77,0,1027,27.000000),(1941,82,0,1027,1.000000),(1942,77,0,1028,27.000000),(1943,77,0,1029,57.000000),(1944,82,0,1029,1.000000),(1945,77,0,1030,57.000000),(1946,82,0,1030,1.000000),(1947,77,0,1031,57.000000),(1948,82,0,1031,1.000000),(1949,77,0,1032,57.000000),(1950,82,0,1032,1.000000),(1951,77,0,1033,57.000000),(1952,82,0,1033,1.000000),(1953,77,0,1034,57.000000),(1954,82,0,1034,1.000000),(1955,77,0,1035,57.000000),(1956,82,0,1035,1.000000),(1957,77,0,1036,57.000000),(1958,82,0,1036,1.000000),(1959,77,0,1037,57.000000),(1960,82,0,1037,1.000000),(1961,77,0,1038,57.000000),(1962,82,0,1038,1.000000),(1963,77,0,1039,57.000000),(1964,82,0,1039,1.000000),(1965,77,0,1040,57.000000),(1966,82,0,1040,1.000000),(1967,77,0,1041,57.000000),(1968,82,0,1041,1.000000),(1969,77,0,1042,57.000000),(1970,82,0,1042,1.000000),(1971,77,0,1043,57.000000),(1972,82,0,1043,1.000000),(1973,77,0,1044,57.000000),(1974,77,0,1045,48.000000),(1975,82,0,1045,1.000000),(1976,77,0,1046,48.000000),(1977,82,0,1046,1.000000),(1978,77,0,1047,48.000000),(1979,82,0,1047,1.000000),(1980,77,0,1048,48.000000),(1981,82,0,1048,1.000000),(1982,77,0,1049,48.000000),(1983,82,0,1049,1.000000),(1984,77,0,1050,48.000000),(1985,82,0,1050,1.000000),(1986,77,0,1051,48.000000),(1987,82,0,1051,1.000000),(1988,77,0,1052,48.000000),(1989,82,0,1052,1.000000),(1990,77,0,1053,48.000000),(1991,82,0,1053,1.000000),(1992,77,0,1054,48.000000),(1993,82,0,1054,1.000000),(1994,77,0,1055,48.000000),(1995,82,0,1055,1.000000),(1996,77,0,1056,48.000000),(1997,82,0,1056,1.000000),(1998,77,0,1057,48.000000),(1999,82,0,1057,1.000000),(2000,77,0,1058,48.000000),(2001,82,0,1058,1.000000),(2002,77,0,1059,48.000000),(2003,82,0,1059,1.000000),(2004,77,0,1060,48.000000),(2005,77,0,1061,57.000000),(2006,82,0,1061,1.000000),(2007,77,0,1062,57.000000),(2008,82,0,1062,1.000000),(2009,77,0,1063,57.000000),(2010,82,0,1063,1.000000),(2011,77,0,1064,57.000000),(2012,82,0,1064,1.000000),(2013,77,0,1065,57.000000),(2014,82,0,1065,1.000000),(2015,77,0,1066,57.000000),(2016,82,0,1066,1.000000),(2017,77,0,1067,57.000000),(2018,82,0,1067,1.000000),(2019,77,0,1068,57.000000),(2020,82,0,1068,1.000000),(2021,77,0,1069,57.000000),(2022,82,0,1069,1.000000),(2023,77,0,1070,57.000000),(2024,82,0,1070,1.000000),(2025,77,0,1071,57.000000),(2026,82,0,1071,1.000000),(2027,77,0,1072,57.000000),(2028,82,0,1072,1.000000),(2029,77,0,1073,57.000000),(2030,82,0,1073,1.000000),(2031,77,0,1074,57.000000),(2032,82,0,1074,1.000000),(2033,77,0,1075,57.000000),(2034,82,0,1075,1.000000),(2035,77,0,1076,57.000000),(2036,77,0,1077,69.000000),(2037,82,0,1077,1.000000),(2038,77,0,1078,69.000000),(2039,82,0,1078,1.000000),(2040,77,0,1079,69.000000),(2041,82,0,1079,1.000000),(2042,77,0,1080,69.000000),(2043,82,0,1080,1.000000),(2044,77,0,1081,69.000000),(2045,82,0,1081,1.000000),(2046,77,0,1082,69.000000),(2047,82,0,1082,1.000000),(2048,77,0,1083,69.000000),(2049,82,0,1083,1.000000),(2050,77,0,1084,69.000000),(2051,82,0,1084,1.000000),(2052,77,0,1085,69.000000),(2053,82,0,1085,1.000000),(2054,77,0,1086,69.000000),(2055,82,0,1086,1.000000),(2056,77,0,1087,69.000000),(2057,82,0,1087,1.000000),(2058,77,0,1088,69.000000),(2059,82,0,1088,1.000000),(2060,77,0,1089,69.000000),(2061,82,0,1089,1.000000),(2062,77,0,1090,69.000000),(2063,82,0,1090,1.000000),(2064,77,0,1091,69.000000),(2065,82,0,1091,1.000000),(2066,77,0,1092,69.000000),(2067,77,0,1093,42.000000),(2068,82,0,1093,1.000000),(2069,77,0,1094,42.000000),(2070,82,0,1094,1.000000),(2071,77,0,1095,42.000000),(2072,82,0,1095,1.000000),(2073,77,0,1096,42.000000),(2074,82,0,1096,1.000000),(2075,77,0,1097,42.000000),(2076,82,0,1097,1.000000),(2077,77,0,1098,42.000000),(2078,82,0,1098,1.000000),(2079,77,0,1099,42.000000),(2080,82,0,1099,1.000000),(2081,77,0,1100,42.000000),(2082,82,0,1100,1.000000),(2083,77,0,1101,42.000000),(2084,82,0,1101,1.000000),(2085,77,0,1102,42.000000),(2086,82,0,1102,1.000000),(2087,77,0,1103,42.000000),(2088,82,0,1103,1.000000),(2089,77,0,1104,42.000000),(2090,82,0,1104,1.000000),(2091,77,0,1105,42.000000),(2092,82,0,1105,1.000000),(2093,77,0,1106,42.000000),(2094,82,0,1106,1.000000),(2095,77,0,1107,42.000000),(2096,82,0,1107,1.000000),(2097,77,0,1108,42.000000),(2098,77,0,1109,59.000000),(2099,82,0,1109,1.000000),(2100,77,0,1110,59.000000),(2101,82,0,1110,1.000000),(2102,77,0,1111,59.000000),(2103,82,0,1111,1.000000),(2104,77,0,1112,59.000000),(2105,82,0,1112,1.000000),(2106,77,0,1113,59.000000),(2107,82,0,1113,1.000000),(2108,77,0,1114,59.000000),(2109,77,0,1115,59.000000),(2110,82,0,1115,1.000000),(2111,77,0,1116,59.000000),(2112,82,0,1116,1.000000),(2113,77,0,1117,59.000000),(2114,82,0,1117,1.000000),(2115,77,0,1118,59.000000),(2116,82,0,1118,1.000000),(2117,77,0,1119,59.000000),(2118,82,0,1119,1.000000),(2119,77,0,1120,59.000000),(2120,82,0,1120,1.000000),(2121,77,0,1121,59.000000),(2122,82,0,1121,1.000000),(2123,77,0,1122,59.000000),(2124,82,0,1122,1.000000),(2125,77,0,1123,59.000000),(2126,82,0,1123,1.000000),(2127,77,0,1124,59.000000),(2128,82,0,1124,1.000000),(2129,77,0,1125,59.000000),(2130,82,0,1125,1.000000),(2131,77,0,1126,59.000000),(2132,82,0,1126,1.000000),(2133,77,0,1127,59.000000),(2134,82,0,1127,1.000000),(2135,77,0,1128,59.000000),(2136,82,0,1128,1.000000),(2137,77,0,1129,59.000000),(2138,82,0,1129,1.000000),(2139,77,0,1130,59.000000),(2140,77,0,1131,48.000000),(2141,82,0,1131,1.000000),(2142,77,0,1132,48.000000),(2143,82,0,1132,1.000000),(2144,77,0,1133,48.000000),(2145,82,0,1133,1.000000),(2146,77,0,1134,48.000000),(2147,82,0,1134,1.000000),(2148,77,0,1135,48.000000),(2149,82,0,1135,1.000000),(2150,77,0,1136,48.000000),(2151,82,0,1136,1.000000),(2152,77,0,1137,48.000000),(2153,82,0,1137,1.000000),(2154,77,0,1138,48.000000),(2155,82,0,1138,1.000000),(2156,77,0,1139,48.000000),(2157,82,0,1139,1.000000),(2158,77,0,1140,48.000000),(2159,82,0,1140,1.000000),(2160,77,0,1141,48.000000),(2161,82,0,1141,1.000000),(2162,77,0,1142,48.000000),(2163,82,0,1142,1.000000),(2164,77,0,1143,48.000000),(2165,82,0,1143,1.000000),(2166,77,0,1144,48.000000),(2167,82,0,1144,1.000000),(2168,77,0,1145,48.000000),(2169,82,0,1145,1.000000),(2170,77,0,1146,48.000000),(2171,77,0,1147,39.000000),(2172,82,0,1147,1.000000),(2173,77,0,1148,39.000000),(2174,82,0,1148,1.000000),(2175,77,0,1149,39.000000),(2176,82,0,1149,1.000000),(2177,77,0,1150,39.000000),(2178,82,0,1150,1.000000),(2179,77,0,1151,39.000000),(2180,82,0,1151,1.000000),(2181,77,0,1152,39.000000),(2182,82,0,1152,1.000000),(2183,77,0,1153,39.000000),(2184,82,0,1153,1.000000),(2185,77,0,1154,39.000000),(2186,82,0,1154,1.000000),(2187,77,0,1155,39.000000),(2188,82,0,1155,1.000000),(2189,77,0,1156,39.000000),(2190,82,0,1156,1.000000),(2191,77,0,1157,39.000000),(2192,82,0,1157,1.000000),(2193,77,0,1158,39.000000),(2194,82,0,1158,1.000000),(2195,77,0,1159,39.000000),(2196,82,0,1159,1.000000),(2197,77,0,1160,39.000000),(2198,82,0,1160,1.000000),(2199,77,0,1161,39.000000),(2200,82,0,1161,1.000000),(2201,77,0,1162,39.000000),(2202,77,0,1163,55.000000),(2203,82,0,1163,1.000000),(2204,77,0,1164,55.000000),(2205,82,0,1164,1.000000),(2206,77,0,1165,55.000000),(2207,82,0,1165,1.000000),(2208,77,0,1166,55.000000),(2209,82,0,1166,1.000000),(2210,77,0,1167,55.000000),(2211,82,0,1167,1.000000),(2212,77,0,1168,55.000000),(2213,82,0,1168,1.000000),(2214,77,0,1169,55.000000),(2215,82,0,1169,1.000000),(2216,77,0,1170,55.000000),(2217,82,0,1170,1.000000),(2218,77,0,1171,55.000000),(2219,82,0,1171,1.000000),(2220,77,0,1172,55.000000),(2221,82,0,1172,1.000000),(2222,77,0,1173,55.000000),(2223,82,0,1173,1.000000),(2224,77,0,1174,55.000000),(2225,82,0,1174,1.000000),(2226,77,0,1175,55.000000),(2227,82,0,1175,1.000000),(2228,77,0,1176,55.000000),(2229,82,0,1176,1.000000),(2230,77,0,1177,55.000000),(2231,82,0,1177,1.000000),(2232,77,0,1178,55.000000),(2233,77,0,1179,54.000000),(2234,82,0,1179,1.000000),(2235,77,0,1180,54.000000),(2236,82,0,1180,1.000000),(2237,77,0,1181,54.000000),(2238,82,0,1181,1.000000),(2239,77,0,1182,54.000000),(2240,82,0,1182,1.000000),(2241,77,0,1183,54.000000),(2242,82,0,1183,1.000000),(2243,77,0,1184,54.000000),(2244,82,0,1184,1.000000),(2245,77,0,1185,54.000000),(2246,82,0,1185,1.000000),(2247,77,0,1186,54.000000),(2248,82,0,1186,1.000000),(2249,77,0,1187,54.000000),(2250,82,0,1187,1.000000),(2251,77,0,1188,54.000000),(2252,82,0,1188,1.000000),(2253,77,0,1189,54.000000),(2254,82,0,1189,1.000000),(2255,77,0,1190,54.000000),(2256,82,0,1190,1.000000),(2257,77,0,1191,54.000000),(2258,82,0,1191,1.000000),(2259,77,0,1192,54.000000),(2260,82,0,1192,1.000000),(2261,77,0,1193,54.000000),(2262,82,0,1193,1.000000),(2263,77,0,1194,54.000000),(2264,77,0,1195,68.000000),(2265,82,0,1195,1.000000),(2266,77,0,1196,68.000000),(2267,82,0,1196,1.000000),(2268,77,0,1197,68.000000),(2269,82,0,1197,1.000000),(2270,77,0,1198,68.000000),(2271,82,0,1198,1.000000),(2272,77,0,1199,68.000000),(2273,82,0,1199,1.000000),(2274,77,0,1200,68.000000),(2275,82,0,1200,1.000000),(2276,77,0,1201,68.000000),(2277,82,0,1201,1.000000),(2278,77,0,1202,68.000000),(2279,82,0,1202,1.000000),(2280,77,0,1203,68.000000),(2281,82,0,1203,1.000000),(2282,77,0,1204,68.000000),(2283,82,0,1204,1.000000),(2284,77,0,1205,68.000000),(2285,82,0,1205,1.000000),(2286,77,0,1206,68.000000),(2287,82,0,1206,1.000000),(2288,77,0,1207,68.000000),(2289,82,0,1207,1.000000),(2290,77,0,1208,68.000000),(2291,82,0,1208,1.000000),(2292,77,0,1209,68.000000),(2293,82,0,1209,1.000000),(2294,77,0,1210,68.000000),(2295,77,0,1211,75.000000),(2296,82,0,1211,1.000000),(2297,77,0,1212,75.000000),(2298,82,0,1212,1.000000),(2299,77,0,1213,75.000000),(2300,82,0,1213,1.000000),(2301,77,0,1214,75.000000),(2302,82,0,1214,1.000000),(2303,77,0,1215,75.000000),(2304,82,0,1215,1.000000),(2305,77,0,1216,75.000000),(2306,82,0,1216,1.000000),(2307,77,0,1217,75.000000),(2308,82,0,1217,1.000000),(2309,77,0,1218,75.000000),(2310,82,0,1218,1.000000),(2311,77,0,1219,75.000000),(2312,82,0,1219,1.000000),(2313,77,0,1220,75.000000),(2314,77,0,1221,56.250000),(2315,82,0,1221,1.000000),(2316,77,0,1222,56.250000),(2317,82,0,1222,1.000000),(2318,77,0,1223,56.250000),(2319,82,0,1223,1.000000),(2320,77,0,1224,56.250000),(2321,82,0,1224,1.000000),(2322,77,0,1225,56.250000),(2323,82,0,1225,1.000000),(2324,77,0,1226,56.250000),(2325,82,0,1226,1.000000),(2326,77,0,1227,56.250000),(2327,82,0,1227,1.000000),(2328,77,0,1228,56.250000),(2329,82,0,1228,1.000000),(2330,77,0,1229,56.250000),(2331,82,0,1229,1.000000),(2332,77,0,1230,56.250000),(2333,82,0,1230,1.000000),(2334,77,0,1231,56.250000),(2335,82,0,1231,1.000000),(2336,77,0,1232,56.250000),(2337,82,0,1232,1.000000),(2338,77,0,1233,56.250000),(2339,82,0,1233,1.000000),(2340,77,0,1234,56.250000),(2341,82,0,1234,1.000000),(2342,77,0,1235,56.250000),(2343,82,0,1235,1.000000),(2344,77,0,1236,56.250000),(2345,77,0,1237,57.000000),(2346,82,0,1237,1.000000),(2347,77,0,1238,57.000000),(2348,82,0,1238,1.000000),(2349,77,0,1239,57.000000),(2350,82,0,1239,1.000000),(2351,77,0,1240,57.000000),(2352,82,0,1240,1.000000),(2353,77,0,1241,57.000000),(2354,82,0,1241,1.000000),(2355,77,0,1242,57.000000),(2356,82,0,1242,1.000000),(2357,77,0,1243,57.000000),(2358,82,0,1243,1.000000),(2359,77,0,1244,57.000000),(2360,82,0,1244,1.000000),(2361,77,0,1245,57.000000),(2362,82,0,1245,1.000000),(2363,77,0,1246,57.000000),(2364,82,0,1246,1.000000),(2365,77,0,1247,57.000000),(2366,82,0,1247,1.000000),(2367,77,0,1248,57.000000),(2368,82,0,1248,1.000000),(2369,77,0,1249,57.000000),(2370,82,0,1249,1.000000),(2371,77,0,1250,57.000000),(2372,82,0,1250,1.000000),(2373,77,0,1251,57.000000),(2374,82,0,1251,1.000000),(2375,77,0,1252,57.000000),(2376,77,0,1253,84.000000),(2377,82,0,1253,1.000000),(2378,77,0,1254,84.000000),(2379,82,0,1254,1.000000),(2380,77,0,1255,84.000000),(2381,82,0,1255,1.000000),(2382,77,0,1256,84.000000),(2383,82,0,1256,1.000000),(2384,77,0,1257,84.000000),(2385,82,0,1257,1.000000),(2386,77,0,1258,84.000000),(2387,82,0,1258,1.000000),(2388,77,0,1259,84.000000),(2389,82,0,1259,1.000000),(2390,77,0,1260,84.000000),(2391,82,0,1260,1.000000),(2392,77,0,1261,84.000000),(2393,82,0,1261,1.000000),(2394,77,0,1262,84.000000),(2395,82,0,1262,1.000000),(2396,77,0,1263,84.000000),(2397,82,0,1263,1.000000),(2398,77,0,1264,84.000000),(2399,82,0,1264,1.000000),(2400,77,0,1265,84.000000),(2401,82,0,1265,1.000000),(2402,77,0,1266,84.000000),(2403,82,0,1266,1.000000),(2404,77,0,1267,84.000000),(2405,82,0,1267,1.000000),(2406,77,0,1268,84.000000),(2407,77,0,1269,60.000000),(2408,82,0,1269,1.000000),(2409,77,0,1270,60.000000),(2410,82,0,1270,1.000000),(2411,77,0,1271,60.000000),(2412,82,0,1271,1.000000),(2413,77,0,1272,60.000000),(2414,82,0,1272,1.000000),(2415,77,0,1273,60.000000),(2416,82,0,1273,1.000000),(2417,77,0,1274,60.000000),(2418,82,0,1274,1.000000),(2419,77,0,1275,60.000000),(2420,82,0,1275,1.000000),(2421,77,0,1276,60.000000),(2422,82,0,1276,1.000000),(2423,77,0,1277,60.000000),(2424,82,0,1277,1.000000),(2425,77,0,1278,60.000000),(2426,82,0,1278,1.000000),(2427,77,0,1279,60.000000),(2428,82,0,1279,1.000000),(2429,77,0,1280,60.000000),(2430,82,0,1280,1.000000),(2431,77,0,1281,60.000000),(2432,82,0,1281,1.000000),(2433,77,0,1282,60.000000),(2434,82,0,1282,1.000000),(2435,77,0,1283,60.000000),(2436,82,0,1283,1.000000),(2437,77,0,1284,60.000000),(2438,77,0,1285,59.000000),(2439,82,0,1285,1.000000),(2440,77,0,1286,59.000000),(2441,82,0,1286,1.000000),(2442,77,0,1287,59.000000),(2443,82,0,1287,1.000000),(2444,77,0,1288,59.000000),(2445,82,0,1288,1.000000),(2446,77,0,1289,59.000000),(2447,82,0,1289,1.000000),(2448,77,0,1290,59.000000),(2449,82,0,1290,1.000000),(2450,77,0,1291,59.000000),(2451,82,0,1291,1.000000),(2452,77,0,1292,59.000000),(2453,82,0,1292,1.000000),(2454,77,0,1293,59.000000),(2455,82,0,1293,1.000000),(2456,77,0,1294,59.000000),(2457,82,0,1294,1.000000),(2458,77,0,1295,59.000000),(2459,82,0,1295,1.000000),(2460,77,0,1296,59.000000),(2461,82,0,1296,1.000000),(2462,77,0,1297,59.000000),(2463,82,0,1297,1.000000),(2464,77,0,1298,59.000000),(2465,82,0,1298,1.000000),(2466,77,0,1299,59.000000),(2467,82,0,1299,1.000000),(2468,77,0,1300,59.000000),(2469,77,0,1301,57.000000),(2470,82,0,1301,1.000000),(2471,77,0,1302,57.000000),(2472,82,0,1302,1.000000),(2473,77,0,1303,57.000000),(2474,82,0,1303,1.000000),(2475,77,0,1304,57.000000),(2476,82,0,1304,1.000000),(2477,77,0,1305,57.000000),(2478,82,0,1305,1.000000),(2479,77,0,1306,57.000000),(2480,82,0,1306,1.000000),(2481,77,0,1307,57.000000),(2482,82,0,1307,1.000000),(2483,77,0,1308,57.000000),(2484,82,0,1308,1.000000),(2485,77,0,1309,57.000000),(2486,82,0,1309,1.000000),(2487,77,0,1310,57.000000),(2488,82,0,1310,1.000000),(2489,77,0,1311,57.000000),(2490,82,0,1311,1.000000),(2491,77,0,1312,57.000000),(2492,82,0,1312,1.000000),(2493,77,0,1313,57.000000),(2494,82,0,1313,1.000000),(2495,77,0,1314,57.000000),(2496,82,0,1314,1.000000),(2497,77,0,1315,57.000000),(2498,82,0,1315,1.000000),(2499,77,0,1316,57.000000),(2500,77,0,1317,32.000000),(2501,82,0,1317,1.000000),(2502,77,0,1318,32.000000),(2503,82,0,1318,1.000000),(2504,77,0,1319,32.000000),(2505,82,0,1319,1.000000),(2506,77,0,1320,32.000000),(2507,82,0,1320,1.000000),(2508,77,0,1321,32.000000),(2509,82,0,1321,1.000000),(2510,77,0,1322,32.000000),(2511,82,0,1322,1.000000),(2512,77,0,1323,32.000000),(2513,82,0,1323,1.000000),(2514,77,0,1324,32.000000),(2515,82,0,1324,1.000000),(2516,77,0,1325,32.000000),(2517,82,0,1325,1.000000),(2518,77,0,1326,32.000000),(2519,82,0,1326,1.000000),(2520,77,0,1327,32.000000),(2521,82,0,1327,1.000000),(2522,77,0,1328,32.000000),(2523,82,0,1328,1.000000),(2524,77,0,1329,32.000000),(2525,82,0,1329,1.000000),(2526,77,0,1330,32.000000),(2527,82,0,1330,1.000000),(2528,77,0,1331,32.000000),(2529,82,0,1331,1.000000),(2530,77,0,1332,32.000000),(2531,77,0,1333,69.000000),(2532,82,0,1333,1.000000),(2533,77,0,1334,69.000000),(2534,82,0,1334,1.000000),(2535,77,0,1335,69.000000),(2536,82,0,1335,1.000000),(2537,77,0,1336,69.000000),(2538,82,0,1336,1.000000),(2539,77,0,1337,69.000000),(2540,82,0,1337,1.000000),(2541,77,0,1338,69.000000),(2542,82,0,1338,1.000000),(2543,77,0,1339,69.000000),(2544,82,0,1339,1.000000),(2545,77,0,1340,69.000000),(2546,82,0,1340,1.000000),(2547,77,0,1341,69.000000),(2548,82,0,1341,1.000000),(2549,77,0,1342,69.000000),(2550,82,0,1342,1.000000),(2551,77,0,1343,69.000000),(2552,82,0,1343,1.000000),(2553,77,0,1344,69.000000),(2554,82,0,1344,1.000000),(2555,77,0,1345,69.000000),(2556,82,0,1345,1.000000),(2557,77,0,1346,69.000000),(2558,82,0,1346,1.000000),(2559,77,0,1347,69.000000),(2560,82,0,1347,1.000000),(2561,77,0,1348,69.000000),(2562,77,0,1349,69.000000),(2563,82,0,1349,1.000000),(2564,77,0,1350,69.000000),(2565,82,0,1350,1.000000),(2566,77,0,1351,69.000000),(2567,82,0,1351,1.000000),(2568,77,0,1352,69.000000),(2569,82,0,1352,1.000000),(2570,77,0,1353,69.000000),(2571,82,0,1353,1.000000),(2572,77,0,1354,69.000000),(2573,82,0,1354,1.000000),(2574,77,0,1355,69.000000),(2575,82,0,1355,1.000000),(2576,77,0,1356,69.000000),(2577,82,0,1356,1.000000),(2578,77,0,1357,69.000000),(2579,82,0,1357,1.000000),(2580,77,0,1358,69.000000),(2581,82,0,1358,1.000000),(2582,77,0,1359,69.000000),(2583,82,0,1359,1.000000),(2584,77,0,1360,69.000000),(2585,82,0,1360,1.000000),(2586,77,0,1361,69.000000),(2587,82,0,1361,1.000000),(2588,77,0,1362,69.000000),(2589,82,0,1362,1.000000),(2590,77,0,1363,69.000000),(2591,82,0,1363,1.000000),(2592,77,0,1364,69.000000),(2593,77,0,1365,77.000000),(2594,82,0,1365,1.000000),(2595,77,0,1366,77.000000),(2596,82,0,1366,1.000000),(2597,77,0,1367,77.000000),(2598,82,0,1367,1.000000),(2599,77,0,1368,77.000000),(2600,82,0,1368,1.000000),(2601,77,0,1369,77.000000),(2602,82,0,1369,1.000000),(2603,77,0,1370,77.000000),(2604,82,0,1370,1.000000),(2605,77,0,1371,77.000000),(2606,82,0,1371,1.000000),(2607,77,0,1372,77.000000),(2608,82,0,1372,1.000000),(2609,77,0,1373,77.000000),(2610,82,0,1373,1.000000),(2611,77,0,1374,77.000000),(2612,82,0,1374,1.000000),(2613,77,0,1375,77.000000),(2614,82,0,1375,1.000000),(2615,77,0,1376,77.000000),(2616,82,0,1376,1.000000),(2617,77,0,1377,77.000000),(2618,82,0,1377,1.000000),(2619,77,0,1378,77.000000),(2620,82,0,1378,1.000000),(2621,77,0,1379,77.000000),(2622,82,0,1379,1.000000),(2623,77,0,1380,77.000000),(2624,77,0,1381,77.000000),(2625,82,0,1381,1.000000),(2626,77,0,1382,77.000000),(2627,82,0,1382,1.000000),(2628,77,0,1383,77.000000),(2629,82,0,1383,1.000000),(2630,77,0,1384,77.000000),(2631,82,0,1384,1.000000),(2632,77,0,1385,77.000000),(2633,82,0,1385,1.000000),(2634,77,0,1386,77.000000),(2635,82,0,1386,1.000000),(2636,77,0,1387,77.000000),(2637,82,0,1387,1.000000),(2638,77,0,1388,77.000000),(2639,82,0,1388,1.000000),(2640,77,0,1389,77.000000),(2641,82,0,1389,1.000000),(2642,77,0,1390,77.000000),(2643,82,0,1390,1.000000),(2644,77,0,1391,77.000000),(2645,82,0,1391,1.000000),(2646,77,0,1392,77.000000),(2647,82,0,1392,1.000000),(2648,77,0,1393,77.000000),(2649,82,0,1393,1.000000),(2650,77,0,1394,77.000000),(2651,82,0,1394,1.000000),(2652,77,0,1395,77.000000),(2653,82,0,1395,1.000000),(2654,77,0,1396,77.000000),(2655,77,0,1397,28.000000),(2656,82,0,1397,1.000000),(2657,77,0,1398,28.000000),(2658,82,0,1398,1.000000),(2659,77,0,1399,28.000000),(2660,82,0,1399,1.000000),(2661,77,0,1400,28.000000),(2662,82,0,1400,1.000000),(2663,77,0,1401,28.000000),(2664,82,0,1401,1.000000),(2665,77,0,1402,28.000000),(2666,82,0,1402,1.000000),(2667,77,0,1403,28.000000),(2668,82,0,1403,1.000000),(2669,77,0,1404,28.000000),(2670,82,0,1404,1.000000),(2671,77,0,1405,28.000000),(2672,82,0,1405,1.000000),(2673,77,0,1406,28.000000),(2674,82,0,1406,1.000000),(2675,77,0,1407,28.000000),(2676,82,0,1407,1.000000),(2677,77,0,1408,28.000000),(2678,82,0,1408,1.000000),(2679,77,0,1409,28.000000),(2680,82,0,1409,1.000000),(2681,77,0,1410,28.000000),(2682,82,0,1410,1.000000),(2683,77,0,1411,28.000000),(2684,82,0,1411,1.000000),(2685,77,0,1412,28.000000),(2686,77,0,1413,29.000000),(2687,82,0,1413,1.000000),(2688,77,0,1414,29.000000),(2689,82,0,1414,1.000000),(2690,77,0,1415,29.000000),(2691,82,0,1415,1.000000),(2692,77,0,1416,29.000000),(2693,82,0,1416,1.000000),(2694,77,0,1417,29.000000),(2695,82,0,1417,1.000000),(2696,77,0,1418,29.000000),(2697,82,0,1418,1.000000),(2698,77,0,1419,29.000000),(2699,82,0,1419,1.000000),(2700,77,0,1420,29.000000),(2701,82,0,1420,1.000000),(2702,77,0,1421,29.000000),(2703,82,0,1421,1.000000),(2704,77,0,1422,29.000000),(2705,82,0,1422,1.000000),(2706,77,0,1423,29.000000),(2707,82,0,1423,1.000000),(2708,77,0,1424,29.000000),(2709,82,0,1424,1.000000),(2710,77,0,1425,29.000000),(2711,82,0,1425,1.000000),(2712,77,0,1426,29.000000),(2713,82,0,1426,1.000000),(2714,77,0,1427,29.000000),(2715,82,0,1427,1.000000),(2716,77,0,1428,29.000000),(2717,77,0,1429,29.000000),(2718,82,0,1429,1.000000),(2719,77,0,1430,29.000000),(2720,82,0,1430,1.000000),(2721,77,0,1431,29.000000),(2722,82,0,1431,1.000000),(2723,77,0,1432,29.000000),(2724,82,0,1432,1.000000),(2725,77,0,1433,29.000000),(2726,82,0,1433,1.000000),(2727,77,0,1434,29.000000),(2728,82,0,1434,1.000000),(2729,77,0,1435,29.000000),(2730,82,0,1435,1.000000),(2731,77,0,1436,29.000000),(2732,82,0,1436,1.000000),(2733,77,0,1437,29.000000),(2734,82,0,1437,1.000000),(2735,77,0,1438,29.000000),(2736,82,0,1438,1.000000),(2737,77,0,1439,29.000000),(2738,82,0,1439,1.000000),(2739,77,0,1440,29.000000),(2740,82,0,1440,1.000000),(2741,77,0,1441,29.000000),(2742,82,0,1441,1.000000),(2743,77,0,1442,29.000000),(2744,82,0,1442,1.000000),(2745,77,0,1443,29.000000),(2746,82,0,1443,1.000000),(2747,77,0,1444,29.000000),(2748,77,0,1445,29.000000),(2749,82,0,1445,1.000000),(2750,77,0,1446,29.000000),(2751,82,0,1446,1.000000),(2752,77,0,1447,29.000000),(2753,82,0,1447,1.000000),(2754,77,0,1448,29.000000),(2755,82,0,1448,1.000000),(2756,77,0,1449,29.000000),(2757,82,0,1449,1.000000),(2758,77,0,1450,29.000000),(2759,82,0,1450,1.000000),(2760,77,0,1451,29.000000),(2761,82,0,1451,1.000000),(2762,77,0,1452,29.000000),(2763,82,0,1452,1.000000),(2764,77,0,1453,29.000000),(2765,82,0,1453,1.000000),(2766,77,0,1454,29.000000),(2767,82,0,1454,1.000000),(2768,77,0,1455,29.000000),(2769,82,0,1455,1.000000),(2770,77,0,1456,29.000000),(2771,82,0,1456,1.000000),(2772,77,0,1457,29.000000),(2773,82,0,1457,1.000000),(2774,77,0,1458,29.000000),(2775,82,0,1458,1.000000),(2776,77,0,1459,29.000000),(2777,82,0,1459,1.000000),(2778,77,0,1460,29.000000),(2779,77,0,1461,42.000000),(2780,82,0,1461,1.000000),(2781,77,0,1462,42.000000),(2782,82,0,1462,1.000000),(2783,77,0,1463,42.000000),(2784,82,0,1463,1.000000),(2785,77,0,1464,42.000000),(2786,82,0,1464,1.000000),(2787,77,0,1465,42.000000),(2788,82,0,1465,1.000000),(2789,77,0,1466,42.000000),(2790,82,0,1466,1.000000),(2791,77,0,1467,42.000000),(2792,82,0,1467,1.000000),(2793,77,0,1468,42.000000),(2794,82,0,1468,1.000000),(2795,77,0,1469,42.000000),(2796,82,0,1469,1.000000),(2797,77,0,1470,42.000000),(2798,82,0,1470,1.000000),(2799,77,0,1471,42.000000),(2800,82,0,1471,1.000000),(2801,77,0,1472,42.000000),(2802,82,0,1472,1.000000),(2803,77,0,1473,42.000000),(2804,82,0,1473,1.000000),(2805,77,0,1474,42.000000),(2806,82,0,1474,1.000000),(2807,77,0,1475,42.000000),(2808,82,0,1475,1.000000),(2809,77,0,1476,42.000000),(2810,77,0,1477,32.000000),(2811,82,0,1477,1.000000),(2812,77,0,1478,32.000000),(2813,82,0,1478,1.000000),(2814,77,0,1479,32.000000),(2815,82,0,1479,1.000000),(2816,77,0,1480,32.000000),(2817,82,0,1480,1.000000),(2818,77,0,1481,32.000000),(2819,82,0,1481,1.000000),(2820,77,0,1482,32.000000),(2821,82,0,1482,1.000000),(2822,77,0,1483,32.000000),(2823,82,0,1483,1.000000),(2824,77,0,1484,32.000000),(2825,82,0,1484,1.000000),(2826,77,0,1485,32.000000),(2827,82,0,1485,1.000000),(2828,77,0,1486,32.000000),(2829,82,0,1486,1.000000),(2830,77,0,1487,32.000000),(2831,82,0,1487,1.000000),(2832,77,0,1488,32.000000),(2833,82,0,1488,1.000000),(2834,77,0,1489,32.000000),(2835,82,0,1489,1.000000),(2836,77,0,1490,32.000000),(2837,82,0,1490,1.000000),(2838,77,0,1491,32.000000),(2839,82,0,1491,1.000000),(2840,77,0,1492,32.000000),(2841,77,0,1493,28.000000),(2842,82,0,1493,1.000000),(2843,77,0,1494,28.000000),(2844,82,0,1494,1.000000),(2845,77,0,1495,28.000000),(2846,82,0,1495,1.000000),(2847,77,0,1496,28.000000),(2848,82,0,1496,1.000000),(2849,77,0,1497,28.000000),(2850,82,0,1497,1.000000),(2851,77,0,1498,28.000000),(2852,82,0,1498,1.000000),(2853,77,0,1499,28.000000),(2854,82,0,1499,1.000000),(2855,77,0,1500,28.000000),(2856,82,0,1500,1.000000),(2857,77,0,1501,28.000000),(2858,82,0,1501,1.000000),(2859,77,0,1502,28.000000),(2860,82,0,1502,1.000000),(2861,77,0,1503,28.000000),(2862,82,0,1503,1.000000),(2863,77,0,1504,28.000000),(2864,82,0,1504,1.000000),(2865,77,0,1505,28.000000),(2866,82,0,1505,1.000000),(2867,77,0,1506,28.000000),(2868,82,0,1506,1.000000),(2869,77,0,1507,28.000000),(2870,82,0,1507,1.000000),(2871,77,0,1508,28.000000),(2872,77,0,1509,32.000000),(2873,82,0,1509,1.000000),(2874,77,0,1510,32.000000),(2875,82,0,1510,1.000000),(2876,77,0,1511,32.000000),(2877,82,0,1511,1.000000),(2878,77,0,1512,32.000000),(2879,82,0,1512,1.000000),(2880,77,0,1513,32.000000),(2881,82,0,1513,1.000000),(2882,77,0,1514,32.000000),(2883,82,0,1514,1.000000),(2884,77,0,1515,32.000000),(2885,82,0,1515,1.000000),(2886,77,0,1516,32.000000),(2887,82,0,1516,1.000000),(2888,77,0,1517,32.000000),(2889,82,0,1517,1.000000),(2890,77,0,1518,32.000000),(2891,82,0,1518,1.000000),(2892,77,0,1519,32.000000),(2893,82,0,1519,1.000000),(2894,77,0,1520,32.000000),(2895,82,0,1520,1.000000),(2896,77,0,1521,32.000000),(2897,82,0,1521,1.000000),(2898,77,0,1522,32.000000),(2899,82,0,1522,1.000000),(2900,77,0,1523,32.000000),(2901,82,0,1523,1.000000),(2902,77,0,1524,32.000000),(2903,77,0,1525,32.000000),(2904,82,0,1525,1.000000),(2905,77,0,1526,32.000000),(2906,82,0,1526,1.000000),(2907,77,0,1527,32.000000),(2908,82,0,1527,1.000000),(2909,77,0,1528,32.000000),(2910,82,0,1528,1.000000),(2911,77,0,1529,32.000000),(2912,82,0,1529,1.000000),(2913,77,0,1530,32.000000),(2914,82,0,1530,1.000000),(2915,77,0,1531,32.000000),(2916,82,0,1531,1.000000),(2917,77,0,1532,32.000000),(2918,82,0,1532,1.000000),(2919,77,0,1533,32.000000),(2920,82,0,1533,1.000000),(2921,77,0,1534,32.000000),(2922,82,0,1534,1.000000),(2923,77,0,1535,32.000000),(2924,82,0,1535,1.000000),(2925,77,0,1536,32.000000),(2926,82,0,1536,1.000000),(2927,77,0,1537,32.000000),(2928,82,0,1537,1.000000),(2929,77,0,1538,32.000000),(2930,82,0,1538,1.000000),(2931,77,0,1539,32.000000),(2932,82,0,1539,1.000000),(2933,77,0,1540,32.000000),(2934,77,0,1541,22.000000),(2935,82,0,1541,1.000000),(2936,77,0,1542,22.000000),(2937,82,0,1542,1.000000),(2938,77,0,1543,22.000000),(2939,82,0,1543,1.000000),(2940,77,0,1544,22.000000),(2941,82,0,1544,1.000000),(2942,77,0,1545,22.000000),(2943,82,0,1545,1.000000),(2944,77,0,1546,22.000000),(2945,82,0,1546,1.000000),(2946,77,0,1547,22.000000),(2947,82,0,1547,1.000000),(2948,77,0,1548,22.000000),(2949,82,0,1548,1.000000),(2950,77,0,1549,22.000000),(2951,82,0,1549,1.000000),(2952,77,0,1550,22.000000),(2953,82,0,1550,1.000000),(2954,77,0,1551,22.000000),(2955,82,0,1551,1.000000),(2956,77,0,1552,22.000000),(2957,82,0,1552,1.000000),(2958,77,0,1553,22.000000),(2959,82,0,1553,1.000000),(2960,77,0,1554,22.000000),(2961,82,0,1554,1.000000),(2962,77,0,1555,22.000000),(2963,82,0,1555,1.000000),(2964,77,0,1556,22.000000),(2965,77,0,1557,24.000000),(2966,82,0,1557,1.000000),(2967,77,0,1558,24.000000),(2968,82,0,1558,1.000000),(2969,77,0,1559,24.000000),(2970,82,0,1559,1.000000),(2971,77,0,1560,24.000000),(2972,82,0,1560,1.000000),(2973,77,0,1561,24.000000),(2974,82,0,1561,1.000000),(2975,77,0,1562,24.000000),(2976,82,0,1562,1.000000),(2977,77,0,1563,24.000000),(2978,82,0,1563,1.000000),(2979,77,0,1564,24.000000),(2980,82,0,1564,1.000000),(2981,77,0,1565,24.000000),(2982,82,0,1565,1.000000),(2983,77,0,1566,24.000000),(2984,82,0,1566,1.000000),(2985,77,0,1567,24.000000),(2986,82,0,1567,1.000000),(2987,77,0,1568,24.000000),(2988,82,0,1568,1.000000),(2989,77,0,1569,24.000000),(2990,82,0,1569,1.000000),(2991,77,0,1570,24.000000),(2992,82,0,1570,1.000000),(2993,77,0,1571,24.000000),(2994,82,0,1571,1.000000),(2995,77,0,1572,24.000000),(2996,77,0,1573,24.000000),(2997,82,0,1573,1.000000),(2998,77,0,1574,24.000000),(2999,82,0,1574,1.000000),(3000,77,0,1575,24.000000),(3001,82,0,1575,1.000000),(3002,77,0,1576,24.000000),(3003,82,0,1576,1.000000),(3004,77,0,1577,24.000000),(3005,82,0,1577,1.000000),(3006,77,0,1578,24.000000),(3007,82,0,1578,1.000000),(3008,77,0,1579,24.000000),(3009,82,0,1579,1.000000),(3010,77,0,1580,24.000000),(3011,82,0,1580,1.000000),(3012,77,0,1581,24.000000),(3013,82,0,1581,1.000000),(3014,77,0,1582,24.000000),(3015,82,0,1582,1.000000),(3016,77,0,1583,24.000000),(3017,82,0,1583,1.000000),(3018,77,0,1584,24.000000),(3019,82,0,1584,1.000000),(3020,77,0,1585,24.000000),(3021,82,0,1585,1.000000),(3022,77,0,1586,24.000000),(3023,82,0,1586,1.000000),(3024,77,0,1587,24.000000),(3025,82,0,1587,1.000000),(3026,77,0,1588,24.000000),(3027,77,0,1589,39.000000),(3028,82,0,1589,1.000000),(3029,77,0,1590,39.000000),(3030,82,0,1590,1.000000),(3031,77,0,1591,39.000000),(3032,82,0,1591,1.000000),(3033,77,0,1592,39.000000),(3034,82,0,1592,1.000000),(3035,77,0,1593,39.000000),(3036,82,0,1593,1.000000),(3037,77,0,1594,39.000000),(3038,82,0,1594,1.000000),(3039,77,0,1595,39.000000),(3040,82,0,1595,1.000000),(3041,77,0,1596,39.000000),(3042,82,0,1596,1.000000),(3043,77,0,1597,39.000000),(3044,82,0,1597,1.000000),(3045,77,0,1598,39.000000),(3046,82,0,1598,1.000000),(3047,77,0,1599,39.000000),(3048,82,0,1599,1.000000),(3049,77,0,1600,39.000000),(3050,82,0,1600,1.000000),(3051,77,0,1601,39.000000),(3052,82,0,1601,1.000000),(3053,77,0,1602,39.000000),(3054,82,0,1602,1.000000),(3055,77,0,1603,39.000000),(3056,82,0,1603,1.000000),(3057,77,0,1604,39.000000),(3058,77,0,1605,39.000000),(3059,82,0,1605,1.000000),(3060,77,0,1606,39.000000),(3061,82,0,1606,1.000000),(3062,77,0,1607,39.000000),(3063,82,0,1607,1.000000),(3064,77,0,1608,39.000000),(3065,82,0,1608,1.000000),(3066,77,0,1609,39.000000),(3067,82,0,1609,1.000000),(3068,77,0,1610,39.000000),(3069,82,0,1610,1.000000),(3070,77,0,1611,39.000000),(3071,82,0,1611,1.000000),(3072,77,0,1612,39.000000),(3073,82,0,1612,1.000000),(3074,77,0,1613,39.000000),(3075,82,0,1613,1.000000),(3076,77,0,1614,39.000000),(3077,82,0,1614,1.000000),(3078,77,0,1615,39.000000),(3079,82,0,1615,1.000000),(3080,77,0,1616,39.000000),(3081,82,0,1616,1.000000),(3082,77,0,1617,39.000000),(3083,82,0,1617,1.000000),(3084,77,0,1618,39.000000),(3085,82,0,1618,1.000000),(3086,77,0,1619,39.000000),(3087,82,0,1619,1.000000),(3088,77,0,1620,39.000000),(3089,77,0,1621,39.000000),(3090,82,0,1621,1.000000),(3091,77,0,1622,39.000000),(3092,82,0,1622,1.000000),(3093,77,0,1623,39.000000),(3094,82,0,1623,1.000000),(3095,77,0,1624,39.000000),(3096,82,0,1624,1.000000),(3097,77,0,1625,39.000000),(3098,82,0,1625,1.000000),(3099,77,0,1626,39.000000),(3100,82,0,1626,1.000000),(3101,77,0,1627,39.000000),(3102,82,0,1627,1.000000),(3103,77,0,1628,39.000000),(3104,82,0,1628,1.000000),(3105,77,0,1629,39.000000),(3106,82,0,1629,1.000000),(3107,77,0,1630,39.000000),(3108,82,0,1630,1.000000),(3109,77,0,1631,39.000000),(3110,82,0,1631,1.000000),(3111,77,0,1632,39.000000),(3112,82,0,1632,1.000000),(3113,77,0,1633,39.000000),(3114,82,0,1633,1.000000),(3115,77,0,1634,39.000000),(3116,82,0,1634,1.000000),(3117,77,0,1635,39.000000),(3118,82,0,1635,1.000000),(3119,77,0,1636,39.000000),(3120,77,0,1637,24.000000),(3121,82,0,1637,1.000000),(3122,77,0,1638,24.000000),(3123,82,0,1638,1.000000),(3124,77,0,1639,24.000000),(3125,82,0,1639,1.000000),(3126,77,0,1640,24.000000),(3127,82,0,1640,1.000000),(3128,77,0,1641,24.000000),(3129,82,0,1641,1.000000),(3130,77,0,1642,24.000000),(3131,82,0,1642,1.000000),(3132,77,0,1643,24.000000),(3133,82,0,1643,1.000000),(3134,77,0,1644,24.000000),(3135,82,0,1644,1.000000),(3136,77,0,1645,24.000000),(3137,82,0,1645,1.000000),(3138,77,0,1646,24.000000),(3139,82,0,1646,1.000000),(3140,77,0,1647,24.000000),(3141,82,0,1647,1.000000),(3142,77,0,1648,24.000000),(3143,82,0,1648,1.000000),(3144,77,0,1649,24.000000),(3145,82,0,1649,1.000000),(3146,77,0,1650,24.000000),(3147,82,0,1650,1.000000),(3148,77,0,1651,24.000000),(3149,82,0,1651,1.000000),(3150,77,0,1652,24.000000),(3151,77,0,1653,39.000000),(3152,82,0,1653,1.000000),(3153,77,0,1654,39.000000),(3154,82,0,1654,1.000000),(3155,77,0,1655,39.000000),(3156,82,0,1655,1.000000),(3157,77,0,1656,39.000000),(3158,82,0,1656,1.000000),(3159,77,0,1657,39.000000),(3160,82,0,1657,1.000000),(3161,77,0,1658,39.000000),(3162,82,0,1658,1.000000),(3163,77,0,1659,39.000000),(3164,82,0,1659,1.000000),(3165,77,0,1660,39.000000),(3166,82,0,1660,1.000000),(3167,77,0,1661,39.000000),(3168,82,0,1661,1.000000),(3169,77,0,1662,39.000000),(3170,82,0,1662,1.000000),(3171,77,0,1663,39.000000),(3172,82,0,1663,1.000000),(3173,77,0,1664,39.000000),(3174,82,0,1664,1.000000),(3175,77,0,1665,39.000000),(3176,82,0,1665,1.000000),(3177,77,0,1666,39.000000),(3178,82,0,1666,1.000000),(3179,77,0,1667,39.000000),(3180,82,0,1667,1.000000),(3181,77,0,1668,39.000000),(3182,77,0,1669,29.000000),(3183,82,0,1669,1.000000),(3184,77,0,1670,29.000000),(3185,82,0,1670,1.000000),(3186,77,0,1671,29.000000),(3187,82,0,1671,1.000000),(3188,77,0,1672,29.000000),(3189,82,0,1672,1.000000),(3190,77,0,1673,29.000000),(3191,82,0,1673,1.000000),(3192,77,0,1674,29.000000),(3193,82,0,1674,1.000000),(3194,77,0,1675,29.000000),(3195,82,0,1675,1.000000),(3196,77,0,1676,29.000000),(3197,82,0,1676,1.000000),(3198,77,0,1677,29.000000),(3199,82,0,1677,1.000000),(3200,77,0,1678,29.000000),(3201,82,0,1678,1.000000),(3202,77,0,1679,29.000000),(3203,82,0,1679,1.000000),(3204,77,0,1680,29.000000),(3205,82,0,1680,1.000000),(3206,77,0,1681,29.000000),(3207,82,0,1681,1.000000),(3208,77,0,1682,29.000000),(3209,82,0,1682,1.000000),(3210,77,0,1683,29.000000),(3211,82,0,1683,1.000000),(3212,77,0,1684,29.000000),(3213,77,0,1685,29.000000),(3214,82,0,1685,1.000000),(3215,77,0,1686,29.000000),(3216,82,0,1686,1.000000),(3217,77,0,1687,29.000000),(3218,82,0,1687,1.000000),(3219,77,0,1688,29.000000),(3220,82,0,1688,1.000000),(3221,77,0,1689,29.000000),(3222,82,0,1689,1.000000),(3223,77,0,1690,29.000000),(3224,82,0,1690,1.000000),(3225,77,0,1691,29.000000),(3226,82,0,1691,1.000000),(3227,77,0,1692,29.000000),(3228,82,0,1692,1.000000),(3229,77,0,1693,29.000000),(3230,82,0,1693,1.000000),(3231,77,0,1694,29.000000),(3232,82,0,1694,1.000000),(3233,77,0,1695,29.000000),(3234,82,0,1695,1.000000),(3235,77,0,1696,29.000000),(3236,82,0,1696,1.000000),(3237,77,0,1697,29.000000),(3238,82,0,1697,1.000000),(3239,77,0,1698,29.000000),(3240,82,0,1698,1.000000),(3241,77,0,1699,29.000000),(3242,82,0,1699,1.000000),(3243,77,0,1700,29.000000),(3244,77,0,1701,39.000000),(3245,82,0,1701,1.000000),(3246,77,0,1702,39.000000),(3247,82,0,1702,1.000000),(3248,77,0,1703,39.000000),(3249,82,0,1703,1.000000),(3250,77,0,1704,39.000000),(3251,82,0,1704,1.000000),(3252,77,0,1705,39.000000),(3253,82,0,1705,1.000000),(3254,77,0,1706,39.000000),(3255,82,0,1706,1.000000),(3256,77,0,1707,39.000000),(3257,82,0,1707,1.000000),(3258,77,0,1708,39.000000),(3259,82,0,1708,1.000000),(3260,77,0,1709,39.000000),(3261,82,0,1709,1.000000),(3262,77,0,1710,39.000000),(3263,82,0,1710,1.000000),(3264,77,0,1711,39.000000),(3265,82,0,1711,1.000000),(3266,77,0,1712,39.000000),(3267,82,0,1712,1.000000),(3268,77,0,1713,39.000000),(3269,82,0,1713,1.000000),(3270,77,0,1714,39.000000),(3271,82,0,1714,1.000000),(3272,77,0,1715,39.000000),(3273,82,0,1715,1.000000),(3274,77,0,1716,39.000000),(3275,77,0,1717,39.000000),(3276,82,0,1717,1.000000),(3277,77,0,1718,39.000000),(3278,82,0,1718,1.000000),(3279,77,0,1719,39.000000),(3280,82,0,1719,1.000000),(3281,77,0,1720,39.000000),(3282,82,0,1720,1.000000),(3283,77,0,1721,39.000000),(3284,82,0,1721,1.000000),(3285,77,0,1722,39.000000),(3286,82,0,1722,1.000000),(3287,77,0,1723,39.000000),(3288,82,0,1723,1.000000),(3289,77,0,1724,39.000000),(3290,82,0,1724,1.000000),(3291,77,0,1725,39.000000),(3292,82,0,1725,1.000000),(3293,77,0,1726,39.000000),(3294,82,0,1726,1.000000),(3295,77,0,1727,39.000000),(3296,82,0,1727,1.000000),(3297,77,0,1728,39.000000),(3298,82,0,1728,1.000000),(3299,77,0,1729,39.000000),(3300,82,0,1729,1.000000),(3301,77,0,1730,39.000000),(3302,82,0,1730,1.000000),(3303,77,0,1731,39.000000),(3304,82,0,1731,1.000000),(3305,77,0,1732,39.000000),(3306,77,0,1733,39.000000),(3307,82,0,1733,1.000000),(3308,77,0,1734,39.000000),(3309,82,0,1734,1.000000),(3310,77,0,1735,39.000000),(3311,82,0,1735,1.000000),(3312,77,0,1736,39.000000),(3313,82,0,1736,1.000000),(3314,77,0,1737,39.000000),(3315,82,0,1737,1.000000),(3316,77,0,1738,39.000000),(3317,82,0,1738,1.000000),(3318,77,0,1739,39.000000),(3319,82,0,1739,1.000000),(3320,77,0,1740,39.000000),(3321,82,0,1740,1.000000),(3322,77,0,1741,39.000000),(3323,82,0,1741,1.000000),(3324,77,0,1742,39.000000),(3325,82,0,1742,1.000000),(3326,77,0,1743,39.000000),(3327,82,0,1743,1.000000),(3328,77,0,1744,39.000000),(3329,82,0,1744,1.000000),(3330,77,0,1745,39.000000),(3331,82,0,1745,1.000000),(3332,77,0,1746,39.000000),(3333,82,0,1746,1.000000),(3334,77,0,1747,39.000000),(3335,82,0,1747,1.000000),(3336,77,0,1748,39.000000),(3337,77,0,1749,39.000000),(3338,82,0,1749,1.000000),(3339,77,0,1750,39.000000),(3340,82,0,1750,1.000000),(3341,77,0,1751,39.000000),(3342,82,0,1751,1.000000),(3343,77,0,1752,39.000000),(3344,82,0,1752,1.000000),(3345,77,0,1753,39.000000),(3346,82,0,1753,1.000000),(3347,77,0,1754,39.000000),(3348,82,0,1754,1.000000),(3349,77,0,1755,39.000000),(3350,82,0,1755,1.000000),(3351,77,0,1756,39.000000),(3352,82,0,1756,1.000000),(3353,77,0,1757,39.000000),(3354,82,0,1757,1.000000),(3355,77,0,1758,39.000000),(3356,82,0,1758,1.000000),(3357,77,0,1759,39.000000),(3358,82,0,1759,1.000000),(3359,77,0,1760,39.000000),(3360,82,0,1760,1.000000),(3361,77,0,1761,39.000000),(3362,82,0,1761,1.000000),(3363,77,0,1762,39.000000),(3364,82,0,1762,1.000000),(3365,77,0,1763,39.000000),(3366,82,0,1763,1.000000),(3367,77,0,1764,39.000000),(3368,77,0,1765,29.000000),(3369,82,0,1765,1.000000),(3370,77,0,1766,29.000000),(3371,82,0,1766,1.000000),(3372,77,0,1767,29.000000),(3373,82,0,1767,1.000000),(3374,77,0,1768,29.000000),(3375,82,0,1768,1.000000),(3376,77,0,1769,29.000000),(3377,82,0,1769,1.000000),(3378,77,0,1770,29.000000),(3379,82,0,1770,1.000000),(3380,77,0,1771,29.000000),(3381,82,0,1771,1.000000),(3382,77,0,1772,29.000000),(3383,82,0,1772,1.000000),(3384,77,0,1773,29.000000),(3385,82,0,1773,1.000000),(3386,77,0,1774,29.000000),(3387,82,0,1774,1.000000),(3388,77,0,1775,29.000000),(3389,82,0,1775,1.000000),(3390,77,0,1776,29.000000),(3391,82,0,1776,1.000000),(3392,77,0,1777,29.000000),(3393,82,0,1777,1.000000),(3394,77,0,1778,29.000000),(3395,82,0,1778,1.000000),(3396,77,0,1779,29.000000),(3397,82,0,1779,1.000000),(3398,77,0,1780,29.000000),(3399,77,0,1781,34.000000),(3400,82,0,1781,1.000000),(3401,77,0,1782,34.000000),(3402,82,0,1782,1.000000),(3403,77,0,1783,34.000000),(3404,82,0,1783,1.000000),(3405,77,0,1784,34.000000),(3406,82,0,1784,1.000000),(3407,77,0,1785,34.000000),(3408,82,0,1785,1.000000),(3409,77,0,1786,34.000000),(3410,82,0,1786,1.000000),(3411,77,0,1787,34.000000),(3412,82,0,1787,1.000000),(3413,77,0,1788,34.000000),(3414,82,0,1788,1.000000),(3415,77,0,1789,34.000000),(3416,82,0,1789,1.000000),(3417,77,0,1790,34.000000),(3418,82,0,1790,1.000000),(3419,77,0,1791,34.000000),(3420,82,0,1791,1.000000),(3421,77,0,1792,34.000000),(3422,82,0,1792,1.000000),(3423,77,0,1793,34.000000),(3424,82,0,1793,1.000000),(3425,77,0,1794,34.000000),(3426,82,0,1794,1.000000),(3427,77,0,1795,34.000000),(3428,82,0,1795,1.000000),(3429,77,0,1796,34.000000),(3430,77,0,1797,34.000000),(3431,82,0,1797,1.000000),(3432,77,0,1798,34.000000),(3433,82,0,1798,1.000000),(3434,77,0,1799,34.000000),(3435,82,0,1799,1.000000),(3436,77,0,1800,34.000000),(3437,82,0,1800,1.000000),(3438,77,0,1801,34.000000),(3439,82,0,1801,1.000000),(3440,77,0,1802,34.000000),(3441,82,0,1802,1.000000),(3442,77,0,1803,34.000000),(3443,82,0,1803,1.000000),(3444,77,0,1804,34.000000),(3445,82,0,1804,1.000000),(3446,77,0,1805,34.000000),(3447,82,0,1805,1.000000),(3448,77,0,1806,34.000000),(3449,82,0,1806,1.000000),(3450,77,0,1807,34.000000),(3451,82,0,1807,1.000000),(3452,77,0,1808,34.000000),(3453,82,0,1808,1.000000),(3454,77,0,1809,34.000000),(3455,82,0,1809,1.000000),(3456,77,0,1810,34.000000),(3457,82,0,1810,1.000000),(3458,77,0,1811,34.000000),(3459,82,0,1811,1.000000),(3460,77,0,1812,34.000000),(3461,77,0,1813,39.000000),(3462,82,0,1813,1.000000),(3463,77,0,1814,39.000000),(3464,82,0,1814,1.000000),(3465,77,0,1815,39.000000),(3466,82,0,1815,1.000000),(3467,77,0,1816,39.000000),(3468,82,0,1816,1.000000),(3469,77,0,1817,39.000000),(3470,82,0,1817,1.000000),(3471,77,0,1818,39.000000),(3472,82,0,1818,1.000000),(3473,77,0,1819,39.000000),(3474,77,0,1820,42.000000),(3475,82,0,1820,1.000000),(3476,77,0,1821,42.000000),(3477,82,0,1821,1.000000),(3478,77,0,1822,42.000000),(3479,82,0,1822,1.000000),(3480,77,0,1823,42.000000),(3481,82,0,1823,1.000000),(3482,77,0,1824,42.000000),(3483,82,0,1824,1.000000),(3484,77,0,1825,42.000000),(3485,82,0,1825,1.000000),(3486,77,0,1826,42.000000),(3487,77,0,1827,48.000000),(3488,82,0,1827,1.000000),(3489,77,0,1828,48.000000),(3490,82,0,1828,1.000000),(3491,77,0,1829,48.000000),(3492,82,0,1829,1.000000),(3493,77,0,1830,48.000000),(3494,82,0,1830,1.000000),(3495,77,0,1831,48.000000),(3496,82,0,1831,1.000000),(3497,77,0,1832,48.000000),(3498,82,0,1832,1.000000),(3499,77,0,1833,48.000000),(3500,77,0,1834,75.000000),(3501,82,0,1834,1.000000),(3502,77,0,1835,75.000000),(3503,82,0,1835,1.000000),(3504,77,0,1836,75.000000),(3505,82,0,1836,1.000000),(3506,77,0,1837,75.000000),(3507,82,0,1837,1.000000),(3508,77,0,1838,75.000000),(3509,82,0,1838,1.000000),(3510,77,0,1839,75.000000),(3511,82,0,1839,1.000000),(3512,77,0,1840,75.000000),(3513,77,0,1841,75.000000),(3514,82,0,1841,1.000000),(3515,77,0,1842,75.000000),(3516,82,0,1842,1.000000),(3517,77,0,1843,75.000000),(3518,82,0,1843,1.000000),(3519,77,0,1844,75.000000),(3520,82,0,1844,1.000000),(3521,77,0,1845,75.000000),(3522,82,0,1845,1.000000),(3523,77,0,1846,75.000000),(3524,82,0,1846,1.000000),(3525,77,0,1847,75.000000),(3526,77,0,1848,59.000000),(3527,82,0,1848,1.000000),(3528,77,0,1849,59.000000),(3529,82,0,1849,1.000000),(3530,77,0,1850,59.000000),(3531,82,0,1850,1.000000),(3532,77,0,1851,59.000000),(3533,82,0,1851,1.000000),(3534,77,0,1852,59.000000),(3535,82,0,1852,1.000000),(3536,77,0,1853,59.000000),(3537,82,0,1853,1.000000),(3538,77,0,1854,59.000000),(3539,77,0,1855,48.000000),(3540,82,0,1855,1.000000),(3541,77,0,1856,48.000000),(3542,82,0,1856,1.000000),(3543,77,0,1857,48.000000),(3544,82,0,1857,1.000000),(3545,77,0,1858,48.000000),(3546,82,0,1858,1.000000),(3547,77,0,1859,48.000000),(3548,82,0,1859,1.000000),(3549,77,0,1860,48.000000),(3550,82,0,1860,1.000000),(3551,77,0,1861,48.000000),(3552,77,0,1862,48.000000),(3553,82,0,1862,1.000000),(3554,77,0,1863,48.000000),(3555,82,0,1863,1.000000),(3556,77,0,1864,48.000000),(3557,82,0,1864,1.000000),(3558,77,0,1865,48.000000),(3559,82,0,1865,1.000000),(3560,77,0,1866,48.000000),(3561,82,0,1866,1.000000),(3562,77,0,1867,48.000000),(3563,82,0,1867,1.000000),(3564,77,0,1868,48.000000),(3565,77,0,1869,51.000000),(3566,82,0,1869,1.000000),(3567,77,0,1870,51.000000),(3568,82,0,1870,1.000000),(3569,77,0,1871,51.000000),(3570,82,0,1871,1.000000),(3571,77,0,1872,51.000000),(3572,82,0,1872,1.000000),(3573,77,0,1873,51.000000),(3574,82,0,1873,1.000000),(3575,77,0,1874,51.000000),(3576,82,0,1874,1.000000),(3577,77,0,1875,51.000000),(3578,77,0,1876,51.000000),(3579,82,0,1876,1.000000),(3580,77,0,1877,51.000000),(3581,82,0,1877,1.000000),(3582,77,0,1878,51.000000),(3583,82,0,1878,1.000000),(3584,77,0,1879,51.000000),(3585,82,0,1879,1.000000),(3586,77,0,1880,51.000000),(3587,82,0,1880,1.000000),(3588,77,0,1881,51.000000),(3589,82,0,1881,1.000000),(3590,77,0,1882,51.000000),(3591,77,0,1883,42.000000),(3592,82,0,1883,1.000000),(3593,77,0,1884,42.000000),(3594,82,0,1884,1.000000),(3595,77,0,1885,42.000000),(3596,82,0,1885,1.000000),(3597,77,0,1886,42.000000),(3598,82,0,1886,1.000000),(3599,77,0,1887,42.000000),(3600,82,0,1887,1.000000),(3601,77,0,1888,42.000000),(3602,82,0,1888,1.000000),(3603,77,0,1889,42.000000),(3604,77,0,1890,63.000000),(3605,82,0,1890,1.000000),(3606,77,0,1891,63.000000),(3607,82,0,1891,1.000000),(3608,77,0,1892,63.000000),(3609,82,0,1892,1.000000),(3610,77,0,1893,63.000000),(3611,82,0,1893,1.000000),(3612,77,0,1894,63.000000),(3613,82,0,1894,1.000000),(3614,77,0,1895,63.000000),(3615,82,0,1895,1.000000),(3616,77,0,1896,63.000000),(3617,77,0,1897,49.000000),(3618,82,0,1897,1.000000),(3619,77,0,1898,49.000000),(3620,82,0,1898,1.000000),(3621,77,0,1899,49.000000),(3622,82,0,1899,1.000000),(3623,77,0,1900,49.000000),(3624,82,0,1900,1.000000),(3625,77,0,1901,49.000000),(3626,82,0,1901,1.000000),(3627,77,0,1902,49.000000),(3628,82,0,1902,1.000000),(3629,77,0,1903,49.000000),(3630,77,0,1904,29.000000),(3631,82,0,1904,1.000000),(3632,77,0,1905,29.000000),(3633,82,0,1905,1.000000),(3634,77,0,1906,29.000000),(3635,82,0,1906,1.000000),(3636,77,0,1907,29.000000),(3637,82,0,1907,1.000000),(3638,77,0,1908,29.000000),(3639,82,0,1908,1.000000),(3640,77,0,1909,29.000000),(3641,82,0,1909,1.000000),(3642,77,0,1910,29.000000),(3643,82,0,1910,1.000000),(3644,77,0,1911,29.000000),(3645,82,0,1911,1.000000),(3646,77,0,1912,29.000000),(3647,82,0,1912,1.000000),(3648,77,0,1913,29.000000),(3649,82,0,1913,1.000000),(3650,77,0,1914,29.000000),(3651,82,0,1914,1.000000),(3652,77,0,1915,29.000000),(3653,82,0,1915,1.000000),(3654,77,0,1916,29.000000),(3655,82,0,1916,1.000000),(3656,77,0,1917,29.000000),(3657,82,0,1917,1.000000),(3658,77,0,1918,29.000000),(3659,82,0,1918,1.000000),(3660,77,0,1919,29.000000),(3661,77,0,1920,28.000000),(3662,82,0,1920,1.000000),(3663,77,0,1921,28.000000),(3664,82,0,1921,1.000000),(3665,77,0,1922,28.000000),(3666,82,0,1922,1.000000),(3667,77,0,1923,28.000000),(3668,82,0,1923,1.000000),(3669,77,0,1924,28.000000),(3670,82,0,1924,1.000000),(3671,77,0,1925,28.000000),(3672,82,0,1925,1.000000),(3673,77,0,1926,28.000000),(3674,82,0,1926,1.000000),(3675,77,0,1927,28.000000),(3676,82,0,1927,1.000000),(3677,77,0,1928,28.000000),(3678,82,0,1928,1.000000),(3679,77,0,1929,28.000000),(3680,82,0,1929,1.000000),(3681,77,0,1930,28.000000),(3682,82,0,1930,1.000000),(3683,77,0,1931,28.000000),(3684,82,0,1931,1.000000),(3685,77,0,1932,28.000000),(3686,82,0,1932,1.000000),(3687,77,0,1933,28.000000),(3688,82,0,1933,1.000000),(3689,77,0,1934,28.000000),(3690,82,0,1934,1.000000),(3691,77,0,1935,28.000000),(3692,77,0,1936,50.000000),(3693,82,0,1936,1.000000),(3694,77,0,1937,50.000000),(3695,82,0,1937,1.000000),(3696,77,0,1938,50.000000),(3697,82,0,1938,1.000000),(3698,77,0,1939,50.000000),(3699,82,0,1939,1.000000),(3700,77,0,1940,50.000000),(3701,82,0,1940,1.000000),(3702,77,0,1941,50.000000),(3703,82,0,1941,1.000000),(3704,77,0,1942,50.000000),(3705,82,0,1942,1.000000),(3706,77,0,1943,50.000000),(3707,82,0,1943,1.000000),(3708,77,0,1944,50.000000),(3709,82,0,1944,1.000000),(3710,77,0,1945,50.000000),(3711,82,0,1945,1.000000),(3712,77,0,1946,50.000000),(3713,82,0,1946,1.000000),(3714,77,0,1947,50.000000),(3715,82,0,1947,1.000000),(3716,77,0,1948,50.000000),(3717,82,0,1948,1.000000),(3718,77,0,1949,50.000000),(3719,82,0,1949,1.000000),(3720,77,0,1950,50.000000),(3721,82,0,1950,1.000000),(3722,77,0,1951,50.000000),(3723,77,0,1952,45.000000),(3724,82,0,1952,1.000000),(3725,77,0,1953,45.000000),(3726,82,0,1953,1.000000),(3727,77,0,1954,45.000000),(3728,82,0,1954,1.000000),(3729,77,0,1955,45.000000),(3730,82,0,1955,1.000000),(3731,77,0,1956,45.000000),(3732,82,0,1956,1.000000),(3733,77,0,1957,45.000000),(3734,82,0,1957,1.000000),(3735,77,0,1958,45.000000),(3736,82,0,1958,1.000000),(3737,77,0,1959,45.000000),(3738,82,0,1959,1.000000),(3739,77,0,1960,45.000000),(3740,82,0,1960,1.000000),(3741,77,0,1961,45.000000),(3742,82,0,1961,1.000000),(3743,77,0,1962,45.000000),(3744,82,0,1962,1.000000),(3745,77,0,1963,45.000000),(3746,82,0,1963,1.000000),(3747,77,0,1964,45.000000),(3748,82,0,1964,1.000000),(3749,77,0,1965,45.000000),(3750,82,0,1965,1.000000),(3751,77,0,1966,45.000000),(3752,82,0,1966,1.000000),(3753,77,0,1967,45.000000),(3754,77,0,1968,28.000000),(3755,82,0,1968,1.000000),(3756,77,0,1969,28.000000),(3757,82,0,1969,1.000000),(3758,77,0,1970,28.000000),(3759,82,0,1970,1.000000),(3760,77,0,1971,28.000000),(3761,82,0,1971,1.000000),(3762,77,0,1972,28.000000),(3763,82,0,1972,1.000000),(3764,77,0,1973,28.000000),(3765,82,0,1973,1.000000),(3766,77,0,1974,28.000000),(3767,82,0,1974,1.000000),(3768,77,0,1975,28.000000),(3769,82,0,1975,1.000000),(3770,77,0,1976,28.000000),(3771,82,0,1976,1.000000),(3772,77,0,1977,28.000000),(3773,82,0,1977,1.000000),(3774,77,0,1978,28.000000),(3775,82,0,1978,1.000000),(3776,77,0,1979,28.000000),(3777,82,0,1979,1.000000),(3778,77,0,1980,28.000000),(3779,82,0,1980,1.000000),(3780,77,0,1981,28.000000),(3781,82,0,1981,1.000000),(3782,77,0,1982,28.000000),(3783,82,0,1982,1.000000),(3784,77,0,1983,28.000000),(3785,77,0,1984,42.000000),(3786,82,0,1984,1.000000),(3787,77,0,1985,42.000000),(3788,82,0,1985,1.000000),(3789,77,0,1986,42.000000),(3790,82,0,1986,1.000000),(3791,77,0,1987,42.000000),(3792,82,0,1987,1.000000),(3793,77,0,1988,42.000000),(3794,82,0,1988,1.000000),(3795,77,0,1989,42.000000),(3796,82,0,1989,1.000000),(3797,77,0,1990,42.000000),(3798,77,0,1991,24.000000),(3799,82,0,1991,1.000000),(3800,77,0,1992,24.000000),(3801,82,0,1992,1.000000),(3802,77,0,1993,24.000000),(3803,82,0,1993,1.000000),(3804,77,0,1994,24.000000),(3805,82,0,1994,1.000000),(3806,77,0,1995,24.000000),(3807,82,0,1995,1.000000),(3808,77,0,1996,24.000000),(3809,82,0,1996,1.000000),(3810,77,0,1997,24.000000),(3811,77,0,1998,44.000000),(3812,82,0,1998,1.000000),(3813,77,0,1999,44.000000),(3814,82,0,1999,1.000000),(3815,77,0,2000,44.000000),(3816,82,0,2000,1.000000),(3817,77,0,2001,44.000000),(3818,82,0,2001,1.000000),(3819,77,0,2002,44.000000),(3820,82,0,2002,1.000000),(3821,77,0,2003,44.000000),(3822,77,0,2004,44.000000),(3823,82,0,2004,1.000000),(3824,77,0,2005,44.000000),(3825,82,0,2005,1.000000),(3826,77,0,2006,44.000000),(3827,82,0,2006,1.000000),(3828,77,0,2007,44.000000),(3829,82,0,2007,1.000000),(3830,77,0,2008,44.000000),(3831,82,0,2008,1.000000),(3832,77,0,2009,44.000000),(3833,82,0,2009,1.000000),(3834,77,0,2010,44.000000),(3835,77,0,2011,40.000000),(3836,82,0,2011,1.000000),(3837,77,0,2012,40.000000),(3838,82,0,2012,1.000000),(3839,77,0,2013,40.000000),(3840,82,0,2013,1.000000),(3841,77,0,2014,40.000000),(3842,82,0,2014,1.000000),(3843,77,0,2015,40.000000),(3844,82,0,2015,1.000000),(3845,77,0,2016,40.000000),(3846,82,0,2016,1.000000),(3847,77,0,2017,40.000000),(3848,77,0,2018,49.000000),(3849,82,0,2018,1.000000),(3850,77,0,2019,49.000000),(3851,82,0,2019,1.000000),(3852,77,0,2020,49.000000),(3853,82,0,2020,1.000000),(3854,77,0,2021,49.000000),(3855,82,0,2021,1.000000),(3856,77,0,2022,49.000000),(3857,82,0,2022,1.000000),(3858,77,0,2023,49.000000),(3859,82,0,2023,1.000000),(3860,77,0,2024,49.000000),(3861,77,0,2025,45.000000),(3862,82,0,2025,1.000000),(3863,77,0,2026,45.000000),(3864,82,0,2026,1.000000),(3865,77,0,2027,45.000000),(3866,82,0,2027,1.000000),(3867,77,0,2028,45.000000),(3868,82,0,2028,1.000000),(3869,77,0,2029,45.000000),(3870,82,0,2029,1.000000),(3871,77,0,2030,45.000000),(3872,82,0,2030,1.000000),(3873,77,0,2031,45.000000),(3874,82,0,2031,1.000000),(3875,77,0,2032,45.000000),(3876,82,0,2032,1.000000),(3877,77,0,2033,45.000000),(3878,82,0,2033,1.000000),(3879,77,0,2034,45.000000),(3880,82,0,2034,1.000000),(3881,77,0,2035,45.000000),(3882,82,0,2035,1.000000),(3883,77,0,2036,45.000000),(3884,82,0,2036,1.000000),(3885,77,0,2037,45.000000),(3886,82,0,2037,1.000000),(3887,77,0,2038,45.000000),(3888,82,0,2038,1.000000),(3889,77,0,2039,45.000000),(3890,82,0,2039,1.000000),(3891,77,0,2040,45.000000),(3892,123,0,1220,79.990000),(3893,123,0,1236,59.990000),(3894,123,0,1252,59.990000),(3895,123,0,1268,89.990000),(3896,123,0,1284,62.990000),(3897,123,0,1380,79.990000),(3898,123,0,1300,62.990000),(3899,123,0,1316,59.990000),(3900,123,0,1332,34.990000),(3901,123,0,1348,72.990000),(3902,123,0,1364,72.990000),(3903,123,0,1396,79.990000);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_gallery` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_gallery`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_gallery` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID_STORE_ID_VALUE` (`attribute_id`,`store_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_INT_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12621 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_int`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_int` VALUES (1,97,0,1,1),(2,99,0,1,4),(3,145,0,2,1),(4,147,0,2,1),(5,97,0,2,1),(6,134,0,2,2),(7,99,0,2,4),(8,97,0,3,1),(9,134,0,3,2),(10,99,0,3,4),(11,146,0,4,1),(12,97,0,4,1),(13,134,0,4,2),(14,99,0,4,4),(15,146,0,5,1),(16,97,0,5,1),(17,134,0,5,2),(18,99,0,5,4),(19,97,0,6,1),(20,134,0,6,2),(21,99,0,6,4),(22,97,0,7,1),(23,134,0,7,2),(24,99,0,7,4),(25,97,0,8,1),(26,134,0,8,2),(27,99,0,8,4),(28,97,0,9,1),(29,134,0,9,2),(30,99,0,9,4),(31,145,0,10,1),(32,147,0,10,1),(33,97,0,10,1),(34,134,0,10,2),(35,99,0,10,4),(36,145,0,11,1),(37,147,0,11,1),(38,97,0,11,1),(39,134,0,11,2),(40,99,0,11,4),(41,97,0,12,1),(42,134,0,12,2),(43,99,0,12,4),(44,146,0,13,1),(45,97,0,13,1),(46,134,0,13,2),(47,99,0,13,4),(48,144,0,14,1),(49,97,0,14,1),(50,134,0,14,2),(51,99,0,14,4),(52,97,0,15,1),(53,99,0,15,4),(54,145,0,16,1),(55,147,0,16,1),(56,97,0,16,1),(57,134,0,16,2),(58,99,0,16,4),(59,97,0,17,1),(60,134,0,17,2),(61,99,0,17,4),(62,97,0,18,1),(63,134,0,18,2),(64,99,0,18,4),(65,145,0,19,1),(66,146,0,19,1),(67,97,0,19,1),(68,134,0,19,2),(69,99,0,19,4),(70,97,0,20,1),(71,134,0,20,2),(72,99,0,20,4),(73,97,0,21,1),(74,134,0,21,2),(75,99,0,21,4),(76,97,0,22,1),(77,134,0,22,2),(78,99,0,22,4),(79,97,0,23,1),(80,134,0,23,2),(81,99,0,23,4),(82,93,0,24,52),(83,142,0,24,91),(84,97,0,24,1),(85,99,0,24,1),(86,93,0,25,58),(87,142,0,25,91),(88,97,0,25,1),(89,134,0,25,2),(90,99,0,25,1),(91,93,0,26,50),(92,142,0,26,91),(93,97,0,26,1),(94,134,0,26,2),(95,99,0,26,1),(96,93,0,27,52),(97,142,0,27,92),(98,97,0,27,1),(99,134,0,27,2),(100,99,0,27,1),(101,93,0,28,58),(102,142,0,28,92),(103,97,0,28,1),(104,134,0,28,2),(105,99,0,28,1),(106,93,0,29,50),(107,142,0,29,92),(108,97,0,29,1),(109,134,0,29,2),(110,99,0,29,1),(111,93,0,30,52),(112,142,0,30,93),(113,97,0,30,1),(114,134,0,30,2),(115,99,0,30,1),(116,93,0,31,58),(117,142,0,31,93),(118,97,0,31,1),(119,134,0,31,2),(120,99,0,31,1),(121,93,0,32,50),(122,142,0,32,93),(123,97,0,32,1),(124,134,0,32,2),(125,99,0,32,1),(126,142,0,33,94),(127,97,0,33,1),(128,99,0,33,1),(129,142,0,34,95),(130,97,0,34,1),(131,134,0,34,2),(132,99,0,34,1),(133,142,0,35,96),(134,97,0,35,1),(135,134,0,35,2),(136,99,0,35,1),(137,97,0,36,1),(138,134,0,36,2),(139,99,0,36,4),(140,97,0,37,1),(141,134,0,37,2),(142,99,0,37,4),(143,146,0,38,1),(144,97,0,38,1),(145,134,0,38,2),(146,99,0,38,4),(147,146,0,39,1),(148,97,0,39,1),(149,134,0,39,2),(150,99,0,39,4),(151,146,0,40,1),(152,97,0,40,1),(153,134,0,40,2),(154,99,0,40,4),(155,147,0,41,1),(156,97,0,41,1),(157,134,0,41,2),(158,99,0,41,4),(159,147,0,42,1),(160,97,0,42,1),(161,134,0,42,2),(162,99,0,42,4),(163,97,0,43,1),(164,134,0,43,2),(165,99,0,43,4),(166,146,0,44,1),(167,97,0,44,1),(168,134,0,44,2),(169,99,0,44,4),(170,125,0,45,0),(171,128,0,45,0),(172,129,0,45,0),(173,126,0,45,0),(174,97,0,45,1),(175,134,0,45,2),(176,99,0,45,4),(177,127,0,45,0),(178,97,0,46,1),(179,99,0,46,4),(180,97,0,47,1),(181,134,0,47,2),(182,115,0,47,1),(183,99,0,47,1),(184,93,0,47,49),(185,142,0,47,166),(186,97,0,48,1),(187,134,0,48,2),(188,115,0,48,1),(189,99,0,48,1),(190,93,0,48,52),(191,142,0,48,166),(192,97,0,49,1),(193,134,0,49,2),(194,115,0,49,1),(195,99,0,49,1),(196,93,0,49,56),(197,142,0,49,166),(198,97,0,50,1),(199,134,0,50,2),(200,115,0,50,1),(201,99,0,50,1),(202,93,0,50,49),(203,142,0,50,167),(204,97,0,51,1),(205,134,0,51,2),(206,115,0,51,1),(207,99,0,51,1),(208,93,0,51,52),(209,142,0,51,167),(210,97,0,52,1),(211,134,0,52,2),(212,115,0,52,1),(213,99,0,52,1),(214,93,0,52,56),(215,142,0,52,167),(216,97,0,53,1),(217,134,0,53,2),(218,115,0,53,1),(219,99,0,53,1),(220,93,0,53,49),(221,142,0,53,168),(222,97,0,54,1),(223,134,0,54,2),(224,115,0,54,1),(225,99,0,54,1),(226,93,0,54,52),(227,142,0,54,168),(228,97,0,55,1),(229,134,0,55,2),(230,115,0,55,1),(231,99,0,55,1),(232,93,0,55,56),(233,142,0,55,168),(234,97,0,56,1),(235,134,0,56,2),(236,115,0,56,1),(237,99,0,56,1),(238,93,0,56,49),(239,142,0,56,169),(240,97,0,57,1),(241,134,0,57,2),(242,115,0,57,1),(243,99,0,57,1),(244,93,0,57,52),(245,142,0,57,169),(246,97,0,58,1),(247,134,0,58,2),(248,115,0,58,1),(249,99,0,58,1),(250,93,0,58,56),(251,142,0,58,169),(252,97,0,59,1),(253,134,0,59,2),(254,115,0,59,1),(255,99,0,59,1),(256,93,0,59,49),(257,142,0,59,170),(258,97,0,60,1),(259,134,0,60,2),(260,115,0,60,1),(261,99,0,60,1),(262,93,0,60,52),(263,142,0,60,170),(264,97,0,61,1),(265,134,0,61,2),(266,115,0,61,1),(267,99,0,61,1),(268,93,0,61,56),(269,142,0,61,170),(270,97,0,62,1),(271,134,0,62,2),(272,115,0,62,1),(273,99,0,62,4),(274,143,0,62,1),(275,144,0,62,0),(276,145,0,62,0),(277,146,0,62,0),(278,147,0,62,1),(279,97,0,63,1),(280,134,0,63,2),(281,115,0,63,1),(282,99,0,63,1),(283,93,0,63,49),(284,142,0,63,166),(285,97,0,64,1),(286,134,0,64,2),(287,115,0,64,1),(288,99,0,64,1),(289,93,0,64,57),(290,142,0,64,166),(291,97,0,65,1),(292,134,0,65,2),(293,115,0,65,1),(294,99,0,65,1),(295,93,0,65,58),(296,142,0,65,166),(297,97,0,66,1),(298,134,0,66,2),(299,115,0,66,1),(300,99,0,66,1),(301,93,0,66,49),(302,142,0,66,167),(303,97,0,67,1),(304,134,0,67,2),(305,115,0,67,1),(306,99,0,67,1),(307,93,0,67,57),(308,142,0,67,167),(309,97,0,68,1),(310,134,0,68,2),(311,115,0,68,1),(312,99,0,68,1),(313,93,0,68,58),(314,142,0,68,167),(315,97,0,69,1),(316,134,0,69,2),(317,115,0,69,1),(318,99,0,69,1),(319,93,0,69,49),(320,142,0,69,168),(321,97,0,70,1),(322,134,0,70,2),(323,115,0,70,1),(324,99,0,70,1),(325,93,0,70,57),(326,142,0,70,168),(327,97,0,71,1),(328,134,0,71,2),(329,115,0,71,1),(330,99,0,71,1),(331,93,0,71,58),(332,142,0,71,168),(333,97,0,72,1),(334,134,0,72,2),(335,115,0,72,1),(336,99,0,72,1),(337,93,0,72,49),(338,142,0,72,169),(339,97,0,73,1),(340,134,0,73,2),(341,115,0,73,1),(342,99,0,73,1),(343,93,0,73,57),(344,142,0,73,169),(345,97,0,74,1),(346,134,0,74,2),(347,115,0,74,1),(348,99,0,74,1),(349,93,0,74,58),(350,142,0,74,169),(351,97,0,75,1),(352,134,0,75,2),(353,115,0,75,1),(354,99,0,75,1),(355,93,0,75,49),(356,142,0,75,170),(357,97,0,76,1),(358,134,0,76,2),(359,115,0,76,1),(360,99,0,76,1),(361,93,0,76,57),(362,142,0,76,170),(363,97,0,77,1),(364,134,0,77,2),(365,115,0,77,1),(366,99,0,77,1),(367,93,0,77,58),(368,142,0,77,170),(369,97,0,78,1),(370,134,0,78,2),(371,115,0,78,1),(372,99,0,78,4),(373,143,0,78,0),(374,144,0,78,0),(375,145,0,78,0),(376,146,0,78,1),(377,147,0,78,0),(378,97,0,79,1),(379,134,0,79,2),(380,115,0,79,1),(381,99,0,79,1),(382,93,0,79,49),(383,142,0,79,166),(384,97,0,80,1),(385,134,0,80,2),(386,115,0,80,1),(387,99,0,80,1),(388,93,0,80,50),(389,142,0,80,166),(390,97,0,81,1),(391,134,0,81,2),(392,115,0,81,1),(393,99,0,81,1),(394,93,0,81,53),(395,142,0,81,166),(396,97,0,82,1),(397,134,0,82,2),(398,115,0,82,1),(399,99,0,82,1),(400,93,0,82,49),(401,142,0,82,167),(402,97,0,83,1),(403,134,0,83,2),(404,115,0,83,1),(405,99,0,83,1),(406,93,0,83,50),(407,142,0,83,167),(408,97,0,84,1),(409,134,0,84,2),(410,115,0,84,1),(411,99,0,84,1),(412,93,0,84,53),(413,142,0,84,167),(414,97,0,85,1),(415,134,0,85,2),(416,115,0,85,1),(417,99,0,85,1),(418,93,0,85,49),(419,142,0,85,168),(420,97,0,86,1),(421,134,0,86,2),(422,115,0,86,1),(423,99,0,86,1),(424,93,0,86,50),(425,142,0,86,168),(426,97,0,87,1),(427,134,0,87,2),(428,115,0,87,1),(429,99,0,87,1),(430,93,0,87,53),(431,142,0,87,168),(432,97,0,88,1),(433,134,0,88,2),(434,115,0,88,1),(435,99,0,88,1),(436,93,0,88,49),(437,142,0,88,169),(438,97,0,89,1),(439,134,0,89,2),(440,115,0,89,1),(441,99,0,89,1),(442,93,0,89,50),(443,142,0,89,169),(444,97,0,90,1),(445,134,0,90,2),(446,115,0,90,1),(447,99,0,90,1),(448,93,0,90,53),(449,142,0,90,169),(450,97,0,91,1),(451,134,0,91,2),(452,115,0,91,1),(453,99,0,91,1),(454,93,0,91,49),(455,142,0,91,170),(456,97,0,92,1),(457,134,0,92,2),(458,115,0,92,1),(459,99,0,92,1),(460,93,0,92,50),(461,142,0,92,170),(462,97,0,93,1),(463,134,0,93,2),(464,115,0,93,1),(465,99,0,93,1),(466,93,0,93,53),(467,142,0,93,170),(468,97,0,94,1),(469,134,0,94,2),(470,115,0,94,1),(471,99,0,94,4),(472,143,0,94,1),(473,144,0,94,0),(474,145,0,94,1),(475,146,0,94,1),(476,147,0,94,0),(477,97,0,95,1),(478,134,0,95,2),(479,115,0,95,1),(480,99,0,95,1),(481,93,0,95,53),(482,142,0,95,166),(483,97,0,96,1),(484,134,0,96,2),(485,115,0,96,1),(486,99,0,96,1),(487,93,0,96,59),(488,142,0,96,166),(489,97,0,97,1),(490,134,0,97,2),(491,115,0,97,1),(492,99,0,97,1),(493,93,0,97,60),(494,142,0,97,166),(495,97,0,98,1),(496,134,0,98,2),(497,115,0,98,1),(498,99,0,98,1),(499,93,0,98,53),(500,142,0,98,167),(501,97,0,99,1),(502,134,0,99,2),(503,115,0,99,1),(504,99,0,99,1),(505,93,0,99,59),(506,142,0,99,167),(507,97,0,100,1),(508,134,0,100,2),(509,115,0,100,1),(510,99,0,100,1),(511,93,0,100,60),(512,142,0,100,167),(513,97,0,101,1),(514,134,0,101,2),(515,115,0,101,1),(516,99,0,101,1),(517,93,0,101,53),(518,142,0,101,168),(519,97,0,102,1),(520,134,0,102,2),(521,115,0,102,1),(522,99,0,102,1),(523,93,0,102,59),(524,142,0,102,168),(525,97,0,103,1),(526,134,0,103,2),(527,115,0,103,1),(528,99,0,103,1),(529,93,0,103,60),(530,142,0,103,168),(531,97,0,104,1),(532,134,0,104,2),(533,115,0,104,1),(534,99,0,104,1),(535,93,0,104,53),(536,142,0,104,169),(537,97,0,105,1),(538,134,0,105,2),(539,115,0,105,1),(540,99,0,105,1),(541,93,0,105,59),(542,142,0,105,169),(543,97,0,106,1),(544,134,0,106,2),(545,115,0,106,1),(546,99,0,106,1),(547,93,0,106,60),(548,142,0,106,169),(549,97,0,107,1),(550,134,0,107,2),(551,115,0,107,1),(552,99,0,107,1),(553,93,0,107,53),(554,142,0,107,170),(555,97,0,108,1),(556,134,0,108,2),(557,115,0,108,1),(558,99,0,108,1),(559,93,0,108,59),(560,142,0,108,170),(561,97,0,109,1),(562,134,0,109,2),(563,115,0,109,1),(564,99,0,109,1),(565,93,0,109,60),(566,142,0,109,170),(567,97,0,110,1),(568,134,0,110,2),(569,115,0,110,1),(570,99,0,110,4),(571,143,0,110,1),(572,144,0,110,1),(573,145,0,110,0),(574,146,0,110,0),(575,147,0,110,1),(576,97,0,111,1),(577,134,0,111,2),(578,115,0,111,1),(579,99,0,111,1),(580,93,0,111,53),(581,142,0,111,166),(582,97,0,112,1),(583,134,0,112,2),(584,115,0,112,1),(585,99,0,112,1),(586,93,0,112,58),(587,142,0,112,166),(588,97,0,113,1),(589,134,0,113,2),(590,115,0,113,1),(591,99,0,113,1),(592,93,0,113,59),(593,142,0,113,166),(594,97,0,114,1),(595,134,0,114,2),(596,115,0,114,1),(597,99,0,114,1),(598,93,0,114,53),(599,142,0,114,167),(600,97,0,115,1),(601,134,0,115,2),(602,115,0,115,1),(603,99,0,115,1),(604,93,0,115,58),(605,142,0,115,167),(606,97,0,116,1),(607,134,0,116,2),(608,115,0,116,1),(609,99,0,116,1),(610,93,0,116,59),(611,142,0,116,167),(612,97,0,117,1),(613,134,0,117,2),(614,115,0,117,1),(615,99,0,117,1),(616,93,0,117,53),(617,142,0,117,168),(618,97,0,118,1),(619,134,0,118,2),(620,115,0,118,1),(621,99,0,118,1),(622,93,0,118,58),(623,142,0,118,168),(624,97,0,119,1),(625,134,0,119,2),(626,115,0,119,1),(627,99,0,119,1),(628,93,0,119,59),(629,142,0,119,168),(630,97,0,120,1),(631,134,0,120,2),(632,115,0,120,1),(633,99,0,120,1),(634,93,0,120,53),(635,142,0,120,169),(636,97,0,121,1),(637,134,0,121,2),(638,115,0,121,1),(639,99,0,121,1),(640,93,0,121,58),(641,142,0,121,169),(642,97,0,122,1),(643,134,0,122,2),(644,115,0,122,1),(645,99,0,122,1),(646,93,0,122,59),(647,142,0,122,169),(648,97,0,123,1),(649,134,0,123,2),(650,115,0,123,1),(651,99,0,123,1),(652,93,0,123,53),(653,142,0,123,170),(654,97,0,124,1),(655,134,0,124,2),(656,115,0,124,1),(657,99,0,124,1),(658,93,0,124,58),(659,142,0,124,170),(660,97,0,125,1),(661,134,0,125,2),(662,115,0,125,1),(663,99,0,125,1),(664,93,0,125,59),(665,142,0,125,170),(666,97,0,126,1),(667,134,0,126,2),(668,115,0,126,1),(669,99,0,126,4),(670,143,0,126,0),(671,144,0,126,0),(672,145,0,126,0),(673,146,0,126,0),(674,147,0,126,0),(675,97,0,127,1),(676,134,0,127,2),(677,115,0,127,1),(678,99,0,127,1),(679,93,0,127,49),(680,142,0,127,166),(681,97,0,128,1),(682,134,0,128,2),(683,115,0,128,1),(684,99,0,128,1),(685,93,0,128,50),(686,142,0,128,166),(687,97,0,129,1),(688,134,0,129,2),(689,115,0,129,1),(690,99,0,129,1),(691,93,0,129,57),(692,142,0,129,166),(693,97,0,130,1),(694,134,0,130,2),(695,115,0,130,1),(696,99,0,130,1),(697,93,0,130,49),(698,142,0,130,167),(699,97,0,131,1),(700,134,0,131,2),(701,115,0,131,1),(702,99,0,131,1),(703,93,0,131,50),(704,142,0,131,167),(705,97,0,132,1),(706,134,0,132,2),(707,115,0,132,1),(708,99,0,132,1),(709,93,0,132,57),(710,142,0,132,167),(711,97,0,133,1),(712,134,0,133,2),(713,115,0,133,1),(714,99,0,133,1),(715,93,0,133,49),(716,142,0,133,168),(717,97,0,134,1),(718,134,0,134,2),(719,115,0,134,1),(720,99,0,134,1),(721,93,0,134,50),(722,142,0,134,168),(723,97,0,135,1),(724,134,0,135,2),(725,115,0,135,1),(726,99,0,135,1),(727,93,0,135,57),(728,142,0,135,168),(729,97,0,136,1),(730,134,0,136,2),(731,115,0,136,1),(732,99,0,136,1),(733,93,0,136,49),(734,142,0,136,169),(735,97,0,137,1),(736,134,0,137,2),(737,115,0,137,1),(738,99,0,137,1),(739,93,0,137,50),(740,142,0,137,169),(741,97,0,138,1),(742,134,0,138,2),(743,115,0,138,1),(744,99,0,138,1),(745,93,0,138,57),(746,142,0,138,169),(747,97,0,139,1),(748,134,0,139,2),(749,115,0,139,1),(750,99,0,139,1),(751,93,0,139,49),(752,142,0,139,170),(753,97,0,140,1),(754,134,0,140,2),(755,115,0,140,1),(756,99,0,140,1),(757,93,0,140,50),(758,142,0,140,170),(759,97,0,141,1),(760,134,0,141,2),(761,115,0,141,1),(762,99,0,141,1),(763,93,0,141,57),(764,142,0,141,170),(765,97,0,142,1),(766,134,0,142,2),(767,115,0,142,1),(768,99,0,142,4),(769,143,0,142,0),(770,144,0,142,0),(771,145,0,142,0),(772,146,0,142,0),(773,147,0,142,0),(774,97,0,143,1),(775,134,0,143,2),(776,115,0,143,1),(777,99,0,143,1),(778,93,0,143,49),(779,142,0,143,166),(780,97,0,144,1),(781,134,0,144,2),(782,115,0,144,1),(783,99,0,144,1),(784,93,0,144,52),(785,142,0,144,166),(786,97,0,145,1),(787,134,0,145,2),(788,115,0,145,1),(789,99,0,145,1),(790,93,0,145,53),(791,142,0,145,166),(792,97,0,146,1),(793,134,0,146,2),(794,115,0,146,1),(795,99,0,146,1),(796,93,0,146,49),(797,142,0,146,167),(798,97,0,147,1),(799,134,0,147,2),(800,115,0,147,1),(801,99,0,147,1),(802,93,0,147,52),(803,142,0,147,167),(804,97,0,148,1),(805,134,0,148,2),(806,115,0,148,1),(807,99,0,148,1),(808,93,0,148,53),(809,142,0,148,167),(810,97,0,149,1),(811,134,0,149,2),(812,115,0,149,1),(813,99,0,149,1),(814,93,0,149,49),(815,142,0,149,168),(816,97,0,150,1),(817,134,0,150,2),(818,115,0,150,1),(819,99,0,150,1),(820,93,0,150,52),(821,142,0,150,168),(822,97,0,151,1),(823,134,0,151,2),(824,115,0,151,1),(825,99,0,151,1),(826,93,0,151,53),(827,142,0,151,168),(828,97,0,152,1),(829,134,0,152,2),(830,115,0,152,1),(831,99,0,152,1),(832,93,0,152,49),(833,142,0,152,169),(834,97,0,153,1),(835,134,0,153,2),(836,115,0,153,1),(837,99,0,153,1),(838,93,0,153,52),(839,142,0,153,169),(840,97,0,154,1),(841,134,0,154,2),(842,115,0,154,1),(843,99,0,154,1),(844,93,0,154,53),(845,142,0,154,169),(846,97,0,155,1),(847,134,0,155,2),(848,115,0,155,1),(849,99,0,155,1),(850,93,0,155,49),(851,142,0,155,170),(852,97,0,156,1),(853,134,0,156,2),(854,115,0,156,1),(855,99,0,156,1),(856,93,0,156,52),(857,142,0,156,170),(858,97,0,157,1),(859,134,0,157,2),(860,115,0,157,1),(861,99,0,157,1),(862,93,0,157,53),(863,142,0,157,170),(864,97,0,158,1),(865,134,0,158,2),(866,115,0,158,1),(867,99,0,158,4),(868,143,0,158,0),(869,144,0,158,0),(870,145,0,158,0),(871,146,0,158,1),(872,147,0,158,0),(873,97,0,159,1),(874,134,0,159,2),(875,115,0,159,1),(876,99,0,159,1),(877,93,0,159,51),(878,142,0,159,166),(879,97,0,160,1),(880,134,0,160,2),(881,115,0,160,1),(882,99,0,160,1),(883,93,0,160,57),(884,142,0,160,166),(885,97,0,161,1),(886,134,0,161,2),(887,115,0,161,1),(888,99,0,161,1),(889,93,0,161,58),(890,142,0,161,166),(891,97,0,162,1),(892,134,0,162,2),(893,115,0,162,1),(894,99,0,162,1),(895,93,0,162,51),(896,142,0,162,167),(897,97,0,163,1),(898,134,0,163,2),(899,115,0,163,1),(900,99,0,163,1),(901,93,0,163,57),(902,142,0,163,167),(903,97,0,164,1),(904,134,0,164,2),(905,115,0,164,1),(906,99,0,164,1),(907,93,0,164,58),(908,142,0,164,167),(909,97,0,165,1),(910,134,0,165,2),(911,115,0,165,1),(912,99,0,165,1),(913,93,0,165,51),(914,142,0,165,168),(915,97,0,166,1),(916,134,0,166,2),(917,115,0,166,1),(918,99,0,166,1),(919,93,0,166,57),(920,142,0,166,168),(921,97,0,167,1),(922,134,0,167,2),(923,115,0,167,1),(924,99,0,167,1),(925,93,0,167,58),(926,142,0,167,168),(927,97,0,168,1),(928,134,0,168,2),(929,115,0,168,1),(930,99,0,168,1),(931,93,0,168,51),(932,142,0,168,169),(933,97,0,169,1),(934,134,0,169,2),(935,115,0,169,1),(936,99,0,169,1),(937,93,0,169,57),(938,142,0,169,169),(939,97,0,170,1),(940,134,0,170,2),(941,115,0,170,1),(942,99,0,170,1),(943,93,0,170,58),(944,142,0,170,169),(945,97,0,171,1),(946,134,0,171,2),(947,115,0,171,1),(948,99,0,171,1),(949,93,0,171,51),(950,142,0,171,170),(951,97,0,172,1),(952,134,0,172,2),(953,115,0,172,1),(954,99,0,172,1),(955,93,0,172,57),(956,142,0,172,170),(957,97,0,173,1),(958,134,0,173,2),(959,115,0,173,1),(960,99,0,173,1),(961,93,0,173,58),(962,142,0,173,170),(963,97,0,174,1),(964,134,0,174,2),(965,115,0,174,1),(966,99,0,174,4),(967,143,0,174,0),(968,144,0,174,0),(969,145,0,174,0),(970,146,0,174,0),(971,147,0,174,0),(972,97,0,175,1),(973,134,0,175,2),(974,115,0,175,1),(975,99,0,175,1),(976,93,0,175,50),(977,142,0,175,166),(978,97,0,176,1),(979,134,0,176,2),(980,115,0,176,1),(981,99,0,176,1),(982,93,0,176,53),(983,142,0,176,166),(984,97,0,177,1),(985,134,0,177,2),(986,115,0,177,1),(987,99,0,177,1),(988,93,0,177,58),(989,142,0,177,166),(990,97,0,178,1),(991,134,0,178,2),(992,115,0,178,1),(993,99,0,178,1),(994,93,0,178,50),(995,142,0,178,167),(996,97,0,179,1),(997,134,0,179,2),(998,115,0,179,1),(999,99,0,179,1),(1000,93,0,179,53),(1001,142,0,179,167),(1002,97,0,180,1),(1003,134,0,180,2),(1004,115,0,180,1),(1005,99,0,180,1),(1006,93,0,180,58),(1007,142,0,180,167),(1008,97,0,181,1),(1009,134,0,181,2),(1010,115,0,181,1),(1011,99,0,181,1),(1012,93,0,181,50),(1013,142,0,181,168),(1014,97,0,182,1),(1015,134,0,182,2),(1016,115,0,182,1),(1017,99,0,182,1),(1018,93,0,182,53),(1019,142,0,182,168),(1020,97,0,183,1),(1021,134,0,183,2),(1022,115,0,183,1),(1023,99,0,183,1),(1024,93,0,183,58),(1025,142,0,183,168),(1026,97,0,184,1),(1027,134,0,184,2),(1028,115,0,184,1),(1029,99,0,184,1),(1030,93,0,184,50),(1031,142,0,184,169),(1032,97,0,185,1),(1033,134,0,185,2),(1034,115,0,185,1),(1035,99,0,185,1),(1036,93,0,185,53),(1037,142,0,185,169),(1038,97,0,186,1),(1039,134,0,186,2),(1040,115,0,186,1),(1041,99,0,186,1),(1042,93,0,186,58),(1043,142,0,186,169),(1044,97,0,187,1),(1045,134,0,187,2),(1046,115,0,187,1),(1047,99,0,187,1),(1048,93,0,187,50),(1049,142,0,187,170),(1050,97,0,188,1),(1051,134,0,188,2),(1052,115,0,188,1),(1053,99,0,188,1),(1054,93,0,188,53),(1055,142,0,188,170),(1056,97,0,189,1),(1057,134,0,189,2),(1058,115,0,189,1),(1059,99,0,189,1),(1060,93,0,189,58),(1061,142,0,189,170),(1062,97,0,190,1),(1063,134,0,190,2),(1064,115,0,190,1),(1065,99,0,190,4),(1066,143,0,190,0),(1067,144,0,190,0),(1068,145,0,190,1),(1069,146,0,190,0),(1070,147,0,190,0),(1071,97,0,191,1),(1072,134,0,191,2),(1073,115,0,191,1),(1074,99,0,191,1),(1075,93,0,191,49),(1076,142,0,191,166),(1077,97,0,192,1),(1078,134,0,192,2),(1079,115,0,192,1),(1080,99,0,192,1),(1081,93,0,192,50),(1082,142,0,192,166),(1083,97,0,193,1),(1084,134,0,193,2),(1085,115,0,193,1),(1086,99,0,193,1),(1087,93,0,193,58),(1088,142,0,193,166),(1089,97,0,194,1),(1090,134,0,194,2),(1091,115,0,194,1),(1092,99,0,194,1),(1093,93,0,194,49),(1094,142,0,194,167),(1095,97,0,195,1),(1096,134,0,195,2),(1097,115,0,195,1),(1098,99,0,195,1),(1099,93,0,195,50),(1100,142,0,195,167),(1101,97,0,196,1),(1102,134,0,196,2),(1103,115,0,196,1),(1104,99,0,196,1),(1105,93,0,196,58),(1106,142,0,196,167),(1107,97,0,197,1),(1108,134,0,197,2),(1109,115,0,197,1),(1110,99,0,197,1),(1111,93,0,197,49),(1112,142,0,197,168),(1113,97,0,198,1),(1114,134,0,198,2),(1115,115,0,198,1),(1116,99,0,198,1),(1117,93,0,198,50),(1118,142,0,198,168),(1119,97,0,199,1),(1120,134,0,199,2),(1121,115,0,199,1),(1122,99,0,199,1),(1123,93,0,199,58),(1124,142,0,199,168),(1125,97,0,200,1),(1126,134,0,200,2),(1127,115,0,200,1),(1128,99,0,200,1),(1129,93,0,200,49),(1130,142,0,200,169),(1131,97,0,201,1),(1132,134,0,201,2),(1133,115,0,201,1),(1134,99,0,201,1),(1135,93,0,201,50),(1136,142,0,201,169),(1137,97,0,202,1),(1138,134,0,202,2),(1139,115,0,202,1),(1140,99,0,202,1),(1141,93,0,202,58),(1142,142,0,202,169),(1143,97,0,203,1),(1144,134,0,203,2),(1145,115,0,203,1),(1146,99,0,203,1),(1147,93,0,203,49),(1148,142,0,203,170),(1149,97,0,204,1),(1150,134,0,204,2),(1151,115,0,204,1),(1152,99,0,204,1),(1153,93,0,204,50),(1154,142,0,204,170),(1155,97,0,205,1),(1156,134,0,205,2),(1157,115,0,205,1),(1158,99,0,205,1),(1159,93,0,205,58),(1160,142,0,205,170),(1161,97,0,206,1),(1162,134,0,206,2),(1163,115,0,206,1),(1164,99,0,206,4),(1165,143,0,206,0),(1166,144,0,206,1),(1167,145,0,206,0),(1168,146,0,206,0),(1169,147,0,206,1),(1170,97,0,207,1),(1171,134,0,207,2),(1172,115,0,207,1),(1173,99,0,207,1),(1174,93,0,207,56),(1175,142,0,207,166),(1176,97,0,208,1),(1177,134,0,208,2),(1178,115,0,208,1),(1179,99,0,208,1),(1180,93,0,208,58),(1181,142,0,208,166),(1182,97,0,209,1),(1183,134,0,209,2),(1184,115,0,209,1),(1185,99,0,209,1),(1186,93,0,209,59),(1187,142,0,209,166),(1188,97,0,210,1),(1189,134,0,210,2),(1190,115,0,210,1),(1191,99,0,210,1),(1192,93,0,210,56),(1193,142,0,210,167),(1194,97,0,211,1),(1195,134,0,211,2),(1196,115,0,211,1),(1197,99,0,211,1),(1198,93,0,211,58),(1199,142,0,211,167),(1200,97,0,212,1),(1201,134,0,212,2),(1202,115,0,212,1),(1203,99,0,212,1),(1204,93,0,212,59),(1205,142,0,212,167),(1206,97,0,213,1),(1207,134,0,213,2),(1208,115,0,213,1),(1209,99,0,213,1),(1210,93,0,213,56),(1211,142,0,213,168),(1212,97,0,214,1),(1213,134,0,214,2),(1214,115,0,214,1),(1215,99,0,214,1),(1216,93,0,214,58),(1217,142,0,214,168),(1218,97,0,215,1),(1219,134,0,215,2),(1220,115,0,215,1),(1221,99,0,215,1),(1222,93,0,215,59),(1223,142,0,215,168),(1224,97,0,216,1),(1225,134,0,216,2),(1226,115,0,216,1),(1227,99,0,216,1),(1228,93,0,216,56),(1229,142,0,216,169),(1230,97,0,217,1),(1231,134,0,217,2),(1232,115,0,217,1),(1233,99,0,217,1),(1234,93,0,217,58),(1235,142,0,217,169),(1236,97,0,218,1),(1237,134,0,218,2),(1238,115,0,218,1),(1239,99,0,218,1),(1240,93,0,218,59),(1241,142,0,218,169),(1242,97,0,219,1),(1243,134,0,219,2),(1244,115,0,219,1),(1245,99,0,219,1),(1246,93,0,219,56),(1247,142,0,219,170),(1248,97,0,220,1),(1249,134,0,220,2),(1250,115,0,220,1),(1251,99,0,220,1),(1252,93,0,220,58),(1253,142,0,220,170),(1254,97,0,221,1),(1255,134,0,221,2),(1256,115,0,221,1),(1257,99,0,221,1),(1258,93,0,221,59),(1259,142,0,221,170),(1260,97,0,222,1),(1261,134,0,222,2),(1262,115,0,222,1),(1263,99,0,222,4),(1264,143,0,222,0),(1265,144,0,222,0),(1266,145,0,222,0),(1267,146,0,222,0),(1268,147,0,222,0),(1269,97,0,223,1),(1270,134,0,223,2),(1271,115,0,223,1),(1272,99,0,223,1),(1273,93,0,223,50),(1274,142,0,223,166),(1275,97,0,224,1),(1276,134,0,224,2),(1277,115,0,224,1),(1278,99,0,224,1),(1279,93,0,224,53),(1280,142,0,224,166),(1281,97,0,225,1),(1282,134,0,225,2),(1283,115,0,225,1),(1284,99,0,225,1),(1285,93,0,225,58),(1286,142,0,225,166),(1287,97,0,226,1),(1288,134,0,226,2),(1289,115,0,226,1),(1290,99,0,226,1),(1291,93,0,226,50),(1292,142,0,226,167),(1293,97,0,227,1),(1294,134,0,227,2),(1295,115,0,227,1),(1296,99,0,227,1),(1297,93,0,227,53),(1298,142,0,227,167),(1299,97,0,228,1),(1300,134,0,228,2),(1301,115,0,228,1),(1302,99,0,228,1),(1303,93,0,228,58),(1304,142,0,228,167),(1305,97,0,229,1),(1306,134,0,229,2),(1307,115,0,229,1),(1308,99,0,229,1),(1309,93,0,229,50),(1310,142,0,229,168),(1311,97,0,230,1),(1312,134,0,230,2),(1313,115,0,230,1),(1314,99,0,230,1),(1315,93,0,230,53),(1316,142,0,230,168),(1317,97,0,231,1),(1318,134,0,231,2),(1319,115,0,231,1),(1320,99,0,231,1),(1321,93,0,231,58),(1322,142,0,231,168),(1323,97,0,232,1),(1324,134,0,232,2),(1325,115,0,232,1),(1326,99,0,232,1),(1327,93,0,232,50),(1328,142,0,232,169),(1329,97,0,233,1),(1330,134,0,233,2),(1331,115,0,233,1),(1332,99,0,233,1),(1333,93,0,233,53),(1334,142,0,233,169),(1335,97,0,234,1),(1336,134,0,234,2),(1337,115,0,234,1),(1338,99,0,234,1),(1339,93,0,234,58),(1340,142,0,234,169),(1341,97,0,235,1),(1342,134,0,235,2),(1343,115,0,235,1),(1344,99,0,235,1),(1345,93,0,235,50),(1346,142,0,235,170),(1347,97,0,236,1),(1348,134,0,236,2),(1349,115,0,236,1),(1350,99,0,236,1),(1351,93,0,236,53),(1352,142,0,236,170),(1353,97,0,237,1),(1354,134,0,237,2),(1355,115,0,237,1),(1356,99,0,237,1),(1357,93,0,237,58),(1358,142,0,237,170),(1359,97,0,238,1),(1360,134,0,238,2),(1361,115,0,238,1),(1362,99,0,238,4),(1363,143,0,238,0),(1364,144,0,238,0),(1365,145,0,238,0),(1366,146,0,238,0),(1367,147,0,238,0),(1368,97,0,239,1),(1369,134,0,239,2),(1370,115,0,239,1),(1371,99,0,239,1),(1372,93,0,239,50),(1373,142,0,239,166),(1374,97,0,240,1),(1375,134,0,240,2),(1376,115,0,240,1),(1377,99,0,240,1),(1378,93,0,240,53),(1379,142,0,240,166),(1380,97,0,241,1),(1381,134,0,241,2),(1382,115,0,241,1),(1383,99,0,241,1),(1384,93,0,241,54),(1385,142,0,241,166),(1386,97,0,242,1),(1387,134,0,242,2),(1388,115,0,242,1),(1389,99,0,242,1),(1390,93,0,242,50),(1391,142,0,242,167),(1392,97,0,243,1),(1393,134,0,243,2),(1394,115,0,243,1),(1395,99,0,243,1),(1396,93,0,243,53),(1397,142,0,243,167),(1398,97,0,244,1),(1399,134,0,244,2),(1400,115,0,244,1),(1401,99,0,244,1),(1402,93,0,244,54),(1403,142,0,244,167),(1404,97,0,245,1),(1405,134,0,245,2),(1406,115,0,245,1),(1407,99,0,245,1),(1408,93,0,245,50),(1409,142,0,245,168),(1410,97,0,246,1),(1411,134,0,246,2),(1412,115,0,246,1),(1413,99,0,246,1),(1414,93,0,246,53),(1415,142,0,246,168),(1416,97,0,247,1),(1417,134,0,247,2),(1418,115,0,247,1),(1419,99,0,247,1),(1420,93,0,247,54),(1421,142,0,247,168),(1422,97,0,248,1),(1423,134,0,248,2),(1424,115,0,248,1),(1425,99,0,248,1),(1426,93,0,248,50),(1427,142,0,248,169),(1428,97,0,249,1),(1429,134,0,249,2),(1430,115,0,249,1),(1431,99,0,249,1),(1432,93,0,249,53),(1433,142,0,249,169),(1434,97,0,250,1),(1435,134,0,250,2),(1436,115,0,250,1),(1437,99,0,250,1),(1438,93,0,250,54),(1439,142,0,250,169),(1440,97,0,251,1),(1441,134,0,251,2),(1442,115,0,251,1),(1443,99,0,251,1),(1444,93,0,251,50),(1445,142,0,251,170),(1446,97,0,252,1),(1447,134,0,252,2),(1448,115,0,252,1),(1449,99,0,252,1),(1450,93,0,252,53),(1451,142,0,252,170),(1452,97,0,253,1),(1453,134,0,253,2),(1454,115,0,253,1),(1455,99,0,253,1),(1456,93,0,253,54),(1457,142,0,253,170),(1458,97,0,254,1),(1459,134,0,254,2),(1460,115,0,254,1),(1461,99,0,254,4),(1462,143,0,254,0),(1463,144,0,254,1),(1464,145,0,254,1),(1465,146,0,254,0),(1466,147,0,254,0),(1467,97,0,255,1),(1468,134,0,255,2),(1469,115,0,255,1),(1470,99,0,255,1),(1471,93,0,255,56),(1472,142,0,255,166),(1473,97,0,256,1),(1474,134,0,256,2),(1475,115,0,256,1),(1476,99,0,256,1),(1477,93,0,256,58),(1478,142,0,256,166),(1479,97,0,257,1),(1480,134,0,257,2),(1481,115,0,257,1),(1482,99,0,257,1),(1483,93,0,257,60),(1484,142,0,257,166),(1485,97,0,258,1),(1486,134,0,258,2),(1487,115,0,258,1),(1488,99,0,258,1),(1489,93,0,258,56),(1490,142,0,258,167),(1491,97,0,259,1),(1492,134,0,259,2),(1493,115,0,259,1),(1494,99,0,259,1),(1495,93,0,259,58),(1496,142,0,259,167),(1497,97,0,260,1),(1498,134,0,260,2),(1499,115,0,260,1),(1500,99,0,260,1),(1501,93,0,260,60),(1502,142,0,260,167),(1503,97,0,261,1),(1504,134,0,261,2),(1505,115,0,261,1),(1506,99,0,261,1),(1507,93,0,261,56),(1508,142,0,261,168),(1509,97,0,262,1),(1510,134,0,262,2),(1511,115,0,262,1),(1512,99,0,262,1),(1513,93,0,262,58),(1514,142,0,262,168),(1515,97,0,263,1),(1516,134,0,263,2),(1517,115,0,263,1),(1518,99,0,263,1),(1519,93,0,263,60),(1520,142,0,263,168),(1521,97,0,264,1),(1522,134,0,264,2),(1523,115,0,264,1),(1524,99,0,264,1),(1525,93,0,264,56),(1526,142,0,264,169),(1527,97,0,265,1),(1528,134,0,265,2),(1529,115,0,265,1),(1530,99,0,265,1),(1531,93,0,265,58),(1532,142,0,265,169),(1533,97,0,266,1),(1534,134,0,266,2),(1535,115,0,266,1),(1536,99,0,266,1),(1537,93,0,266,60),(1538,142,0,266,169),(1539,97,0,267,1),(1540,134,0,267,2),(1541,115,0,267,1),(1542,99,0,267,1),(1543,93,0,267,56),(1544,142,0,267,170),(1545,97,0,268,1),(1546,134,0,268,2),(1547,115,0,268,1),(1548,99,0,268,1),(1549,93,0,268,58),(1550,142,0,268,170),(1551,97,0,269,1),(1552,134,0,269,2),(1553,115,0,269,1),(1554,99,0,269,1),(1555,93,0,269,60),(1556,142,0,269,170),(1557,97,0,270,1),(1558,134,0,270,2),(1559,115,0,270,1),(1560,99,0,270,4),(1561,143,0,270,0),(1562,144,0,270,1),(1563,145,0,270,0),(1564,146,0,270,0),(1565,147,0,270,1),(1566,97,0,271,1),(1567,134,0,271,2),(1568,115,0,271,1),(1569,99,0,271,1),(1570,93,0,271,53),(1571,142,0,271,166),(1572,97,0,272,1),(1573,134,0,272,2),(1574,115,0,272,1),(1575,99,0,272,1),(1576,93,0,272,56),(1577,142,0,272,166),(1578,97,0,273,1),(1579,134,0,273,2),(1580,115,0,273,1),(1581,99,0,273,1),(1582,93,0,273,58),(1583,142,0,273,166),(1584,97,0,274,1),(1585,134,0,274,2),(1586,115,0,274,1),(1587,99,0,274,1),(1588,93,0,274,53),(1589,142,0,274,167),(1590,97,0,275,1),(1591,134,0,275,2),(1592,115,0,275,1),(1593,99,0,275,1),(1594,93,0,275,56),(1595,142,0,275,167),(1596,97,0,276,1),(1597,134,0,276,2),(1598,115,0,276,1),(1599,99,0,276,1),(1600,93,0,276,58),(1601,142,0,276,167),(1602,97,0,277,1),(1603,134,0,277,2),(1604,115,0,277,1),(1605,99,0,277,1),(1606,93,0,277,53),(1607,142,0,277,168),(1608,97,0,278,1),(1609,134,0,278,2),(1610,115,0,278,1),(1611,99,0,278,1),(1612,93,0,278,56),(1613,142,0,278,168),(1614,97,0,279,1),(1615,134,0,279,2),(1616,115,0,279,1),(1617,99,0,279,1),(1618,93,0,279,58),(1619,142,0,279,168),(1620,97,0,280,1),(1621,134,0,280,2),(1622,115,0,280,1),(1623,99,0,280,1),(1624,93,0,280,53),(1625,142,0,280,169),(1626,97,0,281,1),(1627,134,0,281,2),(1628,115,0,281,1),(1629,99,0,281,1),(1630,93,0,281,56),(1631,142,0,281,169),(1632,97,0,282,1),(1633,134,0,282,2),(1634,115,0,282,1),(1635,99,0,282,1),(1636,93,0,282,58),(1637,142,0,282,169),(1638,97,0,283,1),(1639,134,0,283,2),(1640,115,0,283,1),(1641,99,0,283,1),(1642,93,0,283,53),(1643,142,0,283,170),(1644,97,0,284,1),(1645,134,0,284,2),(1646,115,0,284,1),(1647,99,0,284,1),(1648,93,0,284,56),(1649,142,0,284,170),(1650,97,0,285,1),(1651,134,0,285,2),(1652,115,0,285,1),(1653,99,0,285,1),(1654,93,0,285,58),(1655,142,0,285,170),(1656,97,0,286,1),(1657,134,0,286,2),(1658,115,0,286,1),(1659,99,0,286,4),(1660,143,0,286,0),(1661,144,0,286,1),(1662,145,0,286,0),(1663,146,0,286,1),(1664,147,0,286,0),(1665,97,0,287,1),(1666,134,0,287,2),(1667,115,0,287,1),(1668,99,0,287,1),(1669,93,0,287,49),(1670,142,0,287,166),(1671,97,0,288,1),(1672,134,0,288,2),(1673,115,0,288,1),(1674,99,0,288,1),(1675,93,0,288,50),(1676,142,0,288,166),(1677,97,0,289,1),(1678,134,0,289,2),(1679,115,0,289,1),(1680,99,0,289,1),(1681,93,0,289,57),(1682,142,0,289,166),(1683,97,0,290,1),(1684,134,0,290,2),(1685,115,0,290,1),(1686,99,0,290,1),(1687,93,0,290,49),(1688,142,0,290,167),(1689,97,0,291,1),(1690,134,0,291,2),(1691,115,0,291,1),(1692,99,0,291,1),(1693,93,0,291,50),(1694,142,0,291,167),(1695,97,0,292,1),(1696,134,0,292,2),(1697,115,0,292,1),(1698,99,0,292,1),(1699,93,0,292,57),(1700,142,0,292,167),(1701,97,0,293,1),(1702,134,0,293,2),(1703,115,0,293,1),(1704,99,0,293,1),(1705,93,0,293,49),(1706,142,0,293,168),(1707,97,0,294,1),(1708,134,0,294,2),(1709,115,0,294,1),(1710,99,0,294,1),(1711,93,0,294,50),(1712,142,0,294,168),(1713,97,0,295,1),(1714,134,0,295,2),(1715,115,0,295,1),(1716,99,0,295,1),(1717,93,0,295,57),(1718,142,0,295,168),(1719,97,0,296,1),(1720,134,0,296,2),(1721,115,0,296,1),(1722,99,0,296,1),(1723,93,0,296,49),(1724,142,0,296,169),(1725,97,0,297,1),(1726,134,0,297,2),(1727,115,0,297,1),(1728,99,0,297,1),(1729,93,0,297,50),(1730,142,0,297,169),(1731,97,0,298,1),(1732,134,0,298,2),(1733,115,0,298,1),(1734,99,0,298,1),(1735,93,0,298,57),(1736,142,0,298,169),(1737,97,0,299,1),(1738,134,0,299,2),(1739,115,0,299,1),(1740,99,0,299,1),(1741,93,0,299,49),(1742,142,0,299,170),(1743,97,0,300,1),(1744,134,0,300,2),(1745,115,0,300,1),(1746,99,0,300,1),(1747,93,0,300,50),(1748,142,0,300,170),(1749,97,0,301,1),(1750,134,0,301,2),(1751,115,0,301,1),(1752,99,0,301,1),(1753,93,0,301,57),(1754,142,0,301,170),(1755,97,0,302,1),(1756,134,0,302,2),(1757,115,0,302,1),(1758,99,0,302,4),(1759,143,0,302,1),(1760,144,0,302,0),(1761,145,0,302,0),(1762,146,0,302,0),(1763,147,0,302,0),(1764,97,0,303,1),(1765,134,0,303,2),(1766,115,0,303,1),(1767,99,0,303,1),(1768,93,0,303,49),(1769,142,0,303,166),(1770,97,0,304,1),(1771,134,0,304,2),(1772,115,0,304,1),(1773,99,0,304,1),(1774,93,0,304,58),(1775,142,0,304,166),(1776,97,0,305,1),(1777,134,0,305,2),(1778,115,0,305,1),(1779,99,0,305,1),(1780,93,0,305,60),(1781,142,0,305,166),(1782,97,0,306,1),(1783,134,0,306,2),(1784,115,0,306,1),(1785,99,0,306,1),(1786,93,0,306,49),(1787,142,0,306,167),(1788,97,0,307,1),(1789,134,0,307,2),(1790,115,0,307,1),(1791,99,0,307,1),(1792,93,0,307,58),(1793,142,0,307,167),(1794,97,0,308,1),(1795,134,0,308,2),(1796,115,0,308,1),(1797,99,0,308,1),(1798,93,0,308,60),(1799,142,0,308,167),(1800,97,0,309,1),(1801,134,0,309,2),(1802,115,0,309,1),(1803,99,0,309,1),(1804,93,0,309,49),(1805,142,0,309,168),(1806,97,0,310,1),(1807,134,0,310,2),(1808,115,0,310,1),(1809,99,0,310,1),(1810,93,0,310,58),(1811,142,0,310,168),(1812,97,0,311,1),(1813,134,0,311,2),(1814,115,0,311,1),(1815,99,0,311,1),(1816,93,0,311,60),(1817,142,0,311,168),(1818,97,0,312,1),(1819,134,0,312,2),(1820,115,0,312,1),(1821,99,0,312,1),(1822,93,0,312,49),(1823,142,0,312,169),(1824,97,0,313,1),(1825,134,0,313,2),(1826,115,0,313,1),(1827,99,0,313,1),(1828,93,0,313,58),(1829,142,0,313,169),(1830,97,0,314,1),(1831,134,0,314,2),(1832,115,0,314,1),(1833,99,0,314,1),(1834,93,0,314,60),(1835,142,0,314,169),(1836,97,0,315,1),(1837,134,0,315,2),(1838,115,0,315,1),(1839,99,0,315,1),(1840,93,0,315,49),(1841,142,0,315,170),(1842,97,0,316,1),(1843,134,0,316,2),(1844,115,0,316,1),(1845,99,0,316,1),(1846,93,0,316,58),(1847,142,0,316,170),(1848,97,0,317,1),(1849,134,0,317,2),(1850,115,0,317,1),(1851,99,0,317,1),(1852,93,0,317,60),(1853,142,0,317,170),(1854,97,0,318,1),(1855,134,0,318,2),(1856,115,0,318,1),(1857,99,0,318,4),(1858,143,0,318,0),(1859,144,0,318,0),(1860,145,0,318,0),(1861,146,0,318,0),(1862,147,0,318,0),(1863,97,0,319,1),(1864,134,0,319,2),(1865,115,0,319,1),(1866,99,0,319,1),(1867,93,0,319,50),(1868,142,0,319,166),(1869,97,0,320,1),(1870,134,0,320,2),(1871,115,0,320,1),(1872,99,0,320,1),(1873,93,0,320,52),(1874,142,0,320,166),(1875,97,0,321,1),(1876,134,0,321,2),(1877,115,0,321,1),(1878,99,0,321,1),(1879,93,0,321,53),(1880,142,0,321,166),(1881,97,0,322,1),(1882,134,0,322,2),(1883,115,0,322,1),(1884,99,0,322,1),(1885,93,0,322,50),(1886,142,0,322,167),(1887,97,0,323,1),(1888,134,0,323,2),(1889,115,0,323,1),(1890,99,0,323,1),(1891,93,0,323,52),(1892,142,0,323,167),(1893,97,0,324,1),(1894,134,0,324,2),(1895,115,0,324,1),(1896,99,0,324,1),(1897,93,0,324,53),(1898,142,0,324,167),(1899,97,0,325,1),(1900,134,0,325,2),(1901,115,0,325,1),(1902,99,0,325,1),(1903,93,0,325,50),(1904,142,0,325,168),(1905,97,0,326,1),(1906,134,0,326,2),(1907,115,0,326,1),(1908,99,0,326,1),(1909,93,0,326,52),(1910,142,0,326,168),(1911,97,0,327,1),(1912,134,0,327,2),(1913,115,0,327,1),(1914,99,0,327,1),(1915,93,0,327,53),(1916,142,0,327,168),(1917,97,0,328,1),(1918,134,0,328,2),(1919,115,0,328,1),(1920,99,0,328,1),(1921,93,0,328,50),(1922,142,0,328,169),(1923,97,0,329,1),(1924,134,0,329,2),(1925,115,0,329,1),(1926,99,0,329,1),(1927,93,0,329,52),(1928,142,0,329,169),(1929,97,0,330,1),(1930,134,0,330,2),(1931,115,0,330,1),(1932,99,0,330,1),(1933,93,0,330,53),(1934,142,0,330,169),(1935,97,0,331,1),(1936,134,0,331,2),(1937,115,0,331,1),(1938,99,0,331,1),(1939,93,0,331,50),(1940,142,0,331,170),(1941,97,0,332,1),(1942,134,0,332,2),(1943,115,0,332,1),(1944,99,0,332,1),(1945,93,0,332,52),(1946,142,0,332,170),(1947,97,0,333,1),(1948,134,0,333,2),(1949,115,0,333,1),(1950,99,0,333,1),(1951,93,0,333,53),(1952,142,0,333,170),(1953,97,0,334,1),(1954,134,0,334,2),(1955,115,0,334,1),(1956,99,0,334,4),(1957,143,0,334,0),(1958,144,0,334,0),(1959,145,0,334,1),(1960,146,0,334,0),(1961,147,0,334,0),(1962,97,0,335,1),(1963,134,0,335,2),(1964,115,0,335,1),(1965,99,0,335,1),(1966,93,0,335,50),(1967,142,0,335,166),(1968,97,0,336,1),(1969,134,0,336,2),(1970,115,0,336,1),(1971,99,0,336,1),(1972,93,0,336,59),(1973,142,0,336,166),(1974,97,0,337,1),(1975,134,0,337,2),(1976,115,0,337,1),(1977,99,0,337,1),(1978,93,0,337,60),(1979,142,0,337,166),(1980,97,0,338,1),(1981,134,0,338,2),(1982,115,0,338,1),(1983,99,0,338,1),(1984,93,0,338,50),(1985,142,0,338,167),(1986,97,0,339,1),(1987,134,0,339,2),(1988,115,0,339,1),(1989,99,0,339,1),(1990,93,0,339,59),(1991,142,0,339,167),(1992,97,0,340,1),(1993,134,0,340,2),(1994,115,0,340,1),(1995,99,0,340,1),(1996,93,0,340,60),(1997,142,0,340,167),(1998,97,0,341,1),(1999,134,0,341,2),(2000,115,0,341,1),(2001,99,0,341,1),(2002,93,0,341,50),(2003,142,0,341,168),(2004,97,0,342,1),(2005,134,0,342,2),(2006,115,0,342,1),(2007,99,0,342,1),(2008,93,0,342,59),(2009,142,0,342,168),(2010,97,0,343,1),(2011,134,0,343,2),(2012,115,0,343,1),(2013,99,0,343,1),(2014,93,0,343,60),(2015,142,0,343,168),(2016,97,0,344,1),(2017,134,0,344,2),(2018,115,0,344,1),(2019,99,0,344,1),(2020,93,0,344,50),(2021,142,0,344,169),(2022,97,0,345,1),(2023,134,0,345,2),(2024,115,0,345,1),(2025,99,0,345,1),(2026,93,0,345,59),(2027,142,0,345,169),(2028,97,0,346,1),(2029,134,0,346,2),(2030,115,0,346,1),(2031,99,0,346,1),(2032,93,0,346,60),(2033,142,0,346,169),(2034,97,0,347,1),(2035,134,0,347,2),(2036,115,0,347,1),(2037,99,0,347,1),(2038,93,0,347,50),(2039,142,0,347,170),(2040,97,0,348,1),(2041,134,0,348,2),(2042,115,0,348,1),(2043,99,0,348,1),(2044,93,0,348,59),(2045,142,0,348,170),(2046,97,0,349,1),(2047,134,0,349,2),(2048,115,0,349,1),(2049,99,0,349,1),(2050,93,0,349,60),(2051,142,0,349,170),(2052,97,0,350,1),(2053,134,0,350,2),(2054,115,0,350,1),(2055,99,0,350,4),(2056,143,0,350,0),(2057,144,0,350,0),(2058,145,0,350,0),(2059,146,0,350,0),(2060,147,0,350,0),(2061,97,0,351,1),(2062,134,0,351,2),(2063,115,0,351,1),(2064,99,0,351,1),(2065,93,0,351,49),(2066,142,0,351,166),(2067,97,0,352,1),(2068,134,0,352,2),(2069,115,0,352,1),(2070,99,0,352,1),(2071,93,0,352,56),(2072,142,0,352,166),(2073,97,0,353,1),(2074,134,0,353,2),(2075,115,0,353,1),(2076,99,0,353,1),(2077,93,0,353,58),(2078,142,0,353,166),(2079,97,0,354,1),(2080,134,0,354,2),(2081,115,0,354,1),(2082,99,0,354,1),(2083,93,0,354,49),(2084,142,0,354,167),(2085,97,0,355,1),(2086,134,0,355,2),(2087,115,0,355,1),(2088,99,0,355,1),(2089,93,0,355,56),(2090,142,0,355,167),(2091,97,0,356,1),(2092,134,0,356,2),(2093,115,0,356,1),(2094,99,0,356,1),(2095,93,0,356,58),(2096,142,0,356,167),(2097,97,0,357,1),(2098,134,0,357,2),(2099,115,0,357,1),(2100,99,0,357,1),(2101,93,0,357,49),(2102,142,0,357,168),(2103,97,0,358,1),(2104,134,0,358,2),(2105,115,0,358,1),(2106,99,0,358,1),(2107,93,0,358,56),(2108,142,0,358,168),(2109,97,0,359,1),(2110,134,0,359,2),(2111,115,0,359,1),(2112,99,0,359,1),(2113,93,0,359,58),(2114,142,0,359,168),(2115,97,0,360,1),(2116,134,0,360,2),(2117,115,0,360,1),(2118,99,0,360,1),(2119,93,0,360,49),(2120,142,0,360,169),(2121,97,0,361,1),(2122,134,0,361,2),(2123,115,0,361,1),(2124,99,0,361,1),(2125,93,0,361,56),(2126,142,0,361,169),(2127,97,0,362,1),(2128,134,0,362,2),(2129,115,0,362,1),(2130,99,0,362,1),(2131,93,0,362,58),(2132,142,0,362,169),(2133,97,0,363,1),(2134,134,0,363,2),(2135,115,0,363,1),(2136,99,0,363,1),(2137,93,0,363,49),(2138,142,0,363,170),(2139,97,0,364,1),(2140,134,0,364,2),(2141,115,0,364,1),(2142,99,0,364,1),(2143,93,0,364,56),(2144,142,0,364,170),(2145,97,0,365,1),(2146,134,0,365,2),(2147,115,0,365,1),(2148,99,0,365,1),(2149,93,0,365,58),(2150,142,0,365,170),(2151,97,0,366,1),(2152,134,0,366,2),(2153,115,0,366,1),(2154,99,0,366,4),(2155,143,0,366,0),(2156,144,0,366,0),(2157,145,0,366,0),(2158,146,0,366,0),(2159,147,0,366,0),(2160,97,0,367,1),(2161,134,0,367,2),(2162,115,0,367,1),(2163,99,0,367,1),(2164,93,0,367,49),(2165,142,0,367,166),(2166,97,0,368,1),(2167,134,0,368,2),(2168,115,0,368,1),(2169,99,0,368,1),(2170,93,0,368,53),(2171,142,0,368,166),(2172,97,0,369,1),(2173,134,0,369,2),(2174,115,0,369,1),(2175,99,0,369,1),(2176,93,0,369,58),(2177,142,0,369,166),(2178,97,0,370,1),(2179,134,0,370,2),(2180,115,0,370,1),(2181,99,0,370,1),(2182,93,0,370,49),(2183,142,0,370,167),(2184,97,0,371,1),(2185,134,0,371,2),(2186,115,0,371,1),(2187,99,0,371,1),(2188,93,0,371,53),(2189,142,0,371,167),(2190,97,0,372,1),(2191,134,0,372,2),(2192,115,0,372,1),(2193,99,0,372,1),(2194,93,0,372,58),(2195,142,0,372,167),(2196,97,0,373,1),(2197,134,0,373,2),(2198,115,0,373,1),(2199,99,0,373,1),(2200,93,0,373,49),(2201,142,0,373,168),(2202,97,0,374,1),(2203,134,0,374,2),(2204,115,0,374,1),(2205,99,0,374,1),(2206,93,0,374,53),(2207,142,0,374,168),(2208,97,0,375,1),(2209,134,0,375,2),(2210,115,0,375,1),(2211,99,0,375,1),(2212,93,0,375,58),(2213,142,0,375,168),(2214,97,0,376,1),(2215,134,0,376,2),(2216,115,0,376,1),(2217,99,0,376,1),(2218,93,0,376,49),(2219,142,0,376,169),(2220,97,0,377,1),(2221,134,0,377,2),(2222,115,0,377,1),(2223,99,0,377,1),(2224,93,0,377,53),(2225,142,0,377,169),(2226,97,0,378,1),(2227,134,0,378,2),(2228,115,0,378,1),(2229,99,0,378,1),(2230,93,0,378,58),(2231,142,0,378,169),(2232,97,0,379,1),(2233,134,0,379,2),(2234,115,0,379,1),(2235,99,0,379,1),(2236,93,0,379,49),(2237,142,0,379,170),(2238,97,0,380,1),(2239,134,0,380,2),(2240,115,0,380,1),(2241,99,0,380,1),(2242,93,0,380,53),(2243,142,0,380,170),(2244,97,0,381,1),(2245,134,0,381,2),(2246,115,0,381,1),(2247,99,0,381,1),(2248,93,0,381,58),(2249,142,0,381,170),(2250,97,0,382,1),(2251,134,0,382,2),(2252,115,0,382,1),(2253,99,0,382,4),(2254,143,0,382,0),(2255,144,0,382,1),(2256,145,0,382,0),(2257,146,0,382,0),(2258,147,0,382,1),(2259,97,0,383,1),(2260,134,0,383,2),(2261,115,0,383,1),(2262,99,0,383,1),(2263,93,0,383,50),(2264,142,0,383,166),(2265,97,0,384,1),(2266,134,0,384,2),(2267,115,0,384,1),(2268,99,0,384,1),(2269,93,0,384,53),(2270,142,0,384,166),(2271,97,0,385,1),(2272,134,0,385,2),(2273,115,0,385,1),(2274,99,0,385,1),(2275,93,0,385,57),(2276,142,0,385,166),(2277,97,0,386,1),(2278,134,0,386,2),(2279,115,0,386,1),(2280,99,0,386,1),(2281,93,0,386,50),(2282,142,0,386,167),(2283,97,0,387,1),(2284,134,0,387,2),(2285,115,0,387,1),(2286,99,0,387,1),(2287,93,0,387,53),(2288,142,0,387,167),(2289,97,0,388,1),(2290,134,0,388,2),(2291,115,0,388,1),(2292,99,0,388,1),(2293,93,0,388,57),(2294,142,0,388,167),(2295,97,0,389,1),(2296,134,0,389,2),(2297,115,0,389,1),(2298,99,0,389,1),(2299,93,0,389,50),(2300,142,0,389,168),(2301,97,0,390,1),(2302,134,0,390,2),(2303,115,0,390,1),(2304,99,0,390,1),(2305,93,0,390,53),(2306,142,0,390,168),(2307,97,0,391,1),(2308,134,0,391,2),(2309,115,0,391,1),(2310,99,0,391,1),(2311,93,0,391,57),(2312,142,0,391,168),(2313,97,0,392,1),(2314,134,0,392,2),(2315,115,0,392,1),(2316,99,0,392,1),(2317,93,0,392,50),(2318,142,0,392,169),(2319,97,0,393,1),(2320,134,0,393,2),(2321,115,0,393,1),(2322,99,0,393,1),(2323,93,0,393,53),(2324,142,0,393,169),(2325,97,0,394,1),(2326,134,0,394,2),(2327,115,0,394,1),(2328,99,0,394,1),(2329,93,0,394,57),(2330,142,0,394,169),(2331,97,0,395,1),(2332,134,0,395,2),(2333,115,0,395,1),(2334,99,0,395,1),(2335,93,0,395,50),(2336,142,0,395,170),(2337,97,0,396,1),(2338,134,0,396,2),(2339,115,0,396,1),(2340,99,0,396,1),(2341,93,0,396,53),(2342,142,0,396,170),(2343,97,0,397,1),(2344,134,0,397,2),(2345,115,0,397,1),(2346,99,0,397,1),(2347,93,0,397,57),(2348,142,0,397,170),(2349,97,0,398,1),(2350,134,0,398,2),(2351,115,0,398,1),(2352,99,0,398,4),(2353,143,0,398,1),(2354,144,0,398,0),(2355,145,0,398,1),(2356,146,0,398,0),(2357,147,0,398,0),(2358,97,0,399,1),(2359,134,0,399,2),(2360,115,0,399,1),(2361,99,0,399,1),(2362,93,0,399,49),(2363,142,0,399,166),(2364,97,0,400,1),(2365,134,0,400,2),(2366,115,0,400,1),(2367,99,0,400,1),(2368,93,0,400,53),(2369,142,0,400,166),(2370,97,0,401,1),(2371,134,0,401,2),(2372,115,0,401,1),(2373,99,0,401,1),(2374,93,0,401,58),(2375,142,0,401,166),(2376,97,0,402,1),(2377,134,0,402,2),(2378,115,0,402,1),(2379,99,0,402,1),(2380,93,0,402,49),(2381,142,0,402,167),(2382,97,0,403,1),(2383,134,0,403,2),(2384,115,0,403,1),(2385,99,0,403,1),(2386,93,0,403,53),(2387,142,0,403,167),(2388,97,0,404,1),(2389,134,0,404,2),(2390,115,0,404,1),(2391,99,0,404,1),(2392,93,0,404,58),(2393,142,0,404,167),(2394,97,0,405,1),(2395,134,0,405,2),(2396,115,0,405,1),(2397,99,0,405,1),(2398,93,0,405,49),(2399,142,0,405,168),(2400,97,0,406,1),(2401,134,0,406,2),(2402,115,0,406,1),(2403,99,0,406,1),(2404,93,0,406,53),(2405,142,0,406,168),(2406,97,0,407,1),(2407,134,0,407,2),(2408,115,0,407,1),(2409,99,0,407,1),(2410,93,0,407,58),(2411,142,0,407,168),(2412,97,0,408,1),(2413,134,0,408,2),(2414,115,0,408,1),(2415,99,0,408,1),(2416,93,0,408,49),(2417,142,0,408,169),(2418,97,0,409,1),(2419,134,0,409,2),(2420,115,0,409,1),(2421,99,0,409,1),(2422,93,0,409,53),(2423,142,0,409,169),(2424,97,0,410,1),(2425,134,0,410,2),(2426,115,0,410,1),(2427,99,0,410,1),(2428,93,0,410,58),(2429,142,0,410,169),(2430,97,0,411,1),(2431,134,0,411,2),(2432,115,0,411,1),(2433,99,0,411,1),(2434,93,0,411,49),(2435,142,0,411,170),(2436,97,0,412,1),(2437,134,0,412,2),(2438,115,0,412,1),(2439,99,0,412,1),(2440,93,0,412,53),(2441,142,0,412,170),(2442,97,0,413,1),(2443,134,0,413,2),(2444,115,0,413,1),(2445,99,0,413,1),(2446,93,0,413,58),(2447,142,0,413,170),(2448,97,0,414,1),(2449,134,0,414,2),(2450,115,0,414,1),(2451,99,0,414,4),(2452,143,0,414,0),(2453,144,0,414,0),(2454,145,0,414,0),(2455,146,0,414,1),(2456,147,0,414,0),(2457,97,0,415,1),(2458,134,0,415,2),(2459,115,0,415,1),(2460,99,0,415,1),(2461,93,0,415,49),(2462,142,0,415,166),(2463,97,0,416,1),(2464,134,0,416,2),(2465,115,0,416,1),(2466,99,0,416,1),(2467,93,0,416,50),(2468,142,0,416,166),(2469,97,0,417,1),(2470,134,0,417,2),(2471,115,0,417,1),(2472,99,0,417,1),(2473,93,0,417,56),(2474,142,0,417,166),(2475,97,0,418,1),(2476,134,0,418,2),(2477,115,0,418,1),(2478,99,0,418,1),(2479,93,0,418,49),(2480,142,0,418,167),(2481,97,0,419,1),(2482,134,0,419,2),(2483,115,0,419,1),(2484,99,0,419,1),(2485,93,0,419,50),(2486,142,0,419,167),(2487,97,0,420,1),(2488,134,0,420,2),(2489,115,0,420,1),(2490,99,0,420,1),(2491,93,0,420,56),(2492,142,0,420,167),(2493,97,0,421,1),(2494,134,0,421,2),(2495,115,0,421,1),(2496,99,0,421,1),(2497,93,0,421,49),(2498,142,0,421,168),(2499,97,0,422,1),(2500,134,0,422,2),(2501,115,0,422,1),(2502,99,0,422,1),(2503,93,0,422,50),(2504,142,0,422,168),(2505,97,0,423,1),(2506,134,0,423,2),(2507,115,0,423,1),(2508,99,0,423,1),(2509,93,0,423,56),(2510,142,0,423,168),(2511,97,0,424,1),(2512,134,0,424,2),(2513,115,0,424,1),(2514,99,0,424,1),(2515,93,0,424,49),(2516,142,0,424,169),(2517,97,0,425,1),(2518,134,0,425,2),(2519,115,0,425,1),(2520,99,0,425,1),(2521,93,0,425,50),(2522,142,0,425,169),(2523,97,0,426,1),(2524,134,0,426,2),(2525,115,0,426,1),(2526,99,0,426,1),(2527,93,0,426,56),(2528,142,0,426,169),(2529,97,0,427,1),(2530,134,0,427,2),(2531,115,0,427,1),(2532,99,0,427,1),(2533,93,0,427,49),(2534,142,0,427,170),(2535,97,0,428,1),(2536,134,0,428,2),(2537,115,0,428,1),(2538,99,0,428,1),(2539,93,0,428,50),(2540,142,0,428,170),(2541,97,0,429,1),(2542,134,0,429,2),(2543,115,0,429,1),(2544,99,0,429,1),(2545,93,0,429,56),(2546,142,0,429,170),(2547,97,0,430,1),(2548,134,0,430,2),(2549,115,0,430,1),(2550,99,0,430,4),(2551,143,0,430,0),(2552,144,0,430,0),(2553,145,0,430,0),(2554,146,0,430,0),(2555,147,0,430,0),(2556,97,0,431,1),(2557,134,0,431,2),(2558,115,0,431,1),(2559,99,0,431,1),(2560,93,0,431,49),(2561,142,0,431,166),(2562,97,0,432,1),(2563,134,0,432,2),(2564,115,0,432,1),(2565,99,0,432,1),(2566,93,0,432,56),(2567,142,0,432,166),(2568,97,0,433,1),(2569,134,0,433,2),(2570,115,0,433,1),(2571,99,0,433,1),(2572,93,0,433,58),(2573,142,0,433,166),(2574,97,0,434,1),(2575,134,0,434,2),(2576,115,0,434,1),(2577,99,0,434,1),(2578,93,0,434,49),(2579,142,0,434,167),(2580,97,0,435,1),(2581,134,0,435,2),(2582,115,0,435,1),(2583,99,0,435,1),(2584,93,0,435,56),(2585,142,0,435,167),(2586,97,0,436,1),(2587,134,0,436,2),(2588,115,0,436,1),(2589,99,0,436,1),(2590,93,0,436,58),(2591,142,0,436,167),(2592,97,0,437,1),(2593,134,0,437,2),(2594,115,0,437,1),(2595,99,0,437,1),(2596,93,0,437,49),(2597,142,0,437,168),(2598,97,0,438,1),(2599,134,0,438,2),(2600,115,0,438,1),(2601,99,0,438,1),(2602,93,0,438,56),(2603,142,0,438,168),(2604,97,0,439,1),(2605,134,0,439,2),(2606,115,0,439,1),(2607,99,0,439,1),(2608,93,0,439,58),(2609,142,0,439,168),(2610,97,0,440,1),(2611,134,0,440,2),(2612,115,0,440,1),(2613,99,0,440,1),(2614,93,0,440,49),(2615,142,0,440,169),(2616,97,0,441,1),(2617,134,0,441,2),(2618,115,0,441,1),(2619,99,0,441,1),(2620,93,0,441,56),(2621,142,0,441,169),(2622,97,0,442,1),(2623,134,0,442,2),(2624,115,0,442,1),(2625,99,0,442,1),(2626,93,0,442,58),(2627,142,0,442,169),(2628,97,0,443,1),(2629,134,0,443,2),(2630,115,0,443,1),(2631,99,0,443,1),(2632,93,0,443,49),(2633,142,0,443,170),(2634,97,0,444,1),(2635,134,0,444,2),(2636,115,0,444,1),(2637,99,0,444,1),(2638,93,0,444,56),(2639,142,0,444,170),(2640,97,0,445,1),(2641,134,0,445,2),(2642,115,0,445,1),(2643,99,0,445,1),(2644,93,0,445,58),(2645,142,0,445,170),(2646,97,0,446,1),(2647,134,0,446,2),(2648,115,0,446,1),(2649,99,0,446,4),(2650,143,0,446,0),(2651,144,0,446,1),(2652,145,0,446,0),(2653,146,0,446,1),(2654,147,0,446,0),(2655,97,0,447,1),(2656,134,0,447,2),(2657,115,0,447,1),(2658,99,0,447,1),(2659,93,0,447,49),(2660,142,0,447,166),(2661,97,0,448,1),(2662,134,0,448,2),(2663,115,0,448,1),(2664,99,0,448,1),(2665,93,0,448,50),(2666,142,0,448,166),(2667,97,0,449,1),(2668,134,0,449,2),(2669,115,0,449,1),(2670,99,0,449,1),(2671,93,0,449,57),(2672,142,0,449,166),(2673,97,0,450,1),(2674,134,0,450,2),(2675,115,0,450,1),(2676,99,0,450,1),(2677,93,0,450,49),(2678,142,0,450,167),(2679,97,0,451,1),(2680,134,0,451,2),(2681,115,0,451,1),(2682,99,0,451,1),(2683,93,0,451,50),(2684,142,0,451,167),(2685,97,0,452,1),(2686,134,0,452,2),(2687,115,0,452,1),(2688,99,0,452,1),(2689,93,0,452,57),(2690,142,0,452,167),(2691,97,0,453,1),(2692,134,0,453,2),(2693,115,0,453,1),(2694,99,0,453,1),(2695,93,0,453,49),(2696,142,0,453,168),(2697,97,0,454,1),(2698,134,0,454,2),(2699,115,0,454,1),(2700,99,0,454,1),(2701,93,0,454,50),(2702,142,0,454,168),(2703,97,0,455,1),(2704,134,0,455,2),(2705,115,0,455,1),(2706,99,0,455,1),(2707,93,0,455,57),(2708,142,0,455,168),(2709,97,0,456,1),(2710,134,0,456,2),(2711,115,0,456,1),(2712,99,0,456,1),(2713,93,0,456,49),(2714,142,0,456,169),(2715,97,0,457,1),(2716,134,0,457,2),(2717,115,0,457,1),(2718,99,0,457,1),(2719,93,0,457,50),(2720,142,0,457,169),(2721,97,0,458,1),(2722,134,0,458,2),(2723,115,0,458,1),(2724,99,0,458,1),(2725,93,0,458,57),(2726,142,0,458,169),(2727,97,0,459,1),(2728,134,0,459,2),(2729,115,0,459,1),(2730,99,0,459,1),(2731,93,0,459,49),(2732,142,0,459,170),(2733,97,0,460,1),(2734,134,0,460,2),(2735,115,0,460,1),(2736,99,0,460,1),(2737,93,0,460,50),(2738,142,0,460,170),(2739,97,0,461,1),(2740,134,0,461,2),(2741,115,0,461,1),(2742,99,0,461,1),(2743,93,0,461,57),(2744,142,0,461,170),(2745,97,0,462,1),(2746,134,0,462,2),(2747,115,0,462,1),(2748,99,0,462,4),(2749,143,0,462,1),(2750,144,0,462,1),(2751,145,0,462,0),(2752,146,0,462,0),(2753,147,0,462,0),(2754,97,0,463,1),(2755,134,0,463,2),(2756,115,0,463,1),(2757,99,0,463,1),(2758,93,0,463,49),(2759,142,0,463,166),(2760,97,0,464,1),(2761,134,0,464,2),(2762,115,0,464,1),(2763,99,0,464,1),(2764,93,0,464,50),(2765,142,0,464,166),(2766,97,0,465,1),(2767,134,0,465,2),(2768,115,0,465,1),(2769,99,0,465,1),(2770,93,0,465,58),(2771,142,0,465,166),(2772,97,0,466,1),(2773,134,0,466,2),(2774,115,0,466,1),(2775,99,0,466,1),(2776,93,0,466,49),(2777,142,0,466,167),(2778,97,0,467,1),(2779,134,0,467,2),(2780,115,0,467,1),(2781,99,0,467,1),(2782,93,0,467,50),(2783,142,0,467,167),(2784,97,0,468,1),(2785,134,0,468,2),(2786,115,0,468,1),(2787,99,0,468,1),(2788,93,0,468,58),(2789,142,0,468,167),(2790,97,0,469,1),(2791,134,0,469,2),(2792,115,0,469,1),(2793,99,0,469,1),(2794,93,0,469,49),(2795,142,0,469,168),(2796,97,0,470,1),(2797,134,0,470,2),(2798,115,0,470,1),(2799,99,0,470,1),(2800,93,0,470,50),(2801,142,0,470,168),(2802,97,0,471,1),(2803,134,0,471,2),(2804,115,0,471,1),(2805,99,0,471,1),(2806,93,0,471,58),(2807,142,0,471,168),(2808,97,0,472,1),(2809,134,0,472,2),(2810,115,0,472,1),(2811,99,0,472,1),(2812,93,0,472,49),(2813,142,0,472,169),(2814,97,0,473,1),(2815,134,0,473,2),(2816,115,0,473,1),(2817,99,0,473,1),(2818,93,0,473,50),(2819,142,0,473,169),(2820,97,0,474,1),(2821,134,0,474,2),(2822,115,0,474,1),(2823,99,0,474,1),(2824,93,0,474,58),(2825,142,0,474,169),(2826,97,0,475,1),(2827,134,0,475,2),(2828,115,0,475,1),(2829,99,0,475,1),(2830,93,0,475,49),(2831,142,0,475,170),(2832,97,0,476,1),(2833,134,0,476,2),(2834,115,0,476,1),(2835,99,0,476,1),(2836,93,0,476,50),(2837,142,0,476,170),(2838,97,0,477,1),(2839,134,0,477,2),(2840,115,0,477,1),(2841,99,0,477,1),(2842,93,0,477,58),(2843,142,0,477,170),(2844,97,0,478,1),(2845,134,0,478,2),(2846,115,0,478,1),(2847,99,0,478,4),(2848,143,0,478,0),(2849,144,0,478,0),(2850,145,0,478,1),(2851,146,0,478,0),(2852,147,0,478,0),(2853,97,0,479,1),(2854,134,0,479,2),(2855,115,0,479,1),(2856,99,0,479,1),(2857,93,0,479,50),(2858,142,0,479,166),(2859,97,0,480,1),(2860,134,0,480,2),(2861,115,0,480,1),(2862,99,0,480,1),(2863,93,0,480,53),(2864,142,0,480,166),(2865,97,0,481,1),(2866,134,0,481,2),(2867,115,0,481,1),(2868,99,0,481,1),(2869,93,0,481,60),(2870,142,0,481,166),(2871,97,0,482,1),(2872,134,0,482,2),(2873,115,0,482,1),(2874,99,0,482,1),(2875,93,0,482,50),(2876,142,0,482,167),(2877,97,0,483,1),(2878,134,0,483,2),(2879,115,0,483,1),(2880,99,0,483,1),(2881,93,0,483,53),(2882,142,0,483,167),(2883,97,0,484,1),(2884,134,0,484,2),(2885,115,0,484,1),(2886,99,0,484,1),(2887,93,0,484,60),(2888,142,0,484,167),(2889,97,0,485,1),(2890,134,0,485,2),(2891,115,0,485,1),(2892,99,0,485,1),(2893,93,0,485,50),(2894,142,0,485,168),(2895,97,0,486,1),(2896,134,0,486,2),(2897,115,0,486,1),(2898,99,0,486,1),(2899,93,0,486,53),(2900,142,0,486,168),(2901,97,0,487,1),(2902,134,0,487,2),(2903,115,0,487,1),(2904,99,0,487,1),(2905,93,0,487,60),(2906,142,0,487,168),(2907,97,0,488,1),(2908,134,0,488,2),(2909,115,0,488,1),(2910,99,0,488,1),(2911,93,0,488,50),(2912,142,0,488,169),(2913,97,0,489,1),(2914,134,0,489,2),(2915,115,0,489,1),(2916,99,0,489,1),(2917,93,0,489,53),(2918,142,0,489,169),(2919,97,0,490,1),(2920,134,0,490,2),(2921,115,0,490,1),(2922,99,0,490,1),(2923,93,0,490,60),(2924,142,0,490,169),(2925,97,0,491,1),(2926,134,0,491,2),(2927,115,0,491,1),(2928,99,0,491,1),(2929,93,0,491,50),(2930,142,0,491,170),(2931,97,0,492,1),(2932,134,0,492,2),(2933,115,0,492,1),(2934,99,0,492,1),(2935,93,0,492,53),(2936,142,0,492,170),(2937,97,0,493,1),(2938,134,0,493,2),(2939,115,0,493,1),(2940,99,0,493,1),(2941,93,0,493,60),(2942,142,0,493,170),(2943,97,0,494,1),(2944,134,0,494,2),(2945,115,0,494,1),(2946,99,0,494,4),(2947,143,0,494,0),(2948,144,0,494,1),(2949,145,0,494,0),(2950,146,0,494,0),(2951,147,0,494,1),(2952,97,0,495,1),(2953,134,0,495,2),(2954,115,0,495,1),(2955,99,0,495,1),(2956,93,0,495,49),(2957,142,0,495,166),(2958,97,0,496,1),(2959,134,0,496,2),(2960,115,0,496,1),(2961,99,0,496,1),(2962,93,0,496,50),(2963,142,0,496,166),(2964,97,0,497,1),(2965,134,0,497,2),(2966,115,0,497,1),(2967,99,0,497,1),(2968,93,0,497,58),(2969,142,0,497,166),(2970,97,0,498,1),(2971,134,0,498,2),(2972,115,0,498,1),(2973,99,0,498,1),(2974,93,0,498,49),(2975,142,0,498,167),(2976,97,0,499,1),(2977,134,0,499,2),(2978,115,0,499,1),(2979,99,0,499,1),(2980,93,0,499,50),(2981,142,0,499,167),(2982,97,0,500,1),(2983,134,0,500,2),(2984,115,0,500,1),(2985,99,0,500,1),(2986,93,0,500,58),(2987,142,0,500,167),(2988,97,0,501,1),(2989,134,0,501,2),(2990,115,0,501,1),(2991,99,0,501,1),(2992,93,0,501,49),(2993,142,0,501,168),(2994,97,0,502,1),(2995,134,0,502,2),(2996,115,0,502,1),(2997,99,0,502,1),(2998,93,0,502,50),(2999,142,0,502,168),(3000,97,0,503,1),(3001,134,0,503,2),(3002,115,0,503,1),(3003,99,0,503,1),(3004,93,0,503,58),(3005,142,0,503,168),(3006,97,0,504,1),(3007,134,0,504,2),(3008,115,0,504,1),(3009,99,0,504,1),(3010,93,0,504,49),(3011,142,0,504,169),(3012,97,0,505,1),(3013,134,0,505,2),(3014,115,0,505,1),(3015,99,0,505,1),(3016,93,0,505,50),(3017,142,0,505,169),(3018,97,0,506,1),(3019,134,0,506,2),(3020,115,0,506,1),(3021,99,0,506,1),(3022,93,0,506,58),(3023,142,0,506,169),(3024,97,0,507,1),(3025,134,0,507,2),(3026,115,0,507,1),(3027,99,0,507,1),(3028,93,0,507,49),(3029,142,0,507,170),(3030,97,0,508,1),(3031,134,0,508,2),(3032,115,0,508,1),(3033,99,0,508,1),(3034,93,0,508,50),(3035,142,0,508,170),(3036,97,0,509,1),(3037,134,0,509,2),(3038,115,0,509,1),(3039,99,0,509,1),(3040,93,0,509,58),(3041,142,0,509,170),(3042,97,0,510,1),(3043,134,0,510,2),(3044,115,0,510,1),(3045,99,0,510,4),(3046,143,0,510,0),(3047,144,0,510,0),(3048,145,0,510,0),(3049,146,0,510,1),(3050,147,0,510,0),(3051,97,0,511,1),(3052,134,0,511,2),(3053,115,0,511,1),(3054,99,0,511,1),(3055,93,0,511,52),(3056,142,0,511,166),(3057,97,0,512,1),(3058,134,0,512,2),(3059,115,0,512,1),(3060,99,0,512,1),(3061,93,0,512,53),(3062,142,0,512,166),(3063,97,0,513,1),(3064,134,0,513,2),(3065,115,0,513,1),(3066,99,0,513,1),(3067,93,0,513,56),(3068,142,0,513,166),(3069,97,0,514,1),(3070,134,0,514,2),(3071,115,0,514,1),(3072,99,0,514,1),(3073,93,0,514,52),(3074,142,0,514,167),(3075,97,0,515,1),(3076,134,0,515,2),(3077,115,0,515,1),(3078,99,0,515,1),(3079,93,0,515,53),(3080,142,0,515,167),(3081,97,0,516,1),(3082,134,0,516,2),(3083,115,0,516,1),(3084,99,0,516,1),(3085,93,0,516,56),(3086,142,0,516,167),(3087,97,0,517,1),(3088,134,0,517,2),(3089,115,0,517,1),(3090,99,0,517,1),(3091,93,0,517,52),(3092,142,0,517,168),(3093,97,0,518,1),(3094,134,0,518,2),(3095,115,0,518,1),(3096,99,0,518,1),(3097,93,0,518,53),(3098,142,0,518,168),(3099,97,0,519,1),(3100,134,0,519,2),(3101,115,0,519,1),(3102,99,0,519,1),(3103,93,0,519,56),(3104,142,0,519,168),(3105,97,0,520,1),(3106,134,0,520,2),(3107,115,0,520,1),(3108,99,0,520,1),(3109,93,0,520,52),(3110,142,0,520,169),(3111,97,0,521,1),(3112,134,0,521,2),(3113,115,0,521,1),(3114,99,0,521,1),(3115,93,0,521,53),(3116,142,0,521,169),(3117,97,0,522,1),(3118,134,0,522,2),(3119,115,0,522,1),(3120,99,0,522,1),(3121,93,0,522,56),(3122,142,0,522,169),(3123,97,0,523,1),(3124,134,0,523,2),(3125,115,0,523,1),(3126,99,0,523,1),(3127,93,0,523,52),(3128,142,0,523,170),(3129,97,0,524,1),(3130,134,0,524,2),(3131,115,0,524,1),(3132,99,0,524,1),(3133,93,0,524,53),(3134,142,0,524,170),(3135,97,0,525,1),(3136,134,0,525,2),(3137,115,0,525,1),(3138,99,0,525,1),(3139,93,0,525,56),(3140,142,0,525,170),(3141,97,0,526,1),(3142,134,0,526,2),(3143,115,0,526,1),(3144,99,0,526,4),(3145,143,0,526,0),(3146,144,0,526,1),(3147,145,0,526,1),(3148,146,0,526,0),(3149,147,0,526,0),(3150,97,0,527,1),(3151,134,0,527,2),(3152,115,0,527,1),(3153,99,0,527,1),(3154,93,0,527,50),(3155,142,0,527,166),(3156,97,0,528,1),(3157,134,0,528,2),(3158,115,0,528,1),(3159,99,0,528,1),(3160,93,0,528,53),(3161,142,0,528,166),(3162,97,0,529,1),(3163,134,0,529,2),(3164,115,0,529,1),(3165,99,0,529,1),(3166,93,0,529,60),(3167,142,0,529,166),(3168,97,0,530,1),(3169,134,0,530,2),(3170,115,0,530,1),(3171,99,0,530,1),(3172,93,0,530,50),(3173,142,0,530,167),(3174,97,0,531,1),(3175,134,0,531,2),(3176,115,0,531,1),(3177,99,0,531,1),(3178,93,0,531,53),(3179,142,0,531,167),(3180,97,0,532,1),(3181,134,0,532,2),(3182,115,0,532,1),(3183,99,0,532,1),(3184,93,0,532,60),(3185,142,0,532,167),(3186,97,0,533,1),(3187,134,0,533,2),(3188,115,0,533,1),(3189,99,0,533,1),(3190,93,0,533,50),(3191,142,0,533,168),(3192,97,0,534,1),(3193,134,0,534,2),(3194,115,0,534,1),(3195,99,0,534,1),(3196,93,0,534,53),(3197,142,0,534,168),(3198,97,0,535,1),(3199,134,0,535,2),(3200,115,0,535,1),(3201,99,0,535,1),(3202,93,0,535,60),(3203,142,0,535,168),(3204,97,0,536,1),(3205,134,0,536,2),(3206,115,0,536,1),(3207,99,0,536,1),(3208,93,0,536,50),(3209,142,0,536,169),(3210,97,0,537,1),(3211,134,0,537,2),(3212,115,0,537,1),(3213,99,0,537,1),(3214,93,0,537,53),(3215,142,0,537,169),(3216,97,0,538,1),(3217,134,0,538,2),(3218,115,0,538,1),(3219,99,0,538,1),(3220,93,0,538,60),(3221,142,0,538,169),(3222,97,0,539,1),(3223,134,0,539,2),(3224,115,0,539,1),(3225,99,0,539,1),(3226,93,0,539,50),(3227,142,0,539,170),(3228,97,0,540,1),(3229,134,0,540,2),(3230,115,0,540,1),(3231,99,0,540,1),(3232,93,0,540,53),(3233,142,0,540,170),(3234,97,0,541,1),(3235,134,0,541,2),(3236,115,0,541,1),(3237,99,0,541,1),(3238,93,0,541,60),(3239,142,0,541,170),(3240,97,0,542,1),(3241,134,0,542,2),(3242,115,0,542,1),(3243,99,0,542,4),(3244,143,0,542,0),(3245,144,0,542,0),(3246,145,0,542,0),(3247,146,0,542,1),(3248,147,0,542,0),(3249,97,0,543,1),(3250,134,0,543,2),(3251,115,0,543,1),(3252,99,0,543,1),(3253,93,0,543,49),(3254,142,0,543,166),(3255,97,0,544,1),(3256,134,0,544,2),(3257,115,0,544,1),(3258,99,0,544,1),(3259,93,0,544,51),(3260,142,0,544,166),(3261,97,0,545,1),(3262,134,0,545,2),(3263,115,0,545,1),(3264,99,0,545,1),(3265,93,0,545,60),(3266,142,0,545,166),(3267,97,0,546,1),(3268,134,0,546,2),(3269,115,0,546,1),(3270,99,0,546,1),(3271,93,0,546,49),(3272,142,0,546,167),(3273,97,0,547,1),(3274,134,0,547,2),(3275,115,0,547,1),(3276,99,0,547,1),(3277,93,0,547,51),(3278,142,0,547,167),(3279,97,0,548,1),(3280,134,0,548,2),(3281,115,0,548,1),(3282,99,0,548,1),(3283,93,0,548,60),(3284,142,0,548,167),(3285,97,0,549,1),(3286,134,0,549,2),(3287,115,0,549,1),(3288,99,0,549,1),(3289,93,0,549,49),(3290,142,0,549,168),(3291,97,0,550,1),(3292,134,0,550,2),(3293,115,0,550,1),(3294,99,0,550,1),(3295,93,0,550,51),(3296,142,0,550,168),(3297,97,0,551,1),(3298,134,0,551,2),(3299,115,0,551,1),(3300,99,0,551,1),(3301,93,0,551,60),(3302,142,0,551,168),(3303,97,0,552,1),(3304,134,0,552,2),(3305,115,0,552,1),(3306,99,0,552,1),(3307,93,0,552,49),(3308,142,0,552,169),(3309,97,0,553,1),(3310,134,0,553,2),(3311,115,0,553,1),(3312,99,0,553,1),(3313,93,0,553,51),(3314,142,0,553,169),(3315,97,0,554,1),(3316,134,0,554,2),(3317,115,0,554,1),(3318,99,0,554,1),(3319,93,0,554,60),(3320,142,0,554,169),(3321,97,0,555,1),(3322,134,0,555,2),(3323,115,0,555,1),(3324,99,0,555,1),(3325,93,0,555,49),(3326,142,0,555,170),(3327,97,0,556,1),(3328,134,0,556,2),(3329,115,0,556,1),(3330,99,0,556,1),(3331,93,0,556,51),(3332,142,0,556,170),(3333,97,0,557,1),(3334,134,0,557,2),(3335,115,0,557,1),(3336,99,0,557,1),(3337,93,0,557,60),(3338,142,0,557,170),(3339,97,0,558,1),(3340,134,0,558,2),(3341,115,0,558,1),(3342,99,0,558,4),(3343,143,0,558,0),(3344,144,0,558,0),(3345,145,0,558,0),(3346,146,0,558,0),(3347,147,0,558,0),(3348,97,0,559,1),(3349,134,0,559,2),(3350,115,0,559,1),(3351,99,0,559,1),(3352,93,0,559,49),(3353,142,0,559,166),(3354,97,0,560,1),(3355,134,0,560,2),(3356,115,0,560,1),(3357,99,0,560,1),(3358,93,0,560,50),(3359,142,0,560,166),(3360,97,0,561,1),(3361,134,0,561,2),(3362,115,0,561,1),(3363,99,0,561,1),(3364,93,0,561,52),(3365,142,0,561,166),(3366,97,0,562,1),(3367,134,0,562,2),(3368,115,0,562,1),(3369,99,0,562,1),(3370,93,0,562,49),(3371,142,0,562,167),(3372,97,0,563,1),(3373,134,0,563,2),(3374,115,0,563,1),(3375,99,0,563,1),(3376,93,0,563,50),(3377,142,0,563,167),(3378,97,0,564,1),(3379,134,0,564,2),(3380,115,0,564,1),(3381,99,0,564,1),(3382,93,0,564,52),(3383,142,0,564,167),(3384,97,0,565,1),(3385,134,0,565,2),(3386,115,0,565,1),(3387,99,0,565,1),(3388,93,0,565,49),(3389,142,0,565,168),(3390,97,0,566,1),(3391,134,0,566,2),(3392,115,0,566,1),(3393,99,0,566,1),(3394,93,0,566,50),(3395,142,0,566,168),(3396,97,0,567,1),(3397,134,0,567,2),(3398,115,0,567,1),(3399,99,0,567,1),(3400,93,0,567,52),(3401,142,0,567,168),(3402,97,0,568,1),(3403,134,0,568,2),(3404,115,0,568,1),(3405,99,0,568,1),(3406,93,0,568,49),(3407,142,0,568,169),(3408,97,0,569,1),(3409,134,0,569,2),(3410,115,0,569,1),(3411,99,0,569,1),(3412,93,0,569,50),(3413,142,0,569,169),(3414,97,0,570,1),(3415,134,0,570,2),(3416,115,0,570,1),(3417,99,0,570,1),(3418,93,0,570,52),(3419,142,0,570,169),(3420,97,0,571,1),(3421,134,0,571,2),(3422,115,0,571,1),(3423,99,0,571,1),(3424,93,0,571,49),(3425,142,0,571,170),(3426,97,0,572,1),(3427,134,0,572,2),(3428,115,0,572,1),(3429,99,0,572,1),(3430,93,0,572,50),(3431,142,0,572,170),(3432,97,0,573,1),(3433,134,0,573,2),(3434,115,0,573,1),(3435,99,0,573,1),(3436,93,0,573,52),(3437,142,0,573,170),(3438,97,0,574,1),(3439,134,0,574,2),(3440,115,0,574,1),(3441,99,0,574,4),(3442,143,0,574,0),(3443,144,0,574,0),(3444,145,0,574,0),(3445,146,0,574,0),(3446,147,0,574,1),(3447,97,0,575,1),(3448,134,0,575,2),(3449,115,0,575,1),(3450,99,0,575,1),(3451,93,0,575,49),(3452,142,0,575,166),(3453,97,0,576,1),(3454,134,0,576,2),(3455,115,0,576,1),(3456,99,0,576,1),(3457,93,0,576,50),(3458,142,0,576,166),(3459,97,0,577,1),(3460,134,0,577,2),(3461,115,0,577,1),(3462,99,0,577,1),(3463,93,0,577,58),(3464,142,0,577,166),(3465,97,0,578,1),(3466,134,0,578,2),(3467,115,0,578,1),(3468,99,0,578,1),(3469,93,0,578,49),(3470,142,0,578,167),(3471,97,0,579,1),(3472,134,0,579,2),(3473,115,0,579,1),(3474,99,0,579,1),(3475,93,0,579,50),(3476,142,0,579,167),(3477,97,0,580,1),(3478,134,0,580,2),(3479,115,0,580,1),(3480,99,0,580,1),(3481,93,0,580,58),(3482,142,0,580,167),(3483,97,0,581,1),(3484,134,0,581,2),(3485,115,0,581,1),(3486,99,0,581,1),(3487,93,0,581,49),(3488,142,0,581,168),(3489,97,0,582,1),(3490,134,0,582,2),(3491,115,0,582,1),(3492,99,0,582,1),(3493,93,0,582,50),(3494,142,0,582,168),(3495,97,0,583,1),(3496,134,0,583,2),(3497,115,0,583,1),(3498,99,0,583,1),(3499,93,0,583,58),(3500,142,0,583,168),(3501,97,0,584,1),(3502,134,0,584,2),(3503,115,0,584,1),(3504,99,0,584,1),(3505,93,0,584,49),(3506,142,0,584,169),(3507,97,0,585,1),(3508,134,0,585,2),(3509,115,0,585,1),(3510,99,0,585,1),(3511,93,0,585,50),(3512,142,0,585,169),(3513,97,0,586,1),(3514,134,0,586,2),(3515,115,0,586,1),(3516,99,0,586,1),(3517,93,0,586,58),(3518,142,0,586,169),(3519,97,0,587,1),(3520,134,0,587,2),(3521,115,0,587,1),(3522,99,0,587,1),(3523,93,0,587,49),(3524,142,0,587,170),(3525,97,0,588,1),(3526,134,0,588,2),(3527,115,0,588,1),(3528,99,0,588,1),(3529,93,0,588,50),(3530,142,0,588,170),(3531,97,0,589,1),(3532,134,0,589,2),(3533,115,0,589,1),(3534,99,0,589,1),(3535,93,0,589,58),(3536,142,0,589,170),(3537,97,0,590,1),(3538,134,0,590,2),(3539,115,0,590,1),(3540,99,0,590,4),(3541,143,0,590,0),(3542,144,0,590,0),(3543,145,0,590,0),(3544,146,0,590,0),(3545,147,0,590,0),(3546,97,0,591,1),(3547,134,0,591,2),(3548,115,0,591,1),(3549,99,0,591,1),(3550,93,0,591,49),(3551,142,0,591,166),(3552,97,0,592,1),(3553,134,0,592,2),(3554,115,0,592,1),(3555,99,0,592,1),(3556,93,0,592,53),(3557,142,0,592,166),(3558,97,0,593,1),(3559,134,0,593,2),(3560,115,0,593,1),(3561,99,0,593,1),(3562,93,0,593,59),(3563,142,0,593,166),(3564,97,0,594,1),(3565,134,0,594,2),(3566,115,0,594,1),(3567,99,0,594,1),(3568,93,0,594,49),(3569,142,0,594,167),(3570,97,0,595,1),(3571,134,0,595,2),(3572,115,0,595,1),(3573,99,0,595,1),(3574,93,0,595,53),(3575,142,0,595,167),(3576,97,0,596,1),(3577,134,0,596,2),(3578,115,0,596,1),(3579,99,0,596,1),(3580,93,0,596,59),(3581,142,0,596,167),(3582,97,0,597,1),(3583,134,0,597,2),(3584,115,0,597,1),(3585,99,0,597,1),(3586,93,0,597,49),(3587,142,0,597,168),(3588,97,0,598,1),(3589,134,0,598,2),(3590,115,0,598,1),(3591,99,0,598,1),(3592,93,0,598,53),(3593,142,0,598,168),(3594,97,0,599,1),(3595,134,0,599,2),(3596,115,0,599,1),(3597,99,0,599,1),(3598,93,0,599,59),(3599,142,0,599,168),(3600,97,0,600,1),(3601,134,0,600,2),(3602,115,0,600,1),(3603,99,0,600,1),(3604,93,0,600,49),(3605,142,0,600,169),(3606,97,0,601,1),(3607,134,0,601,2),(3608,115,0,601,1),(3609,99,0,601,1),(3610,93,0,601,53),(3611,142,0,601,169),(3612,97,0,602,1),(3613,134,0,602,2),(3614,115,0,602,1),(3615,99,0,602,1),(3616,93,0,602,59),(3617,142,0,602,169),(3618,97,0,603,1),(3619,134,0,603,2),(3620,115,0,603,1),(3621,99,0,603,1),(3622,93,0,603,49),(3623,142,0,603,170),(3624,97,0,604,1),(3625,134,0,604,2),(3626,115,0,604,1),(3627,99,0,604,1),(3628,93,0,604,53),(3629,142,0,604,170),(3630,97,0,605,1),(3631,134,0,605,2),(3632,115,0,605,1),(3633,99,0,605,1),(3634,93,0,605,59),(3635,142,0,605,170),(3636,97,0,606,1),(3637,134,0,606,2),(3638,115,0,606,1),(3639,99,0,606,4),(3640,143,0,606,0),(3641,144,0,606,0),(3642,145,0,606,0),(3643,146,0,606,0),(3644,147,0,606,0),(3645,97,0,607,1),(3646,134,0,607,2),(3647,115,0,607,1),(3648,99,0,607,1),(3649,93,0,607,49),(3650,142,0,607,166),(3651,97,0,608,1),(3652,134,0,608,2),(3653,115,0,608,1),(3654,99,0,608,1),(3655,93,0,608,50),(3656,142,0,608,166),(3657,97,0,609,1),(3658,134,0,609,2),(3659,115,0,609,1),(3660,99,0,609,1),(3661,93,0,609,58),(3662,142,0,609,166),(3663,97,0,610,1),(3664,134,0,610,2),(3665,115,0,610,1),(3666,99,0,610,1),(3667,93,0,610,49),(3668,142,0,610,167),(3669,97,0,611,1),(3670,134,0,611,2),(3671,115,0,611,1),(3672,99,0,611,1),(3673,93,0,611,50),(3674,142,0,611,167),(3675,97,0,612,1),(3676,134,0,612,2),(3677,115,0,612,1),(3678,99,0,612,1),(3679,93,0,612,58),(3680,142,0,612,167),(3681,97,0,613,1),(3682,134,0,613,2),(3683,115,0,613,1),(3684,99,0,613,1),(3685,93,0,613,49),(3686,142,0,613,168),(3687,97,0,614,1),(3688,134,0,614,2),(3689,115,0,614,1),(3690,99,0,614,1),(3691,93,0,614,50),(3692,142,0,614,168),(3693,97,0,615,1),(3694,134,0,615,2),(3695,115,0,615,1),(3696,99,0,615,1),(3697,93,0,615,58),(3698,142,0,615,168),(3699,97,0,616,1),(3700,134,0,616,2),(3701,115,0,616,1),(3702,99,0,616,1),(3703,93,0,616,49),(3704,142,0,616,169),(3705,97,0,617,1),(3706,134,0,617,2),(3707,115,0,617,1),(3708,99,0,617,1),(3709,93,0,617,50),(3710,142,0,617,169),(3711,97,0,618,1),(3712,134,0,618,2),(3713,115,0,618,1),(3714,99,0,618,1),(3715,93,0,618,58),(3716,142,0,618,169),(3717,97,0,619,1),(3718,134,0,619,2),(3719,115,0,619,1),(3720,99,0,619,1),(3721,93,0,619,49),(3722,142,0,619,170),(3723,97,0,620,1),(3724,134,0,620,2),(3725,115,0,620,1),(3726,99,0,620,1),(3727,93,0,620,50),(3728,142,0,620,170),(3729,97,0,621,1),(3730,134,0,621,2),(3731,115,0,621,1),(3732,99,0,621,1),(3733,93,0,621,58),(3734,142,0,621,170),(3735,97,0,622,1),(3736,134,0,622,2),(3737,115,0,622,1),(3738,99,0,622,4),(3739,143,0,622,0),(3740,144,0,622,0),(3741,145,0,622,1),(3742,146,0,622,1),(3743,147,0,622,0),(3744,97,0,623,1),(3745,134,0,623,2),(3746,115,0,623,1),(3747,99,0,623,1),(3748,93,0,623,52),(3749,142,0,623,166),(3750,97,0,624,1),(3751,134,0,624,2),(3752,115,0,624,1),(3753,99,0,624,1),(3754,93,0,624,56),(3755,142,0,624,166),(3756,97,0,625,1),(3757,134,0,625,2),(3758,115,0,625,1),(3759,99,0,625,1),(3760,93,0,625,58),(3761,142,0,625,166),(3762,97,0,626,1),(3763,134,0,626,2),(3764,115,0,626,1),(3765,99,0,626,1),(3766,93,0,626,52),(3767,142,0,626,167),(3768,97,0,627,1),(3769,134,0,627,2),(3770,115,0,627,1),(3771,99,0,627,1),(3772,93,0,627,56),(3773,142,0,627,167),(3774,97,0,628,1),(3775,134,0,628,2),(3776,115,0,628,1),(3777,99,0,628,1),(3778,93,0,628,58),(3779,142,0,628,167),(3780,97,0,629,1),(3781,134,0,629,2),(3782,115,0,629,1),(3783,99,0,629,1),(3784,93,0,629,52),(3785,142,0,629,168),(3786,97,0,630,1),(3787,134,0,630,2),(3788,115,0,630,1),(3789,99,0,630,1),(3790,93,0,630,56),(3791,142,0,630,168),(3792,97,0,631,1),(3793,134,0,631,2),(3794,115,0,631,1),(3795,99,0,631,1),(3796,93,0,631,58),(3797,142,0,631,168),(3798,97,0,632,1),(3799,134,0,632,2),(3800,115,0,632,1),(3801,99,0,632,1),(3802,93,0,632,52),(3803,142,0,632,169),(3804,97,0,633,1),(3805,134,0,633,2),(3806,115,0,633,1),(3807,99,0,633,1),(3808,93,0,633,56),(3809,142,0,633,169),(3810,97,0,634,1),(3811,134,0,634,2),(3812,115,0,634,1),(3813,99,0,634,1),(3814,93,0,634,58),(3815,142,0,634,169),(3816,97,0,635,1),(3817,134,0,635,2),(3818,115,0,635,1),(3819,99,0,635,1),(3820,93,0,635,52),(3821,142,0,635,170),(3822,97,0,636,1),(3823,134,0,636,2),(3824,115,0,636,1),(3825,99,0,636,1),(3826,93,0,636,56),(3827,142,0,636,170),(3828,97,0,637,1),(3829,134,0,637,2),(3830,115,0,637,1),(3831,99,0,637,1),(3832,93,0,637,58),(3833,142,0,637,170),(3834,97,0,638,1),(3835,134,0,638,2),(3836,115,0,638,1),(3837,99,0,638,4),(3838,143,0,638,0),(3839,144,0,638,0),(3840,145,0,638,0),(3841,146,0,638,0),(3842,147,0,638,0),(3843,97,0,639,1),(3844,134,0,639,2),(3845,115,0,639,1),(3846,99,0,639,1),(3847,93,0,639,52),(3848,142,0,639,166),(3849,97,0,640,1),(3850,134,0,640,2),(3851,115,0,640,1),(3852,99,0,640,1),(3853,93,0,640,58),(3854,142,0,640,166),(3855,97,0,641,1),(3856,134,0,641,2),(3857,115,0,641,1),(3858,99,0,641,1),(3859,93,0,641,59),(3860,142,0,641,166),(3861,97,0,642,1),(3862,134,0,642,2),(3863,115,0,642,1),(3864,99,0,642,1),(3865,93,0,642,52),(3866,142,0,642,167),(3867,97,0,643,1),(3868,134,0,643,2),(3869,115,0,643,1),(3870,99,0,643,1),(3871,93,0,643,58),(3872,142,0,643,167),(3873,97,0,644,1),(3874,134,0,644,2),(3875,115,0,644,1),(3876,99,0,644,1),(3877,93,0,644,59),(3878,142,0,644,167),(3879,97,0,645,1),(3880,134,0,645,2),(3881,115,0,645,1),(3882,99,0,645,1),(3883,93,0,645,52),(3884,142,0,645,168),(3885,97,0,646,1),(3886,134,0,646,2),(3887,115,0,646,1),(3888,99,0,646,1),(3889,93,0,646,58),(3890,142,0,646,168),(3891,97,0,647,1),(3892,134,0,647,2),(3893,115,0,647,1),(3894,99,0,647,1),(3895,93,0,647,59),(3896,142,0,647,168),(3897,97,0,648,1),(3898,134,0,648,2),(3899,115,0,648,1),(3900,99,0,648,1),(3901,93,0,648,52),(3902,142,0,648,169),(3903,97,0,649,1),(3904,134,0,649,2),(3905,115,0,649,1),(3906,99,0,649,1),(3907,93,0,649,58),(3908,142,0,649,169),(3909,97,0,650,1),(3910,134,0,650,2),(3911,115,0,650,1),(3912,99,0,650,1),(3913,93,0,650,59),(3914,142,0,650,169),(3915,97,0,651,1),(3916,134,0,651,2),(3917,115,0,651,1),(3918,99,0,651,1),(3919,93,0,651,52),(3920,142,0,651,170),(3921,97,0,652,1),(3922,134,0,652,2),(3923,115,0,652,1),(3924,99,0,652,1),(3925,93,0,652,58),(3926,142,0,652,170),(3927,97,0,653,1),(3928,134,0,653,2),(3929,115,0,653,1),(3930,99,0,653,1),(3931,93,0,653,59),(3932,142,0,653,170),(3933,97,0,654,1),(3934,134,0,654,2),(3935,115,0,654,1),(3936,99,0,654,4),(3937,143,0,654,0),(3938,144,0,654,0),(3939,145,0,654,0),(3940,146,0,654,0),(3941,147,0,654,0),(3942,97,0,655,1),(3943,134,0,655,2),(3944,115,0,655,1),(3945,99,0,655,1),(3946,93,0,655,50),(3947,142,0,655,166),(3948,97,0,656,1),(3949,134,0,656,2),(3950,115,0,656,1),(3951,99,0,656,1),(3952,93,0,656,58),(3953,142,0,656,166),(3954,97,0,657,1),(3955,134,0,657,2),(3956,115,0,657,1),(3957,99,0,657,1),(3958,93,0,657,60),(3959,142,0,657,166),(3960,97,0,658,1),(3961,134,0,658,2),(3962,115,0,658,1),(3963,99,0,658,1),(3964,93,0,658,50),(3965,142,0,658,167),(3966,97,0,659,1),(3967,134,0,659,2),(3968,115,0,659,1),(3969,99,0,659,1),(3970,93,0,659,58),(3971,142,0,659,167),(3972,97,0,660,1),(3973,134,0,660,2),(3974,115,0,660,1),(3975,99,0,660,1),(3976,93,0,660,60),(3977,142,0,660,167),(3978,97,0,661,1),(3979,134,0,661,2),(3980,115,0,661,1),(3981,99,0,661,1),(3982,93,0,661,50),(3983,142,0,661,168),(3984,97,0,662,1),(3985,134,0,662,2),(3986,115,0,662,1),(3987,99,0,662,1),(3988,93,0,662,58),(3989,142,0,662,168),(3990,97,0,663,1),(3991,134,0,663,2),(3992,115,0,663,1),(3993,99,0,663,1),(3994,93,0,663,60),(3995,142,0,663,168),(3996,97,0,664,1),(3997,134,0,664,2),(3998,115,0,664,1),(3999,99,0,664,1),(4000,93,0,664,50),(4001,142,0,664,169),(4002,97,0,665,1),(4003,134,0,665,2),(4004,115,0,665,1),(4005,99,0,665,1),(4006,93,0,665,58),(4007,142,0,665,169),(4008,97,0,666,1),(4009,134,0,666,2),(4010,115,0,666,1),(4011,99,0,666,1),(4012,93,0,666,60),(4013,142,0,666,169),(4014,97,0,667,1),(4015,134,0,667,2),(4016,115,0,667,1),(4017,99,0,667,1),(4018,93,0,667,50),(4019,142,0,667,170),(4020,97,0,668,1),(4021,134,0,668,2),(4022,115,0,668,1),(4023,99,0,668,1),(4024,93,0,668,58),(4025,142,0,668,170),(4026,97,0,669,1),(4027,134,0,669,2),(4028,115,0,669,1),(4029,99,0,669,1),(4030,93,0,669,60),(4031,142,0,669,170),(4032,97,0,670,1),(4033,134,0,670,2),(4034,115,0,670,1),(4035,99,0,670,4),(4036,143,0,670,0),(4037,144,0,670,0),(4038,145,0,670,0),(4039,146,0,670,0),(4040,147,0,670,0),(4041,97,0,671,1),(4042,134,0,671,2),(4043,115,0,671,1),(4044,99,0,671,1),(4045,93,0,671,50),(4046,142,0,671,166),(4047,97,0,672,1),(4048,134,0,672,2),(4049,115,0,672,1),(4050,99,0,672,1),(4051,93,0,672,50),(4052,142,0,672,167),(4053,97,0,673,1),(4054,134,0,673,2),(4055,115,0,673,1),(4056,99,0,673,1),(4057,93,0,673,50),(4058,142,0,673,168),(4059,97,0,674,1),(4060,134,0,674,2),(4061,115,0,674,1),(4062,99,0,674,1),(4063,93,0,674,50),(4064,142,0,674,169),(4065,97,0,675,1),(4066,134,0,675,2),(4067,115,0,675,1),(4068,99,0,675,1),(4069,93,0,675,50),(4070,142,0,675,170),(4071,97,0,676,1),(4072,134,0,676,2),(4073,115,0,676,1),(4074,99,0,676,4),(4075,143,0,676,0),(4076,144,0,676,1),(4077,145,0,676,1),(4078,146,0,676,1),(4079,147,0,676,0),(4080,97,0,677,1),(4081,134,0,677,2),(4082,115,0,677,1),(4083,99,0,677,1),(4084,93,0,677,50),(4085,142,0,677,166),(4086,97,0,678,1),(4087,134,0,678,2),(4088,115,0,678,1),(4089,99,0,678,1),(4090,93,0,678,50),(4091,142,0,678,167),(4092,97,0,679,1),(4093,134,0,679,2),(4094,115,0,679,1),(4095,99,0,679,1),(4096,93,0,679,50),(4097,142,0,679,168),(4098,97,0,680,1),(4099,134,0,680,2),(4100,115,0,680,1),(4101,99,0,680,1),(4102,93,0,680,50),(4103,142,0,680,169),(4104,97,0,681,1),(4105,134,0,681,2),(4106,115,0,681,1),(4107,99,0,681,1),(4108,93,0,681,50),(4109,142,0,681,170),(4110,97,0,682,1),(4111,134,0,682,2),(4112,115,0,682,1),(4113,99,0,682,4),(4114,143,0,682,0),(4115,144,0,682,1),(4116,145,0,682,0),(4117,146,0,682,0),(4118,147,0,682,0),(4119,97,0,683,1),(4120,134,0,683,2),(4121,115,0,683,1),(4122,99,0,683,1),(4123,93,0,683,49),(4124,142,0,683,166),(4125,97,0,684,1),(4126,134,0,684,2),(4127,115,0,684,1),(4128,99,0,684,1),(4129,93,0,684,49),(4130,142,0,684,167),(4131,97,0,685,1),(4132,134,0,685,2),(4133,115,0,685,1),(4134,99,0,685,1),(4135,93,0,685,49),(4136,142,0,685,168),(4137,97,0,686,1),(4138,134,0,686,2),(4139,115,0,686,1),(4140,99,0,686,1),(4141,93,0,686,49),(4142,142,0,686,169),(4143,97,0,687,1),(4144,134,0,687,2),(4145,115,0,687,1),(4146,99,0,687,1),(4147,93,0,687,49),(4148,142,0,687,170),(4149,97,0,688,1),(4150,134,0,688,2),(4151,115,0,688,1),(4152,99,0,688,4),(4153,143,0,688,0),(4154,144,0,688,1),(4155,145,0,688,0),(4156,146,0,688,0),(4157,147,0,688,0),(4158,97,0,689,1),(4159,134,0,689,2),(4160,115,0,689,1),(4161,99,0,689,1),(4162,93,0,689,52),(4163,142,0,689,166),(4164,97,0,690,1),(4165,134,0,690,2),(4166,115,0,690,1),(4167,99,0,690,1),(4168,93,0,690,52),(4169,142,0,690,167),(4170,97,0,691,1),(4171,134,0,691,2),(4172,115,0,691,1),(4173,99,0,691,1),(4174,93,0,691,52),(4175,142,0,691,168),(4176,97,0,692,1),(4177,134,0,692,2),(4178,115,0,692,1),(4179,99,0,692,1),(4180,93,0,692,52),(4181,142,0,692,169),(4182,97,0,693,1),(4183,134,0,693,2),(4184,115,0,693,1),(4185,99,0,693,1),(4186,93,0,693,52),(4187,142,0,693,170),(4188,97,0,694,1),(4189,134,0,694,2),(4190,115,0,694,1),(4191,99,0,694,4),(4192,143,0,694,1),(4193,144,0,694,0),(4194,145,0,694,0),(4195,146,0,694,0),(4196,147,0,694,0),(4197,97,0,695,1),(4198,134,0,695,2),(4199,115,0,695,1),(4200,99,0,695,1),(4201,93,0,695,53),(4202,142,0,695,166),(4203,97,0,696,1),(4204,134,0,696,2),(4205,115,0,696,1),(4206,99,0,696,1),(4207,93,0,696,53),(4208,142,0,696,167),(4209,97,0,697,1),(4210,134,0,697,2),(4211,115,0,697,1),(4212,99,0,697,1),(4213,93,0,697,53),(4214,142,0,697,168),(4215,97,0,698,1),(4216,134,0,698,2),(4217,115,0,698,1),(4218,99,0,698,1),(4219,93,0,698,53),(4220,142,0,698,169),(4221,97,0,699,1),(4222,134,0,699,2),(4223,115,0,699,1),(4224,99,0,699,1),(4225,93,0,699,53),(4226,142,0,699,170),(4227,97,0,700,1),(4228,134,0,700,2),(4229,115,0,700,1),(4230,99,0,700,4),(4231,143,0,700,0),(4232,144,0,700,0),(4233,145,0,700,1),(4234,146,0,700,1),(4235,147,0,700,0),(4236,97,0,701,1),(4237,134,0,701,2),(4238,115,0,701,1),(4239,99,0,701,1),(4240,93,0,701,50),(4241,142,0,701,166),(4242,97,0,702,1),(4243,134,0,702,2),(4244,115,0,702,1),(4245,99,0,702,1),(4246,93,0,702,50),(4247,142,0,702,167),(4248,97,0,703,1),(4249,134,0,703,2),(4250,115,0,703,1),(4251,99,0,703,1),(4252,93,0,703,50),(4253,142,0,703,168),(4254,97,0,704,1),(4255,134,0,704,2),(4256,115,0,704,1),(4257,99,0,704,1),(4258,93,0,704,50),(4259,142,0,704,169),(4260,97,0,705,1),(4261,134,0,705,2),(4262,115,0,705,1),(4263,99,0,705,1),(4264,93,0,705,50),(4265,142,0,705,170),(4266,97,0,706,1),(4267,134,0,706,2),(4268,115,0,706,1),(4269,99,0,706,4),(4270,143,0,706,0),(4271,144,0,706,0),(4272,145,0,706,0),(4273,146,0,706,1),(4274,147,0,706,0),(4275,97,0,707,1),(4276,134,0,707,2),(4277,115,0,707,1),(4278,99,0,707,1),(4279,93,0,707,60),(4280,142,0,707,166),(4281,97,0,708,1),(4282,134,0,708,2),(4283,115,0,708,1),(4284,99,0,708,1),(4285,93,0,708,60),(4286,142,0,708,167),(4287,97,0,709,1),(4288,134,0,709,2),(4289,115,0,709,1),(4290,99,0,709,1),(4291,93,0,709,60),(4292,142,0,709,168),(4293,97,0,710,1),(4294,134,0,710,2),(4295,115,0,710,1),(4296,99,0,710,1),(4297,93,0,710,60),(4298,142,0,710,169),(4299,97,0,711,1),(4300,134,0,711,2),(4301,115,0,711,1),(4302,99,0,711,1),(4303,93,0,711,60),(4304,142,0,711,170),(4305,97,0,712,1),(4306,134,0,712,2),(4307,115,0,712,1),(4308,99,0,712,4),(4309,143,0,712,0),(4310,144,0,712,0),(4311,145,0,712,0),(4312,146,0,712,0),(4313,147,0,712,1),(4314,97,0,713,1),(4315,134,0,713,2),(4316,115,0,713,1),(4317,99,0,713,1),(4318,93,0,713,50),(4319,142,0,713,166),(4320,97,0,714,1),(4321,134,0,714,2),(4322,115,0,714,1),(4323,99,0,714,1),(4324,93,0,714,50),(4325,142,0,714,167),(4326,97,0,715,1),(4327,134,0,715,2),(4328,115,0,715,1),(4329,99,0,715,1),(4330,93,0,715,50),(4331,142,0,715,168),(4332,97,0,716,1),(4333,134,0,716,2),(4334,115,0,716,1),(4335,99,0,716,1),(4336,93,0,716,50),(4337,142,0,716,169),(4338,97,0,717,1),(4339,134,0,717,2),(4340,115,0,717,1),(4341,99,0,717,1),(4342,93,0,717,50),(4343,142,0,717,170),(4344,97,0,718,1),(4345,134,0,718,2),(4346,115,0,718,1),(4347,99,0,718,4),(4348,143,0,718,1),(4349,144,0,718,0),(4350,145,0,718,0),(4351,146,0,718,0),(4352,147,0,718,1),(4353,97,0,719,1),(4354,134,0,719,2),(4355,115,0,719,1),(4356,99,0,719,1),(4357,93,0,719,50),(4358,142,0,719,166),(4359,97,0,720,1),(4360,134,0,720,2),(4361,115,0,720,1),(4362,99,0,720,1),(4363,93,0,720,50),(4364,142,0,720,167),(4365,97,0,721,1),(4366,134,0,721,2),(4367,115,0,721,1),(4368,99,0,721,1),(4369,93,0,721,50),(4370,142,0,721,168),(4371,97,0,722,1),(4372,134,0,722,2),(4373,115,0,722,1),(4374,99,0,722,1),(4375,93,0,722,50),(4376,142,0,722,169),(4377,97,0,723,1),(4378,134,0,723,2),(4379,115,0,723,1),(4380,99,0,723,1),(4381,93,0,723,50),(4382,142,0,723,170),(4383,97,0,724,1),(4384,134,0,724,2),(4385,115,0,724,1),(4386,99,0,724,4),(4387,143,0,724,0),(4388,144,0,724,0),(4389,145,0,724,0),(4390,146,0,724,0),(4391,147,0,724,1),(4392,97,0,725,1),(4393,134,0,725,2),(4394,115,0,725,1),(4395,99,0,725,1),(4396,93,0,725,49),(4397,142,0,725,175),(4398,97,0,726,1),(4399,134,0,726,2),(4400,115,0,726,1),(4401,99,0,726,1),(4402,93,0,726,52),(4403,142,0,726,175),(4404,97,0,727,1),(4405,134,0,727,2),(4406,115,0,727,1),(4407,99,0,727,1),(4408,93,0,727,57),(4409,142,0,727,175),(4410,97,0,728,1),(4411,134,0,728,2),(4412,115,0,728,1),(4413,99,0,728,1),(4414,93,0,728,49),(4415,142,0,728,176),(4416,97,0,729,1),(4417,134,0,729,2),(4418,115,0,729,1),(4419,99,0,729,1),(4420,93,0,729,52),(4421,142,0,729,176),(4422,97,0,730,1),(4423,134,0,730,2),(4424,115,0,730,1),(4425,99,0,730,1),(4426,93,0,730,57),(4427,142,0,730,176),(4428,97,0,731,1),(4429,134,0,731,2),(4430,115,0,731,1),(4431,99,0,731,1),(4432,93,0,731,49),(4433,142,0,731,177),(4434,97,0,732,1),(4435,134,0,732,2),(4436,115,0,732,1),(4437,99,0,732,1),(4438,93,0,732,52),(4439,142,0,732,177),(4440,97,0,733,1),(4441,134,0,733,2),(4442,115,0,733,1),(4443,99,0,733,1),(4444,93,0,733,57),(4445,142,0,733,177),(4446,97,0,734,1),(4447,134,0,734,2),(4448,115,0,734,1),(4449,99,0,734,1),(4450,93,0,734,49),(4451,142,0,734,178),(4452,97,0,735,1),(4453,134,0,735,2),(4454,115,0,735,1),(4455,99,0,735,1),(4456,93,0,735,52),(4457,142,0,735,178),(4458,97,0,736,1),(4459,134,0,736,2),(4460,115,0,736,1),(4461,99,0,736,1),(4462,93,0,736,57),(4463,142,0,736,178),(4464,97,0,737,1),(4465,134,0,737,2),(4466,115,0,737,1),(4467,99,0,737,4),(4468,143,0,737,0),(4469,144,0,737,0),(4470,145,0,737,0),(4471,146,0,737,0),(4472,147,0,737,0),(4473,97,0,738,1),(4474,134,0,738,2),(4475,115,0,738,1),(4476,99,0,738,1),(4477,93,0,738,50),(4478,142,0,738,175),(4479,97,0,739,1),(4480,134,0,739,2),(4481,115,0,739,1),(4482,99,0,739,1),(4483,93,0,739,52),(4484,142,0,739,175),(4485,97,0,740,1),(4486,134,0,740,2),(4487,115,0,740,1),(4488,99,0,740,1),(4489,93,0,740,58),(4490,142,0,740,175),(4491,97,0,741,1),(4492,134,0,741,2),(4493,115,0,741,1),(4494,99,0,741,1),(4495,93,0,741,50),(4496,142,0,741,176),(4497,97,0,742,1),(4498,134,0,742,2),(4499,115,0,742,1),(4500,99,0,742,1),(4501,93,0,742,52),(4502,142,0,742,176),(4503,97,0,743,1),(4504,134,0,743,2),(4505,115,0,743,1),(4506,99,0,743,1),(4507,93,0,743,58),(4508,142,0,743,176),(4509,97,0,744,1),(4510,134,0,744,2),(4511,115,0,744,1),(4512,99,0,744,1),(4513,93,0,744,50),(4514,142,0,744,177),(4515,97,0,745,1),(4516,134,0,745,2),(4517,115,0,745,1),(4518,99,0,745,1),(4519,93,0,745,52),(4520,142,0,745,177),(4521,97,0,746,1),(4522,134,0,746,2),(4523,115,0,746,1),(4524,99,0,746,1),(4525,93,0,746,58),(4526,142,0,746,177),(4527,97,0,747,1),(4528,134,0,747,2),(4529,115,0,747,1),(4530,99,0,747,1),(4531,93,0,747,50),(4532,142,0,747,178),(4533,97,0,748,1),(4534,134,0,748,2),(4535,115,0,748,1),(4536,99,0,748,1),(4537,93,0,748,52),(4538,142,0,748,178),(4539,97,0,749,1),(4540,134,0,749,2),(4541,115,0,749,1),(4542,99,0,749,1),(4543,93,0,749,58),(4544,142,0,749,178),(4545,97,0,750,1),(4546,134,0,750,2),(4547,115,0,750,1),(4548,99,0,750,4),(4549,143,0,750,0),(4550,144,0,750,1),(4551,145,0,750,0),(4552,146,0,750,0),(4553,147,0,750,0),(4554,97,0,751,1),(4555,134,0,751,2),(4556,115,0,751,1),(4557,99,0,751,1),(4558,93,0,751,50),(4559,142,0,751,175),(4560,97,0,752,1),(4561,134,0,752,2),(4562,115,0,752,1),(4563,99,0,752,1),(4564,93,0,752,53),(4565,142,0,752,175),(4566,97,0,753,1),(4567,134,0,753,2),(4568,115,0,753,1),(4569,99,0,753,1),(4570,93,0,753,58),(4571,142,0,753,175),(4572,97,0,754,1),(4573,134,0,754,2),(4574,115,0,754,1),(4575,99,0,754,1),(4576,93,0,754,50),(4577,142,0,754,176),(4578,97,0,755,1),(4579,134,0,755,2),(4580,115,0,755,1),(4581,99,0,755,1),(4582,93,0,755,53),(4583,142,0,755,176),(4584,97,0,756,1),(4585,134,0,756,2),(4586,115,0,756,1),(4587,99,0,756,1),(4588,93,0,756,58),(4589,142,0,756,176),(4590,97,0,757,1),(4591,134,0,757,2),(4592,115,0,757,1),(4593,99,0,757,1),(4594,93,0,757,50),(4595,142,0,757,177),(4596,97,0,758,1),(4597,134,0,758,2),(4598,115,0,758,1),(4599,99,0,758,1),(4600,93,0,758,53),(4601,142,0,758,177),(4602,97,0,759,1),(4603,134,0,759,2),(4604,115,0,759,1),(4605,99,0,759,1),(4606,93,0,759,58),(4607,142,0,759,177),(4608,97,0,760,1),(4609,134,0,760,2),(4610,115,0,760,1),(4611,99,0,760,1),(4612,93,0,760,50),(4613,142,0,760,178),(4614,97,0,761,1),(4615,134,0,761,2),(4616,115,0,761,1),(4617,99,0,761,1),(4618,93,0,761,53),(4619,142,0,761,178),(4620,97,0,762,1),(4621,134,0,762,2),(4622,115,0,762,1),(4623,99,0,762,1),(4624,93,0,762,58),(4625,142,0,762,178),(4626,97,0,763,1),(4627,134,0,763,2),(4628,115,0,763,1),(4629,99,0,763,4),(4630,143,0,763,0),(4631,144,0,763,0),(4632,145,0,763,0),(4633,146,0,763,1),(4634,147,0,763,0),(4635,97,0,764,1),(4636,134,0,764,2),(4637,115,0,764,1),(4638,99,0,764,1),(4639,93,0,764,49),(4640,142,0,764,175),(4641,97,0,765,1),(4642,134,0,765,2),(4643,115,0,765,1),(4644,99,0,765,1),(4645,93,0,765,52),(4646,142,0,765,175),(4647,97,0,766,1),(4648,134,0,766,2),(4649,115,0,766,1),(4650,99,0,766,1),(4651,93,0,766,53),(4652,142,0,766,175),(4653,97,0,767,1),(4654,134,0,767,2),(4655,115,0,767,1),(4656,99,0,767,1),(4657,93,0,767,49),(4658,142,0,767,176),(4659,97,0,768,1),(4660,134,0,768,2),(4661,115,0,768,1),(4662,99,0,768,1),(4663,93,0,768,52),(4664,142,0,768,176),(4665,97,0,769,1),(4666,134,0,769,2),(4667,115,0,769,1),(4668,99,0,769,1),(4669,93,0,769,53),(4670,142,0,769,176),(4671,97,0,770,1),(4672,134,0,770,2),(4673,115,0,770,1),(4674,99,0,770,1),(4675,93,0,770,49),(4676,142,0,770,177),(4677,97,0,771,1),(4678,134,0,771,2),(4679,115,0,771,1),(4680,99,0,771,1),(4681,93,0,771,52),(4682,142,0,771,177),(4683,97,0,772,1),(4684,134,0,772,2),(4685,115,0,772,1),(4686,99,0,772,1),(4687,93,0,772,53),(4688,142,0,772,177),(4689,97,0,773,1),(4690,134,0,773,2),(4691,115,0,773,1),(4692,99,0,773,1),(4693,93,0,773,49),(4694,142,0,773,178),(4695,97,0,774,1),(4696,134,0,774,2),(4697,115,0,774,1),(4698,99,0,774,1),(4699,93,0,774,52),(4700,142,0,774,178),(4701,97,0,775,1),(4702,134,0,775,2),(4703,115,0,775,1),(4704,99,0,775,1),(4705,93,0,775,53),(4706,142,0,775,178),(4707,97,0,776,1),(4708,134,0,776,2),(4709,115,0,776,1),(4710,99,0,776,4),(4711,143,0,776,0),(4712,144,0,776,0),(4713,145,0,776,0),(4714,146,0,776,0),(4715,147,0,776,0),(4716,97,0,777,1),(4717,134,0,777,2),(4718,115,0,777,1),(4719,99,0,777,1),(4720,93,0,777,49),(4721,142,0,777,175),(4722,97,0,778,1),(4723,134,0,778,2),(4724,115,0,778,1),(4725,99,0,778,1),(4726,93,0,778,50),(4727,142,0,778,175),(4728,97,0,779,1),(4729,134,0,779,2),(4730,115,0,779,1),(4731,99,0,779,1),(4732,93,0,779,53),(4733,142,0,779,175),(4734,97,0,780,1),(4735,134,0,780,2),(4736,115,0,780,1),(4737,99,0,780,1),(4738,93,0,780,49),(4739,142,0,780,176),(4740,97,0,781,1),(4741,134,0,781,2),(4742,115,0,781,1),(4743,99,0,781,1),(4744,93,0,781,50),(4745,142,0,781,176),(4746,97,0,782,1),(4747,134,0,782,2),(4748,115,0,782,1),(4749,99,0,782,1),(4750,93,0,782,53),(4751,142,0,782,176),(4752,97,0,783,1),(4753,134,0,783,2),(4754,115,0,783,1),(4755,99,0,783,1),(4756,93,0,783,49),(4757,142,0,783,177),(4758,97,0,784,1),(4759,134,0,784,2),(4760,115,0,784,1),(4761,99,0,784,1),(4762,93,0,784,50),(4763,142,0,784,177),(4764,97,0,785,1),(4765,134,0,785,2),(4766,115,0,785,1),(4767,99,0,785,1),(4768,93,0,785,53),(4769,142,0,785,177),(4770,97,0,786,1),(4771,134,0,786,2),(4772,115,0,786,1),(4773,99,0,786,1),(4774,93,0,786,49),(4775,142,0,786,178),(4776,97,0,787,1),(4777,134,0,787,2),(4778,115,0,787,1),(4779,99,0,787,1),(4780,93,0,787,50),(4781,142,0,787,178),(4782,97,0,788,1),(4783,134,0,788,2),(4784,115,0,788,1),(4785,99,0,788,1),(4786,93,0,788,53),(4787,142,0,788,178),(4788,97,0,789,1),(4789,134,0,789,2),(4790,115,0,789,1),(4791,99,0,789,4),(4792,143,0,789,0),(4793,144,0,789,0),(4794,145,0,789,0),(4795,146,0,789,1),(4796,147,0,789,0),(4797,97,0,790,1),(4798,134,0,790,2),(4799,115,0,790,1),(4800,99,0,790,1),(4801,93,0,790,52),(4802,142,0,790,175),(4803,97,0,791,1),(4804,134,0,791,2),(4805,115,0,791,1),(4806,99,0,791,1),(4807,93,0,791,53),(4808,142,0,791,175),(4809,97,0,792,1),(4810,134,0,792,2),(4811,115,0,792,1),(4812,99,0,792,1),(4813,93,0,792,56),(4814,142,0,792,175),(4815,97,0,793,1),(4816,134,0,793,2),(4817,115,0,793,1),(4818,99,0,793,1),(4819,93,0,793,52),(4820,142,0,793,176),(4821,97,0,794,1),(4822,134,0,794,2),(4823,115,0,794,1),(4824,99,0,794,1),(4825,93,0,794,53),(4826,142,0,794,176),(4827,97,0,795,1),(4828,134,0,795,2),(4829,115,0,795,1),(4830,99,0,795,1),(4831,93,0,795,56),(4832,142,0,795,176),(4833,97,0,796,1),(4834,134,0,796,2),(4835,115,0,796,1),(4836,99,0,796,1),(4837,93,0,796,52),(4838,142,0,796,177),(4839,97,0,797,1),(4840,134,0,797,2),(4841,115,0,797,1),(4842,99,0,797,1),(4843,93,0,797,53),(4844,142,0,797,177),(4845,97,0,798,1),(4846,134,0,798,2),(4847,115,0,798,1),(4848,99,0,798,1),(4849,93,0,798,56),(4850,142,0,798,177),(4851,97,0,799,1),(4852,134,0,799,2),(4853,115,0,799,1),(4854,99,0,799,1),(4855,93,0,799,52),(4856,142,0,799,178),(4857,97,0,800,1),(4858,134,0,800,2),(4859,115,0,800,1),(4860,99,0,800,1),(4861,93,0,800,53),(4862,142,0,800,178),(4863,97,0,801,1),(4864,134,0,801,2),(4865,115,0,801,1),(4866,99,0,801,1),(4867,93,0,801,56),(4868,142,0,801,178),(4869,97,0,802,1),(4870,134,0,802,2),(4871,115,0,802,1),(4872,99,0,802,4),(4873,143,0,802,1),(4874,144,0,802,0),(4875,145,0,802,0),(4876,146,0,802,0),(4877,147,0,802,0),(4878,97,0,803,1),(4879,134,0,803,2),(4880,115,0,803,1),(4881,99,0,803,1),(4882,93,0,803,49),(4883,142,0,803,175),(4884,97,0,804,1),(4885,134,0,804,2),(4886,115,0,804,1),(4887,99,0,804,1),(4888,93,0,804,50),(4889,142,0,804,175),(4890,97,0,805,1),(4891,134,0,805,2),(4892,115,0,805,1),(4893,99,0,805,1),(4894,93,0,805,57),(4895,142,0,805,175),(4896,97,0,806,1),(4897,134,0,806,2),(4898,115,0,806,1),(4899,99,0,806,1),(4900,93,0,806,49),(4901,142,0,806,176),(4902,97,0,807,1),(4903,134,0,807,2),(4904,115,0,807,1),(4905,99,0,807,1),(4906,93,0,807,50),(4907,142,0,807,176),(4908,97,0,808,1),(4909,134,0,808,2),(4910,115,0,808,1),(4911,99,0,808,1),(4912,93,0,808,57),(4913,142,0,808,176),(4914,97,0,809,1),(4915,134,0,809,2),(4916,115,0,809,1),(4917,99,0,809,1),(4918,93,0,809,49),(4919,142,0,809,177),(4920,97,0,810,1),(4921,134,0,810,2),(4922,115,0,810,1),(4923,99,0,810,1),(4924,93,0,810,50),(4925,142,0,810,177),(4926,97,0,811,1),(4927,134,0,811,2),(4928,115,0,811,1),(4929,99,0,811,1),(4930,93,0,811,57),(4931,142,0,811,177),(4932,97,0,812,1),(4933,134,0,812,2),(4934,115,0,812,1),(4935,99,0,812,1),(4936,93,0,812,49),(4937,142,0,812,178),(4938,97,0,813,1),(4939,134,0,813,2),(4940,115,0,813,1),(4941,99,0,813,1),(4942,93,0,813,50),(4943,142,0,813,178),(4944,97,0,814,1),(4945,134,0,814,2),(4946,115,0,814,1),(4947,99,0,814,1),(4948,93,0,814,57),(4949,142,0,814,178),(4950,97,0,815,1),(4951,134,0,815,2),(4952,115,0,815,1),(4953,99,0,815,4),(4954,143,0,815,0),(4955,144,0,815,0),(4956,145,0,815,0),(4957,146,0,815,1),(4958,147,0,815,0),(4959,97,0,816,1),(4960,134,0,816,2),(4961,115,0,816,1),(4962,99,0,816,1),(4963,93,0,816,50),(4964,142,0,816,175),(4965,97,0,817,1),(4966,134,0,817,2),(4967,115,0,817,1),(4968,99,0,817,1),(4969,93,0,817,53),(4970,142,0,817,175),(4971,97,0,818,1),(4972,134,0,818,2),(4973,115,0,818,1),(4974,99,0,818,1),(4975,93,0,818,58),(4976,142,0,818,175),(4977,97,0,819,1),(4978,134,0,819,2),(4979,115,0,819,1),(4980,99,0,819,1),(4981,93,0,819,50),(4982,142,0,819,176),(4983,97,0,820,1),(4984,134,0,820,2),(4985,115,0,820,1),(4986,99,0,820,1),(4987,93,0,820,53),(4988,142,0,820,176),(4989,97,0,821,1),(4990,134,0,821,2),(4991,115,0,821,1),(4992,99,0,821,1),(4993,93,0,821,58),(4994,142,0,821,176),(4995,97,0,822,1),(4996,134,0,822,2),(4997,115,0,822,1),(4998,99,0,822,1),(4999,93,0,822,50),(5000,142,0,822,177),(5001,97,0,823,1),(5002,134,0,823,2),(5003,115,0,823,1),(5004,99,0,823,1),(5005,93,0,823,53),(5006,142,0,823,177),(5007,97,0,824,1),(5008,134,0,824,2),(5009,115,0,824,1),(5010,99,0,824,1),(5011,93,0,824,58),(5012,142,0,824,177),(5013,97,0,825,1),(5014,134,0,825,2),(5015,115,0,825,1),(5016,99,0,825,1),(5017,93,0,825,50),(5018,142,0,825,178),(5019,97,0,826,1),(5020,134,0,826,2),(5021,115,0,826,1),(5022,99,0,826,1),(5023,93,0,826,53),(5024,142,0,826,178),(5025,97,0,827,1),(5026,134,0,827,2),(5027,115,0,827,1),(5028,99,0,827,1),(5029,93,0,827,58),(5030,142,0,827,178),(5031,97,0,828,1),(5032,134,0,828,2),(5033,115,0,828,1),(5034,99,0,828,4),(5035,143,0,828,0),(5036,144,0,828,0),(5037,145,0,828,0),(5038,146,0,828,1),(5039,147,0,828,0),(5040,97,0,829,1),(5041,134,0,829,2),(5042,115,0,829,1),(5043,99,0,829,1),(5044,93,0,829,49),(5045,142,0,829,175),(5046,97,0,830,1),(5047,134,0,830,2),(5048,115,0,830,1),(5049,99,0,830,1),(5050,93,0,830,50),(5051,142,0,830,175),(5052,97,0,831,1),(5053,134,0,831,2),(5054,115,0,831,1),(5055,99,0,831,1),(5056,93,0,831,58),(5057,142,0,831,175),(5058,97,0,832,1),(5059,134,0,832,2),(5060,115,0,832,1),(5061,99,0,832,1),(5062,93,0,832,49),(5063,142,0,832,176),(5064,97,0,833,1),(5065,134,0,833,2),(5066,115,0,833,1),(5067,99,0,833,1),(5068,93,0,833,50),(5069,142,0,833,176),(5070,97,0,834,1),(5071,134,0,834,2),(5072,115,0,834,1),(5073,99,0,834,1),(5074,93,0,834,58),(5075,142,0,834,176),(5076,97,0,835,1),(5077,134,0,835,2),(5078,115,0,835,1),(5079,99,0,835,1),(5080,93,0,835,49),(5081,142,0,835,177),(5082,97,0,836,1),(5083,134,0,836,2),(5084,115,0,836,1),(5085,99,0,836,1),(5086,93,0,836,50),(5087,142,0,836,177),(5088,97,0,837,1),(5089,134,0,837,2),(5090,115,0,837,1),(5091,99,0,837,1),(5092,93,0,837,58),(5093,142,0,837,177),(5094,97,0,838,1),(5095,134,0,838,2),(5096,115,0,838,1),(5097,99,0,838,1),(5098,93,0,838,49),(5099,142,0,838,178),(5100,97,0,839,1),(5101,134,0,839,2),(5102,115,0,839,1),(5103,99,0,839,1),(5104,93,0,839,50),(5105,142,0,839,178),(5106,97,0,840,1),(5107,134,0,840,2),(5108,115,0,840,1),(5109,99,0,840,1),(5110,93,0,840,58),(5111,142,0,840,178),(5112,97,0,841,1),(5113,134,0,841,2),(5114,115,0,841,1),(5115,99,0,841,4),(5116,143,0,841,0),(5117,144,0,841,1),(5118,145,0,841,1),(5119,146,0,841,1),(5120,147,0,841,0),(5121,97,0,842,1),(5122,134,0,842,2),(5123,115,0,842,1),(5124,99,0,842,1),(5125,93,0,842,49),(5126,142,0,842,175),(5127,97,0,843,1),(5128,134,0,843,2),(5129,115,0,843,1),(5130,99,0,843,1),(5131,93,0,843,50),(5132,142,0,843,175),(5133,97,0,844,1),(5134,134,0,844,2),(5135,115,0,844,1),(5136,99,0,844,1),(5137,93,0,844,53),(5138,142,0,844,175),(5139,97,0,845,1),(5140,134,0,845,2),(5141,115,0,845,1),(5142,99,0,845,1),(5143,93,0,845,49),(5144,142,0,845,176),(5145,97,0,846,1),(5146,134,0,846,2),(5147,115,0,846,1),(5148,99,0,846,1),(5149,93,0,846,50),(5150,142,0,846,176),(5151,97,0,847,1),(5152,134,0,847,2),(5153,115,0,847,1),(5154,99,0,847,1),(5155,93,0,847,53),(5156,142,0,847,176),(5157,97,0,848,1),(5158,134,0,848,2),(5159,115,0,848,1),(5160,99,0,848,1),(5161,93,0,848,49),(5162,142,0,848,177),(5163,97,0,849,1),(5164,134,0,849,2),(5165,115,0,849,1),(5166,99,0,849,1),(5167,93,0,849,50),(5168,142,0,849,177),(5169,97,0,850,1),(5170,134,0,850,2),(5171,115,0,850,1),(5172,99,0,850,1),(5173,93,0,850,53),(5174,142,0,850,177),(5175,97,0,851,1),(5176,134,0,851,2),(5177,115,0,851,1),(5178,99,0,851,1),(5179,93,0,851,49),(5180,142,0,851,178),(5181,97,0,852,1),(5182,134,0,852,2),(5183,115,0,852,1),(5184,99,0,852,1),(5185,93,0,852,50),(5186,142,0,852,178),(5187,97,0,853,1),(5188,134,0,853,2),(5189,115,0,853,1),(5190,99,0,853,1),(5191,93,0,853,53),(5192,142,0,853,178),(5193,97,0,854,1),(5194,134,0,854,2),(5195,115,0,854,1),(5196,99,0,854,4),(5197,143,0,854,0),(5198,144,0,854,0),(5199,145,0,854,1),(5200,146,0,854,0),(5201,147,0,854,0),(5202,97,0,855,1),(5203,134,0,855,2),(5204,115,0,855,1),(5205,99,0,855,1),(5206,93,0,855,50),(5207,142,0,855,175),(5208,97,0,856,1),(5209,134,0,856,2),(5210,115,0,856,1),(5211,99,0,856,1),(5212,93,0,856,51),(5213,142,0,856,175),(5214,97,0,857,1),(5215,134,0,857,2),(5216,115,0,857,1),(5217,99,0,857,1),(5218,93,0,857,53),(5219,142,0,857,175),(5220,97,0,858,1),(5221,134,0,858,2),(5222,115,0,858,1),(5223,99,0,858,1),(5224,93,0,858,50),(5225,142,0,858,176),(5226,97,0,859,1),(5227,134,0,859,2),(5228,115,0,859,1),(5229,99,0,859,1),(5230,93,0,859,51),(5231,142,0,859,176),(5232,97,0,860,1),(5233,134,0,860,2),(5234,115,0,860,1),(5235,99,0,860,1),(5236,93,0,860,53),(5237,142,0,860,176),(5238,97,0,861,1),(5239,134,0,861,2),(5240,115,0,861,1),(5241,99,0,861,1),(5242,93,0,861,50),(5243,142,0,861,177),(5244,97,0,862,1),(5245,134,0,862,2),(5246,115,0,862,1),(5247,99,0,862,1),(5248,93,0,862,51),(5249,142,0,862,177),(5250,97,0,863,1),(5251,134,0,863,2),(5252,115,0,863,1),(5253,99,0,863,1),(5254,93,0,863,53),(5255,142,0,863,177),(5256,97,0,864,1),(5257,134,0,864,2),(5258,115,0,864,1),(5259,99,0,864,1),(5260,93,0,864,50),(5261,142,0,864,178),(5262,97,0,865,1),(5263,134,0,865,2),(5264,115,0,865,1),(5265,99,0,865,1),(5266,93,0,865,51),(5267,142,0,865,178),(5268,97,0,866,1),(5269,134,0,866,2),(5270,115,0,866,1),(5271,99,0,866,1),(5272,93,0,866,53),(5273,142,0,866,178),(5274,97,0,867,1),(5275,134,0,867,2),(5276,115,0,867,1),(5277,99,0,867,4),(5278,143,0,867,0),(5279,144,0,867,1),(5280,145,0,867,1),(5281,146,0,867,0),(5282,147,0,867,0),(5283,97,0,868,1),(5284,134,0,868,2),(5285,115,0,868,1),(5286,99,0,868,1),(5287,93,0,868,49),(5288,142,0,868,175),(5289,97,0,869,1),(5290,134,0,869,2),(5291,115,0,869,1),(5292,99,0,869,1),(5293,93,0,869,50),(5294,142,0,869,175),(5295,97,0,870,1),(5296,134,0,870,2),(5297,115,0,870,1),(5298,99,0,870,1),(5299,93,0,870,58),(5300,142,0,870,175),(5301,97,0,871,1),(5302,134,0,871,2),(5303,115,0,871,1),(5304,99,0,871,1),(5305,93,0,871,49),(5306,142,0,871,176),(5307,97,0,872,1),(5308,134,0,872,2),(5309,115,0,872,1),(5310,99,0,872,1),(5311,93,0,872,50),(5312,142,0,872,176),(5313,97,0,873,1),(5314,134,0,873,2),(5315,115,0,873,1),(5316,99,0,873,1),(5317,93,0,873,58),(5318,142,0,873,176),(5319,97,0,874,1),(5320,134,0,874,2),(5321,115,0,874,1),(5322,99,0,874,1),(5323,93,0,874,49),(5324,142,0,874,177),(5325,97,0,875,1),(5326,134,0,875,2),(5327,115,0,875,1),(5328,99,0,875,1),(5329,93,0,875,50),(5330,142,0,875,177),(5331,97,0,876,1),(5332,134,0,876,2),(5333,115,0,876,1),(5334,99,0,876,1),(5335,93,0,876,58),(5336,142,0,876,177),(5337,97,0,877,1),(5338,134,0,877,2),(5339,115,0,877,1),(5340,99,0,877,1),(5341,93,0,877,49),(5342,142,0,877,178),(5343,97,0,878,1),(5344,134,0,878,2),(5345,115,0,878,1),(5346,99,0,878,1),(5347,93,0,878,50),(5348,142,0,878,178),(5349,97,0,879,1),(5350,134,0,879,2),(5351,115,0,879,1),(5352,99,0,879,1),(5353,93,0,879,58),(5354,142,0,879,178),(5355,97,0,880,1),(5356,134,0,880,2),(5357,115,0,880,1),(5358,99,0,880,4),(5359,143,0,880,0),(5360,144,0,880,0),(5361,145,0,880,0),(5362,146,0,880,0),(5363,147,0,880,0),(5364,97,0,881,1),(5365,134,0,881,2),(5366,115,0,881,1),(5367,99,0,881,1),(5368,93,0,881,49),(5369,142,0,881,175),(5370,97,0,882,1),(5371,134,0,882,2),(5372,115,0,882,1),(5373,99,0,882,1),(5374,93,0,882,50),(5375,142,0,882,175),(5376,97,0,883,1),(5377,134,0,883,2),(5378,115,0,883,1),(5379,99,0,883,1),(5380,93,0,883,58),(5381,142,0,883,175),(5382,97,0,884,1),(5383,134,0,884,2),(5384,115,0,884,1),(5385,99,0,884,1),(5386,93,0,884,49),(5387,142,0,884,176),(5388,97,0,885,1),(5389,134,0,885,2),(5390,115,0,885,1),(5391,99,0,885,1),(5392,93,0,885,50),(5393,142,0,885,176),(5394,97,0,886,1),(5395,134,0,886,2),(5396,115,0,886,1),(5397,99,0,886,1),(5398,93,0,886,58),(5399,142,0,886,176),(5400,97,0,887,1),(5401,134,0,887,2),(5402,115,0,887,1),(5403,99,0,887,1),(5404,93,0,887,49),(5405,142,0,887,177),(5406,97,0,888,1),(5407,134,0,888,2),(5408,115,0,888,1),(5409,99,0,888,1),(5410,93,0,888,50),(5411,142,0,888,177),(5412,97,0,889,1),(5413,134,0,889,2),(5414,115,0,889,1),(5415,99,0,889,1),(5416,93,0,889,58),(5417,142,0,889,177),(5418,97,0,890,1),(5419,134,0,890,2),(5420,115,0,890,1),(5421,99,0,890,1),(5422,93,0,890,49),(5423,142,0,890,178),(5424,97,0,891,1),(5425,134,0,891,2),(5426,115,0,891,1),(5427,99,0,891,1),(5428,93,0,891,50),(5429,142,0,891,178),(5430,97,0,892,1),(5431,134,0,892,2),(5432,115,0,892,1),(5433,99,0,892,1),(5434,93,0,892,58),(5435,142,0,892,178),(5436,97,0,893,1),(5437,134,0,893,2),(5438,115,0,893,1),(5439,99,0,893,4),(5440,143,0,893,0),(5441,144,0,893,0),(5442,145,0,893,1),(5443,146,0,893,0),(5444,147,0,893,0),(5445,97,0,894,1),(5446,134,0,894,2),(5447,115,0,894,1),(5448,99,0,894,1),(5449,93,0,894,49),(5450,142,0,894,175),(5451,97,0,895,1),(5452,134,0,895,2),(5453,115,0,895,1),(5454,99,0,895,1),(5455,93,0,895,49),(5456,142,0,895,176),(5457,97,0,896,1),(5458,134,0,896,2),(5459,115,0,896,1),(5460,99,0,896,1),(5461,93,0,896,49),(5462,142,0,896,177),(5463,97,0,897,1),(5464,134,0,897,2),(5465,115,0,897,1),(5466,99,0,897,1),(5467,93,0,897,49),(5468,142,0,897,178),(5469,97,0,898,1),(5470,134,0,898,2),(5471,115,0,898,1),(5472,99,0,898,4),(5473,143,0,898,0),(5474,144,0,898,0),(5475,145,0,898,0),(5476,146,0,898,0),(5477,147,0,898,0),(5478,97,0,899,1),(5479,134,0,899,2),(5480,115,0,899,1),(5481,99,0,899,1),(5482,93,0,899,49),(5483,142,0,899,175),(5484,97,0,900,1),(5485,134,0,900,2),(5486,115,0,900,1),(5487,99,0,900,1),(5488,93,0,900,50),(5489,142,0,900,175),(5490,97,0,901,1),(5491,134,0,901,2),(5492,115,0,901,1),(5493,99,0,901,1),(5494,93,0,901,53),(5495,142,0,901,175),(5496,97,0,902,1),(5497,134,0,902,2),(5498,115,0,902,1),(5499,99,0,902,1),(5500,93,0,902,49),(5501,142,0,902,176),(5502,97,0,903,1),(5503,134,0,903,2),(5504,115,0,903,1),(5505,99,0,903,1),(5506,93,0,903,50),(5507,142,0,903,176),(5508,97,0,904,1),(5509,134,0,904,2),(5510,115,0,904,1),(5511,99,0,904,1),(5512,93,0,904,53),(5513,142,0,904,176),(5514,97,0,905,1),(5515,134,0,905,2),(5516,115,0,905,1),(5517,99,0,905,1),(5518,93,0,905,49),(5519,142,0,905,177),(5520,97,0,906,1),(5521,134,0,906,2),(5522,115,0,906,1),(5523,99,0,906,1),(5524,93,0,906,50),(5525,142,0,906,177),(5526,97,0,907,1),(5527,134,0,907,2),(5528,115,0,907,1),(5529,99,0,907,1),(5530,93,0,907,53),(5531,142,0,907,177),(5532,97,0,908,1),(5533,134,0,908,2),(5534,115,0,908,1),(5535,99,0,908,1),(5536,93,0,908,49),(5537,142,0,908,178),(5538,97,0,909,1),(5539,134,0,909,2),(5540,115,0,909,1),(5541,99,0,909,1),(5542,93,0,909,50),(5543,142,0,909,178),(5544,97,0,910,1),(5545,134,0,910,2),(5546,115,0,910,1),(5547,99,0,910,1),(5548,93,0,910,53),(5549,142,0,910,178),(5550,97,0,911,1),(5551,134,0,911,2),(5552,115,0,911,1),(5553,99,0,911,4),(5554,143,0,911,0),(5555,144,0,911,1),(5556,145,0,911,0),(5557,146,0,911,0),(5558,147,0,911,0),(5559,97,0,912,1),(5560,134,0,912,2),(5561,115,0,912,1),(5562,99,0,912,1),(5563,93,0,912,52),(5564,142,0,912,175),(5565,97,0,913,1),(5566,134,0,913,2),(5567,115,0,913,1),(5568,99,0,913,1),(5569,93,0,913,57),(5570,142,0,913,175),(5571,97,0,914,1),(5572,134,0,914,2),(5573,115,0,914,1),(5574,99,0,914,1),(5575,93,0,914,60),(5576,142,0,914,175),(5577,97,0,915,1),(5578,134,0,915,2),(5579,115,0,915,1),(5580,99,0,915,1),(5581,93,0,915,52),(5582,142,0,915,176),(5583,97,0,916,1),(5584,134,0,916,2),(5585,115,0,916,1),(5586,99,0,916,1),(5587,93,0,916,57),(5588,142,0,916,176),(5589,97,0,917,1),(5590,134,0,917,2),(5591,115,0,917,1),(5592,99,0,917,1),(5593,93,0,917,60),(5594,142,0,917,176),(5595,97,0,918,1),(5596,134,0,918,2),(5597,115,0,918,1),(5598,99,0,918,1),(5599,93,0,918,52),(5600,142,0,918,177),(5601,97,0,919,1),(5602,134,0,919,2),(5603,115,0,919,1),(5604,99,0,919,1),(5605,93,0,919,57),(5606,142,0,919,177),(5607,97,0,920,1),(5608,134,0,920,2),(5609,115,0,920,1),(5610,99,0,920,1),(5611,93,0,920,60),(5612,142,0,920,177),(5613,97,0,921,1),(5614,134,0,921,2),(5615,115,0,921,1),(5616,99,0,921,1),(5617,93,0,921,52),(5618,142,0,921,178),(5619,97,0,922,1),(5620,134,0,922,2),(5621,115,0,922,1),(5622,99,0,922,1),(5623,93,0,922,57),(5624,142,0,922,178),(5625,97,0,923,1),(5626,134,0,923,2),(5627,115,0,923,1),(5628,99,0,923,1),(5629,93,0,923,60),(5630,142,0,923,178),(5631,97,0,924,1),(5632,134,0,924,2),(5633,115,0,924,1),(5634,99,0,924,4),(5635,143,0,924,0),(5636,144,0,924,0),(5637,145,0,924,0),(5638,146,0,924,0),(5639,147,0,924,0),(5640,97,0,925,1),(5641,134,0,925,2),(5642,115,0,925,1),(5643,99,0,925,1),(5644,93,0,925,49),(5645,142,0,925,175),(5646,97,0,926,1),(5647,134,0,926,2),(5648,115,0,926,1),(5649,99,0,926,1),(5650,93,0,926,50),(5651,142,0,926,175),(5652,97,0,927,1),(5653,134,0,927,2),(5654,115,0,927,1),(5655,99,0,927,1),(5656,93,0,927,52),(5657,142,0,927,175),(5658,97,0,928,1),(5659,134,0,928,2),(5660,115,0,928,1),(5661,99,0,928,1),(5662,93,0,928,49),(5663,142,0,928,176),(5664,97,0,929,1),(5665,134,0,929,2),(5666,115,0,929,1),(5667,99,0,929,1),(5668,93,0,929,50),(5669,142,0,929,176),(5670,97,0,930,1),(5671,134,0,930,2),(5672,115,0,930,1),(5673,99,0,930,1),(5674,93,0,930,52),(5675,142,0,930,176),(5676,97,0,931,1),(5677,134,0,931,2),(5678,115,0,931,1),(5679,99,0,931,1),(5680,93,0,931,49),(5681,142,0,931,177),(5682,97,0,932,1),(5683,134,0,932,2),(5684,115,0,932,1),(5685,99,0,932,1),(5686,93,0,932,50),(5687,142,0,932,177),(5688,97,0,933,1),(5689,134,0,933,2),(5690,115,0,933,1),(5691,99,0,933,1),(5692,93,0,933,52),(5693,142,0,933,177),(5694,97,0,934,1),(5695,134,0,934,2),(5696,115,0,934,1),(5697,99,0,934,1),(5698,93,0,934,49),(5699,142,0,934,178),(5700,97,0,935,1),(5701,134,0,935,2),(5702,115,0,935,1),(5703,99,0,935,1),(5704,93,0,935,50),(5705,142,0,935,178),(5706,97,0,936,1),(5707,134,0,936,2),(5708,115,0,936,1),(5709,99,0,936,1),(5710,93,0,936,52),(5711,142,0,936,178),(5712,97,0,937,1),(5713,134,0,937,2),(5714,115,0,937,1),(5715,99,0,937,4),(5716,143,0,937,0),(5717,144,0,937,1),(5718,145,0,937,0),(5719,146,0,937,0),(5720,147,0,937,0),(5721,97,0,938,1),(5722,134,0,938,2),(5723,115,0,938,1),(5724,99,0,938,1),(5725,93,0,938,50),(5726,142,0,938,175),(5727,97,0,939,1),(5728,134,0,939,2),(5729,115,0,939,1),(5730,99,0,939,1),(5731,93,0,939,52),(5732,142,0,939,175),(5733,97,0,940,1),(5734,134,0,940,2),(5735,115,0,940,1),(5736,99,0,940,1),(5737,93,0,940,58),(5738,142,0,940,175),(5739,97,0,941,1),(5740,134,0,941,2),(5741,115,0,941,1),(5742,99,0,941,1),(5743,93,0,941,50),(5744,142,0,941,176),(5745,97,0,942,1),(5746,134,0,942,2),(5747,115,0,942,1),(5748,99,0,942,1),(5749,93,0,942,52),(5750,142,0,942,176),(5751,97,0,943,1),(5752,134,0,943,2),(5753,115,0,943,1),(5754,99,0,943,1),(5755,93,0,943,58),(5756,142,0,943,176),(5757,97,0,944,1),(5758,134,0,944,2),(5759,115,0,944,1),(5760,99,0,944,1),(5761,93,0,944,50),(5762,142,0,944,177),(5763,97,0,945,1),(5764,134,0,945,2),(5765,115,0,945,1),(5766,99,0,945,1),(5767,93,0,945,52),(5768,142,0,945,177),(5769,97,0,946,1),(5770,134,0,946,2),(5771,115,0,946,1),(5772,99,0,946,1),(5773,93,0,946,58),(5774,142,0,946,177),(5775,97,0,947,1),(5776,134,0,947,2),(5777,115,0,947,1),(5778,99,0,947,1),(5779,93,0,947,50),(5780,142,0,947,178),(5781,97,0,948,1),(5782,134,0,948,2),(5783,115,0,948,1),(5784,99,0,948,1),(5785,93,0,948,52),(5786,142,0,948,178),(5787,97,0,949,1),(5788,134,0,949,2),(5789,115,0,949,1),(5790,99,0,949,1),(5791,93,0,949,58),(5792,142,0,949,178),(5793,97,0,950,1),(5794,134,0,950,2),(5795,115,0,950,1),(5796,99,0,950,4),(5797,143,0,950,0),(5798,144,0,950,0),(5799,145,0,950,0),(5800,146,0,950,1),(5801,147,0,950,0),(5802,97,0,951,1),(5803,134,0,951,2),(5804,115,0,951,1),(5805,99,0,951,1),(5806,93,0,951,49),(5807,142,0,951,175),(5808,97,0,952,1),(5809,134,0,952,2),(5810,115,0,952,1),(5811,99,0,952,1),(5812,93,0,952,50),(5813,142,0,952,175),(5814,97,0,953,1),(5815,134,0,953,2),(5816,115,0,953,1),(5817,99,0,953,1),(5818,93,0,953,57),(5819,142,0,953,175),(5820,97,0,954,1),(5821,134,0,954,2),(5822,115,0,954,1),(5823,99,0,954,1),(5824,93,0,954,49),(5825,142,0,954,176),(5826,97,0,955,1),(5827,134,0,955,2),(5828,115,0,955,1),(5829,99,0,955,1),(5830,93,0,955,50),(5831,142,0,955,176),(5832,97,0,956,1),(5833,134,0,956,2),(5834,115,0,956,1),(5835,99,0,956,1),(5836,93,0,956,57),(5837,142,0,956,176),(5838,97,0,957,1),(5839,134,0,957,2),(5840,115,0,957,1),(5841,99,0,957,1),(5842,93,0,957,49),(5843,142,0,957,177),(5844,97,0,958,1),(5845,134,0,958,2),(5846,115,0,958,1),(5847,99,0,958,1),(5848,93,0,958,50),(5849,142,0,958,177),(5850,97,0,959,1),(5851,134,0,959,2),(5852,115,0,959,1),(5853,99,0,959,1),(5854,93,0,959,57),(5855,142,0,959,177),(5856,97,0,960,1),(5857,134,0,960,2),(5858,115,0,960,1),(5859,99,0,960,1),(5860,93,0,960,49),(5861,142,0,960,178),(5862,97,0,961,1),(5863,134,0,961,2),(5864,115,0,961,1),(5865,99,0,961,1),(5866,93,0,961,50),(5867,142,0,961,178),(5868,97,0,962,1),(5869,134,0,962,2),(5870,115,0,962,1),(5871,99,0,962,1),(5872,93,0,962,57),(5873,142,0,962,178),(5874,97,0,963,1),(5875,134,0,963,2),(5876,115,0,963,1),(5877,99,0,963,4),(5878,143,0,963,0),(5879,144,0,963,1),(5880,145,0,963,1),(5881,146,0,963,0),(5882,147,0,963,1),(5883,97,0,964,1),(5884,134,0,964,2),(5885,115,0,964,1),(5886,99,0,964,1),(5887,93,0,964,49),(5888,142,0,964,175),(5889,97,0,965,1),(5890,134,0,965,2),(5891,115,0,965,1),(5892,99,0,965,1),(5893,93,0,965,50),(5894,142,0,965,175),(5895,97,0,966,1),(5896,134,0,966,2),(5897,115,0,966,1),(5898,99,0,966,1),(5899,93,0,966,53),(5900,142,0,966,175),(5901,97,0,967,1),(5902,134,0,967,2),(5903,115,0,967,1),(5904,99,0,967,1),(5905,93,0,967,49),(5906,142,0,967,176),(5907,97,0,968,1),(5908,134,0,968,2),(5909,115,0,968,1),(5910,99,0,968,1),(5911,93,0,968,50),(5912,142,0,968,176),(5913,97,0,969,1),(5914,134,0,969,2),(5915,115,0,969,1),(5916,99,0,969,1),(5917,93,0,969,53),(5918,142,0,969,176),(5919,97,0,970,1),(5920,134,0,970,2),(5921,115,0,970,1),(5922,99,0,970,1),(5923,93,0,970,49),(5924,142,0,970,177),(5925,97,0,971,1),(5926,134,0,971,2),(5927,115,0,971,1),(5928,99,0,971,1),(5929,93,0,971,50),(5930,142,0,971,177),(5931,97,0,972,1),(5932,134,0,972,2),(5933,115,0,972,1),(5934,99,0,972,1),(5935,93,0,972,53),(5936,142,0,972,177),(5937,97,0,973,1),(5938,134,0,973,2),(5939,115,0,973,1),(5940,99,0,973,1),(5941,93,0,973,49),(5942,142,0,973,178),(5943,97,0,974,1),(5944,134,0,974,2),(5945,115,0,974,1),(5946,99,0,974,1),(5947,93,0,974,50),(5948,142,0,974,178),(5949,97,0,975,1),(5950,134,0,975,2),(5951,115,0,975,1),(5952,99,0,975,1),(5953,93,0,975,53),(5954,142,0,975,178),(5955,97,0,976,1),(5956,134,0,976,2),(5957,115,0,976,1),(5958,99,0,976,4),(5959,143,0,976,0),(5960,144,0,976,0),(5961,145,0,976,0),(5962,146,0,976,0),(5963,147,0,976,1),(5964,97,0,977,1),(5965,134,0,977,2),(5966,115,0,977,1),(5967,99,0,977,1),(5968,93,0,977,49),(5969,142,0,977,175),(5970,97,0,978,1),(5971,134,0,978,2),(5972,115,0,978,1),(5973,99,0,978,1),(5974,93,0,978,50),(5975,142,0,978,175),(5976,97,0,979,1),(5977,134,0,979,2),(5978,115,0,979,1),(5979,99,0,979,1),(5980,93,0,979,53),(5981,142,0,979,175),(5982,97,0,980,1),(5983,134,0,980,2),(5984,115,0,980,1),(5985,99,0,980,1),(5986,93,0,980,49),(5987,142,0,980,176),(5988,97,0,981,1),(5989,134,0,981,2),(5990,115,0,981,1),(5991,99,0,981,1),(5992,93,0,981,50),(5993,142,0,981,176),(5994,97,0,982,1),(5995,134,0,982,2),(5996,115,0,982,1),(5997,99,0,982,1),(5998,93,0,982,53),(5999,142,0,982,176),(6000,97,0,983,1),(6001,134,0,983,2),(6002,115,0,983,1),(6003,99,0,983,1),(6004,93,0,983,49),(6005,142,0,983,177),(6006,97,0,984,1),(6007,134,0,984,2),(6008,115,0,984,1),(6009,99,0,984,1),(6010,93,0,984,50),(6011,142,0,984,177),(6012,97,0,985,1),(6013,134,0,985,2),(6014,115,0,985,1),(6015,99,0,985,1),(6016,93,0,985,53),(6017,142,0,985,177),(6018,97,0,986,1),(6019,134,0,986,2),(6020,115,0,986,1),(6021,99,0,986,1),(6022,93,0,986,49),(6023,142,0,986,178),(6024,97,0,987,1),(6025,134,0,987,2),(6026,115,0,987,1),(6027,99,0,987,1),(6028,93,0,987,50),(6029,142,0,987,178),(6030,97,0,988,1),(6031,134,0,988,2),(6032,115,0,988,1),(6033,99,0,988,1),(6034,93,0,988,53),(6035,142,0,988,178),(6036,97,0,989,1),(6037,134,0,989,2),(6038,115,0,989,1),(6039,99,0,989,4),(6040,143,0,989,0),(6041,144,0,989,1),(6042,145,0,989,0),(6043,146,0,989,0),(6044,147,0,989,0),(6045,97,0,990,1),(6046,134,0,990,2),(6047,115,0,990,1),(6048,99,0,990,1),(6049,93,0,990,50),(6050,142,0,990,175),(6051,97,0,991,1),(6052,134,0,991,2),(6053,115,0,991,1),(6054,99,0,991,1),(6055,93,0,991,53),(6056,142,0,991,175),(6057,97,0,992,1),(6058,134,0,992,2),(6059,115,0,992,1),(6060,99,0,992,1),(6061,93,0,992,57),(6062,142,0,992,175),(6063,97,0,993,1),(6064,134,0,993,2),(6065,115,0,993,1),(6066,99,0,993,1),(6067,93,0,993,50),(6068,142,0,993,176),(6069,97,0,994,1),(6070,134,0,994,2),(6071,115,0,994,1),(6072,99,0,994,1),(6073,93,0,994,53),(6074,142,0,994,176),(6075,97,0,995,1),(6076,134,0,995,2),(6077,115,0,995,1),(6078,99,0,995,1),(6079,93,0,995,57),(6080,142,0,995,176),(6081,97,0,996,1),(6082,134,0,996,2),(6083,115,0,996,1),(6084,99,0,996,1),(6085,93,0,996,50),(6086,142,0,996,177),(6087,97,0,997,1),(6088,134,0,997,2),(6089,115,0,997,1),(6090,99,0,997,1),(6091,93,0,997,53),(6092,142,0,997,177),(6093,97,0,998,1),(6094,134,0,998,2),(6095,115,0,998,1),(6096,99,0,998,1),(6097,93,0,998,57),(6098,142,0,998,177),(6099,97,0,999,1),(6100,134,0,999,2),(6101,115,0,999,1),(6102,99,0,999,1),(6103,93,0,999,50),(6104,142,0,999,178),(6105,97,0,1000,1),(6106,134,0,1000,2),(6107,115,0,1000,1),(6108,99,0,1000,1),(6109,93,0,1000,53),(6110,142,0,1000,178),(6111,97,0,1001,1),(6112,134,0,1001,2),(6113,115,0,1001,1),(6114,99,0,1001,1),(6115,93,0,1001,57),(6116,142,0,1001,178),(6117,97,0,1002,1),(6118,134,0,1002,2),(6119,115,0,1002,1),(6120,99,0,1002,4),(6121,143,0,1002,0),(6122,144,0,1002,0),(6123,145,0,1002,0),(6124,146,0,1002,1),(6125,147,0,1002,0),(6126,97,0,1003,1),(6127,134,0,1003,2),(6128,115,0,1003,1),(6129,99,0,1003,1),(6130,93,0,1003,49),(6131,142,0,1003,175),(6132,97,0,1004,1),(6133,134,0,1004,2),(6134,115,0,1004,1),(6135,99,0,1004,1),(6136,93,0,1004,50),(6137,142,0,1004,175),(6138,97,0,1005,1),(6139,134,0,1005,2),(6140,115,0,1005,1),(6141,99,0,1005,1),(6142,93,0,1005,58),(6143,142,0,1005,175),(6144,97,0,1006,1),(6145,134,0,1006,2),(6146,115,0,1006,1),(6147,99,0,1006,1),(6148,93,0,1006,49),(6149,142,0,1006,176),(6150,97,0,1007,1),(6151,134,0,1007,2),(6152,115,0,1007,1),(6153,99,0,1007,1),(6154,93,0,1007,50),(6155,142,0,1007,176),(6156,97,0,1008,1),(6157,134,0,1008,2),(6158,115,0,1008,1),(6159,99,0,1008,1),(6160,93,0,1008,58),(6161,142,0,1008,176),(6162,97,0,1009,1),(6163,134,0,1009,2),(6164,115,0,1009,1),(6165,99,0,1009,1),(6166,93,0,1009,49),(6167,142,0,1009,177),(6168,97,0,1010,1),(6169,134,0,1010,2),(6170,115,0,1010,1),(6171,99,0,1010,1),(6172,93,0,1010,50),(6173,142,0,1010,177),(6174,97,0,1011,1),(6175,134,0,1011,2),(6176,115,0,1011,1),(6177,99,0,1011,1),(6178,93,0,1011,58),(6179,142,0,1011,177),(6180,97,0,1012,1),(6181,134,0,1012,2),(6182,115,0,1012,1),(6183,99,0,1012,1),(6184,93,0,1012,49),(6185,142,0,1012,178),(6186,97,0,1013,1),(6187,134,0,1013,2),(6188,115,0,1013,1),(6189,99,0,1013,1),(6190,93,0,1013,50),(6191,142,0,1013,178),(6192,97,0,1014,1),(6193,134,0,1014,2),(6194,115,0,1014,1),(6195,99,0,1014,1),(6196,93,0,1014,58),(6197,142,0,1014,178),(6198,97,0,1015,1),(6199,134,0,1015,2),(6200,115,0,1015,1),(6201,99,0,1015,4),(6202,143,0,1015,0),(6203,144,0,1015,0),(6204,145,0,1015,0),(6205,146,0,1015,0),(6206,147,0,1015,0),(6207,97,0,1016,1),(6208,134,0,1016,2),(6209,115,0,1016,1),(6210,99,0,1016,1),(6211,93,0,1016,49),(6212,142,0,1016,175),(6213,97,0,1017,1),(6214,134,0,1017,2),(6215,115,0,1017,1),(6216,99,0,1017,1),(6217,93,0,1017,52),(6218,142,0,1017,175),(6219,97,0,1018,1),(6220,134,0,1018,2),(6221,115,0,1018,1),(6222,99,0,1018,1),(6223,93,0,1018,58),(6224,142,0,1018,175),(6225,97,0,1019,1),(6226,134,0,1019,2),(6227,115,0,1019,1),(6228,99,0,1019,1),(6229,93,0,1019,49),(6230,142,0,1019,176),(6231,97,0,1020,1),(6232,134,0,1020,2),(6233,115,0,1020,1),(6234,99,0,1020,1),(6235,93,0,1020,52),(6236,142,0,1020,176),(6237,97,0,1021,1),(6238,134,0,1021,2),(6239,115,0,1021,1),(6240,99,0,1021,1),(6241,93,0,1021,58),(6242,142,0,1021,176),(6243,97,0,1022,1),(6244,134,0,1022,2),(6245,115,0,1022,1),(6246,99,0,1022,1),(6247,93,0,1022,49),(6248,142,0,1022,177),(6249,97,0,1023,1),(6250,134,0,1023,2),(6251,115,0,1023,1),(6252,99,0,1023,1),(6253,93,0,1023,52),(6254,142,0,1023,177),(6255,97,0,1024,1),(6256,134,0,1024,2),(6257,115,0,1024,1),(6258,99,0,1024,1),(6259,93,0,1024,58),(6260,142,0,1024,177),(6261,97,0,1025,1),(6262,134,0,1025,2),(6263,115,0,1025,1),(6264,99,0,1025,1),(6265,93,0,1025,49),(6266,142,0,1025,178),(6267,97,0,1026,1),(6268,134,0,1026,2),(6269,115,0,1026,1),(6270,99,0,1026,1),(6271,93,0,1026,52),(6272,142,0,1026,178),(6273,97,0,1027,1),(6274,134,0,1027,2),(6275,115,0,1027,1),(6276,99,0,1027,1),(6277,93,0,1027,58),(6278,142,0,1027,178),(6279,97,0,1028,1),(6280,134,0,1028,2),(6281,115,0,1028,1),(6282,99,0,1028,4),(6283,143,0,1028,0),(6284,144,0,1028,0),(6285,145,0,1028,0),(6286,146,0,1028,0),(6287,147,0,1028,1),(6288,97,0,1029,1),(6289,134,0,1029,2),(6290,115,0,1029,1),(6291,99,0,1029,1),(6292,93,0,1029,53),(6293,142,0,1029,166),(6294,97,0,1030,1),(6295,134,0,1030,2),(6296,115,0,1030,1),(6297,99,0,1030,1),(6298,93,0,1030,56),(6299,142,0,1030,166),(6300,97,0,1031,1),(6301,134,0,1031,2),(6302,115,0,1031,1),(6303,99,0,1031,1),(6304,93,0,1031,57),(6305,142,0,1031,166),(6306,97,0,1032,1),(6307,134,0,1032,2),(6308,115,0,1032,1),(6309,99,0,1032,1),(6310,93,0,1032,53),(6311,142,0,1032,167),(6312,97,0,1033,1),(6313,134,0,1033,2),(6314,115,0,1033,1),(6315,99,0,1033,1),(6316,93,0,1033,56),(6317,142,0,1033,167),(6318,97,0,1034,1),(6319,134,0,1034,2),(6320,115,0,1034,1),(6321,99,0,1034,1),(6322,93,0,1034,57),(6323,142,0,1034,167),(6324,97,0,1035,1),(6325,134,0,1035,2),(6326,115,0,1035,1),(6327,99,0,1035,1),(6328,93,0,1035,53),(6329,142,0,1035,168),(6330,97,0,1036,1),(6331,134,0,1036,2),(6332,115,0,1036,1),(6333,99,0,1036,1),(6334,93,0,1036,56),(6335,142,0,1036,168),(6336,97,0,1037,1),(6337,134,0,1037,2),(6338,115,0,1037,1),(6339,99,0,1037,1),(6340,93,0,1037,57),(6341,142,0,1037,168),(6342,97,0,1038,1),(6343,134,0,1038,2),(6344,115,0,1038,1),(6345,99,0,1038,1),(6346,93,0,1038,53),(6347,142,0,1038,169),(6348,97,0,1039,1),(6349,134,0,1039,2),(6350,115,0,1039,1),(6351,99,0,1039,1),(6352,93,0,1039,56),(6353,142,0,1039,169),(6354,97,0,1040,1),(6355,134,0,1040,2),(6356,115,0,1040,1),(6357,99,0,1040,1),(6358,93,0,1040,57),(6359,142,0,1040,169),(6360,97,0,1041,1),(6361,134,0,1041,2),(6362,115,0,1041,1),(6363,99,0,1041,1),(6364,93,0,1041,53),(6365,142,0,1041,170),(6366,97,0,1042,1),(6367,134,0,1042,2),(6368,115,0,1042,1),(6369,99,0,1042,1),(6370,93,0,1042,56),(6371,142,0,1042,170),(6372,97,0,1043,1),(6373,134,0,1043,2),(6374,115,0,1043,1),(6375,99,0,1043,1),(6376,93,0,1043,57),(6377,142,0,1043,170),(6378,97,0,1044,1),(6379,134,0,1044,2),(6380,115,0,1044,1),(6381,99,0,1044,4),(6382,143,0,1044,0),(6383,144,0,1044,0),(6384,145,0,1044,1),(6385,146,0,1044,1),(6386,147,0,1044,0),(6387,97,0,1045,1),(6388,134,0,1045,2),(6389,115,0,1045,1),(6390,99,0,1045,1),(6391,93,0,1045,50),(6392,142,0,1045,166),(6393,97,0,1046,1),(6394,134,0,1046,2),(6395,115,0,1046,1),(6396,99,0,1046,1),(6397,93,0,1046,53),(6398,142,0,1046,166),(6399,97,0,1047,1),(6400,134,0,1047,2),(6401,115,0,1047,1),(6402,99,0,1047,1),(6403,93,0,1047,56),(6404,142,0,1047,166),(6405,97,0,1048,1),(6406,134,0,1048,2),(6407,115,0,1048,1),(6408,99,0,1048,1),(6409,93,0,1048,50),(6410,142,0,1048,167),(6411,97,0,1049,1),(6412,134,0,1049,2),(6413,115,0,1049,1),(6414,99,0,1049,1),(6415,93,0,1049,53),(6416,142,0,1049,167),(6417,97,0,1050,1),(6418,134,0,1050,2),(6419,115,0,1050,1),(6420,99,0,1050,1),(6421,93,0,1050,56),(6422,142,0,1050,167),(6423,97,0,1051,1),(6424,134,0,1051,2),(6425,115,0,1051,1),(6426,99,0,1051,1),(6427,93,0,1051,50),(6428,142,0,1051,168),(6429,97,0,1052,1),(6430,134,0,1052,2),(6431,115,0,1052,1),(6432,99,0,1052,1),(6433,93,0,1052,53),(6434,142,0,1052,168),(6435,97,0,1053,1),(6436,134,0,1053,2),(6437,115,0,1053,1),(6438,99,0,1053,1),(6439,93,0,1053,56),(6440,142,0,1053,168),(6441,97,0,1054,1),(6442,134,0,1054,2),(6443,115,0,1054,1),(6444,99,0,1054,1),(6445,93,0,1054,50),(6446,142,0,1054,169),(6447,97,0,1055,1),(6448,134,0,1055,2),(6449,115,0,1055,1),(6450,99,0,1055,1),(6451,93,0,1055,53),(6452,142,0,1055,169),(6453,97,0,1056,1),(6454,134,0,1056,2),(6455,115,0,1056,1),(6456,99,0,1056,1),(6457,93,0,1056,56),(6458,142,0,1056,169),(6459,97,0,1057,1),(6460,134,0,1057,2),(6461,115,0,1057,1),(6462,99,0,1057,1),(6463,93,0,1057,50),(6464,142,0,1057,170),(6465,97,0,1058,1),(6466,134,0,1058,2),(6467,115,0,1058,1),(6468,99,0,1058,1),(6469,93,0,1058,53),(6470,142,0,1058,170),(6471,97,0,1059,1),(6472,134,0,1059,2),(6473,115,0,1059,1),(6474,99,0,1059,1),(6475,93,0,1059,56),(6476,142,0,1059,170),(6477,97,0,1060,1),(6478,134,0,1060,2),(6479,115,0,1060,1),(6480,99,0,1060,4),(6481,143,0,1060,0),(6482,144,0,1060,0),(6483,145,0,1060,0),(6484,146,0,1060,0),(6485,147,0,1060,1),(6486,97,0,1061,1),(6487,134,0,1061,2),(6488,115,0,1061,1),(6489,99,0,1061,1),(6490,93,0,1061,53),(6491,142,0,1061,166),(6492,97,0,1062,1),(6493,134,0,1062,2),(6494,115,0,1062,1),(6495,99,0,1062,1),(6496,93,0,1062,57),(6497,142,0,1062,166),(6498,97,0,1063,1),(6499,134,0,1063,2),(6500,115,0,1063,1),(6501,99,0,1063,1),(6502,93,0,1063,58),(6503,142,0,1063,166),(6504,97,0,1064,1),(6505,134,0,1064,2),(6506,115,0,1064,1),(6507,99,0,1064,1),(6508,93,0,1064,53),(6509,142,0,1064,167),(6510,97,0,1065,1),(6511,134,0,1065,2),(6512,115,0,1065,1),(6513,99,0,1065,1),(6514,93,0,1065,57),(6515,142,0,1065,167),(6516,97,0,1066,1),(6517,134,0,1066,2),(6518,115,0,1066,1),(6519,99,0,1066,1),(6520,93,0,1066,58),(6521,142,0,1066,167),(6522,97,0,1067,1),(6523,134,0,1067,2),(6524,115,0,1067,1),(6525,99,0,1067,1),(6526,93,0,1067,53),(6527,142,0,1067,168),(6528,97,0,1068,1),(6529,134,0,1068,2),(6530,115,0,1068,1),(6531,99,0,1068,1),(6532,93,0,1068,57),(6533,142,0,1068,168),(6534,97,0,1069,1),(6535,134,0,1069,2),(6536,115,0,1069,1),(6537,99,0,1069,1),(6538,93,0,1069,58),(6539,142,0,1069,168),(6540,97,0,1070,1),(6541,134,0,1070,2),(6542,115,0,1070,1),(6543,99,0,1070,1),(6544,93,0,1070,53),(6545,142,0,1070,169),(6546,97,0,1071,1),(6547,134,0,1071,2),(6548,115,0,1071,1),(6549,99,0,1071,1),(6550,93,0,1071,57),(6551,142,0,1071,169),(6552,97,0,1072,1),(6553,134,0,1072,2),(6554,115,0,1072,1),(6555,99,0,1072,1),(6556,93,0,1072,58),(6557,142,0,1072,169),(6558,97,0,1073,1),(6559,134,0,1073,2),(6560,115,0,1073,1),(6561,99,0,1073,1),(6562,93,0,1073,53),(6563,142,0,1073,170),(6564,97,0,1074,1),(6565,134,0,1074,2),(6566,115,0,1074,1),(6567,99,0,1074,1),(6568,93,0,1074,57),(6569,142,0,1074,170),(6570,97,0,1075,1),(6571,134,0,1075,2),(6572,115,0,1075,1),(6573,99,0,1075,1),(6574,93,0,1075,58),(6575,142,0,1075,170),(6576,97,0,1076,1),(6577,134,0,1076,2),(6578,115,0,1076,1),(6579,99,0,1076,4),(6580,143,0,1076,0),(6581,144,0,1076,0),(6582,145,0,1076,0),(6583,146,0,1076,0),(6584,147,0,1076,0),(6585,97,0,1077,1),(6586,134,0,1077,2),(6587,115,0,1077,1),(6588,99,0,1077,1),(6589,93,0,1077,50),(6590,142,0,1077,166),(6591,97,0,1078,1),(6592,134,0,1078,2),(6593,115,0,1078,1),(6594,99,0,1078,1),(6595,93,0,1078,56),(6596,142,0,1078,166),(6597,97,0,1079,1),(6598,134,0,1079,2),(6599,115,0,1079,1),(6600,99,0,1079,1),(6601,93,0,1079,57),(6602,142,0,1079,166),(6603,97,0,1080,1),(6604,134,0,1080,2),(6605,115,0,1080,1),(6606,99,0,1080,1),(6607,93,0,1080,50),(6608,142,0,1080,167),(6609,97,0,1081,1),(6610,134,0,1081,2),(6611,115,0,1081,1),(6612,99,0,1081,1),(6613,93,0,1081,56),(6614,142,0,1081,167),(6615,97,0,1082,1),(6616,134,0,1082,2),(6617,115,0,1082,1),(6618,99,0,1082,1),(6619,93,0,1082,57),(6620,142,0,1082,167),(6621,97,0,1083,1),(6622,134,0,1083,2),(6623,115,0,1083,1),(6624,99,0,1083,1),(6625,93,0,1083,50),(6626,142,0,1083,168),(6627,97,0,1084,1),(6628,134,0,1084,2),(6629,115,0,1084,1),(6630,99,0,1084,1),(6631,93,0,1084,56),(6632,142,0,1084,168),(6633,97,0,1085,1),(6634,134,0,1085,2),(6635,115,0,1085,1),(6636,99,0,1085,1),(6637,93,0,1085,57),(6638,142,0,1085,168),(6639,97,0,1086,1),(6640,134,0,1086,2),(6641,115,0,1086,1),(6642,99,0,1086,1),(6643,93,0,1086,50),(6644,142,0,1086,169),(6645,97,0,1087,1),(6646,134,0,1087,2),(6647,115,0,1087,1),(6648,99,0,1087,1),(6649,93,0,1087,56),(6650,142,0,1087,169),(6651,97,0,1088,1),(6652,134,0,1088,2),(6653,115,0,1088,1),(6654,99,0,1088,1),(6655,93,0,1088,57),(6656,142,0,1088,169),(6657,97,0,1089,1),(6658,134,0,1089,2),(6659,115,0,1089,1),(6660,99,0,1089,1),(6661,93,0,1089,50),(6662,142,0,1089,170),(6663,97,0,1090,1),(6664,134,0,1090,2),(6665,115,0,1090,1),(6666,99,0,1090,1),(6667,93,0,1090,56),(6668,142,0,1090,170),(6669,97,0,1091,1),(6670,134,0,1091,2),(6671,115,0,1091,1),(6672,99,0,1091,1),(6673,93,0,1091,57),(6674,142,0,1091,170),(6675,97,0,1092,1),(6676,134,0,1092,2),(6677,115,0,1092,1),(6678,99,0,1092,4),(6679,143,0,1092,0),(6680,144,0,1092,0),(6681,145,0,1092,0),(6682,146,0,1092,0),(6683,147,0,1092,0),(6684,97,0,1093,1),(6685,134,0,1093,2),(6686,115,0,1093,1),(6687,99,0,1093,1),(6688,93,0,1093,56),(6689,142,0,1093,166),(6690,97,0,1094,1),(6691,134,0,1094,2),(6692,115,0,1094,1),(6693,99,0,1094,1),(6694,93,0,1094,57),(6695,142,0,1094,166),(6696,97,0,1095,1),(6697,134,0,1095,2),(6698,115,0,1095,1),(6699,99,0,1095,1),(6700,93,0,1095,59),(6701,142,0,1095,166),(6702,97,0,1096,1),(6703,134,0,1096,2),(6704,115,0,1096,1),(6705,99,0,1096,1),(6706,93,0,1096,56),(6707,142,0,1096,167),(6708,97,0,1097,1),(6709,134,0,1097,2),(6710,115,0,1097,1),(6711,99,0,1097,1),(6712,93,0,1097,57),(6713,142,0,1097,167),(6714,97,0,1098,1),(6715,134,0,1098,2),(6716,115,0,1098,1),(6717,99,0,1098,1),(6718,93,0,1098,59),(6719,142,0,1098,167),(6720,97,0,1099,1),(6721,134,0,1099,2),(6722,115,0,1099,1),(6723,99,0,1099,1),(6724,93,0,1099,56),(6725,142,0,1099,168),(6726,97,0,1100,1),(6727,134,0,1100,2),(6728,115,0,1100,1),(6729,99,0,1100,1),(6730,93,0,1100,57),(6731,142,0,1100,168),(6732,97,0,1101,1),(6733,134,0,1101,2),(6734,115,0,1101,1),(6735,99,0,1101,1),(6736,93,0,1101,59),(6737,142,0,1101,168),(6738,97,0,1102,1),(6739,134,0,1102,2),(6740,115,0,1102,1),(6741,99,0,1102,1),(6742,93,0,1102,56),(6743,142,0,1102,169),(6744,97,0,1103,1),(6745,134,0,1103,2),(6746,115,0,1103,1),(6747,99,0,1103,1),(6748,93,0,1103,57),(6749,142,0,1103,169),(6750,97,0,1104,1),(6751,134,0,1104,2),(6752,115,0,1104,1),(6753,99,0,1104,1),(6754,93,0,1104,59),(6755,142,0,1104,169),(6756,97,0,1105,1),(6757,134,0,1105,2),(6758,115,0,1105,1),(6759,99,0,1105,1),(6760,93,0,1105,56),(6761,142,0,1105,170),(6762,97,0,1106,1),(6763,134,0,1106,2),(6764,115,0,1106,1),(6765,99,0,1106,1),(6766,93,0,1106,57),(6767,142,0,1106,170),(6768,97,0,1107,1),(6769,134,0,1107,2),(6770,115,0,1107,1),(6771,99,0,1107,1),(6772,93,0,1107,59),(6773,142,0,1107,170),(6774,97,0,1108,1),(6775,134,0,1108,2),(6776,115,0,1108,1),(6777,99,0,1108,4),(6778,143,0,1108,0),(6779,144,0,1108,0),(6780,145,0,1108,0),(6781,146,0,1108,0),(6782,147,0,1108,0),(6783,97,0,1109,1),(6784,134,0,1109,2),(6785,115,0,1109,1),(6786,99,0,1109,1),(6787,93,0,1109,57),(6788,142,0,1109,166),(6789,97,0,1110,1),(6790,134,0,1110,2),(6791,115,0,1110,1),(6792,99,0,1110,1),(6793,93,0,1110,57),(6794,142,0,1110,167),(6795,97,0,1111,1),(6796,134,0,1111,2),(6797,115,0,1111,1),(6798,99,0,1111,1),(6799,93,0,1111,57),(6800,142,0,1111,168),(6801,97,0,1112,1),(6802,134,0,1112,2),(6803,115,0,1112,1),(6804,99,0,1112,1),(6805,93,0,1112,57),(6806,142,0,1112,169),(6807,97,0,1113,1),(6808,134,0,1113,2),(6809,115,0,1113,1),(6810,99,0,1113,1),(6811,93,0,1113,57),(6812,142,0,1113,170),(6813,97,0,1114,1),(6814,134,0,1114,2),(6815,115,0,1114,1),(6816,99,0,1114,4),(6817,143,0,1114,0),(6818,144,0,1114,0),(6819,145,0,1114,0),(6820,146,0,1114,0),(6821,147,0,1114,0),(6822,97,0,1115,1),(6823,134,0,1115,2),(6824,115,0,1115,1),(6825,99,0,1115,1),(6826,93,0,1115,52),(6827,142,0,1115,166),(6828,97,0,1116,1),(6829,134,0,1116,2),(6830,115,0,1116,1),(6831,99,0,1116,1),(6832,93,0,1116,57),(6833,142,0,1116,166),(6834,97,0,1117,1),(6835,134,0,1117,2),(6836,115,0,1117,1),(6837,99,0,1117,1),(6838,93,0,1117,59),(6839,142,0,1117,166),(6840,97,0,1118,1),(6841,134,0,1118,2),(6842,115,0,1118,1),(6843,99,0,1118,1),(6844,93,0,1118,52),(6845,142,0,1118,167),(6846,97,0,1119,1),(6847,134,0,1119,2),(6848,115,0,1119,1),(6849,99,0,1119,1),(6850,93,0,1119,57),(6851,142,0,1119,167),(6852,97,0,1120,1),(6853,134,0,1120,2),(6854,115,0,1120,1),(6855,99,0,1120,1),(6856,93,0,1120,59),(6857,142,0,1120,167),(6858,97,0,1121,1),(6859,134,0,1121,2),(6860,115,0,1121,1),(6861,99,0,1121,1),(6862,93,0,1121,52),(6863,142,0,1121,168),(6864,97,0,1122,1),(6865,134,0,1122,2),(6866,115,0,1122,1),(6867,99,0,1122,1),(6868,93,0,1122,57),(6869,142,0,1122,168),(6870,97,0,1123,1),(6871,134,0,1123,2),(6872,115,0,1123,1),(6873,99,0,1123,1),(6874,93,0,1123,59),(6875,142,0,1123,168),(6876,97,0,1124,1),(6877,134,0,1124,2),(6878,115,0,1124,1),(6879,99,0,1124,1),(6880,93,0,1124,52),(6881,142,0,1124,169),(6882,97,0,1125,1),(6883,134,0,1125,2),(6884,115,0,1125,1),(6885,99,0,1125,1),(6886,93,0,1125,57),(6887,142,0,1125,169),(6888,97,0,1126,1),(6889,134,0,1126,2),(6890,115,0,1126,1),(6891,99,0,1126,1),(6892,93,0,1126,59),(6893,142,0,1126,169),(6894,97,0,1127,1),(6895,134,0,1127,2),(6896,115,0,1127,1),(6897,99,0,1127,1),(6898,93,0,1127,52),(6899,142,0,1127,170),(6900,97,0,1128,1),(6901,134,0,1128,2),(6902,115,0,1128,1),(6903,99,0,1128,1),(6904,93,0,1128,57),(6905,142,0,1128,170),(6906,97,0,1129,1),(6907,134,0,1129,2),(6908,115,0,1129,1),(6909,99,0,1129,1),(6910,93,0,1129,59),(6911,142,0,1129,170),(6912,97,0,1130,1),(6913,134,0,1130,2),(6914,115,0,1130,1),(6915,99,0,1130,4),(6916,143,0,1130,0),(6917,144,0,1130,0),(6918,145,0,1130,1),(6919,146,0,1130,1),(6920,147,0,1130,0),(6921,97,0,1131,1),(6922,134,0,1131,2),(6923,115,0,1131,1),(6924,99,0,1131,1),(6925,93,0,1131,56),(6926,142,0,1131,166),(6927,97,0,1132,1),(6928,134,0,1132,2),(6929,115,0,1132,1),(6930,99,0,1132,1),(6931,93,0,1132,57),(6932,142,0,1132,166),(6933,97,0,1133,1),(6934,134,0,1133,2),(6935,115,0,1133,1),(6936,99,0,1133,1),(6937,93,0,1133,59),(6938,142,0,1133,166),(6939,97,0,1134,1),(6940,134,0,1134,2),(6941,115,0,1134,1),(6942,99,0,1134,1),(6943,93,0,1134,56),(6944,142,0,1134,167),(6945,97,0,1135,1),(6946,134,0,1135,2),(6947,115,0,1135,1),(6948,99,0,1135,1),(6949,93,0,1135,57),(6950,142,0,1135,167),(6951,97,0,1136,1),(6952,134,0,1136,2),(6953,115,0,1136,1),(6954,99,0,1136,1),(6955,93,0,1136,59),(6956,142,0,1136,167),(6957,97,0,1137,1),(6958,134,0,1137,2),(6959,115,0,1137,1),(6960,99,0,1137,1),(6961,93,0,1137,56),(6962,142,0,1137,168),(6963,97,0,1138,1),(6964,134,0,1138,2),(6965,115,0,1138,1),(6966,99,0,1138,1),(6967,93,0,1138,57),(6968,142,0,1138,168),(6969,97,0,1139,1),(6970,134,0,1139,2),(6971,115,0,1139,1),(6972,99,0,1139,1),(6973,93,0,1139,59),(6974,142,0,1139,168),(6975,97,0,1140,1),(6976,134,0,1140,2),(6977,115,0,1140,1),(6978,99,0,1140,1),(6979,93,0,1140,56),(6980,142,0,1140,169),(6981,97,0,1141,1),(6982,134,0,1141,2),(6983,115,0,1141,1),(6984,99,0,1141,1),(6985,93,0,1141,57),(6986,142,0,1141,169),(6987,97,0,1142,1),(6988,134,0,1142,2),(6989,115,0,1142,1),(6990,99,0,1142,1),(6991,93,0,1142,59),(6992,142,0,1142,169),(6993,97,0,1143,1),(6994,134,0,1143,2),(6995,115,0,1143,1),(6996,99,0,1143,1),(6997,93,0,1143,56),(6998,142,0,1143,170),(6999,97,0,1144,1),(7000,134,0,1144,2),(7001,115,0,1144,1),(7002,99,0,1144,1),(7003,93,0,1144,57),(7004,142,0,1144,170),(7005,97,0,1145,1),(7006,134,0,1145,2),(7007,115,0,1145,1),(7008,99,0,1145,1),(7009,93,0,1145,59),(7010,142,0,1145,170),(7011,97,0,1146,1),(7012,134,0,1146,2),(7013,115,0,1146,1),(7014,99,0,1146,4),(7015,143,0,1146,0),(7016,144,0,1146,1),(7017,145,0,1146,0),(7018,146,0,1146,0),(7019,147,0,1146,1),(7020,97,0,1147,1),(7021,134,0,1147,2),(7022,115,0,1147,1),(7023,99,0,1147,1),(7024,93,0,1147,53),(7025,142,0,1147,166),(7026,97,0,1148,1),(7027,134,0,1148,2),(7028,115,0,1148,1),(7029,99,0,1148,1),(7030,93,0,1148,57),(7031,142,0,1148,166),(7032,97,0,1149,1),(7033,134,0,1149,2),(7034,115,0,1149,1),(7035,99,0,1149,1),(7036,93,0,1149,58),(7037,142,0,1149,166),(7038,97,0,1150,1),(7039,134,0,1150,2),(7040,115,0,1150,1),(7041,99,0,1150,1),(7042,93,0,1150,53),(7043,142,0,1150,167),(7044,97,0,1151,1),(7045,134,0,1151,2),(7046,115,0,1151,1),(7047,99,0,1151,1),(7048,93,0,1151,57),(7049,142,0,1151,167),(7050,97,0,1152,1),(7051,134,0,1152,2),(7052,115,0,1152,1),(7053,99,0,1152,1),(7054,93,0,1152,58),(7055,142,0,1152,167),(7056,97,0,1153,1),(7057,134,0,1153,2),(7058,115,0,1153,1),(7059,99,0,1153,1),(7060,93,0,1153,53),(7061,142,0,1153,168),(7062,97,0,1154,1),(7063,134,0,1154,2),(7064,115,0,1154,1),(7065,99,0,1154,1),(7066,93,0,1154,57),(7067,142,0,1154,168),(7068,97,0,1155,1),(7069,134,0,1155,2),(7070,115,0,1155,1),(7071,99,0,1155,1),(7072,93,0,1155,58),(7073,142,0,1155,168),(7074,97,0,1156,1),(7075,134,0,1156,2),(7076,115,0,1156,1),(7077,99,0,1156,1),(7078,93,0,1156,53),(7079,142,0,1156,169),(7080,97,0,1157,1),(7081,134,0,1157,2),(7082,115,0,1157,1),(7083,99,0,1157,1),(7084,93,0,1157,57),(7085,142,0,1157,169),(7086,97,0,1158,1),(7087,134,0,1158,2),(7088,115,0,1158,1),(7089,99,0,1158,1),(7090,93,0,1158,58),(7091,142,0,1158,169),(7092,97,0,1159,1),(7093,134,0,1159,2),(7094,115,0,1159,1),(7095,99,0,1159,1),(7096,93,0,1159,53),(7097,142,0,1159,170),(7098,97,0,1160,1),(7099,134,0,1160,2),(7100,115,0,1160,1),(7101,99,0,1160,1),(7102,93,0,1160,57),(7103,142,0,1160,170),(7104,97,0,1161,1),(7105,134,0,1161,2),(7106,115,0,1161,1),(7107,99,0,1161,1),(7108,93,0,1161,58),(7109,142,0,1161,170),(7110,97,0,1162,1),(7111,134,0,1162,2),(7112,115,0,1162,1),(7113,99,0,1162,4),(7114,143,0,1162,1),(7115,144,0,1162,0),(7116,145,0,1162,0),(7117,146,0,1162,0),(7118,147,0,1162,0),(7119,97,0,1163,1),(7120,134,0,1163,2),(7121,115,0,1163,1),(7122,99,0,1163,1),(7123,93,0,1163,50),(7124,142,0,1163,166),(7125,97,0,1164,1),(7126,134,0,1164,2),(7127,115,0,1164,1),(7128,99,0,1164,1),(7129,93,0,1164,52),(7130,142,0,1164,166),(7131,97,0,1165,1),(7132,134,0,1165,2),(7133,115,0,1165,1),(7134,99,0,1165,1),(7135,93,0,1165,60),(7136,142,0,1165,166),(7137,97,0,1166,1),(7138,134,0,1166,2),(7139,115,0,1166,1),(7140,99,0,1166,1),(7141,93,0,1166,50),(7142,142,0,1166,167),(7143,97,0,1167,1),(7144,134,0,1167,2),(7145,115,0,1167,1),(7146,99,0,1167,1),(7147,93,0,1167,52),(7148,142,0,1167,167),(7149,97,0,1168,1),(7150,134,0,1168,2),(7151,115,0,1168,1),(7152,99,0,1168,1),(7153,93,0,1168,60),(7154,142,0,1168,167),(7155,97,0,1169,1),(7156,134,0,1169,2),(7157,115,0,1169,1),(7158,99,0,1169,1),(7159,93,0,1169,50),(7160,142,0,1169,168),(7161,97,0,1170,1),(7162,134,0,1170,2),(7163,115,0,1170,1),(7164,99,0,1170,1),(7165,93,0,1170,52),(7166,142,0,1170,168),(7167,97,0,1171,1),(7168,134,0,1171,2),(7169,115,0,1171,1),(7170,99,0,1171,1),(7171,93,0,1171,60),(7172,142,0,1171,168),(7173,97,0,1172,1),(7174,134,0,1172,2),(7175,115,0,1172,1),(7176,99,0,1172,1),(7177,93,0,1172,50),(7178,142,0,1172,169),(7179,97,0,1173,1),(7180,134,0,1173,2),(7181,115,0,1173,1),(7182,99,0,1173,1),(7183,93,0,1173,52),(7184,142,0,1173,169),(7185,97,0,1174,1),(7186,134,0,1174,2),(7187,115,0,1174,1),(7188,99,0,1174,1),(7189,93,0,1174,60),(7190,142,0,1174,169),(7191,97,0,1175,1),(7192,134,0,1175,2),(7193,115,0,1175,1),(7194,99,0,1175,1),(7195,93,0,1175,50),(7196,142,0,1175,170),(7197,97,0,1176,1),(7198,134,0,1176,2),(7199,115,0,1176,1),(7200,99,0,1176,1),(7201,93,0,1176,52),(7202,142,0,1176,170),(7203,97,0,1177,1),(7204,134,0,1177,2),(7205,115,0,1177,1),(7206,99,0,1177,1),(7207,93,0,1177,60),(7208,142,0,1177,170),(7209,97,0,1178,1),(7210,134,0,1178,2),(7211,115,0,1178,1),(7212,99,0,1178,4),(7213,143,0,1178,0),(7214,144,0,1178,0),(7215,145,0,1178,0),(7216,146,0,1178,1),(7217,147,0,1178,0),(7218,97,0,1179,1),(7219,134,0,1179,2),(7220,115,0,1179,1),(7221,99,0,1179,1),(7222,93,0,1179,50),(7223,142,0,1179,166),(7224,97,0,1180,1),(7225,134,0,1180,2),(7226,115,0,1180,1),(7227,99,0,1180,1),(7228,93,0,1180,53),(7229,142,0,1180,166),(7230,97,0,1181,1),(7231,134,0,1181,2),(7232,115,0,1181,1),(7233,99,0,1181,1),(7234,93,0,1181,56),(7235,142,0,1181,166),(7236,97,0,1182,1),(7237,134,0,1182,2),(7238,115,0,1182,1),(7239,99,0,1182,1),(7240,93,0,1182,50),(7241,142,0,1182,167),(7242,97,0,1183,1),(7243,134,0,1183,2),(7244,115,0,1183,1),(7245,99,0,1183,1),(7246,93,0,1183,53),(7247,142,0,1183,167),(7248,97,0,1184,1),(7249,134,0,1184,2),(7250,115,0,1184,1),(7251,99,0,1184,1),(7252,93,0,1184,56),(7253,142,0,1184,167),(7254,97,0,1185,1),(7255,134,0,1185,2),(7256,115,0,1185,1),(7257,99,0,1185,1),(7258,93,0,1185,50),(7259,142,0,1185,168),(7260,97,0,1186,1),(7261,134,0,1186,2),(7262,115,0,1186,1),(7263,99,0,1186,1),(7264,93,0,1186,53),(7265,142,0,1186,168),(7266,97,0,1187,1),(7267,134,0,1187,2),(7268,115,0,1187,1),(7269,99,0,1187,1),(7270,93,0,1187,56),(7271,142,0,1187,168),(7272,97,0,1188,1),(7273,134,0,1188,2),(7274,115,0,1188,1),(7275,99,0,1188,1),(7276,93,0,1188,50),(7277,142,0,1188,169),(7278,97,0,1189,1),(7279,134,0,1189,2),(7280,115,0,1189,1),(7281,99,0,1189,1),(7282,93,0,1189,53),(7283,142,0,1189,169),(7284,97,0,1190,1),(7285,134,0,1190,2),(7286,115,0,1190,1),(7287,99,0,1190,1),(7288,93,0,1190,56),(7289,142,0,1190,169),(7290,97,0,1191,1),(7291,134,0,1191,2),(7292,115,0,1191,1),(7293,99,0,1191,1),(7294,93,0,1191,50),(7295,142,0,1191,170),(7296,97,0,1192,1),(7297,134,0,1192,2),(7298,115,0,1192,1),(7299,99,0,1192,1),(7300,93,0,1192,53),(7301,142,0,1192,170),(7302,97,0,1193,1),(7303,134,0,1193,2),(7304,115,0,1193,1),(7305,99,0,1193,1),(7306,93,0,1193,56),(7307,142,0,1193,170),(7308,97,0,1194,1),(7309,134,0,1194,2),(7310,115,0,1194,1),(7311,99,0,1194,4),(7312,143,0,1194,0),(7313,144,0,1194,0),(7314,145,0,1194,1),(7315,146,0,1194,0),(7316,147,0,1194,0),(7317,97,0,1195,1),(7318,134,0,1195,2),(7319,115,0,1195,1),(7320,99,0,1195,1),(7321,93,0,1195,52),(7322,142,0,1195,166),(7323,97,0,1196,1),(7324,134,0,1196,2),(7325,115,0,1196,1),(7326,99,0,1196,1),(7327,93,0,1196,53),(7328,142,0,1196,166),(7329,97,0,1197,1),(7330,134,0,1197,2),(7331,115,0,1197,1),(7332,99,0,1197,1),(7333,93,0,1197,57),(7334,142,0,1197,166),(7335,97,0,1198,1),(7336,134,0,1198,2),(7337,115,0,1198,1),(7338,99,0,1198,1),(7339,93,0,1198,52),(7340,142,0,1198,167),(7341,97,0,1199,1),(7342,134,0,1199,2),(7343,115,0,1199,1),(7344,99,0,1199,1),(7345,93,0,1199,53),(7346,142,0,1199,167),(7347,97,0,1200,1),(7348,134,0,1200,2),(7349,115,0,1200,1),(7350,99,0,1200,1),(7351,93,0,1200,57),(7352,142,0,1200,167),(7353,97,0,1201,1),(7354,134,0,1201,2),(7355,115,0,1201,1),(7356,99,0,1201,1),(7357,93,0,1201,52),(7358,142,0,1201,168),(7359,97,0,1202,1),(7360,134,0,1202,2),(7361,115,0,1202,1),(7362,99,0,1202,1),(7363,93,0,1202,53),(7364,142,0,1202,168),(7365,97,0,1203,1),(7366,134,0,1203,2),(7367,115,0,1203,1),(7368,99,0,1203,1),(7369,93,0,1203,57),(7370,142,0,1203,168),(7371,97,0,1204,1),(7372,134,0,1204,2),(7373,115,0,1204,1),(7374,99,0,1204,1),(7375,93,0,1204,52),(7376,142,0,1204,169),(7377,97,0,1205,1),(7378,134,0,1205,2),(7379,115,0,1205,1),(7380,99,0,1205,1),(7381,93,0,1205,53),(7382,142,0,1205,169),(7383,97,0,1206,1),(7384,134,0,1206,2),(7385,115,0,1206,1),(7386,99,0,1206,1),(7387,93,0,1206,57),(7388,142,0,1206,169),(7389,97,0,1207,1),(7390,134,0,1207,2),(7391,115,0,1207,1),(7392,99,0,1207,1),(7393,93,0,1207,52),(7394,142,0,1207,170),(7395,97,0,1208,1),(7396,134,0,1208,2),(7397,115,0,1208,1),(7398,99,0,1208,1),(7399,93,0,1208,53),(7400,142,0,1208,170),(7401,97,0,1209,1),(7402,134,0,1209,2),(7403,115,0,1209,1),(7404,99,0,1209,1),(7405,93,0,1209,57),(7406,142,0,1209,170),(7407,97,0,1210,1),(7408,134,0,1210,2),(7409,115,0,1210,1),(7410,99,0,1210,4),(7411,143,0,1210,1),(7412,144,0,1210,1),(7413,145,0,1210,0),(7414,146,0,1210,0),(7415,147,0,1210,0),(7416,97,0,1211,1),(7417,134,0,1211,2),(7418,115,0,1211,1),(7419,99,0,1211,1),(7420,93,0,1211,50),(7421,142,0,1211,167),(7422,97,0,1212,1),(7423,134,0,1212,2),(7424,115,0,1212,1),(7425,99,0,1212,1),(7426,93,0,1212,58),(7427,142,0,1212,167),(7428,97,0,1213,1),(7429,134,0,1213,2),(7430,115,0,1213,1),(7431,99,0,1213,1),(7432,93,0,1213,60),(7433,142,0,1213,167),(7434,97,0,1214,1),(7435,134,0,1214,2),(7436,115,0,1214,1),(7437,99,0,1214,1),(7438,93,0,1214,50),(7439,142,0,1214,168),(7440,97,0,1215,1),(7441,134,0,1215,2),(7442,115,0,1215,1),(7443,99,0,1215,1),(7444,93,0,1215,58),(7445,142,0,1215,168),(7446,97,0,1216,1),(7447,134,0,1216,2),(7448,115,0,1216,1),(7449,99,0,1216,1),(7450,93,0,1216,60),(7451,142,0,1216,168),(7452,97,0,1217,1),(7453,134,0,1217,2),(7454,115,0,1217,1),(7455,99,0,1217,1),(7456,93,0,1217,50),(7457,142,0,1217,169),(7458,97,0,1218,1),(7459,134,0,1218,2),(7460,115,0,1218,1),(7461,99,0,1218,1),(7462,93,0,1218,58),(7463,142,0,1218,169),(7464,97,0,1219,1),(7465,134,0,1219,2),(7466,115,0,1219,1),(7467,99,0,1219,1),(7468,93,0,1219,60),(7469,142,0,1219,169),(7470,97,0,1220,1),(7471,134,0,1220,2),(7472,115,0,1220,1),(7473,99,0,1220,4),(7474,143,0,1220,1),(7475,144,0,1220,0),(7476,145,0,1220,1),(7477,146,0,1220,1),(7478,147,0,1220,0),(7479,97,0,1221,1),(7480,134,0,1221,2),(7481,115,0,1221,1),(7482,99,0,1221,1),(7483,93,0,1221,49),(7484,142,0,1221,166),(7485,97,0,1222,1),(7486,134,0,1222,2),(7487,115,0,1222,1),(7488,99,0,1222,1),(7489,93,0,1222,50),(7490,142,0,1222,166),(7491,97,0,1223,1),(7492,134,0,1223,2),(7493,115,0,1223,1),(7494,99,0,1223,1),(7495,93,0,1223,52),(7496,142,0,1223,166),(7497,97,0,1224,1),(7498,134,0,1224,2),(7499,115,0,1224,1),(7500,99,0,1224,1),(7501,93,0,1224,49),(7502,142,0,1224,167),(7503,97,0,1225,1),(7504,134,0,1225,2),(7505,115,0,1225,1),(7506,99,0,1225,1),(7507,93,0,1225,50),(7508,142,0,1225,167),(7509,97,0,1226,1),(7510,134,0,1226,2),(7511,115,0,1226,1),(7512,99,0,1226,1),(7513,93,0,1226,52),(7514,142,0,1226,167),(7515,97,0,1227,1),(7516,134,0,1227,2),(7517,115,0,1227,1),(7518,99,0,1227,1),(7519,93,0,1227,49),(7520,142,0,1227,168),(7521,97,0,1228,1),(7522,134,0,1228,2),(7523,115,0,1228,1),(7524,99,0,1228,1),(7525,93,0,1228,50),(7526,142,0,1228,168),(7527,97,0,1229,1),(7528,134,0,1229,2),(7529,115,0,1229,1),(7530,99,0,1229,1),(7531,93,0,1229,52),(7532,142,0,1229,168),(7533,97,0,1230,1),(7534,134,0,1230,2),(7535,115,0,1230,1),(7536,99,0,1230,1),(7537,93,0,1230,49),(7538,142,0,1230,169),(7539,97,0,1231,1),(7540,134,0,1231,2),(7541,115,0,1231,1),(7542,99,0,1231,1),(7543,93,0,1231,50),(7544,142,0,1231,169),(7545,97,0,1232,1),(7546,134,0,1232,2),(7547,115,0,1232,1),(7548,99,0,1232,1),(7549,93,0,1232,52),(7550,142,0,1232,169),(7551,97,0,1233,1),(7552,134,0,1233,2),(7553,115,0,1233,1),(7554,99,0,1233,1),(7555,93,0,1233,49),(7556,142,0,1233,170),(7557,97,0,1234,1),(7558,134,0,1234,2),(7559,115,0,1234,1),(7560,99,0,1234,1),(7561,93,0,1234,50),(7562,142,0,1234,170),(7563,97,0,1235,1),(7564,134,0,1235,2),(7565,115,0,1235,1),(7566,99,0,1235,1),(7567,93,0,1235,52),(7568,142,0,1235,170),(7569,97,0,1236,1),(7570,134,0,1236,2),(7571,115,0,1236,1),(7572,99,0,1236,4),(7573,143,0,1236,0),(7574,144,0,1236,0),(7575,145,0,1236,0),(7576,146,0,1236,0),(7577,147,0,1236,1),(7578,97,0,1237,1),(7579,134,0,1237,2),(7580,115,0,1237,1),(7581,99,0,1237,1),(7582,93,0,1237,50),(7583,142,0,1237,166),(7584,97,0,1238,1),(7585,134,0,1238,2),(7586,115,0,1238,1),(7587,99,0,1238,1),(7588,93,0,1238,56),(7589,142,0,1238,166),(7590,97,0,1239,1),(7591,134,0,1239,2),(7592,115,0,1239,1),(7593,99,0,1239,1),(7594,93,0,1239,58),(7595,142,0,1239,166),(7596,97,0,1240,1),(7597,134,0,1240,2),(7598,115,0,1240,1),(7599,99,0,1240,1),(7600,93,0,1240,50),(7601,142,0,1240,167),(7602,97,0,1241,1),(7603,134,0,1241,2),(7604,115,0,1241,1),(7605,99,0,1241,1),(7606,93,0,1241,56),(7607,142,0,1241,167),(7608,97,0,1242,1),(7609,134,0,1242,2),(7610,115,0,1242,1),(7611,99,0,1242,1),(7612,93,0,1242,58),(7613,142,0,1242,167),(7614,97,0,1243,1),(7615,134,0,1243,2),(7616,115,0,1243,1),(7617,99,0,1243,1),(7618,93,0,1243,50),(7619,142,0,1243,168),(7620,97,0,1244,1),(7621,134,0,1244,2),(7622,115,0,1244,1),(7623,99,0,1244,1),(7624,93,0,1244,56),(7625,142,0,1244,168),(7626,97,0,1245,1),(7627,134,0,1245,2),(7628,115,0,1245,1),(7629,99,0,1245,1),(7630,93,0,1245,58),(7631,142,0,1245,168),(7632,97,0,1246,1),(7633,134,0,1246,2),(7634,115,0,1246,1),(7635,99,0,1246,1),(7636,93,0,1246,50),(7637,142,0,1246,169),(7638,97,0,1247,1),(7639,134,0,1247,2),(7640,115,0,1247,1),(7641,99,0,1247,1),(7642,93,0,1247,56),(7643,142,0,1247,169),(7644,97,0,1248,1),(7645,134,0,1248,2),(7646,115,0,1248,1),(7647,99,0,1248,1),(7648,93,0,1248,58),(7649,142,0,1248,169),(7650,97,0,1249,1),(7651,134,0,1249,2),(7652,115,0,1249,1),(7653,99,0,1249,1),(7654,93,0,1249,50),(7655,142,0,1249,170),(7656,97,0,1250,1),(7657,134,0,1250,2),(7658,115,0,1250,1),(7659,99,0,1250,1),(7660,93,0,1250,56),(7661,142,0,1250,170),(7662,97,0,1251,1),(7663,134,0,1251,2),(7664,115,0,1251,1),(7665,99,0,1251,1),(7666,93,0,1251,58),(7667,142,0,1251,170),(7668,97,0,1252,1),(7669,134,0,1252,2),(7670,115,0,1252,1),(7671,99,0,1252,4),(7672,143,0,1252,0),(7673,144,0,1252,0),(7674,145,0,1252,0),(7675,146,0,1252,0),(7676,147,0,1252,0),(7677,97,0,1253,1),(7678,134,0,1253,2),(7679,115,0,1253,1),(7680,99,0,1253,1),(7681,93,0,1253,56),(7682,142,0,1253,166),(7683,97,0,1254,1),(7684,134,0,1254,2),(7685,115,0,1254,1),(7686,99,0,1254,1),(7687,93,0,1254,58),(7688,142,0,1254,166),(7689,97,0,1255,1),(7690,134,0,1255,2),(7691,115,0,1255,1),(7692,99,0,1255,1),(7693,93,0,1255,59),(7694,142,0,1255,166),(7695,97,0,1256,1),(7696,134,0,1256,2),(7697,115,0,1256,1),(7698,99,0,1256,1),(7699,93,0,1256,56),(7700,142,0,1256,167),(7701,97,0,1257,1),(7702,134,0,1257,2),(7703,115,0,1257,1),(7704,99,0,1257,1),(7705,93,0,1257,58),(7706,142,0,1257,167),(7707,97,0,1258,1),(7708,134,0,1258,2),(7709,115,0,1258,1),(7710,99,0,1258,1),(7711,93,0,1258,59),(7712,142,0,1258,167),(7713,97,0,1259,1),(7714,134,0,1259,2),(7715,115,0,1259,1),(7716,99,0,1259,1),(7717,93,0,1259,56),(7718,142,0,1259,168),(7719,97,0,1260,1),(7720,134,0,1260,2),(7721,115,0,1260,1),(7722,99,0,1260,1),(7723,93,0,1260,58),(7724,142,0,1260,168),(7725,97,0,1261,1),(7726,134,0,1261,2),(7727,115,0,1261,1),(7728,99,0,1261,1),(7729,93,0,1261,59),(7730,142,0,1261,168),(7731,97,0,1262,1),(7732,134,0,1262,2),(7733,115,0,1262,1),(7734,99,0,1262,1),(7735,93,0,1262,56),(7736,142,0,1262,169),(7737,97,0,1263,1),(7738,134,0,1263,2),(7739,115,0,1263,1),(7740,99,0,1263,1),(7741,93,0,1263,58),(7742,142,0,1263,169),(7743,97,0,1264,1),(7744,134,0,1264,2),(7745,115,0,1264,1),(7746,99,0,1264,1),(7747,93,0,1264,59),(7748,142,0,1264,169),(7749,97,0,1265,1),(7750,134,0,1265,2),(7751,115,0,1265,1),(7752,99,0,1265,1),(7753,93,0,1265,56),(7754,142,0,1265,170),(7755,97,0,1266,1),(7756,134,0,1266,2),(7757,115,0,1266,1),(7758,99,0,1266,1),(7759,93,0,1266,58),(7760,142,0,1266,170),(7761,97,0,1267,1),(7762,134,0,1267,2),(7763,115,0,1267,1),(7764,99,0,1267,1),(7765,93,0,1267,59),(7766,142,0,1267,170),(7767,97,0,1268,1),(7768,134,0,1268,2),(7769,115,0,1268,1),(7770,99,0,1268,4),(7771,143,0,1268,0),(7772,144,0,1268,1),(7773,145,0,1268,0),(7774,146,0,1268,1),(7775,147,0,1268,0),(7776,97,0,1269,1),(7777,134,0,1269,2),(7778,115,0,1269,1),(7779,99,0,1269,1),(7780,93,0,1269,51),(7781,142,0,1269,166),(7782,97,0,1270,1),(7783,134,0,1270,2),(7784,115,0,1270,1),(7785,99,0,1270,1),(7786,93,0,1270,53),(7787,142,0,1270,166),(7788,97,0,1271,1),(7789,134,0,1271,2),(7790,115,0,1271,1),(7791,99,0,1271,1),(7792,93,0,1271,58),(7793,142,0,1271,166),(7794,97,0,1272,1),(7795,134,0,1272,2),(7796,115,0,1272,1),(7797,99,0,1272,1),(7798,93,0,1272,51),(7799,142,0,1272,167),(7800,97,0,1273,1),(7801,134,0,1273,2),(7802,115,0,1273,1),(7803,99,0,1273,1),(7804,93,0,1273,53),(7805,142,0,1273,167),(7806,97,0,1274,1),(7807,134,0,1274,2),(7808,115,0,1274,1),(7809,99,0,1274,1),(7810,93,0,1274,58),(7811,142,0,1274,167),(7812,97,0,1275,1),(7813,134,0,1275,2),(7814,115,0,1275,1),(7815,99,0,1275,1),(7816,93,0,1275,51),(7817,142,0,1275,168),(7818,97,0,1276,1),(7819,134,0,1276,2),(7820,115,0,1276,1),(7821,99,0,1276,1),(7822,93,0,1276,53),(7823,142,0,1276,168),(7824,97,0,1277,1),(7825,134,0,1277,2),(7826,115,0,1277,1),(7827,99,0,1277,1),(7828,93,0,1277,58),(7829,142,0,1277,168),(7830,97,0,1278,1),(7831,134,0,1278,2),(7832,115,0,1278,1),(7833,99,0,1278,1),(7834,93,0,1278,51),(7835,142,0,1278,169),(7836,97,0,1279,1),(7837,134,0,1279,2),(7838,115,0,1279,1),(7839,99,0,1279,1),(7840,93,0,1279,53),(7841,142,0,1279,169),(7842,97,0,1280,1),(7843,134,0,1280,2),(7844,115,0,1280,1),(7845,99,0,1280,1),(7846,93,0,1280,58),(7847,142,0,1280,169),(7848,97,0,1281,1),(7849,134,0,1281,2),(7850,115,0,1281,1),(7851,99,0,1281,1),(7852,93,0,1281,51),(7853,142,0,1281,170),(7854,97,0,1282,1),(7855,134,0,1282,2),(7856,115,0,1282,1),(7857,99,0,1282,1),(7858,93,0,1282,53),(7859,142,0,1282,170),(7860,97,0,1283,1),(7861,134,0,1283,2),(7862,115,0,1283,1),(7863,99,0,1283,1),(7864,93,0,1283,58),(7865,142,0,1283,170),(7866,97,0,1284,1),(7867,134,0,1284,2),(7868,115,0,1284,1),(7869,99,0,1284,4),(7870,143,0,1284,0),(7871,144,0,1284,0),(7872,145,0,1284,0),(7873,146,0,1284,0),(7874,147,0,1284,0),(7875,97,0,1285,1),(7876,134,0,1285,2),(7877,115,0,1285,1),(7878,99,0,1285,1),(7879,93,0,1285,56),(7880,142,0,1285,166),(7881,97,0,1286,1),(7882,134,0,1286,2),(7883,115,0,1286,1),(7884,99,0,1286,1),(7885,93,0,1286,57),(7886,142,0,1286,166),(7887,97,0,1287,1),(7888,134,0,1287,2),(7889,115,0,1287,1),(7890,99,0,1287,1),(7891,93,0,1287,58),(7892,142,0,1287,166),(7893,97,0,1288,1),(7894,134,0,1288,2),(7895,115,0,1288,1),(7896,99,0,1288,1),(7897,93,0,1288,56),(7898,142,0,1288,167),(7899,97,0,1289,1),(7900,134,0,1289,2),(7901,115,0,1289,1),(7902,99,0,1289,1),(7903,93,0,1289,57),(7904,142,0,1289,167),(7905,97,0,1290,1),(7906,134,0,1290,2),(7907,115,0,1290,1),(7908,99,0,1290,1),(7909,93,0,1290,58),(7910,142,0,1290,167),(7911,97,0,1291,1),(7912,134,0,1291,2),(7913,115,0,1291,1),(7914,99,0,1291,1),(7915,93,0,1291,56),(7916,142,0,1291,168),(7917,97,0,1292,1),(7918,134,0,1292,2),(7919,115,0,1292,1),(7920,99,0,1292,1),(7921,93,0,1292,57),(7922,142,0,1292,168),(7923,97,0,1293,1),(7924,134,0,1293,2),(7925,115,0,1293,1),(7926,99,0,1293,1),(7927,93,0,1293,58),(7928,142,0,1293,168),(7929,97,0,1294,1),(7930,134,0,1294,2),(7931,115,0,1294,1),(7932,99,0,1294,1),(7933,93,0,1294,56),(7934,142,0,1294,169),(7935,97,0,1295,1),(7936,134,0,1295,2),(7937,115,0,1295,1),(7938,99,0,1295,1),(7939,93,0,1295,57),(7940,142,0,1295,169),(7941,97,0,1296,1),(7942,134,0,1296,2),(7943,115,0,1296,1),(7944,99,0,1296,1),(7945,93,0,1296,58),(7946,142,0,1296,169),(7947,97,0,1297,1),(7948,134,0,1297,2),(7949,115,0,1297,1),(7950,99,0,1297,1),(7951,93,0,1297,56),(7952,142,0,1297,170),(7953,97,0,1298,1),(7954,134,0,1298,2),(7955,115,0,1298,1),(7956,99,0,1298,1),(7957,93,0,1298,57),(7958,142,0,1298,170),(7959,97,0,1299,1),(7960,134,0,1299,2),(7961,115,0,1299,1),(7962,99,0,1299,1),(7963,93,0,1299,58),(7964,142,0,1299,170),(7965,97,0,1300,1),(7966,134,0,1300,2),(7967,115,0,1300,1),(7968,99,0,1300,4),(7969,143,0,1300,0),(7970,144,0,1300,0),(7971,145,0,1300,0),(7972,146,0,1300,0),(7973,147,0,1300,0),(7974,97,0,1301,1),(7975,134,0,1301,2),(7976,115,0,1301,1),(7977,99,0,1301,1),(7978,93,0,1301,52),(7979,142,0,1301,166),(7980,97,0,1302,1),(7981,134,0,1302,2),(7982,115,0,1302,1),(7983,99,0,1302,1),(7984,93,0,1302,56),(7985,142,0,1302,166),(7986,97,0,1303,1),(7987,134,0,1303,2),(7988,115,0,1303,1),(7989,99,0,1303,1),(7990,93,0,1303,57),(7991,142,0,1303,166),(7992,97,0,1304,1),(7993,134,0,1304,2),(7994,115,0,1304,1),(7995,99,0,1304,1),(7996,93,0,1304,52),(7997,142,0,1304,167),(7998,97,0,1305,1),(7999,134,0,1305,2),(8000,115,0,1305,1),(8001,99,0,1305,1),(8002,93,0,1305,56),(8003,142,0,1305,167),(8004,97,0,1306,1),(8005,134,0,1306,2),(8006,115,0,1306,1),(8007,99,0,1306,1),(8008,93,0,1306,57),(8009,142,0,1306,167),(8010,97,0,1307,1),(8011,134,0,1307,2),(8012,115,0,1307,1),(8013,99,0,1307,1),(8014,93,0,1307,52),(8015,142,0,1307,168),(8016,97,0,1308,1),(8017,134,0,1308,2),(8018,115,0,1308,1),(8019,99,0,1308,1),(8020,93,0,1308,56),(8021,142,0,1308,168),(8022,97,0,1309,1),(8023,134,0,1309,2),(8024,115,0,1309,1),(8025,99,0,1309,1),(8026,93,0,1309,57),(8027,142,0,1309,168),(8028,97,0,1310,1),(8029,134,0,1310,2),(8030,115,0,1310,1),(8031,99,0,1310,1),(8032,93,0,1310,52),(8033,142,0,1310,169),(8034,97,0,1311,1),(8035,134,0,1311,2),(8036,115,0,1311,1),(8037,99,0,1311,1),(8038,93,0,1311,56),(8039,142,0,1311,169),(8040,97,0,1312,1),(8041,134,0,1312,2),(8042,115,0,1312,1),(8043,99,0,1312,1),(8044,93,0,1312,57),(8045,142,0,1312,169),(8046,97,0,1313,1),(8047,134,0,1313,2),(8048,115,0,1313,1),(8049,99,0,1313,1),(8050,93,0,1313,52),(8051,142,0,1313,170),(8052,97,0,1314,1),(8053,134,0,1314,2),(8054,115,0,1314,1),(8055,99,0,1314,1),(8056,93,0,1314,56),(8057,142,0,1314,170),(8058,97,0,1315,1),(8059,134,0,1315,2),(8060,115,0,1315,1),(8061,99,0,1315,1),(8062,93,0,1315,57),(8063,142,0,1315,170),(8064,97,0,1316,1),(8065,134,0,1316,2),(8066,115,0,1316,1),(8067,99,0,1316,4),(8068,143,0,1316,1),(8069,144,0,1316,0),(8070,145,0,1316,1),(8071,146,0,1316,0),(8072,147,0,1316,1),(8073,97,0,1317,1),(8074,134,0,1317,2),(8075,115,0,1317,1),(8076,99,0,1317,1),(8077,93,0,1317,50),(8078,142,0,1317,166),(8079,97,0,1318,1),(8080,134,0,1318,2),(8081,115,0,1318,1),(8082,99,0,1318,1),(8083,93,0,1318,52),(8084,142,0,1318,166),(8085,97,0,1319,1),(8086,134,0,1319,2),(8087,115,0,1319,1),(8088,99,0,1319,1),(8089,93,0,1319,53),(8090,142,0,1319,166),(8091,97,0,1320,1),(8092,134,0,1320,2),(8093,115,0,1320,1),(8094,99,0,1320,1),(8095,93,0,1320,50),(8096,142,0,1320,167),(8097,97,0,1321,1),(8098,134,0,1321,2),(8099,115,0,1321,1),(8100,99,0,1321,1),(8101,93,0,1321,52),(8102,142,0,1321,167),(8103,97,0,1322,1),(8104,134,0,1322,2),(8105,115,0,1322,1),(8106,99,0,1322,1),(8107,93,0,1322,53),(8108,142,0,1322,167),(8109,97,0,1323,1),(8110,134,0,1323,2),(8111,115,0,1323,1),(8112,99,0,1323,1),(8113,93,0,1323,50),(8114,142,0,1323,168),(8115,97,0,1324,1),(8116,134,0,1324,2),(8117,115,0,1324,1),(8118,99,0,1324,1),(8119,93,0,1324,52),(8120,142,0,1324,168),(8121,97,0,1325,1),(8122,134,0,1325,2),(8123,115,0,1325,1),(8124,99,0,1325,1),(8125,93,0,1325,53),(8126,142,0,1325,168),(8127,97,0,1326,1),(8128,134,0,1326,2),(8129,115,0,1326,1),(8130,99,0,1326,1),(8131,93,0,1326,50),(8132,142,0,1326,169),(8133,97,0,1327,1),(8134,134,0,1327,2),(8135,115,0,1327,1),(8136,99,0,1327,1),(8137,93,0,1327,52),(8138,142,0,1327,169),(8139,97,0,1328,1),(8140,134,0,1328,2),(8141,115,0,1328,1),(8142,99,0,1328,1),(8143,93,0,1328,53),(8144,142,0,1328,169),(8145,97,0,1329,1),(8146,134,0,1329,2),(8147,115,0,1329,1),(8148,99,0,1329,1),(8149,93,0,1329,50),(8150,142,0,1329,170),(8151,97,0,1330,1),(8152,134,0,1330,2),(8153,115,0,1330,1),(8154,99,0,1330,1),(8155,93,0,1330,52),(8156,142,0,1330,170),(8157,97,0,1331,1),(8158,134,0,1331,2),(8159,115,0,1331,1),(8160,99,0,1331,1),(8161,93,0,1331,53),(8162,142,0,1331,170),(8163,97,0,1332,1),(8164,134,0,1332,2),(8165,115,0,1332,1),(8166,99,0,1332,4),(8167,143,0,1332,1),(8168,144,0,1332,0),(8169,145,0,1332,1),(8170,146,0,1332,0),(8171,147,0,1332,0),(8172,97,0,1333,1),(8173,134,0,1333,2),(8174,115,0,1333,1),(8175,99,0,1333,1),(8176,93,0,1333,49),(8177,142,0,1333,166),(8178,97,0,1334,1),(8179,134,0,1334,2),(8180,115,0,1334,1),(8181,99,0,1334,1),(8182,93,0,1334,56),(8183,142,0,1334,166),(8184,97,0,1335,1),(8185,134,0,1335,2),(8186,115,0,1335,1),(8187,99,0,1335,1),(8188,93,0,1335,60),(8189,142,0,1335,166),(8190,97,0,1336,1),(8191,134,0,1336,2),(8192,115,0,1336,1),(8193,99,0,1336,1),(8194,93,0,1336,49),(8195,142,0,1336,167),(8196,97,0,1337,1),(8197,134,0,1337,2),(8198,115,0,1337,1),(8199,99,0,1337,1),(8200,93,0,1337,56),(8201,142,0,1337,167),(8202,97,0,1338,1),(8203,134,0,1338,2),(8204,115,0,1338,1),(8205,99,0,1338,1),(8206,93,0,1338,60),(8207,142,0,1338,167),(8208,97,0,1339,1),(8209,134,0,1339,2),(8210,115,0,1339,1),(8211,99,0,1339,1),(8212,93,0,1339,49),(8213,142,0,1339,168),(8214,97,0,1340,1),(8215,134,0,1340,2),(8216,115,0,1340,1),(8217,99,0,1340,1),(8218,93,0,1340,56),(8219,142,0,1340,168),(8220,97,0,1341,1),(8221,134,0,1341,2),(8222,115,0,1341,1),(8223,99,0,1341,1),(8224,93,0,1341,60),(8225,142,0,1341,168),(8226,97,0,1342,1),(8227,134,0,1342,2),(8228,115,0,1342,1),(8229,99,0,1342,1),(8230,93,0,1342,49),(8231,142,0,1342,169),(8232,97,0,1343,1),(8233,134,0,1343,2),(8234,115,0,1343,1),(8235,99,0,1343,1),(8236,93,0,1343,56),(8237,142,0,1343,169),(8238,97,0,1344,1),(8239,134,0,1344,2),(8240,115,0,1344,1),(8241,99,0,1344,1),(8242,93,0,1344,60),(8243,142,0,1344,169),(8244,97,0,1345,1),(8245,134,0,1345,2),(8246,115,0,1345,1),(8247,99,0,1345,1),(8248,93,0,1345,49),(8249,142,0,1345,170),(8250,97,0,1346,1),(8251,134,0,1346,2),(8252,115,0,1346,1),(8253,99,0,1346,1),(8254,93,0,1346,56),(8255,142,0,1346,170),(8256,97,0,1347,1),(8257,134,0,1347,2),(8258,115,0,1347,1),(8259,99,0,1347,1),(8260,93,0,1347,60),(8261,142,0,1347,170),(8262,97,0,1348,1),(8263,134,0,1348,2),(8264,115,0,1348,1),(8265,99,0,1348,4),(8266,143,0,1348,0),(8267,144,0,1348,1),(8268,145,0,1348,0),(8269,146,0,1348,1),(8270,147,0,1348,0),(8271,97,0,1349,1),(8272,134,0,1349,2),(8273,115,0,1349,1),(8274,99,0,1349,1),(8275,93,0,1349,49),(8276,142,0,1349,166),(8277,97,0,1350,1),(8278,134,0,1350,2),(8279,115,0,1350,1),(8280,99,0,1350,1),(8281,93,0,1350,50),(8282,142,0,1350,166),(8283,97,0,1351,1),(8284,134,0,1351,2),(8285,115,0,1351,1),(8286,99,0,1351,1),(8287,93,0,1351,56),(8288,142,0,1351,166),(8289,97,0,1352,1),(8290,134,0,1352,2),(8291,115,0,1352,1),(8292,99,0,1352,1),(8293,93,0,1352,49),(8294,142,0,1352,167),(8295,97,0,1353,1),(8296,134,0,1353,2),(8297,115,0,1353,1),(8298,99,0,1353,1),(8299,93,0,1353,50),(8300,142,0,1353,167),(8301,97,0,1354,1),(8302,134,0,1354,2),(8303,115,0,1354,1),(8304,99,0,1354,1),(8305,93,0,1354,56),(8306,142,0,1354,167),(8307,97,0,1355,1),(8308,134,0,1355,2),(8309,115,0,1355,1),(8310,99,0,1355,1),(8311,93,0,1355,49),(8312,142,0,1355,168),(8313,97,0,1356,1),(8314,134,0,1356,2),(8315,115,0,1356,1),(8316,99,0,1356,1),(8317,93,0,1356,50),(8318,142,0,1356,168),(8319,97,0,1357,1),(8320,134,0,1357,2),(8321,115,0,1357,1),(8322,99,0,1357,1),(8323,93,0,1357,56),(8324,142,0,1357,168),(8325,97,0,1358,1),(8326,134,0,1358,2),(8327,115,0,1358,1),(8328,99,0,1358,1),(8329,93,0,1358,49),(8330,142,0,1358,169),(8331,97,0,1359,1),(8332,134,0,1359,2),(8333,115,0,1359,1),(8334,99,0,1359,1),(8335,93,0,1359,50),(8336,142,0,1359,169),(8337,97,0,1360,1),(8338,134,0,1360,2),(8339,115,0,1360,1),(8340,99,0,1360,1),(8341,93,0,1360,56),(8342,142,0,1360,169),(8343,97,0,1361,1),(8344,134,0,1361,2),(8345,115,0,1361,1),(8346,99,0,1361,1),(8347,93,0,1361,49),(8348,142,0,1361,170),(8349,97,0,1362,1),(8350,134,0,1362,2),(8351,115,0,1362,1),(8352,99,0,1362,1),(8353,93,0,1362,50),(8354,142,0,1362,170),(8355,97,0,1363,1),(8356,134,0,1363,2),(8357,115,0,1363,1),(8358,99,0,1363,1),(8359,93,0,1363,56),(8360,142,0,1363,170),(8361,97,0,1364,1),(8362,134,0,1364,2),(8363,115,0,1364,1),(8364,99,0,1364,4),(8365,143,0,1364,0),(8366,144,0,1364,0),(8367,145,0,1364,0),(8368,146,0,1364,1),(8369,147,0,1364,0),(8370,97,0,1365,1),(8371,134,0,1365,2),(8372,115,0,1365,1),(8373,99,0,1365,1),(8374,93,0,1365,50),(8375,142,0,1365,166),(8376,97,0,1366,1),(8377,134,0,1366,2),(8378,115,0,1366,1),(8379,99,0,1366,1),(8380,93,0,1366,53),(8381,142,0,1366,166),(8382,97,0,1367,1),(8383,134,0,1367,2),(8384,115,0,1367,1),(8385,99,0,1367,1),(8386,93,0,1367,57),(8387,142,0,1367,166),(8388,97,0,1368,1),(8389,134,0,1368,2),(8390,115,0,1368,1),(8391,99,0,1368,1),(8392,93,0,1368,50),(8393,142,0,1368,167),(8394,97,0,1369,1),(8395,134,0,1369,2),(8396,115,0,1369,1),(8397,99,0,1369,1),(8398,93,0,1369,53),(8399,142,0,1369,167),(8400,97,0,1370,1),(8401,134,0,1370,2),(8402,115,0,1370,1),(8403,99,0,1370,1),(8404,93,0,1370,57),(8405,142,0,1370,167),(8406,97,0,1371,1),(8407,134,0,1371,2),(8408,115,0,1371,1),(8409,99,0,1371,1),(8410,93,0,1371,50),(8411,142,0,1371,168),(8412,97,0,1372,1),(8413,134,0,1372,2),(8414,115,0,1372,1),(8415,99,0,1372,1),(8416,93,0,1372,53),(8417,142,0,1372,168),(8418,97,0,1373,1),(8419,134,0,1373,2),(8420,115,0,1373,1),(8421,99,0,1373,1),(8422,93,0,1373,57),(8423,142,0,1373,168),(8424,97,0,1374,1),(8425,134,0,1374,2),(8426,115,0,1374,1),(8427,99,0,1374,1),(8428,93,0,1374,50),(8429,142,0,1374,169),(8430,97,0,1375,1),(8431,134,0,1375,2),(8432,115,0,1375,1),(8433,99,0,1375,1),(8434,93,0,1375,53),(8435,142,0,1375,169),(8436,97,0,1376,1),(8437,134,0,1376,2),(8438,115,0,1376,1),(8439,99,0,1376,1),(8440,93,0,1376,57),(8441,142,0,1376,169),(8442,97,0,1377,1),(8443,134,0,1377,2),(8444,115,0,1377,1),(8445,99,0,1377,1),(8446,93,0,1377,50),(8447,142,0,1377,170),(8448,97,0,1378,1),(8449,134,0,1378,2),(8450,115,0,1378,1),(8451,99,0,1378,1),(8452,93,0,1378,53),(8453,142,0,1378,170),(8454,97,0,1379,1),(8455,134,0,1379,2),(8456,115,0,1379,1),(8457,99,0,1379,1),(8458,93,0,1379,57),(8459,142,0,1379,170),(8460,97,0,1380,1),(8461,134,0,1380,2),(8462,115,0,1380,1),(8463,99,0,1380,4),(8464,143,0,1380,0),(8465,144,0,1380,1),(8466,145,0,1380,0),(8467,146,0,1380,0),(8468,147,0,1380,1),(8469,97,0,1381,1),(8470,134,0,1381,2),(8471,115,0,1381,1),(8472,99,0,1381,1),(8473,93,0,1381,49),(8474,142,0,1381,166),(8475,97,0,1382,1),(8476,134,0,1382,2),(8477,115,0,1382,1),(8478,99,0,1382,1),(8479,93,0,1382,50),(8480,142,0,1382,166),(8481,97,0,1383,1),(8482,134,0,1383,2),(8483,115,0,1383,1),(8484,99,0,1383,1),(8485,93,0,1383,57),(8486,142,0,1383,166),(8487,97,0,1384,1),(8488,134,0,1384,2),(8489,115,0,1384,1),(8490,99,0,1384,1),(8491,93,0,1384,49),(8492,142,0,1384,167),(8493,97,0,1385,1),(8494,134,0,1385,2),(8495,115,0,1385,1),(8496,99,0,1385,1),(8497,93,0,1385,50),(8498,142,0,1385,167),(8499,97,0,1386,1),(8500,134,0,1386,2),(8501,115,0,1386,1),(8502,99,0,1386,1),(8503,93,0,1386,57),(8504,142,0,1386,167),(8505,97,0,1387,1),(8506,134,0,1387,2),(8507,115,0,1387,1),(8508,99,0,1387,1),(8509,93,0,1387,49),(8510,142,0,1387,168),(8511,97,0,1388,1),(8512,134,0,1388,2),(8513,115,0,1388,1),(8514,99,0,1388,1),(8515,93,0,1388,50),(8516,142,0,1388,168),(8517,97,0,1389,1),(8518,134,0,1389,2),(8519,115,0,1389,1),(8520,99,0,1389,1),(8521,93,0,1389,57),(8522,142,0,1389,168),(8523,97,0,1390,1),(8524,134,0,1390,2),(8525,115,0,1390,1),(8526,99,0,1390,1),(8527,93,0,1390,49),(8528,142,0,1390,169),(8529,97,0,1391,1),(8530,134,0,1391,2),(8531,115,0,1391,1),(8532,99,0,1391,1),(8533,93,0,1391,50),(8534,142,0,1391,169),(8535,97,0,1392,1),(8536,134,0,1392,2),(8537,115,0,1392,1),(8538,99,0,1392,1),(8539,93,0,1392,57),(8540,142,0,1392,169),(8541,97,0,1393,1),(8542,134,0,1393,2),(8543,115,0,1393,1),(8544,99,0,1393,1),(8545,93,0,1393,49),(8546,142,0,1393,170),(8547,97,0,1394,1),(8548,134,0,1394,2),(8549,115,0,1394,1),(8550,99,0,1394,1),(8551,93,0,1394,50),(8552,142,0,1394,170),(8553,97,0,1395,1),(8554,134,0,1395,2),(8555,115,0,1395,1),(8556,99,0,1395,1),(8557,93,0,1395,57),(8558,142,0,1395,170),(8559,97,0,1396,1),(8560,134,0,1396,2),(8561,115,0,1396,1),(8562,99,0,1396,4),(8563,143,0,1396,0),(8564,144,0,1396,1),(8565,145,0,1396,0),(8566,146,0,1396,0),(8567,147,0,1396,1),(8568,97,0,1397,1),(8569,134,0,1397,2),(8570,115,0,1397,1),(8571,99,0,1397,1),(8572,93,0,1397,50),(8573,142,0,1397,166),(8574,97,0,1398,1),(8575,134,0,1398,2),(8576,115,0,1398,1),(8577,99,0,1398,1),(8578,93,0,1398,53),(8579,142,0,1398,166),(8580,97,0,1399,1),(8581,134,0,1399,2),(8582,115,0,1399,1),(8583,99,0,1399,1),(8584,93,0,1399,58),(8585,142,0,1399,166),(8586,97,0,1400,1),(8587,134,0,1400,2),(8588,115,0,1400,1),(8589,99,0,1400,1),(8590,93,0,1400,50),(8591,142,0,1400,167),(8592,97,0,1401,1),(8593,134,0,1401,2),(8594,115,0,1401,1),(8595,99,0,1401,1),(8596,93,0,1401,53),(8597,142,0,1401,167),(8598,97,0,1402,1),(8599,134,0,1402,2),(8600,115,0,1402,1),(8601,99,0,1402,1),(8602,93,0,1402,58),(8603,142,0,1402,167),(8604,97,0,1403,1),(8605,134,0,1403,2),(8606,115,0,1403,1),(8607,99,0,1403,1),(8608,93,0,1403,50),(8609,142,0,1403,168),(8610,97,0,1404,1),(8611,134,0,1404,2),(8612,115,0,1404,1),(8613,99,0,1404,1),(8614,93,0,1404,53),(8615,142,0,1404,168),(8616,97,0,1405,1),(8617,134,0,1405,2),(8618,115,0,1405,1),(8619,99,0,1405,1),(8620,93,0,1405,58),(8621,142,0,1405,168),(8622,97,0,1406,1),(8623,134,0,1406,2),(8624,115,0,1406,1),(8625,99,0,1406,1),(8626,93,0,1406,50),(8627,142,0,1406,169),(8628,97,0,1407,1),(8629,134,0,1407,2),(8630,115,0,1407,1),(8631,99,0,1407,1),(8632,93,0,1407,53),(8633,142,0,1407,169),(8634,97,0,1408,1),(8635,134,0,1408,2),(8636,115,0,1408,1),(8637,99,0,1408,1),(8638,93,0,1408,58),(8639,142,0,1408,169),(8640,97,0,1409,1),(8641,134,0,1409,2),(8642,115,0,1409,1),(8643,99,0,1409,1),(8644,93,0,1409,50),(8645,142,0,1409,170),(8646,97,0,1410,1),(8647,134,0,1410,2),(8648,115,0,1410,1),(8649,99,0,1410,1),(8650,93,0,1410,53),(8651,142,0,1410,170),(8652,97,0,1411,1),(8653,134,0,1411,2),(8654,115,0,1411,1),(8655,99,0,1411,1),(8656,93,0,1411,58),(8657,142,0,1411,170),(8658,97,0,1412,1),(8659,134,0,1412,2),(8660,115,0,1412,1),(8661,99,0,1412,4),(8662,143,0,1412,0),(8663,144,0,1412,0),(8664,145,0,1412,0),(8665,146,0,1412,1),(8666,147,0,1412,0),(8667,97,0,1413,1),(8668,134,0,1413,2),(8669,115,0,1413,1),(8670,99,0,1413,1),(8671,93,0,1413,50),(8672,142,0,1413,166),(8673,97,0,1414,1),(8674,134,0,1414,2),(8675,115,0,1414,1),(8676,99,0,1414,1),(8677,93,0,1414,53),(8678,142,0,1414,166),(8679,97,0,1415,1),(8680,134,0,1415,2),(8681,115,0,1415,1),(8682,99,0,1415,1),(8683,93,0,1415,58),(8684,142,0,1415,166),(8685,97,0,1416,1),(8686,134,0,1416,2),(8687,115,0,1416,1),(8688,99,0,1416,1),(8689,93,0,1416,50),(8690,142,0,1416,167),(8691,97,0,1417,1),(8692,134,0,1417,2),(8693,115,0,1417,1),(8694,99,0,1417,1),(8695,93,0,1417,53),(8696,142,0,1417,167),(8697,97,0,1418,1),(8698,134,0,1418,2),(8699,115,0,1418,1),(8700,99,0,1418,1),(8701,93,0,1418,58),(8702,142,0,1418,167),(8703,97,0,1419,1),(8704,134,0,1419,2),(8705,115,0,1419,1),(8706,99,0,1419,1),(8707,93,0,1419,50),(8708,142,0,1419,168),(8709,97,0,1420,1),(8710,134,0,1420,2),(8711,115,0,1420,1),(8712,99,0,1420,1),(8713,93,0,1420,53),(8714,142,0,1420,168),(8715,97,0,1421,1),(8716,134,0,1421,2),(8717,115,0,1421,1),(8718,99,0,1421,1),(8719,93,0,1421,58),(8720,142,0,1421,168),(8721,97,0,1422,1),(8722,134,0,1422,2),(8723,115,0,1422,1),(8724,99,0,1422,1),(8725,93,0,1422,50),(8726,142,0,1422,169),(8727,97,0,1423,1),(8728,134,0,1423,2),(8729,115,0,1423,1),(8730,99,0,1423,1),(8731,93,0,1423,53),(8732,142,0,1423,169),(8733,97,0,1424,1),(8734,134,0,1424,2),(8735,115,0,1424,1),(8736,99,0,1424,1),(8737,93,0,1424,58),(8738,142,0,1424,169),(8739,97,0,1425,1),(8740,134,0,1425,2),(8741,115,0,1425,1),(8742,99,0,1425,1),(8743,93,0,1425,50),(8744,142,0,1425,170),(8745,97,0,1426,1),(8746,134,0,1426,2),(8747,115,0,1426,1),(8748,99,0,1426,1),(8749,93,0,1426,53),(8750,142,0,1426,170),(8751,97,0,1427,1),(8752,134,0,1427,2),(8753,115,0,1427,1),(8754,99,0,1427,1),(8755,93,0,1427,58),(8756,142,0,1427,170),(8757,97,0,1428,1),(8758,134,0,1428,2),(8759,115,0,1428,1),(8760,99,0,1428,4),(8761,143,0,1428,0),(8762,144,0,1428,1),(8763,145,0,1428,0),(8764,146,0,1428,0),(8765,147,0,1428,0),(8766,97,0,1429,1),(8767,134,0,1429,2),(8768,115,0,1429,1),(8769,99,0,1429,1),(8770,93,0,1429,50),(8771,142,0,1429,166),(8772,97,0,1430,1),(8773,134,0,1430,2),(8774,115,0,1430,1),(8775,99,0,1430,1),(8776,93,0,1430,53),(8777,142,0,1430,166),(8778,97,0,1431,1),(8779,134,0,1431,2),(8780,115,0,1431,1),(8781,99,0,1431,1),(8782,93,0,1431,58),(8783,142,0,1431,166),(8784,97,0,1432,1),(8785,134,0,1432,2),(8786,115,0,1432,1),(8787,99,0,1432,1),(8788,93,0,1432,50),(8789,142,0,1432,167),(8790,97,0,1433,1),(8791,134,0,1433,2),(8792,115,0,1433,1),(8793,99,0,1433,1),(8794,93,0,1433,53),(8795,142,0,1433,167),(8796,97,0,1434,1),(8797,134,0,1434,2),(8798,115,0,1434,1),(8799,99,0,1434,1),(8800,93,0,1434,58),(8801,142,0,1434,167),(8802,97,0,1435,1),(8803,134,0,1435,2),(8804,115,0,1435,1),(8805,99,0,1435,1),(8806,93,0,1435,50),(8807,142,0,1435,168),(8808,97,0,1436,1),(8809,134,0,1436,2),(8810,115,0,1436,1),(8811,99,0,1436,1),(8812,93,0,1436,53),(8813,142,0,1436,168),(8814,97,0,1437,1),(8815,134,0,1437,2),(8816,115,0,1437,1),(8817,99,0,1437,1),(8818,93,0,1437,58),(8819,142,0,1437,168),(8820,97,0,1438,1),(8821,134,0,1438,2),(8822,115,0,1438,1),(8823,99,0,1438,1),(8824,93,0,1438,50),(8825,142,0,1438,169),(8826,97,0,1439,1),(8827,134,0,1439,2),(8828,115,0,1439,1),(8829,99,0,1439,1),(8830,93,0,1439,53),(8831,142,0,1439,169),(8832,97,0,1440,1),(8833,134,0,1440,2),(8834,115,0,1440,1),(8835,99,0,1440,1),(8836,93,0,1440,58),(8837,142,0,1440,169),(8838,97,0,1441,1),(8839,134,0,1441,2),(8840,115,0,1441,1),(8841,99,0,1441,1),(8842,93,0,1441,50),(8843,142,0,1441,170),(8844,97,0,1442,1),(8845,134,0,1442,2),(8846,115,0,1442,1),(8847,99,0,1442,1),(8848,93,0,1442,53),(8849,142,0,1442,170),(8850,97,0,1443,1),(8851,134,0,1443,2),(8852,115,0,1443,1),(8853,99,0,1443,1),(8854,93,0,1443,58),(8855,142,0,1443,170),(8856,97,0,1444,1),(8857,134,0,1444,2),(8858,115,0,1444,1),(8859,99,0,1444,4),(8860,143,0,1444,1),(8861,144,0,1444,0),(8862,145,0,1444,0),(8863,146,0,1444,1),(8864,147,0,1444,0),(8865,97,0,1445,1),(8866,134,0,1445,2),(8867,115,0,1445,1),(8868,99,0,1445,1),(8869,93,0,1445,52),(8870,142,0,1445,166),(8871,97,0,1446,1),(8872,134,0,1446,2),(8873,115,0,1446,1),(8874,99,0,1446,1),(8875,93,0,1446,57),(8876,142,0,1446,166),(8877,97,0,1447,1),(8878,134,0,1447,2),(8879,115,0,1447,1),(8880,99,0,1447,1),(8881,93,0,1447,58),(8882,142,0,1447,166),(8883,97,0,1448,1),(8884,134,0,1448,2),(8885,115,0,1448,1),(8886,99,0,1448,1),(8887,93,0,1448,52),(8888,142,0,1448,167),(8889,97,0,1449,1),(8890,134,0,1449,2),(8891,115,0,1449,1),(8892,99,0,1449,1),(8893,93,0,1449,57),(8894,142,0,1449,167),(8895,97,0,1450,1),(8896,134,0,1450,2),(8897,115,0,1450,1),(8898,99,0,1450,1),(8899,93,0,1450,58),(8900,142,0,1450,167),(8901,97,0,1451,1),(8902,134,0,1451,2),(8903,115,0,1451,1),(8904,99,0,1451,1),(8905,93,0,1451,52),(8906,142,0,1451,168),(8907,97,0,1452,1),(8908,134,0,1452,2),(8909,115,0,1452,1),(8910,99,0,1452,1),(8911,93,0,1452,57),(8912,142,0,1452,168),(8913,97,0,1453,1),(8914,134,0,1453,2),(8915,115,0,1453,1),(8916,99,0,1453,1),(8917,93,0,1453,58),(8918,142,0,1453,168),(8919,97,0,1454,1),(8920,134,0,1454,2),(8921,115,0,1454,1),(8922,99,0,1454,1),(8923,93,0,1454,52),(8924,142,0,1454,169),(8925,97,0,1455,1),(8926,134,0,1455,2),(8927,115,0,1455,1),(8928,99,0,1455,1),(8929,93,0,1455,57),(8930,142,0,1455,169),(8931,97,0,1456,1),(8932,134,0,1456,2),(8933,115,0,1456,1),(8934,99,0,1456,1),(8935,93,0,1456,58),(8936,142,0,1456,169),(8937,97,0,1457,1),(8938,134,0,1457,2),(8939,115,0,1457,1),(8940,99,0,1457,1),(8941,93,0,1457,52),(8942,142,0,1457,170),(8943,97,0,1458,1),(8944,134,0,1458,2),(8945,115,0,1458,1),(8946,99,0,1458,1),(8947,93,0,1458,57),(8948,142,0,1458,170),(8949,97,0,1459,1),(8950,134,0,1459,2),(8951,115,0,1459,1),(8952,99,0,1459,1),(8953,93,0,1459,58),(8954,142,0,1459,170),(8955,97,0,1460,1),(8956,134,0,1460,2),(8957,115,0,1460,1),(8958,99,0,1460,4),(8959,143,0,1460,1),(8960,144,0,1460,0),(8961,145,0,1460,0),(8962,146,0,1460,1),(8963,147,0,1460,0),(8964,97,0,1461,1),(8965,134,0,1461,2),(8966,115,0,1461,1),(8967,99,0,1461,1),(8968,93,0,1461,49),(8969,142,0,1461,166),(8970,97,0,1462,1),(8971,134,0,1462,2),(8972,115,0,1462,1),(8973,99,0,1462,1),(8974,93,0,1462,59),(8975,142,0,1462,166),(8976,97,0,1463,1),(8977,134,0,1463,2),(8978,115,0,1463,1),(8979,99,0,1463,1),(8980,93,0,1463,60),(8981,142,0,1463,166),(8982,97,0,1464,1),(8983,134,0,1464,2),(8984,115,0,1464,1),(8985,99,0,1464,1),(8986,93,0,1464,49),(8987,142,0,1464,167),(8988,97,0,1465,1),(8989,134,0,1465,2),(8990,115,0,1465,1),(8991,99,0,1465,1),(8992,93,0,1465,59),(8993,142,0,1465,167),(8994,97,0,1466,1),(8995,134,0,1466,2),(8996,115,0,1466,1),(8997,99,0,1466,1),(8998,93,0,1466,60),(8999,142,0,1466,167),(9000,97,0,1467,1),(9001,134,0,1467,2),(9002,115,0,1467,1),(9003,99,0,1467,1),(9004,93,0,1467,49),(9005,142,0,1467,168),(9006,97,0,1468,1),(9007,134,0,1468,2),(9008,115,0,1468,1),(9009,99,0,1468,1),(9010,93,0,1468,59),(9011,142,0,1468,168),(9012,97,0,1469,1),(9013,134,0,1469,2),(9014,115,0,1469,1),(9015,99,0,1469,1),(9016,93,0,1469,60),(9017,142,0,1469,168),(9018,97,0,1470,1),(9019,134,0,1470,2),(9020,115,0,1470,1),(9021,99,0,1470,1),(9022,93,0,1470,49),(9023,142,0,1470,169),(9024,97,0,1471,1),(9025,134,0,1471,2),(9026,115,0,1471,1),(9027,99,0,1471,1),(9028,93,0,1471,59),(9029,142,0,1471,169),(9030,97,0,1472,1),(9031,134,0,1472,2),(9032,115,0,1472,1),(9033,99,0,1472,1),(9034,93,0,1472,60),(9035,142,0,1472,169),(9036,97,0,1473,1),(9037,134,0,1473,2),(9038,115,0,1473,1),(9039,99,0,1473,1),(9040,93,0,1473,49),(9041,142,0,1473,170),(9042,97,0,1474,1),(9043,134,0,1474,2),(9044,115,0,1474,1),(9045,99,0,1474,1),(9046,93,0,1474,59),(9047,142,0,1474,170),(9048,97,0,1475,1),(9049,134,0,1475,2),(9050,115,0,1475,1),(9051,99,0,1475,1),(9052,93,0,1475,60),(9053,142,0,1475,170),(9054,97,0,1476,1),(9055,134,0,1476,2),(9056,115,0,1476,1),(9057,99,0,1476,4),(9058,143,0,1476,0),(9059,144,0,1476,1),(9060,145,0,1476,1),(9061,146,0,1476,1),(9062,147,0,1476,0),(9063,97,0,1477,1),(9064,134,0,1477,2),(9065,115,0,1477,1),(9066,99,0,1477,1),(9067,93,0,1477,49),(9068,142,0,1477,166),(9069,97,0,1478,1),(9070,134,0,1478,2),(9071,115,0,1478,1),(9072,99,0,1478,1),(9073,93,0,1478,50),(9074,142,0,1478,166),(9075,97,0,1479,1),(9076,134,0,1479,2),(9077,115,0,1479,1),(9078,99,0,1479,1),(9079,93,0,1479,58),(9080,142,0,1479,166),(9081,97,0,1480,1),(9082,134,0,1480,2),(9083,115,0,1480,1),(9084,99,0,1480,1),(9085,93,0,1480,49),(9086,142,0,1480,167),(9087,97,0,1481,1),(9088,134,0,1481,2),(9089,115,0,1481,1),(9090,99,0,1481,1),(9091,93,0,1481,50),(9092,142,0,1481,167),(9093,97,0,1482,1),(9094,134,0,1482,2),(9095,115,0,1482,1),(9096,99,0,1482,1),(9097,93,0,1482,58),(9098,142,0,1482,167),(9099,97,0,1483,1),(9100,134,0,1483,2),(9101,115,0,1483,1),(9102,99,0,1483,1),(9103,93,0,1483,49),(9104,142,0,1483,168),(9105,97,0,1484,1),(9106,134,0,1484,2),(9107,115,0,1484,1),(9108,99,0,1484,1),(9109,93,0,1484,50),(9110,142,0,1484,168),(9111,97,0,1485,1),(9112,134,0,1485,2),(9113,115,0,1485,1),(9114,99,0,1485,1),(9115,93,0,1485,58),(9116,142,0,1485,168),(9117,97,0,1486,1),(9118,134,0,1486,2),(9119,115,0,1486,1),(9120,99,0,1486,1),(9121,93,0,1486,49),(9122,142,0,1486,169),(9123,97,0,1487,1),(9124,134,0,1487,2),(9125,115,0,1487,1),(9126,99,0,1487,1),(9127,93,0,1487,50),(9128,142,0,1487,169),(9129,97,0,1488,1),(9130,134,0,1488,2),(9131,115,0,1488,1),(9132,99,0,1488,1),(9133,93,0,1488,58),(9134,142,0,1488,169),(9135,97,0,1489,1),(9136,134,0,1489,2),(9137,115,0,1489,1),(9138,99,0,1489,1),(9139,93,0,1489,49),(9140,142,0,1489,170),(9141,97,0,1490,1),(9142,134,0,1490,2),(9143,115,0,1490,1),(9144,99,0,1490,1),(9145,93,0,1490,50),(9146,142,0,1490,170),(9147,97,0,1491,1),(9148,134,0,1491,2),(9149,115,0,1491,1),(9150,99,0,1491,1),(9151,93,0,1491,58),(9152,142,0,1491,170),(9153,97,0,1492,1),(9154,134,0,1492,2),(9155,115,0,1492,1),(9156,99,0,1492,4),(9157,143,0,1492,0),(9158,144,0,1492,0),(9159,145,0,1492,0),(9160,146,0,1492,0),(9161,147,0,1492,1),(9162,97,0,1493,1),(9163,134,0,1493,2),(9164,115,0,1493,1),(9165,99,0,1493,1),(9166,93,0,1493,50),(9167,142,0,1493,166),(9168,97,0,1494,1),(9169,134,0,1494,2),(9170,115,0,1494,1),(9171,99,0,1494,1),(9172,93,0,1494,58),(9173,142,0,1494,166),(9174,97,0,1495,1),(9175,134,0,1495,2),(9176,115,0,1495,1),(9177,99,0,1495,1),(9178,93,0,1495,59),(9179,142,0,1495,166),(9180,97,0,1496,1),(9181,134,0,1496,2),(9182,115,0,1496,1),(9183,99,0,1496,1),(9184,93,0,1496,50),(9185,142,0,1496,167),(9186,97,0,1497,1),(9187,134,0,1497,2),(9188,115,0,1497,1),(9189,99,0,1497,1),(9190,93,0,1497,58),(9191,142,0,1497,167),(9192,97,0,1498,1),(9193,134,0,1498,2),(9194,115,0,1498,1),(9195,99,0,1498,1),(9196,93,0,1498,59),(9197,142,0,1498,167),(9198,97,0,1499,1),(9199,134,0,1499,2),(9200,115,0,1499,1),(9201,99,0,1499,1),(9202,93,0,1499,50),(9203,142,0,1499,168),(9204,97,0,1500,1),(9205,134,0,1500,2),(9206,115,0,1500,1),(9207,99,0,1500,1),(9208,93,0,1500,58),(9209,142,0,1500,168),(9210,97,0,1501,1),(9211,134,0,1501,2),(9212,115,0,1501,1),(9213,99,0,1501,1),(9214,93,0,1501,59),(9215,142,0,1501,168),(9216,97,0,1502,1),(9217,134,0,1502,2),(9218,115,0,1502,1),(9219,99,0,1502,1),(9220,93,0,1502,50),(9221,142,0,1502,169),(9222,97,0,1503,1),(9223,134,0,1503,2),(9224,115,0,1503,1),(9225,99,0,1503,1),(9226,93,0,1503,58),(9227,142,0,1503,169),(9228,97,0,1504,1),(9229,134,0,1504,2),(9230,115,0,1504,1),(9231,99,0,1504,1),(9232,93,0,1504,59),(9233,142,0,1504,169),(9234,97,0,1505,1),(9235,134,0,1505,2),(9236,115,0,1505,1),(9237,99,0,1505,1),(9238,93,0,1505,50),(9239,142,0,1505,170),(9240,97,0,1506,1),(9241,134,0,1506,2),(9242,115,0,1506,1),(9243,99,0,1506,1),(9244,93,0,1506,58),(9245,142,0,1506,170),(9246,97,0,1507,1),(9247,134,0,1507,2),(9248,115,0,1507,1),(9249,99,0,1507,1),(9250,93,0,1507,59),(9251,142,0,1507,170),(9252,97,0,1508,1),(9253,134,0,1508,2),(9254,115,0,1508,1),(9255,99,0,1508,4),(9256,143,0,1508,1),(9257,144,0,1508,0),(9258,145,0,1508,0),(9259,146,0,1508,0),(9260,147,0,1508,1),(9261,97,0,1509,1),(9262,134,0,1509,2),(9263,115,0,1509,1),(9264,99,0,1509,1),(9265,93,0,1509,53),(9266,142,0,1509,166),(9267,97,0,1510,1),(9268,134,0,1510,2),(9269,115,0,1510,1),(9270,99,0,1510,1),(9271,93,0,1510,58),(9272,142,0,1510,166),(9273,97,0,1511,1),(9274,134,0,1511,2),(9275,115,0,1511,1),(9276,99,0,1511,1),(9277,93,0,1511,60),(9278,142,0,1511,166),(9279,97,0,1512,1),(9280,134,0,1512,2),(9281,115,0,1512,1),(9282,99,0,1512,1),(9283,93,0,1512,53),(9284,142,0,1512,167),(9285,97,0,1513,1),(9286,134,0,1513,2),(9287,115,0,1513,1),(9288,99,0,1513,1),(9289,93,0,1513,58),(9290,142,0,1513,167),(9291,97,0,1514,1),(9292,134,0,1514,2),(9293,115,0,1514,1),(9294,99,0,1514,1),(9295,93,0,1514,60),(9296,142,0,1514,167),(9297,97,0,1515,1),(9298,134,0,1515,2),(9299,115,0,1515,1),(9300,99,0,1515,1),(9301,93,0,1515,53),(9302,142,0,1515,168),(9303,97,0,1516,1),(9304,134,0,1516,2),(9305,115,0,1516,1),(9306,99,0,1516,1),(9307,93,0,1516,58),(9308,142,0,1516,168),(9309,97,0,1517,1),(9310,134,0,1517,2),(9311,115,0,1517,1),(9312,99,0,1517,1),(9313,93,0,1517,60),(9314,142,0,1517,168),(9315,97,0,1518,1),(9316,134,0,1518,2),(9317,115,0,1518,1),(9318,99,0,1518,1),(9319,93,0,1518,53),(9320,142,0,1518,169),(9321,97,0,1519,1),(9322,134,0,1519,2),(9323,115,0,1519,1),(9324,99,0,1519,1),(9325,93,0,1519,58),(9326,142,0,1519,169),(9327,97,0,1520,1),(9328,134,0,1520,2),(9329,115,0,1520,1),(9330,99,0,1520,1),(9331,93,0,1520,60),(9332,142,0,1520,169),(9333,97,0,1521,1),(9334,134,0,1521,2),(9335,115,0,1521,1),(9336,99,0,1521,1),(9337,93,0,1521,53),(9338,142,0,1521,170),(9339,97,0,1522,1),(9340,134,0,1522,2),(9341,115,0,1522,1),(9342,99,0,1522,1),(9343,93,0,1522,58),(9344,142,0,1522,170),(9345,97,0,1523,1),(9346,134,0,1523,2),(9347,115,0,1523,1),(9348,99,0,1523,1),(9349,93,0,1523,60),(9350,142,0,1523,170),(9351,97,0,1524,1),(9352,134,0,1524,2),(9353,115,0,1524,1),(9354,99,0,1524,4),(9355,143,0,1524,0),(9356,144,0,1524,1),(9357,145,0,1524,0),(9358,146,0,1524,0),(9359,147,0,1524,0),(9360,97,0,1525,1),(9361,134,0,1525,2),(9362,115,0,1525,1),(9363,99,0,1525,1),(9364,93,0,1525,53),(9365,142,0,1525,166),(9366,97,0,1526,1),(9367,134,0,1526,2),(9368,115,0,1526,1),(9369,99,0,1526,1),(9370,93,0,1526,56),(9371,142,0,1526,166),(9372,97,0,1527,1),(9373,134,0,1527,2),(9374,115,0,1527,1),(9375,99,0,1527,1),(9376,93,0,1527,60),(9377,142,0,1527,166),(9378,97,0,1528,1),(9379,134,0,1528,2),(9380,115,0,1528,1),(9381,99,0,1528,1),(9382,93,0,1528,53),(9383,142,0,1528,167),(9384,97,0,1529,1),(9385,134,0,1529,2),(9386,115,0,1529,1),(9387,99,0,1529,1),(9388,93,0,1529,56),(9389,142,0,1529,167),(9390,97,0,1530,1),(9391,134,0,1530,2),(9392,115,0,1530,1),(9393,99,0,1530,1),(9394,93,0,1530,60),(9395,142,0,1530,167),(9396,97,0,1531,1),(9397,134,0,1531,2),(9398,115,0,1531,1),(9399,99,0,1531,1),(9400,93,0,1531,53),(9401,142,0,1531,168),(9402,97,0,1532,1),(9403,134,0,1532,2),(9404,115,0,1532,1),(9405,99,0,1532,1),(9406,93,0,1532,56),(9407,142,0,1532,168),(9408,97,0,1533,1),(9409,134,0,1533,2),(9410,115,0,1533,1),(9411,99,0,1533,1),(9412,93,0,1533,60),(9413,142,0,1533,168),(9414,97,0,1534,1),(9415,134,0,1534,2),(9416,115,0,1534,1),(9417,99,0,1534,1),(9418,93,0,1534,53),(9419,142,0,1534,169),(9420,97,0,1535,1),(9421,134,0,1535,2),(9422,115,0,1535,1),(9423,99,0,1535,1),(9424,93,0,1535,56),(9425,142,0,1535,169),(9426,97,0,1536,1),(9427,134,0,1536,2),(9428,115,0,1536,1),(9429,99,0,1536,1),(9430,93,0,1536,60),(9431,142,0,1536,169),(9432,97,0,1537,1),(9433,134,0,1537,2),(9434,115,0,1537,1),(9435,99,0,1537,1),(9436,93,0,1537,53),(9437,142,0,1537,170),(9438,97,0,1538,1),(9439,134,0,1538,2),(9440,115,0,1538,1),(9441,99,0,1538,1),(9442,93,0,1538,56),(9443,142,0,1538,170),(9444,97,0,1539,1),(9445,134,0,1539,2),(9446,115,0,1539,1),(9447,99,0,1539,1),(9448,93,0,1539,60),(9449,142,0,1539,170),(9450,97,0,1540,1),(9451,134,0,1540,2),(9452,115,0,1540,1),(9453,99,0,1540,4),(9454,143,0,1540,0),(9455,144,0,1540,0),(9456,145,0,1540,1),(9457,146,0,1540,0),(9458,147,0,1540,1),(9459,97,0,1541,1),(9460,134,0,1541,2),(9461,115,0,1541,1),(9462,99,0,1541,1),(9463,93,0,1541,50),(9464,142,0,1541,166),(9465,97,0,1542,1),(9466,134,0,1542,2),(9467,115,0,1542,1),(9468,99,0,1542,1),(9469,93,0,1542,56),(9470,142,0,1542,166),(9471,97,0,1543,1),(9472,134,0,1543,2),(9473,115,0,1543,1),(9474,99,0,1543,1),(9475,93,0,1543,57),(9476,142,0,1543,166),(9477,97,0,1544,1),(9478,134,0,1544,2),(9479,115,0,1544,1),(9480,99,0,1544,1),(9481,93,0,1544,50),(9482,142,0,1544,167),(9483,97,0,1545,1),(9484,134,0,1545,2),(9485,115,0,1545,1),(9486,99,0,1545,1),(9487,93,0,1545,56),(9488,142,0,1545,167),(9489,97,0,1546,1),(9490,134,0,1546,2),(9491,115,0,1546,1),(9492,99,0,1546,1),(9493,93,0,1546,57),(9494,142,0,1546,167),(9495,97,0,1547,1),(9496,134,0,1547,2),(9497,115,0,1547,1),(9498,99,0,1547,1),(9499,93,0,1547,50),(9500,142,0,1547,168),(9501,97,0,1548,1),(9502,134,0,1548,2),(9503,115,0,1548,1),(9504,99,0,1548,1),(9505,93,0,1548,56),(9506,142,0,1548,168),(9507,97,0,1549,1),(9508,134,0,1549,2),(9509,115,0,1549,1),(9510,99,0,1549,1),(9511,93,0,1549,57),(9512,142,0,1549,168),(9513,97,0,1550,1),(9514,134,0,1550,2),(9515,115,0,1550,1),(9516,99,0,1550,1),(9517,93,0,1550,50),(9518,142,0,1550,169),(9519,97,0,1551,1),(9520,134,0,1551,2),(9521,115,0,1551,1),(9522,99,0,1551,1),(9523,93,0,1551,56),(9524,142,0,1551,169),(9525,97,0,1552,1),(9526,134,0,1552,2),(9527,115,0,1552,1),(9528,99,0,1552,1),(9529,93,0,1552,57),(9530,142,0,1552,169),(9531,97,0,1553,1),(9532,134,0,1553,2),(9533,115,0,1553,1),(9534,99,0,1553,1),(9535,93,0,1553,50),(9536,142,0,1553,170),(9537,97,0,1554,1),(9538,134,0,1554,2),(9539,115,0,1554,1),(9540,99,0,1554,1),(9541,93,0,1554,56),(9542,142,0,1554,170),(9543,97,0,1555,1),(9544,134,0,1555,2),(9545,115,0,1555,1),(9546,99,0,1555,1),(9547,93,0,1555,57),(9548,142,0,1555,170),(9549,97,0,1556,1),(9550,134,0,1556,2),(9551,115,0,1556,1),(9552,99,0,1556,4),(9553,143,0,1556,1),(9554,144,0,1556,1),(9555,145,0,1556,0),(9556,146,0,1556,0),(9557,147,0,1556,0),(9558,97,0,1557,1),(9559,134,0,1557,2),(9560,115,0,1557,1),(9561,99,0,1557,1),(9562,93,0,1557,49),(9563,142,0,1557,166),(9564,97,0,1558,1),(9565,134,0,1558,2),(9566,115,0,1558,1),(9567,99,0,1558,1),(9568,93,0,1558,53),(9569,142,0,1558,166),(9570,97,0,1559,1),(9571,134,0,1559,2),(9572,115,0,1559,1),(9573,99,0,1559,1),(9574,93,0,1559,60),(9575,142,0,1559,166),(9576,97,0,1560,1),(9577,134,0,1560,2),(9578,115,0,1560,1),(9579,99,0,1560,1),(9580,93,0,1560,49),(9581,142,0,1560,167),(9582,97,0,1561,1),(9583,134,0,1561,2),(9584,115,0,1561,1),(9585,99,0,1561,1),(9586,93,0,1561,53),(9587,142,0,1561,167),(9588,97,0,1562,1),(9589,134,0,1562,2),(9590,115,0,1562,1),(9591,99,0,1562,1),(9592,93,0,1562,60),(9593,142,0,1562,167),(9594,97,0,1563,1),(9595,134,0,1563,2),(9596,115,0,1563,1),(9597,99,0,1563,1),(9598,93,0,1563,49),(9599,142,0,1563,168),(9600,97,0,1564,1),(9601,134,0,1564,2),(9602,115,0,1564,1),(9603,99,0,1564,1),(9604,93,0,1564,53),(9605,142,0,1564,168),(9606,97,0,1565,1),(9607,134,0,1565,2),(9608,115,0,1565,1),(9609,99,0,1565,1),(9610,93,0,1565,60),(9611,142,0,1565,168),(9612,97,0,1566,1),(9613,134,0,1566,2),(9614,115,0,1566,1),(9615,99,0,1566,1),(9616,93,0,1566,49),(9617,142,0,1566,169),(9618,97,0,1567,1),(9619,134,0,1567,2),(9620,115,0,1567,1),(9621,99,0,1567,1),(9622,93,0,1567,53),(9623,142,0,1567,169),(9624,97,0,1568,1),(9625,134,0,1568,2),(9626,115,0,1568,1),(9627,99,0,1568,1),(9628,93,0,1568,60),(9629,142,0,1568,169),(9630,97,0,1569,1),(9631,134,0,1569,2),(9632,115,0,1569,1),(9633,99,0,1569,1),(9634,93,0,1569,49),(9635,142,0,1569,170),(9636,97,0,1570,1),(9637,134,0,1570,2),(9638,115,0,1570,1),(9639,99,0,1570,1),(9640,93,0,1570,53),(9641,142,0,1570,170),(9642,97,0,1571,1),(9643,134,0,1571,2),(9644,115,0,1571,1),(9645,99,0,1571,1),(9646,93,0,1571,60),(9647,142,0,1571,170),(9648,97,0,1572,1),(9649,134,0,1572,2),(9650,115,0,1572,1),(9651,99,0,1572,4),(9652,143,0,1572,0),(9653,144,0,1572,0),(9654,145,0,1572,0),(9655,146,0,1572,0),(9656,147,0,1572,0),(9657,97,0,1573,1),(9658,134,0,1573,2),(9659,115,0,1573,1),(9660,99,0,1573,1),(9661,93,0,1573,49),(9662,142,0,1573,166),(9663,97,0,1574,1),(9664,134,0,1574,2),(9665,115,0,1574,1),(9666,99,0,1574,1),(9667,93,0,1574,56),(9668,142,0,1574,166),(9669,97,0,1575,1),(9670,134,0,1575,2),(9671,115,0,1575,1),(9672,99,0,1575,1),(9673,93,0,1575,60),(9674,142,0,1575,166),(9675,97,0,1576,1),(9676,134,0,1576,2),(9677,115,0,1576,1),(9678,99,0,1576,1),(9679,93,0,1576,49),(9680,142,0,1576,167),(9681,97,0,1577,1),(9682,134,0,1577,2),(9683,115,0,1577,1),(9684,99,0,1577,1),(9685,93,0,1577,56),(9686,142,0,1577,167),(9687,97,0,1578,1),(9688,134,0,1578,2),(9689,115,0,1578,1),(9690,99,0,1578,1),(9691,93,0,1578,60),(9692,142,0,1578,167),(9693,97,0,1579,1),(9694,134,0,1579,2),(9695,115,0,1579,1),(9696,99,0,1579,1),(9697,93,0,1579,49),(9698,142,0,1579,168),(9699,97,0,1580,1),(9700,134,0,1580,2),(9701,115,0,1580,1),(9702,99,0,1580,1),(9703,93,0,1580,56),(9704,142,0,1580,168),(9705,97,0,1581,1),(9706,134,0,1581,2),(9707,115,0,1581,1),(9708,99,0,1581,1),(9709,93,0,1581,60),(9710,142,0,1581,168),(9711,97,0,1582,1),(9712,134,0,1582,2),(9713,115,0,1582,1),(9714,99,0,1582,1),(9715,93,0,1582,49),(9716,142,0,1582,169),(9717,97,0,1583,1),(9718,134,0,1583,2),(9719,115,0,1583,1),(9720,99,0,1583,1),(9721,93,0,1583,56),(9722,142,0,1583,169),(9723,97,0,1584,1),(9724,134,0,1584,2),(9725,115,0,1584,1),(9726,99,0,1584,1),(9727,93,0,1584,60),(9728,142,0,1584,169),(9729,97,0,1585,1),(9730,134,0,1585,2),(9731,115,0,1585,1),(9732,99,0,1585,1),(9733,93,0,1585,49),(9734,142,0,1585,170),(9735,97,0,1586,1),(9736,134,0,1586,2),(9737,115,0,1586,1),(9738,99,0,1586,1),(9739,93,0,1586,56),(9740,142,0,1586,170),(9741,97,0,1587,1),(9742,134,0,1587,2),(9743,115,0,1587,1),(9744,99,0,1587,1),(9745,93,0,1587,60),(9746,142,0,1587,170),(9747,97,0,1588,1),(9748,134,0,1588,2),(9749,115,0,1588,1),(9750,99,0,1588,4),(9751,143,0,1588,0),(9752,144,0,1588,0),(9753,145,0,1588,0),(9754,146,0,1588,0),(9755,147,0,1588,0),(9756,97,0,1589,1),(9757,134,0,1589,2),(9758,115,0,1589,1),(9759,99,0,1589,1),(9760,93,0,1589,49),(9761,142,0,1589,166),(9762,97,0,1590,1),(9763,134,0,1590,2),(9764,115,0,1590,1),(9765,99,0,1590,1),(9766,93,0,1590,52),(9767,142,0,1590,166),(9768,97,0,1591,1),(9769,134,0,1591,2),(9770,115,0,1591,1),(9771,99,0,1591,1),(9772,93,0,1591,57),(9773,142,0,1591,166),(9774,97,0,1592,1),(9775,134,0,1592,2),(9776,115,0,1592,1),(9777,99,0,1592,1),(9778,93,0,1592,49),(9779,142,0,1592,167),(9780,97,0,1593,1),(9781,134,0,1593,2),(9782,115,0,1593,1),(9783,99,0,1593,1),(9784,93,0,1593,52),(9785,142,0,1593,167),(9786,97,0,1594,1),(9787,134,0,1594,2),(9788,115,0,1594,1),(9789,99,0,1594,1),(9790,93,0,1594,57),(9791,142,0,1594,167),(9792,97,0,1595,1),(9793,134,0,1595,2),(9794,115,0,1595,1),(9795,99,0,1595,1),(9796,93,0,1595,49),(9797,142,0,1595,168),(9798,97,0,1596,1),(9799,134,0,1596,2),(9800,115,0,1596,1),(9801,99,0,1596,1),(9802,93,0,1596,52),(9803,142,0,1596,168),(9804,97,0,1597,1),(9805,134,0,1597,2),(9806,115,0,1597,1),(9807,99,0,1597,1),(9808,93,0,1597,57),(9809,142,0,1597,168),(9810,97,0,1598,1),(9811,134,0,1598,2),(9812,115,0,1598,1),(9813,99,0,1598,1),(9814,93,0,1598,49),(9815,142,0,1598,169),(9816,97,0,1599,1),(9817,134,0,1599,2),(9818,115,0,1599,1),(9819,99,0,1599,1),(9820,93,0,1599,52),(9821,142,0,1599,169),(9822,97,0,1600,1),(9823,134,0,1600,2),(9824,115,0,1600,1),(9825,99,0,1600,1),(9826,93,0,1600,57),(9827,142,0,1600,169),(9828,97,0,1601,1),(9829,134,0,1601,2),(9830,115,0,1601,1),(9831,99,0,1601,1),(9832,93,0,1601,49),(9833,142,0,1601,170),(9834,97,0,1602,1),(9835,134,0,1602,2),(9836,115,0,1602,1),(9837,99,0,1602,1),(9838,93,0,1602,52),(9839,142,0,1602,170),(9840,97,0,1603,1),(9841,134,0,1603,2),(9842,115,0,1603,1),(9843,99,0,1603,1),(9844,93,0,1603,57),(9845,142,0,1603,170),(9846,97,0,1604,1),(9847,134,0,1604,2),(9848,115,0,1604,1),(9849,99,0,1604,4),(9850,143,0,1604,1),(9851,144,0,1604,0),(9852,145,0,1604,0),(9853,146,0,1604,0),(9854,147,0,1604,1),(9855,97,0,1605,1),(9856,134,0,1605,2),(9857,115,0,1605,1),(9858,99,0,1605,1),(9859,93,0,1605,50),(9860,142,0,1605,166),(9861,97,0,1606,1),(9862,134,0,1606,2),(9863,115,0,1606,1),(9864,99,0,1606,1),(9865,93,0,1606,56),(9866,142,0,1606,166),(9867,97,0,1607,1),(9868,134,0,1607,2),(9869,115,0,1607,1),(9870,99,0,1607,1),(9871,93,0,1607,60),(9872,142,0,1607,166),(9873,97,0,1608,1),(9874,134,0,1608,2),(9875,115,0,1608,1),(9876,99,0,1608,1),(9877,93,0,1608,50),(9878,142,0,1608,167),(9879,97,0,1609,1),(9880,134,0,1609,2),(9881,115,0,1609,1),(9882,99,0,1609,1),(9883,93,0,1609,56),(9884,142,0,1609,167),(9885,97,0,1610,1),(9886,134,0,1610,2),(9887,115,0,1610,1),(9888,99,0,1610,1),(9889,93,0,1610,60),(9890,142,0,1610,167),(9891,97,0,1611,1),(9892,134,0,1611,2),(9893,115,0,1611,1),(9894,99,0,1611,1),(9895,93,0,1611,50),(9896,142,0,1611,168),(9897,97,0,1612,1),(9898,134,0,1612,2),(9899,115,0,1612,1),(9900,99,0,1612,1),(9901,93,0,1612,56),(9902,142,0,1612,168),(9903,97,0,1613,1),(9904,134,0,1613,2),(9905,115,0,1613,1),(9906,99,0,1613,1),(9907,93,0,1613,60),(9908,142,0,1613,168),(9909,97,0,1614,1),(9910,134,0,1614,2),(9911,115,0,1614,1),(9912,99,0,1614,1),(9913,93,0,1614,50),(9914,142,0,1614,169),(9915,97,0,1615,1),(9916,134,0,1615,2),(9917,115,0,1615,1),(9918,99,0,1615,1),(9919,93,0,1615,56),(9920,142,0,1615,169),(9921,97,0,1616,1),(9922,134,0,1616,2),(9923,115,0,1616,1),(9924,99,0,1616,1),(9925,93,0,1616,60),(9926,142,0,1616,169),(9927,97,0,1617,1),(9928,134,0,1617,2),(9929,115,0,1617,1),(9930,99,0,1617,1),(9931,93,0,1617,50),(9932,142,0,1617,170),(9933,97,0,1618,1),(9934,134,0,1618,2),(9935,115,0,1618,1),(9936,99,0,1618,1),(9937,93,0,1618,56),(9938,142,0,1618,170),(9939,97,0,1619,1),(9940,134,0,1619,2),(9941,115,0,1619,1),(9942,99,0,1619,1),(9943,93,0,1619,60),(9944,142,0,1619,170),(9945,97,0,1620,1),(9946,134,0,1620,2),(9947,115,0,1620,1),(9948,99,0,1620,4),(9949,143,0,1620,0),(9950,144,0,1620,0),(9951,145,0,1620,0),(9952,146,0,1620,0),(9953,147,0,1620,0),(9954,97,0,1621,1),(9955,134,0,1621,2),(9956,115,0,1621,1),(9957,99,0,1621,1),(9958,93,0,1621,53),(9959,142,0,1621,166),(9960,97,0,1622,1),(9961,134,0,1622,2),(9962,115,0,1622,1),(9963,99,0,1622,1),(9964,93,0,1622,58),(9965,142,0,1622,166),(9966,97,0,1623,1),(9967,134,0,1623,2),(9968,115,0,1623,1),(9969,99,0,1623,1),(9970,93,0,1623,60),(9971,142,0,1623,166),(9972,97,0,1624,1),(9973,134,0,1624,2),(9974,115,0,1624,1),(9975,99,0,1624,1),(9976,93,0,1624,53),(9977,142,0,1624,167),(9978,97,0,1625,1),(9979,134,0,1625,2),(9980,115,0,1625,1),(9981,99,0,1625,1),(9982,93,0,1625,58),(9983,142,0,1625,167),(9984,97,0,1626,1),(9985,134,0,1626,2),(9986,115,0,1626,1),(9987,99,0,1626,1),(9988,93,0,1626,60),(9989,142,0,1626,167),(9990,97,0,1627,1),(9991,134,0,1627,2),(9992,115,0,1627,1),(9993,99,0,1627,1),(9994,93,0,1627,53),(9995,142,0,1627,168),(9996,97,0,1628,1),(9997,134,0,1628,2),(9998,115,0,1628,1),(9999,99,0,1628,1),(10000,93,0,1628,58),(10001,142,0,1628,168),(10002,97,0,1629,1),(10003,134,0,1629,2),(10004,115,0,1629,1),(10005,99,0,1629,1),(10006,93,0,1629,60),(10007,142,0,1629,168),(10008,97,0,1630,1),(10009,134,0,1630,2),(10010,115,0,1630,1),(10011,99,0,1630,1),(10012,93,0,1630,53),(10013,142,0,1630,169),(10014,97,0,1631,1),(10015,134,0,1631,2),(10016,115,0,1631,1),(10017,99,0,1631,1),(10018,93,0,1631,58),(10019,142,0,1631,169),(10020,97,0,1632,1),(10021,134,0,1632,2),(10022,115,0,1632,1),(10023,99,0,1632,1),(10024,93,0,1632,60),(10025,142,0,1632,169),(10026,97,0,1633,1),(10027,134,0,1633,2),(10028,115,0,1633,1),(10029,99,0,1633,1),(10030,93,0,1633,53),(10031,142,0,1633,170),(10032,97,0,1634,1),(10033,134,0,1634,2),(10034,115,0,1634,1),(10035,99,0,1634,1),(10036,93,0,1634,58),(10037,142,0,1634,170),(10038,97,0,1635,1),(10039,134,0,1635,2),(10040,115,0,1635,1),(10041,99,0,1635,1),(10042,93,0,1635,60),(10043,142,0,1635,170),(10044,97,0,1636,1),(10045,134,0,1636,2),(10046,115,0,1636,1),(10047,99,0,1636,4),(10048,143,0,1636,0),(10049,144,0,1636,1),(10050,145,0,1636,0),(10051,146,0,1636,1),(10052,147,0,1636,0),(10053,97,0,1637,1),(10054,134,0,1637,2),(10055,115,0,1637,1),(10056,99,0,1637,1),(10057,93,0,1637,50),(10058,142,0,1637,166),(10059,97,0,1638,1),(10060,134,0,1638,2),(10061,115,0,1638,1),(10062,99,0,1638,1),(10063,93,0,1638,57),(10064,142,0,1638,166),(10065,97,0,1639,1),(10066,134,0,1639,2),(10067,115,0,1639,1),(10068,99,0,1639,1),(10069,93,0,1639,60),(10070,142,0,1639,166),(10071,97,0,1640,1),(10072,134,0,1640,2),(10073,115,0,1640,1),(10074,99,0,1640,1),(10075,93,0,1640,50),(10076,142,0,1640,167),(10077,97,0,1641,1),(10078,134,0,1641,2),(10079,115,0,1641,1),(10080,99,0,1641,1),(10081,93,0,1641,57),(10082,142,0,1641,167),(10083,97,0,1642,1),(10084,134,0,1642,2),(10085,115,0,1642,1),(10086,99,0,1642,1),(10087,93,0,1642,60),(10088,142,0,1642,167),(10089,97,0,1643,1),(10090,134,0,1643,2),(10091,115,0,1643,1),(10092,99,0,1643,1),(10093,93,0,1643,50),(10094,142,0,1643,168),(10095,97,0,1644,1),(10096,134,0,1644,2),(10097,115,0,1644,1),(10098,99,0,1644,1),(10099,93,0,1644,57),(10100,142,0,1644,168),(10101,97,0,1645,1),(10102,134,0,1645,2),(10103,115,0,1645,1),(10104,99,0,1645,1),(10105,93,0,1645,60),(10106,142,0,1645,168),(10107,97,0,1646,1),(10108,134,0,1646,2),(10109,115,0,1646,1),(10110,99,0,1646,1),(10111,93,0,1646,50),(10112,142,0,1646,169),(10113,97,0,1647,1),(10114,134,0,1647,2),(10115,115,0,1647,1),(10116,99,0,1647,1),(10117,93,0,1647,57),(10118,142,0,1647,169),(10119,97,0,1648,1),(10120,134,0,1648,2),(10121,115,0,1648,1),(10122,99,0,1648,1),(10123,93,0,1648,60),(10124,142,0,1648,169),(10125,97,0,1649,1),(10126,134,0,1649,2),(10127,115,0,1649,1),(10128,99,0,1649,1),(10129,93,0,1649,50),(10130,142,0,1649,170),(10131,97,0,1650,1),(10132,134,0,1650,2),(10133,115,0,1650,1),(10134,99,0,1650,1),(10135,93,0,1650,57),(10136,142,0,1650,170),(10137,97,0,1651,1),(10138,134,0,1651,2),(10139,115,0,1651,1),(10140,99,0,1651,1),(10141,93,0,1651,60),(10142,142,0,1651,170),(10143,97,0,1652,1),(10144,134,0,1652,2),(10145,115,0,1652,1),(10146,99,0,1652,4),(10147,143,0,1652,0),(10148,144,0,1652,0),(10149,145,0,1652,0),(10150,146,0,1652,0),(10151,147,0,1652,0),(10152,97,0,1653,1),(10153,134,0,1653,2),(10154,115,0,1653,1),(10155,99,0,1653,1),(10156,93,0,1653,49),(10157,142,0,1653,166),(10158,97,0,1654,1),(10159,134,0,1654,2),(10160,115,0,1654,1),(10161,99,0,1654,1),(10162,93,0,1654,56),(10163,142,0,1654,166),(10164,97,0,1655,1),(10165,134,0,1655,2),(10166,115,0,1655,1),(10167,99,0,1655,1),(10168,93,0,1655,57),(10169,142,0,1655,166),(10170,97,0,1656,1),(10171,134,0,1656,2),(10172,115,0,1656,1),(10173,99,0,1656,1),(10174,93,0,1656,49),(10175,142,0,1656,167),(10176,97,0,1657,1),(10177,134,0,1657,2),(10178,115,0,1657,1),(10179,99,0,1657,1),(10180,93,0,1657,56),(10181,142,0,1657,167),(10182,97,0,1658,1),(10183,134,0,1658,2),(10184,115,0,1658,1),(10185,99,0,1658,1),(10186,93,0,1658,57),(10187,142,0,1658,167),(10188,97,0,1659,1),(10189,134,0,1659,2),(10190,115,0,1659,1),(10191,99,0,1659,1),(10192,93,0,1659,49),(10193,142,0,1659,168),(10194,97,0,1660,1),(10195,134,0,1660,2),(10196,115,0,1660,1),(10197,99,0,1660,1),(10198,93,0,1660,56),(10199,142,0,1660,168),(10200,97,0,1661,1),(10201,134,0,1661,2),(10202,115,0,1661,1),(10203,99,0,1661,1),(10204,93,0,1661,57),(10205,142,0,1661,168),(10206,97,0,1662,1),(10207,134,0,1662,2),(10208,115,0,1662,1),(10209,99,0,1662,1),(10210,93,0,1662,49),(10211,142,0,1662,169),(10212,97,0,1663,1),(10213,134,0,1663,2),(10214,115,0,1663,1),(10215,99,0,1663,1),(10216,93,0,1663,56),(10217,142,0,1663,169),(10218,97,0,1664,1),(10219,134,0,1664,2),(10220,115,0,1664,1),(10221,99,0,1664,1),(10222,93,0,1664,57),(10223,142,0,1664,169),(10224,97,0,1665,1),(10225,134,0,1665,2),(10226,115,0,1665,1),(10227,99,0,1665,1),(10228,93,0,1665,49),(10229,142,0,1665,170),(10230,97,0,1666,1),(10231,134,0,1666,2),(10232,115,0,1666,1),(10233,99,0,1666,1),(10234,93,0,1666,56),(10235,142,0,1666,170),(10236,97,0,1667,1),(10237,134,0,1667,2),(10238,115,0,1667,1),(10239,99,0,1667,1),(10240,93,0,1667,57),(10241,142,0,1667,170),(10242,97,0,1668,1),(10243,134,0,1668,2),(10244,115,0,1668,1),(10245,99,0,1668,4),(10246,143,0,1668,0),(10247,144,0,1668,0),(10248,145,0,1668,0),(10249,146,0,1668,0),(10250,147,0,1668,0),(10251,97,0,1669,1),(10252,134,0,1669,2),(10253,115,0,1669,1),(10254,99,0,1669,1),(10255,93,0,1669,49),(10256,142,0,1669,166),(10257,97,0,1670,1),(10258,134,0,1670,2),(10259,115,0,1670,1),(10260,99,0,1670,1),(10261,93,0,1670,50),(10262,142,0,1670,166),(10263,97,0,1671,1),(10264,134,0,1671,2),(10265,115,0,1671,1),(10266,99,0,1671,1),(10267,93,0,1671,56),(10268,142,0,1671,166),(10269,97,0,1672,1),(10270,134,0,1672,2),(10271,115,0,1672,1),(10272,99,0,1672,1),(10273,93,0,1672,49),(10274,142,0,1672,167),(10275,97,0,1673,1),(10276,134,0,1673,2),(10277,115,0,1673,1),(10278,99,0,1673,1),(10279,93,0,1673,50),(10280,142,0,1673,167),(10281,97,0,1674,1),(10282,134,0,1674,2),(10283,115,0,1674,1),(10284,99,0,1674,1),(10285,93,0,1674,56),(10286,142,0,1674,167),(10287,97,0,1675,1),(10288,134,0,1675,2),(10289,115,0,1675,1),(10290,99,0,1675,1),(10291,93,0,1675,49),(10292,142,0,1675,168),(10293,97,0,1676,1),(10294,134,0,1676,2),(10295,115,0,1676,1),(10296,99,0,1676,1),(10297,93,0,1676,50),(10298,142,0,1676,168),(10299,97,0,1677,1),(10300,134,0,1677,2),(10301,115,0,1677,1),(10302,99,0,1677,1),(10303,93,0,1677,56),(10304,142,0,1677,168),(10305,97,0,1678,1),(10306,134,0,1678,2),(10307,115,0,1678,1),(10308,99,0,1678,1),(10309,93,0,1678,49),(10310,142,0,1678,169),(10311,97,0,1679,1),(10312,134,0,1679,2),(10313,115,0,1679,1),(10314,99,0,1679,1),(10315,93,0,1679,50),(10316,142,0,1679,169),(10317,97,0,1680,1),(10318,134,0,1680,2),(10319,115,0,1680,1),(10320,99,0,1680,1),(10321,93,0,1680,56),(10322,142,0,1680,169),(10323,97,0,1681,1),(10324,134,0,1681,2),(10325,115,0,1681,1),(10326,99,0,1681,1),(10327,93,0,1681,49),(10328,142,0,1681,170),(10329,97,0,1682,1),(10330,134,0,1682,2),(10331,115,0,1682,1),(10332,99,0,1682,1),(10333,93,0,1682,50),(10334,142,0,1682,170),(10335,97,0,1683,1),(10336,134,0,1683,2),(10337,115,0,1683,1),(10338,99,0,1683,1),(10339,93,0,1683,56),(10340,142,0,1683,170),(10341,97,0,1684,1),(10342,134,0,1684,2),(10343,115,0,1684,1),(10344,99,0,1684,4),(10345,143,0,1684,1),(10346,144,0,1684,0),(10347,145,0,1684,0),(10348,146,0,1684,0),(10349,147,0,1684,0),(10350,97,0,1685,1),(10351,134,0,1685,2),(10352,115,0,1685,1),(10353,99,0,1685,1),(10354,93,0,1685,53),(10355,142,0,1685,166),(10356,97,0,1686,1),(10357,134,0,1686,2),(10358,115,0,1686,1),(10359,99,0,1686,1),(10360,93,0,1686,56),(10361,142,0,1686,166),(10362,97,0,1687,1),(10363,134,0,1687,2),(10364,115,0,1687,1),(10365,99,0,1687,1),(10366,93,0,1687,60),(10367,142,0,1687,166),(10368,97,0,1688,1),(10369,134,0,1688,2),(10370,115,0,1688,1),(10371,99,0,1688,1),(10372,93,0,1688,53),(10373,142,0,1688,167),(10374,97,0,1689,1),(10375,134,0,1689,2),(10376,115,0,1689,1),(10377,99,0,1689,1),(10378,93,0,1689,56),(10379,142,0,1689,167),(10380,97,0,1690,1),(10381,134,0,1690,2),(10382,115,0,1690,1),(10383,99,0,1690,1),(10384,93,0,1690,60),(10385,142,0,1690,167),(10386,97,0,1691,1),(10387,134,0,1691,2),(10388,115,0,1691,1),(10389,99,0,1691,1),(10390,93,0,1691,53),(10391,142,0,1691,168),(10392,97,0,1692,1),(10393,134,0,1692,2),(10394,115,0,1692,1),(10395,99,0,1692,1),(10396,93,0,1692,56),(10397,142,0,1692,168),(10398,97,0,1693,1),(10399,134,0,1693,2),(10400,115,0,1693,1),(10401,99,0,1693,1),(10402,93,0,1693,60),(10403,142,0,1693,168),(10404,97,0,1694,1),(10405,134,0,1694,2),(10406,115,0,1694,1),(10407,99,0,1694,1),(10408,93,0,1694,53),(10409,142,0,1694,169),(10410,97,0,1695,1),(10411,134,0,1695,2),(10412,115,0,1695,1),(10413,99,0,1695,1),(10414,93,0,1695,56),(10415,142,0,1695,169),(10416,97,0,1696,1),(10417,134,0,1696,2),(10418,115,0,1696,1),(10419,99,0,1696,1),(10420,93,0,1696,60),(10421,142,0,1696,169),(10422,97,0,1697,1),(10423,134,0,1697,2),(10424,115,0,1697,1),(10425,99,0,1697,1),(10426,93,0,1697,53),(10427,142,0,1697,170),(10428,97,0,1698,1),(10429,134,0,1698,2),(10430,115,0,1698,1),(10431,99,0,1698,1),(10432,93,0,1698,56),(10433,142,0,1698,170),(10434,97,0,1699,1),(10435,134,0,1699,2),(10436,115,0,1699,1),(10437,99,0,1699,1),(10438,93,0,1699,60),(10439,142,0,1699,170),(10440,97,0,1700,1),(10441,134,0,1700,2),(10442,115,0,1700,1),(10443,99,0,1700,4),(10444,143,0,1700,0),(10445,144,0,1700,0),(10446,145,0,1700,0),(10447,146,0,1700,0),(10448,147,0,1700,0),(10449,97,0,1701,1),(10450,134,0,1701,2),(10451,115,0,1701,1),(10452,99,0,1701,1),(10453,93,0,1701,56),(10454,142,0,1701,166),(10455,97,0,1702,1),(10456,134,0,1702,2),(10457,115,0,1702,1),(10458,99,0,1702,1),(10459,93,0,1702,57),(10460,142,0,1702,166),(10461,97,0,1703,1),(10462,134,0,1703,2),(10463,115,0,1703,1),(10464,99,0,1703,1),(10465,93,0,1703,58),(10466,142,0,1703,166),(10467,97,0,1704,1),(10468,134,0,1704,2),(10469,115,0,1704,1),(10470,99,0,1704,1),(10471,93,0,1704,56),(10472,142,0,1704,167),(10473,97,0,1705,1),(10474,134,0,1705,2),(10475,115,0,1705,1),(10476,99,0,1705,1),(10477,93,0,1705,57),(10478,142,0,1705,167),(10479,97,0,1706,1),(10480,134,0,1706,2),(10481,115,0,1706,1),(10482,99,0,1706,1),(10483,93,0,1706,58),(10484,142,0,1706,167),(10485,97,0,1707,1),(10486,134,0,1707,2),(10487,115,0,1707,1),(10488,99,0,1707,1),(10489,93,0,1707,56),(10490,142,0,1707,168),(10491,97,0,1708,1),(10492,134,0,1708,2),(10493,115,0,1708,1),(10494,99,0,1708,1),(10495,93,0,1708,57),(10496,142,0,1708,168),(10497,97,0,1709,1),(10498,134,0,1709,2),(10499,115,0,1709,1),(10500,99,0,1709,1),(10501,93,0,1709,58),(10502,142,0,1709,168),(10503,97,0,1710,1),(10504,134,0,1710,2),(10505,115,0,1710,1),(10506,99,0,1710,1),(10507,93,0,1710,56),(10508,142,0,1710,169),(10509,97,0,1711,1),(10510,134,0,1711,2),(10511,115,0,1711,1),(10512,99,0,1711,1),(10513,93,0,1711,57),(10514,142,0,1711,169),(10515,97,0,1712,1),(10516,134,0,1712,2),(10517,115,0,1712,1),(10518,99,0,1712,1),(10519,93,0,1712,58),(10520,142,0,1712,169),(10521,97,0,1713,1),(10522,134,0,1713,2),(10523,115,0,1713,1),(10524,99,0,1713,1),(10525,93,0,1713,56),(10526,142,0,1713,170),(10527,97,0,1714,1),(10528,134,0,1714,2),(10529,115,0,1714,1),(10530,99,0,1714,1),(10531,93,0,1714,57),(10532,142,0,1714,170),(10533,97,0,1715,1),(10534,134,0,1715,2),(10535,115,0,1715,1),(10536,99,0,1715,1),(10537,93,0,1715,58),(10538,142,0,1715,170),(10539,97,0,1716,1),(10540,134,0,1716,2),(10541,115,0,1716,1),(10542,99,0,1716,4),(10543,143,0,1716,0),(10544,144,0,1716,0),(10545,145,0,1716,1),(10546,146,0,1716,1),(10547,147,0,1716,0),(10548,97,0,1717,1),(10549,134,0,1717,2),(10550,115,0,1717,1),(10551,99,0,1717,1),(10552,93,0,1717,50),(10553,142,0,1717,166),(10554,97,0,1718,1),(10555,134,0,1718,2),(10556,115,0,1718,1),(10557,99,0,1718,1),(10558,93,0,1718,57),(10559,142,0,1718,166),(10560,97,0,1719,1),(10561,134,0,1719,2),(10562,115,0,1719,1),(10563,99,0,1719,1),(10564,93,0,1719,58),(10565,142,0,1719,166),(10566,97,0,1720,1),(10567,134,0,1720,2),(10568,115,0,1720,1),(10569,99,0,1720,1),(10570,93,0,1720,50),(10571,142,0,1720,167),(10572,97,0,1721,1),(10573,134,0,1721,2),(10574,115,0,1721,1),(10575,99,0,1721,1),(10576,93,0,1721,57),(10577,142,0,1721,167),(10578,97,0,1722,1),(10579,134,0,1722,2),(10580,115,0,1722,1),(10581,99,0,1722,1),(10582,93,0,1722,58),(10583,142,0,1722,167),(10584,97,0,1723,1),(10585,134,0,1723,2),(10586,115,0,1723,1),(10587,99,0,1723,1),(10588,93,0,1723,50),(10589,142,0,1723,168),(10590,97,0,1724,1),(10591,134,0,1724,2),(10592,115,0,1724,1),(10593,99,0,1724,1),(10594,93,0,1724,57),(10595,142,0,1724,168),(10596,97,0,1725,1),(10597,134,0,1725,2),(10598,115,0,1725,1),(10599,99,0,1725,1),(10600,93,0,1725,58),(10601,142,0,1725,168),(10602,97,0,1726,1),(10603,134,0,1726,2),(10604,115,0,1726,1),(10605,99,0,1726,1),(10606,93,0,1726,50),(10607,142,0,1726,169),(10608,97,0,1727,1),(10609,134,0,1727,2),(10610,115,0,1727,1),(10611,99,0,1727,1),(10612,93,0,1727,57),(10613,142,0,1727,169),(10614,97,0,1728,1),(10615,134,0,1728,2),(10616,115,0,1728,1),(10617,99,0,1728,1),(10618,93,0,1728,58),(10619,142,0,1728,169),(10620,97,0,1729,1),(10621,134,0,1729,2),(10622,115,0,1729,1),(10623,99,0,1729,1),(10624,93,0,1729,50),(10625,142,0,1729,170),(10626,97,0,1730,1),(10627,134,0,1730,2),(10628,115,0,1730,1),(10629,99,0,1730,1),(10630,93,0,1730,57),(10631,142,0,1730,170),(10632,97,0,1731,1),(10633,134,0,1731,2),(10634,115,0,1731,1),(10635,99,0,1731,1),(10636,93,0,1731,58),(10637,142,0,1731,170),(10638,97,0,1732,1),(10639,134,0,1732,2),(10640,115,0,1732,1),(10641,99,0,1732,4),(10642,143,0,1732,1),(10643,144,0,1732,1),(10644,145,0,1732,0),(10645,146,0,1732,0),(10646,147,0,1732,0),(10647,97,0,1733,1),(10648,134,0,1733,2),(10649,115,0,1733,1),(10650,99,0,1733,1),(10651,93,0,1733,56),(10652,142,0,1733,166),(10653,97,0,1734,1),(10654,134,0,1734,2),(10655,115,0,1734,1),(10656,99,0,1734,1),(10657,93,0,1734,57),(10658,142,0,1734,166),(10659,97,0,1735,1),(10660,134,0,1735,2),(10661,115,0,1735,1),(10662,99,0,1735,1),(10663,93,0,1735,59),(10664,142,0,1735,166),(10665,97,0,1736,1),(10666,134,0,1736,2),(10667,115,0,1736,1),(10668,99,0,1736,1),(10669,93,0,1736,56),(10670,142,0,1736,167),(10671,97,0,1737,1),(10672,134,0,1737,2),(10673,115,0,1737,1),(10674,99,0,1737,1),(10675,93,0,1737,57),(10676,142,0,1737,167),(10677,97,0,1738,1),(10678,134,0,1738,2),(10679,115,0,1738,1),(10680,99,0,1738,1),(10681,93,0,1738,59),(10682,142,0,1738,167),(10683,97,0,1739,1),(10684,134,0,1739,2),(10685,115,0,1739,1),(10686,99,0,1739,1),(10687,93,0,1739,56),(10688,142,0,1739,168),(10689,97,0,1740,1),(10690,134,0,1740,2),(10691,115,0,1740,1),(10692,99,0,1740,1),(10693,93,0,1740,57),(10694,142,0,1740,168),(10695,97,0,1741,1),(10696,134,0,1741,2),(10697,115,0,1741,1),(10698,99,0,1741,1),(10699,93,0,1741,59),(10700,142,0,1741,168),(10701,97,0,1742,1),(10702,134,0,1742,2),(10703,115,0,1742,1),(10704,99,0,1742,1),(10705,93,0,1742,56),(10706,142,0,1742,169),(10707,97,0,1743,1),(10708,134,0,1743,2),(10709,115,0,1743,1),(10710,99,0,1743,1),(10711,93,0,1743,57),(10712,142,0,1743,169),(10713,97,0,1744,1),(10714,134,0,1744,2),(10715,115,0,1744,1),(10716,99,0,1744,1),(10717,93,0,1744,59),(10718,142,0,1744,169),(10719,97,0,1745,1),(10720,134,0,1745,2),(10721,115,0,1745,1),(10722,99,0,1745,1),(10723,93,0,1745,56),(10724,142,0,1745,170),(10725,97,0,1746,1),(10726,134,0,1746,2),(10727,115,0,1746,1),(10728,99,0,1746,1),(10729,93,0,1746,57),(10730,142,0,1746,170),(10731,97,0,1747,1),(10732,134,0,1747,2),(10733,115,0,1747,1),(10734,99,0,1747,1),(10735,93,0,1747,59),(10736,142,0,1747,170),(10737,97,0,1748,1),(10738,134,0,1748,2),(10739,115,0,1748,1),(10740,99,0,1748,4),(10741,143,0,1748,0),(10742,144,0,1748,0),(10743,145,0,1748,1),(10744,146,0,1748,0),(10745,147,0,1748,0),(10746,97,0,1749,1),(10747,134,0,1749,2),(10748,115,0,1749,1),(10749,99,0,1749,1),(10750,93,0,1749,50),(10751,142,0,1749,166),(10752,97,0,1750,1),(10753,134,0,1750,2),(10754,115,0,1750,1),(10755,99,0,1750,1),(10756,93,0,1750,58),(10757,142,0,1750,166),(10758,97,0,1751,1),(10759,134,0,1751,2),(10760,115,0,1751,1),(10761,99,0,1751,1),(10762,93,0,1751,60),(10763,142,0,1751,166),(10764,97,0,1752,1),(10765,134,0,1752,2),(10766,115,0,1752,1),(10767,99,0,1752,1),(10768,93,0,1752,50),(10769,142,0,1752,167),(10770,97,0,1753,1),(10771,134,0,1753,2),(10772,115,0,1753,1),(10773,99,0,1753,1),(10774,93,0,1753,58),(10775,142,0,1753,167),(10776,97,0,1754,1),(10777,134,0,1754,2),(10778,115,0,1754,1),(10779,99,0,1754,1),(10780,93,0,1754,60),(10781,142,0,1754,167),(10782,97,0,1755,1),(10783,134,0,1755,2),(10784,115,0,1755,1),(10785,99,0,1755,1),(10786,93,0,1755,50),(10787,142,0,1755,168),(10788,97,0,1756,1),(10789,134,0,1756,2),(10790,115,0,1756,1),(10791,99,0,1756,1),(10792,93,0,1756,58),(10793,142,0,1756,168),(10794,97,0,1757,1),(10795,134,0,1757,2),(10796,115,0,1757,1),(10797,99,0,1757,1),(10798,93,0,1757,60),(10799,142,0,1757,168),(10800,97,0,1758,1),(10801,134,0,1758,2),(10802,115,0,1758,1),(10803,99,0,1758,1),(10804,93,0,1758,50),(10805,142,0,1758,169),(10806,97,0,1759,1),(10807,134,0,1759,2),(10808,115,0,1759,1),(10809,99,0,1759,1),(10810,93,0,1759,58),(10811,142,0,1759,169),(10812,97,0,1760,1),(10813,134,0,1760,2),(10814,115,0,1760,1),(10815,99,0,1760,1),(10816,93,0,1760,60),(10817,142,0,1760,169),(10818,97,0,1761,1),(10819,134,0,1761,2),(10820,115,0,1761,1),(10821,99,0,1761,1),(10822,93,0,1761,50),(10823,142,0,1761,170),(10824,97,0,1762,1),(10825,134,0,1762,2),(10826,115,0,1762,1),(10827,99,0,1762,1),(10828,93,0,1762,58),(10829,142,0,1762,170),(10830,97,0,1763,1),(10831,134,0,1763,2),(10832,115,0,1763,1),(10833,99,0,1763,1),(10834,93,0,1763,60),(10835,142,0,1763,170),(10836,97,0,1764,1),(10837,134,0,1764,2),(10838,115,0,1764,1),(10839,99,0,1764,4),(10840,143,0,1764,0),(10841,144,0,1764,0),(10842,145,0,1764,0),(10843,146,0,1764,0),(10844,147,0,1764,0),(10845,97,0,1765,1),(10846,134,0,1765,2),(10847,115,0,1765,1),(10848,99,0,1765,1),(10849,93,0,1765,53),(10850,142,0,1765,166),(10851,97,0,1766,1),(10852,134,0,1766,2),(10853,115,0,1766,1),(10854,99,0,1766,1),(10855,93,0,1766,59),(10856,142,0,1766,166),(10857,97,0,1767,1),(10858,134,0,1767,2),(10859,115,0,1767,1),(10860,99,0,1767,1),(10861,93,0,1767,60),(10862,142,0,1767,166),(10863,97,0,1768,1),(10864,134,0,1768,2),(10865,115,0,1768,1),(10866,99,0,1768,1),(10867,93,0,1768,53),(10868,142,0,1768,167),(10869,97,0,1769,1),(10870,134,0,1769,2),(10871,115,0,1769,1),(10872,99,0,1769,1),(10873,93,0,1769,59),(10874,142,0,1769,167),(10875,97,0,1770,1),(10876,134,0,1770,2),(10877,115,0,1770,1),(10878,99,0,1770,1),(10879,93,0,1770,60),(10880,142,0,1770,167),(10881,97,0,1771,1),(10882,134,0,1771,2),(10883,115,0,1771,1),(10884,99,0,1771,1),(10885,93,0,1771,53),(10886,142,0,1771,168),(10887,97,0,1772,1),(10888,134,0,1772,2),(10889,115,0,1772,1),(10890,99,0,1772,1),(10891,93,0,1772,59),(10892,142,0,1772,168),(10893,97,0,1773,1),(10894,134,0,1773,2),(10895,115,0,1773,1),(10896,99,0,1773,1),(10897,93,0,1773,60),(10898,142,0,1773,168),(10899,97,0,1774,1),(10900,134,0,1774,2),(10901,115,0,1774,1),(10902,99,0,1774,1),(10903,93,0,1774,53),(10904,142,0,1774,169),(10905,97,0,1775,1),(10906,134,0,1775,2),(10907,115,0,1775,1),(10908,99,0,1775,1),(10909,93,0,1775,59),(10910,142,0,1775,169),(10911,97,0,1776,1),(10912,134,0,1776,2),(10913,115,0,1776,1),(10914,99,0,1776,1),(10915,93,0,1776,60),(10916,142,0,1776,169),(10917,97,0,1777,1),(10918,134,0,1777,2),(10919,115,0,1777,1),(10920,99,0,1777,1),(10921,93,0,1777,53),(10922,142,0,1777,170),(10923,97,0,1778,1),(10924,134,0,1778,2),(10925,115,0,1778,1),(10926,99,0,1778,1),(10927,93,0,1778,59),(10928,142,0,1778,170),(10929,97,0,1779,1),(10930,134,0,1779,2),(10931,115,0,1779,1),(10932,99,0,1779,1),(10933,93,0,1779,60),(10934,142,0,1779,170),(10935,97,0,1780,1),(10936,134,0,1780,2),(10937,115,0,1780,1),(10938,99,0,1780,4),(10939,143,0,1780,0),(10940,144,0,1780,1),(10941,145,0,1780,0),(10942,146,0,1780,0),(10943,147,0,1780,0),(10944,97,0,1781,1),(10945,134,0,1781,2),(10946,115,0,1781,1),(10947,99,0,1781,1),(10948,93,0,1781,49),(10949,142,0,1781,166),(10950,97,0,1782,1),(10951,134,0,1782,2),(10952,115,0,1782,1),(10953,99,0,1782,1),(10954,93,0,1782,57),(10955,142,0,1782,166),(10956,97,0,1783,1),(10957,134,0,1783,2),(10958,115,0,1783,1),(10959,99,0,1783,1),(10960,93,0,1783,60),(10961,142,0,1783,166),(10962,97,0,1784,1),(10963,134,0,1784,2),(10964,115,0,1784,1),(10965,99,0,1784,1),(10966,93,0,1784,49),(10967,142,0,1784,167),(10968,97,0,1785,1),(10969,134,0,1785,2),(10970,115,0,1785,1),(10971,99,0,1785,1),(10972,93,0,1785,57),(10973,142,0,1785,167),(10974,97,0,1786,1),(10975,134,0,1786,2),(10976,115,0,1786,1),(10977,99,0,1786,1),(10978,93,0,1786,60),(10979,142,0,1786,167),(10980,97,0,1787,1),(10981,134,0,1787,2),(10982,115,0,1787,1),(10983,99,0,1787,1),(10984,93,0,1787,49),(10985,142,0,1787,168),(10986,97,0,1788,1),(10987,134,0,1788,2),(10988,115,0,1788,1),(10989,99,0,1788,1),(10990,93,0,1788,57),(10991,142,0,1788,168),(10992,97,0,1789,1),(10993,134,0,1789,2),(10994,115,0,1789,1),(10995,99,0,1789,1),(10996,93,0,1789,60),(10997,142,0,1789,168),(10998,97,0,1790,1),(10999,134,0,1790,2),(11000,115,0,1790,1),(11001,99,0,1790,1),(11002,93,0,1790,49),(11003,142,0,1790,169),(11004,97,0,1791,1),(11005,134,0,1791,2),(11006,115,0,1791,1),(11007,99,0,1791,1),(11008,93,0,1791,57),(11009,142,0,1791,169),(11010,97,0,1792,1),(11011,134,0,1792,2),(11012,115,0,1792,1),(11013,99,0,1792,1),(11014,93,0,1792,60),(11015,142,0,1792,169),(11016,97,0,1793,1),(11017,134,0,1793,2),(11018,115,0,1793,1),(11019,99,0,1793,1),(11020,93,0,1793,49),(11021,142,0,1793,170),(11022,97,0,1794,1),(11023,134,0,1794,2),(11024,115,0,1794,1),(11025,99,0,1794,1),(11026,93,0,1794,57),(11027,142,0,1794,170),(11028,97,0,1795,1),(11029,134,0,1795,2),(11030,115,0,1795,1),(11031,99,0,1795,1),(11032,93,0,1795,60),(11033,142,0,1795,170),(11034,97,0,1796,1),(11035,134,0,1796,2),(11036,115,0,1796,1),(11037,99,0,1796,4),(11038,143,0,1796,0),(11039,144,0,1796,1),(11040,145,0,1796,0),(11041,146,0,1796,0),(11042,147,0,1796,1),(11043,97,0,1797,1),(11044,134,0,1797,2),(11045,115,0,1797,1),(11046,99,0,1797,1),(11047,93,0,1797,57),(11048,142,0,1797,166),(11049,97,0,1798,1),(11050,134,0,1798,2),(11051,115,0,1798,1),(11052,99,0,1798,1),(11053,93,0,1798,59),(11054,142,0,1798,166),(11055,97,0,1799,1),(11056,134,0,1799,2),(11057,115,0,1799,1),(11058,99,0,1799,1),(11059,93,0,1799,60),(11060,142,0,1799,166),(11061,97,0,1800,1),(11062,134,0,1800,2),(11063,115,0,1800,1),(11064,99,0,1800,1),(11065,93,0,1800,57),(11066,142,0,1800,167),(11067,97,0,1801,1),(11068,134,0,1801,2),(11069,115,0,1801,1),(11070,99,0,1801,1),(11071,93,0,1801,59),(11072,142,0,1801,167),(11073,97,0,1802,1),(11074,134,0,1802,2),(11075,115,0,1802,1),(11076,99,0,1802,1),(11077,93,0,1802,60),(11078,142,0,1802,167),(11079,97,0,1803,1),(11080,134,0,1803,2),(11081,115,0,1803,1),(11082,99,0,1803,1),(11083,93,0,1803,57),(11084,142,0,1803,168),(11085,97,0,1804,1),(11086,134,0,1804,2),(11087,115,0,1804,1),(11088,99,0,1804,1),(11089,93,0,1804,59),(11090,142,0,1804,168),(11091,97,0,1805,1),(11092,134,0,1805,2),(11093,115,0,1805,1),(11094,99,0,1805,1),(11095,93,0,1805,60),(11096,142,0,1805,168),(11097,97,0,1806,1),(11098,134,0,1806,2),(11099,115,0,1806,1),(11100,99,0,1806,1),(11101,93,0,1806,57),(11102,142,0,1806,169),(11103,97,0,1807,1),(11104,134,0,1807,2),(11105,115,0,1807,1),(11106,99,0,1807,1),(11107,93,0,1807,59),(11108,142,0,1807,169),(11109,97,0,1808,1),(11110,134,0,1808,2),(11111,115,0,1808,1),(11112,99,0,1808,1),(11113,93,0,1808,60),(11114,142,0,1808,169),(11115,97,0,1809,1),(11116,134,0,1809,2),(11117,115,0,1809,1),(11118,99,0,1809,1),(11119,93,0,1809,57),(11120,142,0,1809,170),(11121,97,0,1810,1),(11122,134,0,1810,2),(11123,115,0,1810,1),(11124,99,0,1810,1),(11125,93,0,1810,59),(11126,142,0,1810,170),(11127,97,0,1811,1),(11128,134,0,1811,2),(11129,115,0,1811,1),(11130,99,0,1811,1),(11131,93,0,1811,60),(11132,142,0,1811,170),(11133,97,0,1812,1),(11134,134,0,1812,2),(11135,115,0,1812,1),(11136,99,0,1812,4),(11137,143,0,1812,0),(11138,144,0,1812,1),(11139,145,0,1812,1),(11140,146,0,1812,0),(11141,147,0,1812,1),(11142,97,0,1813,1),(11143,134,0,1813,2),(11144,115,0,1813,1),(11145,99,0,1813,1),(11146,93,0,1813,49),(11147,142,0,1813,171),(11148,97,0,1814,1),(11149,134,0,1814,2),(11150,115,0,1814,1),(11151,99,0,1814,1),(11152,93,0,1814,52),(11153,142,0,1814,171),(11154,97,0,1815,1),(11155,134,0,1815,2),(11156,115,0,1815,1),(11157,99,0,1815,1),(11158,93,0,1815,59),(11159,142,0,1815,171),(11160,97,0,1816,1),(11161,134,0,1816,2),(11162,115,0,1816,1),(11163,99,0,1816,1),(11164,93,0,1816,49),(11165,142,0,1816,172),(11166,97,0,1817,1),(11167,134,0,1817,2),(11168,115,0,1817,1),(11169,99,0,1817,1),(11170,93,0,1817,52),(11171,142,0,1817,172),(11172,97,0,1818,1),(11173,134,0,1818,2),(11174,115,0,1818,1),(11175,99,0,1818,1),(11176,93,0,1818,59),(11177,142,0,1818,172),(11178,97,0,1819,1),(11179,134,0,1819,2),(11180,115,0,1819,1),(11181,99,0,1819,4),(11182,143,0,1819,1),(11183,144,0,1819,1),(11184,145,0,1819,0),(11185,146,0,1819,0),(11186,147,0,1819,0),(11187,97,0,1820,1),(11188,134,0,1820,2),(11189,115,0,1820,1),(11190,99,0,1820,1),(11191,93,0,1820,50),(11192,142,0,1820,171),(11193,97,0,1821,1),(11194,134,0,1821,2),(11195,115,0,1821,1),(11196,99,0,1821,1),(11197,93,0,1821,57),(11198,142,0,1821,171),(11199,97,0,1822,1),(11200,134,0,1822,2),(11201,115,0,1822,1),(11202,99,0,1822,1),(11203,93,0,1822,58),(11204,142,0,1822,171),(11205,97,0,1823,1),(11206,134,0,1823,2),(11207,115,0,1823,1),(11208,99,0,1823,1),(11209,93,0,1823,50),(11210,142,0,1823,172),(11211,97,0,1824,1),(11212,134,0,1824,2),(11213,115,0,1824,1),(11214,99,0,1824,1),(11215,93,0,1824,57),(11216,142,0,1824,172),(11217,97,0,1825,1),(11218,134,0,1825,2),(11219,115,0,1825,1),(11220,99,0,1825,1),(11221,93,0,1825,58),(11222,142,0,1825,172),(11223,97,0,1826,1),(11224,134,0,1826,2),(11225,115,0,1826,1),(11226,99,0,1826,4),(11227,143,0,1826,0),(11228,144,0,1826,1),(11229,145,0,1826,0),(11230,146,0,1826,0),(11231,147,0,1826,0),(11232,97,0,1827,1),(11233,134,0,1827,2),(11234,115,0,1827,1),(11235,99,0,1827,1),(11236,93,0,1827,49),(11237,142,0,1827,171),(11238,97,0,1828,1),(11239,134,0,1828,2),(11240,115,0,1828,1),(11241,99,0,1828,1),(11242,93,0,1828,50),(11243,142,0,1828,171),(11244,97,0,1829,1),(11245,134,0,1829,2),(11246,115,0,1829,1),(11247,99,0,1829,1),(11248,93,0,1829,57),(11249,142,0,1829,171),(11250,97,0,1830,1),(11251,134,0,1830,2),(11252,115,0,1830,1),(11253,99,0,1830,1),(11254,93,0,1830,49),(11255,142,0,1830,172),(11256,97,0,1831,1),(11257,134,0,1831,2),(11258,115,0,1831,1),(11259,99,0,1831,1),(11260,93,0,1831,50),(11261,142,0,1831,172),(11262,97,0,1832,1),(11263,134,0,1832,2),(11264,115,0,1832,1),(11265,99,0,1832,1),(11266,93,0,1832,57),(11267,142,0,1832,172),(11268,97,0,1833,1),(11269,134,0,1833,2),(11270,115,0,1833,1),(11271,99,0,1833,4),(11272,143,0,1833,0),(11273,144,0,1833,0),(11274,145,0,1833,0),(11275,146,0,1833,1),(11276,147,0,1833,0),(11277,97,0,1834,1),(11278,134,0,1834,2),(11279,115,0,1834,1),(11280,99,0,1834,1),(11281,93,0,1834,49),(11282,142,0,1834,171),(11283,97,0,1835,1),(11284,134,0,1835,2),(11285,115,0,1835,1),(11286,99,0,1835,1),(11287,93,0,1835,50),(11288,142,0,1835,171),(11289,97,0,1836,1),(11290,134,0,1836,2),(11291,115,0,1836,1),(11292,99,0,1836,1),(11293,93,0,1836,59),(11294,142,0,1836,171),(11295,97,0,1837,1),(11296,134,0,1837,2),(11297,115,0,1837,1),(11298,99,0,1837,1),(11299,93,0,1837,49),(11300,142,0,1837,172),(11301,97,0,1838,1),(11302,134,0,1838,2),(11303,115,0,1838,1),(11304,99,0,1838,1),(11305,93,0,1838,50),(11306,142,0,1838,172),(11307,97,0,1839,1),(11308,134,0,1839,2),(11309,115,0,1839,1),(11310,99,0,1839,1),(11311,93,0,1839,59),(11312,142,0,1839,172),(11313,97,0,1840,1),(11314,134,0,1840,2),(11315,115,0,1840,1),(11316,99,0,1840,4),(11317,143,0,1840,0),(11318,144,0,1840,0),(11319,145,0,1840,0),(11320,146,0,1840,0),(11321,147,0,1840,0),(11322,97,0,1841,1),(11323,134,0,1841,2),(11324,115,0,1841,1),(11325,99,0,1841,1),(11326,93,0,1841,50),(11327,142,0,1841,171),(11328,97,0,1842,1),(11329,134,0,1842,2),(11330,115,0,1842,1),(11331,99,0,1842,1),(11332,93,0,1842,52),(11333,142,0,1842,171),(11334,97,0,1843,1),(11335,134,0,1843,2),(11336,115,0,1843,1),(11337,99,0,1843,1),(11338,93,0,1843,58),(11339,142,0,1843,171),(11340,97,0,1844,1),(11341,134,0,1844,2),(11342,115,0,1844,1),(11343,99,0,1844,1),(11344,93,0,1844,50),(11345,142,0,1844,172),(11346,97,0,1845,1),(11347,134,0,1845,2),(11348,115,0,1845,1),(11349,99,0,1845,1),(11350,93,0,1845,52),(11351,142,0,1845,172),(11352,97,0,1846,1),(11353,134,0,1846,2),(11354,115,0,1846,1),(11355,99,0,1846,1),(11356,93,0,1846,58),(11357,142,0,1846,172),(11358,97,0,1847,1),(11359,134,0,1847,2),(11360,115,0,1847,1),(11361,99,0,1847,4),(11362,143,0,1847,0),(11363,144,0,1847,0),(11364,145,0,1847,1),(11365,146,0,1847,0),(11366,147,0,1847,0),(11367,97,0,1848,1),(11368,134,0,1848,2),(11369,115,0,1848,1),(11370,99,0,1848,1),(11371,93,0,1848,49),(11372,142,0,1848,171),(11373,97,0,1849,1),(11374,134,0,1849,2),(11375,115,0,1849,1),(11376,99,0,1849,1),(11377,93,0,1849,50),(11378,142,0,1849,171),(11379,97,0,1850,1),(11380,134,0,1850,2),(11381,115,0,1850,1),(11382,99,0,1850,1),(11383,93,0,1850,56),(11384,142,0,1850,171),(11385,97,0,1851,1),(11386,134,0,1851,2),(11387,115,0,1851,1),(11388,99,0,1851,1),(11389,93,0,1851,49),(11390,142,0,1851,172),(11391,97,0,1852,1),(11392,134,0,1852,2),(11393,115,0,1852,1),(11394,99,0,1852,1),(11395,93,0,1852,50),(11396,142,0,1852,172),(11397,97,0,1853,1),(11398,134,0,1853,2),(11399,115,0,1853,1),(11400,99,0,1853,1),(11401,93,0,1853,56),(11402,142,0,1853,172),(11403,97,0,1854,1),(11404,134,0,1854,2),(11405,115,0,1854,1),(11406,99,0,1854,4),(11407,143,0,1854,0),(11408,144,0,1854,0),(11409,145,0,1854,1),(11410,146,0,1854,0),(11411,147,0,1854,0),(11412,97,0,1855,1),(11413,134,0,1855,2),(11414,115,0,1855,1),(11415,99,0,1855,1),(11416,93,0,1855,49),(11417,142,0,1855,171),(11418,97,0,1856,1),(11419,134,0,1856,2),(11420,115,0,1856,1),(11421,99,0,1856,1),(11422,93,0,1856,50),(11423,142,0,1856,171),(11424,97,0,1857,1),(11425,134,0,1857,2),(11426,115,0,1857,1),(11427,99,0,1857,1),(11428,93,0,1857,56),(11429,142,0,1857,171),(11430,97,0,1858,1),(11431,134,0,1858,2),(11432,115,0,1858,1),(11433,99,0,1858,1),(11434,93,0,1858,49),(11435,142,0,1858,172),(11436,97,0,1859,1),(11437,134,0,1859,2),(11438,115,0,1859,1),(11439,99,0,1859,1),(11440,93,0,1859,50),(11441,142,0,1859,172),(11442,97,0,1860,1),(11443,134,0,1860,2),(11444,115,0,1860,1),(11445,99,0,1860,1),(11446,93,0,1860,56),(11447,142,0,1860,172),(11448,97,0,1861,1),(11449,134,0,1861,2),(11450,115,0,1861,1),(11451,99,0,1861,4),(11452,143,0,1861,0),(11453,144,0,1861,1),(11454,145,0,1861,0),(11455,146,0,1861,0),(11456,147,0,1861,0),(11457,97,0,1862,1),(11458,134,0,1862,2),(11459,115,0,1862,1),(11460,99,0,1862,1),(11461,93,0,1862,49),(11462,142,0,1862,171),(11463,97,0,1863,1),(11464,134,0,1863,2),(11465,115,0,1863,1),(11466,99,0,1863,1),(11467,93,0,1863,53),(11468,142,0,1863,171),(11469,97,0,1864,1),(11470,134,0,1864,2),(11471,115,0,1864,1),(11472,99,0,1864,1),(11473,93,0,1864,58),(11474,142,0,1864,171),(11475,97,0,1865,1),(11476,134,0,1865,2),(11477,115,0,1865,1),(11478,99,0,1865,1),(11479,93,0,1865,49),(11480,142,0,1865,172),(11481,97,0,1866,1),(11482,134,0,1866,2),(11483,115,0,1866,1),(11484,99,0,1866,1),(11485,93,0,1866,53),(11486,142,0,1866,172),(11487,97,0,1867,1),(11488,134,0,1867,2),(11489,115,0,1867,1),(11490,99,0,1867,1),(11491,93,0,1867,58),(11492,142,0,1867,172),(11493,97,0,1868,1),(11494,134,0,1868,2),(11495,115,0,1868,1),(11496,99,0,1868,4),(11497,143,0,1868,0),(11498,144,0,1868,0),(11499,145,0,1868,0),(11500,146,0,1868,0),(11501,147,0,1868,0),(11502,97,0,1869,1),(11503,134,0,1869,2),(11504,115,0,1869,1),(11505,99,0,1869,1),(11506,93,0,1869,49),(11507,142,0,1869,171),(11508,97,0,1870,1),(11509,134,0,1870,2),(11510,115,0,1870,1),(11511,99,0,1870,1),(11512,93,0,1870,50),(11513,142,0,1870,171),(11514,97,0,1871,1),(11515,134,0,1871,2),(11516,115,0,1871,1),(11517,99,0,1871,1),(11518,93,0,1871,57),(11519,142,0,1871,171),(11520,97,0,1872,1),(11521,134,0,1872,2),(11522,115,0,1872,1),(11523,99,0,1872,1),(11524,93,0,1872,49),(11525,142,0,1872,172),(11526,97,0,1873,1),(11527,134,0,1873,2),(11528,115,0,1873,1),(11529,99,0,1873,1),(11530,93,0,1873,50),(11531,142,0,1873,172),(11532,97,0,1874,1),(11533,134,0,1874,2),(11534,115,0,1874,1),(11535,99,0,1874,1),(11536,93,0,1874,57),(11537,142,0,1874,172),(11538,97,0,1875,1),(11539,134,0,1875,2),(11540,115,0,1875,1),(11541,99,0,1875,4),(11542,143,0,1875,0),(11543,144,0,1875,0),(11544,145,0,1875,0),(11545,146,0,1875,0),(11546,147,0,1875,0),(11547,97,0,1876,1),(11548,134,0,1876,2),(11549,115,0,1876,1),(11550,99,0,1876,1),(11551,93,0,1876,49),(11552,142,0,1876,171),(11553,97,0,1877,1),(11554,134,0,1877,2),(11555,115,0,1877,1),(11556,99,0,1877,1),(11557,93,0,1877,52),(11558,142,0,1877,171),(11559,97,0,1878,1),(11560,134,0,1878,2),(11561,115,0,1878,1),(11562,99,0,1878,1),(11563,93,0,1878,59),(11564,142,0,1878,171),(11565,97,0,1879,1),(11566,134,0,1879,2),(11567,115,0,1879,1),(11568,99,0,1879,1),(11569,93,0,1879,49),(11570,142,0,1879,172),(11571,97,0,1880,1),(11572,134,0,1880,2),(11573,115,0,1880,1),(11574,99,0,1880,1),(11575,93,0,1880,52),(11576,142,0,1880,172),(11577,97,0,1881,1),(11578,134,0,1881,2),(11579,115,0,1881,1),(11580,99,0,1881,1),(11581,93,0,1881,59),(11582,142,0,1881,172),(11583,97,0,1882,1),(11584,134,0,1882,2),(11585,115,0,1882,1),(11586,99,0,1882,4),(11587,143,0,1882,1),(11588,144,0,1882,0),(11589,145,0,1882,0),(11590,146,0,1882,0),(11591,147,0,1882,0),(11592,97,0,1883,1),(11593,134,0,1883,2),(11594,115,0,1883,1),(11595,99,0,1883,1),(11596,93,0,1883,50),(11597,142,0,1883,171),(11598,97,0,1884,1),(11599,134,0,1884,2),(11600,115,0,1884,1),(11601,99,0,1884,1),(11602,93,0,1884,53),(11603,142,0,1884,171),(11604,97,0,1885,1),(11605,134,0,1885,2),(11606,115,0,1885,1),(11607,99,0,1885,1),(11608,93,0,1885,58),(11609,142,0,1885,171),(11610,97,0,1886,1),(11611,134,0,1886,2),(11612,115,0,1886,1),(11613,99,0,1886,1),(11614,93,0,1886,50),(11615,142,0,1886,172),(11616,97,0,1887,1),(11617,134,0,1887,2),(11618,115,0,1887,1),(11619,99,0,1887,1),(11620,93,0,1887,53),(11621,142,0,1887,172),(11622,97,0,1888,1),(11623,134,0,1888,2),(11624,115,0,1888,1),(11625,99,0,1888,1),(11626,93,0,1888,58),(11627,142,0,1888,172),(11628,97,0,1889,1),(11629,134,0,1889,2),(11630,115,0,1889,1),(11631,99,0,1889,4),(11632,143,0,1889,0),(11633,144,0,1889,0),(11634,145,0,1889,0),(11635,146,0,1889,0),(11636,147,0,1889,0),(11637,97,0,1890,1),(11638,134,0,1890,2),(11639,115,0,1890,1),(11640,99,0,1890,1),(11641,93,0,1890,50),(11642,142,0,1890,171),(11643,97,0,1891,1),(11644,134,0,1891,2),(11645,115,0,1891,1),(11646,99,0,1891,1),(11647,93,0,1891,52),(11648,142,0,1891,171),(11649,97,0,1892,1),(11650,134,0,1892,2),(11651,115,0,1892,1),(11652,99,0,1892,1),(11653,93,0,1892,53),(11654,142,0,1892,171),(11655,97,0,1893,1),(11656,134,0,1893,2),(11657,115,0,1893,1),(11658,99,0,1893,1),(11659,93,0,1893,50),(11660,142,0,1893,172),(11661,97,0,1894,1),(11662,134,0,1894,2),(11663,115,0,1894,1),(11664,99,0,1894,1),(11665,93,0,1894,52),(11666,142,0,1894,172),(11667,97,0,1895,1),(11668,134,0,1895,2),(11669,115,0,1895,1),(11670,99,0,1895,1),(11671,93,0,1895,53),(11672,142,0,1895,172),(11673,97,0,1896,1),(11674,134,0,1896,2),(11675,115,0,1896,1),(11676,99,0,1896,4),(11677,143,0,1896,1),(11678,144,0,1896,1),(11679,145,0,1896,0),(11680,146,0,1896,0),(11681,147,0,1896,0),(11682,97,0,1897,1),(11683,134,0,1897,2),(11684,115,0,1897,1),(11685,99,0,1897,1),(11686,93,0,1897,50),(11687,142,0,1897,171),(11688,97,0,1898,1),(11689,134,0,1898,2),(11690,115,0,1898,1),(11691,99,0,1898,1),(11692,93,0,1898,53),(11693,142,0,1898,171),(11694,97,0,1899,1),(11695,134,0,1899,2),(11696,115,0,1899,1),(11697,99,0,1899,1),(11698,93,0,1899,56),(11699,142,0,1899,171),(11700,97,0,1900,1),(11701,134,0,1900,2),(11702,115,0,1900,1),(11703,99,0,1900,1),(11704,93,0,1900,50),(11705,142,0,1900,172),(11706,97,0,1901,1),(11707,134,0,1901,2),(11708,115,0,1901,1),(11709,99,0,1901,1),(11710,93,0,1901,53),(11711,142,0,1901,172),(11712,97,0,1902,1),(11713,134,0,1902,2),(11714,115,0,1902,1),(11715,99,0,1902,1),(11716,93,0,1902,56),(11717,142,0,1902,172),(11718,97,0,1903,1),(11719,134,0,1903,2),(11720,115,0,1903,1),(11721,99,0,1903,4),(11722,143,0,1903,1),(11723,144,0,1903,0),(11724,145,0,1903,1),(11725,146,0,1903,0),(11726,147,0,1903,0),(11727,97,0,1904,1),(11728,134,0,1904,2),(11729,115,0,1904,1),(11730,99,0,1904,1),(11731,93,0,1904,49),(11732,142,0,1904,171),(11733,97,0,1905,1),(11734,134,0,1905,2),(11735,115,0,1905,1),(11736,99,0,1905,1),(11737,93,0,1905,53),(11738,142,0,1905,171),(11739,97,0,1906,1),(11740,134,0,1906,2),(11741,115,0,1906,1),(11742,99,0,1906,1),(11743,93,0,1906,58),(11744,142,0,1906,171),(11745,97,0,1907,1),(11746,134,0,1907,2),(11747,115,0,1907,1),(11748,99,0,1907,1),(11749,93,0,1907,49),(11750,142,0,1907,172),(11751,97,0,1908,1),(11752,134,0,1908,2),(11753,115,0,1908,1),(11754,99,0,1908,1),(11755,93,0,1908,53),(11756,142,0,1908,172),(11757,97,0,1909,1),(11758,134,0,1909,2),(11759,115,0,1909,1),(11760,99,0,1909,1),(11761,93,0,1909,58),(11762,142,0,1909,172),(11763,97,0,1910,1),(11764,134,0,1910,2),(11765,115,0,1910,1),(11766,99,0,1910,1),(11767,93,0,1910,49),(11768,142,0,1910,173),(11769,97,0,1911,1),(11770,134,0,1911,2),(11771,115,0,1911,1),(11772,99,0,1911,1),(11773,93,0,1911,53),(11774,142,0,1911,173),(11775,97,0,1912,1),(11776,134,0,1912,2),(11777,115,0,1912,1),(11778,99,0,1912,1),(11779,93,0,1912,58),(11780,142,0,1912,173),(11781,97,0,1913,1),(11782,134,0,1913,2),(11783,115,0,1913,1),(11784,99,0,1913,1),(11785,93,0,1913,49),(11786,142,0,1913,174),(11787,97,0,1914,1),(11788,134,0,1914,2),(11789,115,0,1914,1),(11790,99,0,1914,1),(11791,93,0,1914,53),(11792,142,0,1914,174),(11793,97,0,1915,1),(11794,134,0,1915,2),(11795,115,0,1915,1),(11796,99,0,1915,1),(11797,93,0,1915,58),(11798,142,0,1915,174),(11799,97,0,1916,1),(11800,134,0,1916,2),(11801,115,0,1916,1),(11802,99,0,1916,1),(11803,93,0,1916,49),(11804,142,0,1916,175),(11805,97,0,1917,1),(11806,134,0,1917,2),(11807,115,0,1917,1),(11808,99,0,1917,1),(11809,93,0,1917,53),(11810,142,0,1917,175),(11811,97,0,1918,1),(11812,134,0,1918,2),(11813,115,0,1918,1),(11814,99,0,1918,1),(11815,93,0,1918,58),(11816,142,0,1918,175),(11817,97,0,1919,1),(11818,134,0,1919,2),(11819,115,0,1919,1),(11820,99,0,1919,4),(11821,143,0,1919,1),(11822,144,0,1919,0),(11823,145,0,1919,0),(11824,146,0,1919,1),(11825,147,0,1919,0),(11826,97,0,1920,1),(11827,134,0,1920,2),(11828,115,0,1920,1),(11829,99,0,1920,1),(11830,93,0,1920,52),(11831,142,0,1920,171),(11832,97,0,1921,1),(11833,134,0,1921,2),(11834,115,0,1921,1),(11835,99,0,1921,1),(11836,93,0,1921,56),(11837,142,0,1921,171),(11838,97,0,1922,1),(11839,134,0,1922,2),(11840,115,0,1922,1),(11841,99,0,1922,1),(11842,93,0,1922,60),(11843,142,0,1922,171),(11844,97,0,1923,1),(11845,134,0,1923,2),(11846,115,0,1923,1),(11847,99,0,1923,1),(11848,93,0,1923,52),(11849,142,0,1923,172),(11850,97,0,1924,1),(11851,134,0,1924,2),(11852,115,0,1924,1),(11853,99,0,1924,1),(11854,93,0,1924,56),(11855,142,0,1924,172),(11856,97,0,1925,1),(11857,134,0,1925,2),(11858,115,0,1925,1),(11859,99,0,1925,1),(11860,93,0,1925,60),(11861,142,0,1925,172),(11862,97,0,1926,1),(11863,134,0,1926,2),(11864,115,0,1926,1),(11865,99,0,1926,1),(11866,93,0,1926,52),(11867,142,0,1926,173),(11868,97,0,1927,1),(11869,134,0,1927,2),(11870,115,0,1927,1),(11871,99,0,1927,1),(11872,93,0,1927,56),(11873,142,0,1927,173),(11874,97,0,1928,1),(11875,134,0,1928,2),(11876,115,0,1928,1),(11877,99,0,1928,1),(11878,93,0,1928,60),(11879,142,0,1928,173),(11880,97,0,1929,1),(11881,134,0,1929,2),(11882,115,0,1929,1),(11883,99,0,1929,1),(11884,93,0,1929,52),(11885,142,0,1929,174),(11886,97,0,1930,1),(11887,134,0,1930,2),(11888,115,0,1930,1),(11889,99,0,1930,1),(11890,93,0,1930,56),(11891,142,0,1930,174),(11892,97,0,1931,1),(11893,134,0,1931,2),(11894,115,0,1931,1),(11895,99,0,1931,1),(11896,93,0,1931,60),(11897,142,0,1931,174),(11898,97,0,1932,1),(11899,134,0,1932,2),(11900,115,0,1932,1),(11901,99,0,1932,1),(11902,93,0,1932,52),(11903,142,0,1932,175),(11904,97,0,1933,1),(11905,134,0,1933,2),(11906,115,0,1933,1),(11907,99,0,1933,1),(11908,93,0,1933,56),(11909,142,0,1933,175),(11910,97,0,1934,1),(11911,134,0,1934,2),(11912,115,0,1934,1),(11913,99,0,1934,1),(11914,93,0,1934,60),(11915,142,0,1934,175),(11916,97,0,1935,1),(11917,134,0,1935,2),(11918,115,0,1935,1),(11919,99,0,1935,4),(11920,143,0,1935,0),(11921,144,0,1935,0),(11922,145,0,1935,0),(11923,146,0,1935,0),(11924,147,0,1935,1),(11925,97,0,1936,1),(11926,134,0,1936,2),(11927,115,0,1936,1),(11928,99,0,1936,1),(11929,93,0,1936,50),(11930,142,0,1936,171),(11931,97,0,1937,1),(11932,134,0,1937,2),(11933,115,0,1937,1),(11934,99,0,1937,1),(11935,93,0,1937,52),(11936,142,0,1937,171),(11937,97,0,1938,1),(11938,134,0,1938,2),(11939,115,0,1938,1),(11940,99,0,1938,1),(11941,93,0,1938,56),(11942,142,0,1938,171),(11943,97,0,1939,1),(11944,134,0,1939,2),(11945,115,0,1939,1),(11946,99,0,1939,1),(11947,93,0,1939,50),(11948,142,0,1939,172),(11949,97,0,1940,1),(11950,134,0,1940,2),(11951,115,0,1940,1),(11952,99,0,1940,1),(11953,93,0,1940,52),(11954,142,0,1940,172),(11955,97,0,1941,1),(11956,134,0,1941,2),(11957,115,0,1941,1),(11958,99,0,1941,1),(11959,93,0,1941,56),(11960,142,0,1941,172),(11961,97,0,1942,1),(11962,134,0,1942,2),(11963,115,0,1942,1),(11964,99,0,1942,1),(11965,93,0,1942,50),(11966,142,0,1942,173),(11967,97,0,1943,1),(11968,134,0,1943,2),(11969,115,0,1943,1),(11970,99,0,1943,1),(11971,93,0,1943,52),(11972,142,0,1943,173),(11973,97,0,1944,1),(11974,134,0,1944,2),(11975,115,0,1944,1),(11976,99,0,1944,1),(11977,93,0,1944,56),(11978,142,0,1944,173),(11979,97,0,1945,1),(11980,134,0,1945,2),(11981,115,0,1945,1),(11982,99,0,1945,1),(11983,93,0,1945,50),(11984,142,0,1945,174),(11985,97,0,1946,1),(11986,134,0,1946,2),(11987,115,0,1946,1),(11988,99,0,1946,1),(11989,93,0,1946,52),(11990,142,0,1946,174),(11991,97,0,1947,1),(11992,134,0,1947,2),(11993,115,0,1947,1),(11994,99,0,1947,1),(11995,93,0,1947,56),(11996,142,0,1947,174),(11997,97,0,1948,1),(11998,134,0,1948,2),(11999,115,0,1948,1),(12000,99,0,1948,1),(12001,93,0,1948,50),(12002,142,0,1948,175),(12003,97,0,1949,1),(12004,134,0,1949,2),(12005,115,0,1949,1),(12006,99,0,1949,1),(12007,93,0,1949,52),(12008,142,0,1949,175),(12009,97,0,1950,1),(12010,134,0,1950,2),(12011,115,0,1950,1),(12012,99,0,1950,1),(12013,93,0,1950,56),(12014,142,0,1950,175),(12015,97,0,1951,1),(12016,134,0,1951,2),(12017,115,0,1951,1),(12018,99,0,1951,4),(12019,143,0,1951,1),(12020,144,0,1951,1),(12021,145,0,1951,0),(12022,146,0,1951,1),(12023,147,0,1951,0),(12024,97,0,1952,1),(12025,134,0,1952,2),(12026,115,0,1952,1),(12027,99,0,1952,1),(12028,93,0,1952,49),(12029,142,0,1952,171),(12030,97,0,1953,1),(12031,134,0,1953,2),(12032,115,0,1953,1),(12033,99,0,1953,1),(12034,93,0,1953,53),(12035,142,0,1953,171),(12036,97,0,1954,1),(12037,134,0,1954,2),(12038,115,0,1954,1),(12039,99,0,1954,1),(12040,93,0,1954,56),(12041,142,0,1954,171),(12042,97,0,1955,1),(12043,134,0,1955,2),(12044,115,0,1955,1),(12045,99,0,1955,1),(12046,93,0,1955,49),(12047,142,0,1955,172),(12048,97,0,1956,1),(12049,134,0,1956,2),(12050,115,0,1956,1),(12051,99,0,1956,1),(12052,93,0,1956,53),(12053,142,0,1956,172),(12054,97,0,1957,1),(12055,134,0,1957,2),(12056,115,0,1957,1),(12057,99,0,1957,1),(12058,93,0,1957,56),(12059,142,0,1957,172),(12060,97,0,1958,1),(12061,134,0,1958,2),(12062,115,0,1958,1),(12063,99,0,1958,1),(12064,93,0,1958,49),(12065,142,0,1958,173),(12066,97,0,1959,1),(12067,134,0,1959,2),(12068,115,0,1959,1),(12069,99,0,1959,1),(12070,93,0,1959,53),(12071,142,0,1959,173),(12072,97,0,1960,1),(12073,134,0,1960,2),(12074,115,0,1960,1),(12075,99,0,1960,1),(12076,93,0,1960,56),(12077,142,0,1960,173),(12078,97,0,1961,1),(12079,134,0,1961,2),(12080,115,0,1961,1),(12081,99,0,1961,1),(12082,93,0,1961,49),(12083,142,0,1961,174),(12084,97,0,1962,1),(12085,134,0,1962,2),(12086,115,0,1962,1),(12087,99,0,1962,1),(12088,93,0,1962,53),(12089,142,0,1962,174),(12090,97,0,1963,1),(12091,134,0,1963,2),(12092,115,0,1963,1),(12093,99,0,1963,1),(12094,93,0,1963,56),(12095,142,0,1963,174),(12096,97,0,1964,1),(12097,134,0,1964,2),(12098,115,0,1964,1),(12099,99,0,1964,1),(12100,93,0,1964,49),(12101,142,0,1964,175),(12102,97,0,1965,1),(12103,134,0,1965,2),(12104,115,0,1965,1),(12105,99,0,1965,1),(12106,93,0,1965,53),(12107,142,0,1965,175),(12108,97,0,1966,1),(12109,134,0,1966,2),(12110,115,0,1966,1),(12111,99,0,1966,1),(12112,93,0,1966,56),(12113,142,0,1966,175),(12114,97,0,1967,1),(12115,134,0,1967,2),(12116,115,0,1967,1),(12117,99,0,1967,4),(12118,143,0,1967,0),(12119,144,0,1967,0),(12120,145,0,1967,0),(12121,146,0,1967,0),(12122,147,0,1967,0),(12123,97,0,1968,1),(12124,134,0,1968,2),(12125,115,0,1968,1),(12126,99,0,1968,1),(12127,93,0,1968,50),(12128,142,0,1968,171),(12129,97,0,1969,1),(12130,134,0,1969,2),(12131,115,0,1969,1),(12132,99,0,1969,1),(12133,93,0,1969,57),(12134,142,0,1969,171),(12135,97,0,1970,1),(12136,134,0,1970,2),(12137,115,0,1970,1),(12138,99,0,1970,1),(12139,93,0,1970,60),(12140,142,0,1970,171),(12141,97,0,1971,1),(12142,134,0,1971,2),(12143,115,0,1971,1),(12144,99,0,1971,1),(12145,93,0,1971,50),(12146,142,0,1971,172),(12147,97,0,1972,1),(12148,134,0,1972,2),(12149,115,0,1972,1),(12150,99,0,1972,1),(12151,93,0,1972,57),(12152,142,0,1972,172),(12153,97,0,1973,1),(12154,134,0,1973,2),(12155,115,0,1973,1),(12156,99,0,1973,1),(12157,93,0,1973,60),(12158,142,0,1973,172),(12159,97,0,1974,1),(12160,134,0,1974,2),(12161,115,0,1974,1),(12162,99,0,1974,1),(12163,93,0,1974,50),(12164,142,0,1974,173),(12165,97,0,1975,1),(12166,134,0,1975,2),(12167,115,0,1975,1),(12168,99,0,1975,1),(12169,93,0,1975,57),(12170,142,0,1975,173),(12171,97,0,1976,1),(12172,134,0,1976,2),(12173,115,0,1976,1),(12174,99,0,1976,1),(12175,93,0,1976,60),(12176,142,0,1976,173),(12177,97,0,1977,1),(12178,134,0,1977,2),(12179,115,0,1977,1),(12180,99,0,1977,1),(12181,93,0,1977,50),(12182,142,0,1977,174),(12183,97,0,1978,1),(12184,134,0,1978,2),(12185,115,0,1978,1),(12186,99,0,1978,1),(12187,93,0,1978,57),(12188,142,0,1978,174),(12189,97,0,1979,1),(12190,134,0,1979,2),(12191,115,0,1979,1),(12192,99,0,1979,1),(12193,93,0,1979,60),(12194,142,0,1979,174),(12195,97,0,1980,1),(12196,134,0,1980,2),(12197,115,0,1980,1),(12198,99,0,1980,1),(12199,93,0,1980,50),(12200,142,0,1980,175),(12201,97,0,1981,1),(12202,134,0,1981,2),(12203,115,0,1981,1),(12204,99,0,1981,1),(12205,93,0,1981,57),(12206,142,0,1981,175),(12207,97,0,1982,1),(12208,134,0,1982,2),(12209,115,0,1982,1),(12210,99,0,1982,1),(12211,93,0,1982,60),(12212,142,0,1982,175),(12213,97,0,1983,1),(12214,134,0,1983,2),(12215,115,0,1983,1),(12216,99,0,1983,4),(12217,143,0,1983,0),(12218,144,0,1983,0),(12219,145,0,1983,0),(12220,146,0,1983,0),(12221,147,0,1983,1),(12222,97,0,1984,1),(12223,134,0,1984,2),(12224,115,0,1984,1),(12225,99,0,1984,1),(12226,93,0,1984,52),(12227,142,0,1984,171),(12228,97,0,1985,1),(12229,134,0,1985,2),(12230,115,0,1985,1),(12231,99,0,1985,1),(12232,93,0,1985,56),(12233,142,0,1985,171),(12234,97,0,1986,1),(12235,134,0,1986,2),(12236,115,0,1986,1),(12237,99,0,1986,1),(12238,93,0,1986,57),(12239,142,0,1986,171),(12240,97,0,1987,1),(12241,134,0,1987,2),(12242,115,0,1987,1),(12243,99,0,1987,1),(12244,93,0,1987,52),(12245,142,0,1987,172),(12246,97,0,1988,1),(12247,134,0,1988,2),(12248,115,0,1988,1),(12249,99,0,1988,1),(12250,93,0,1988,56),(12251,142,0,1988,172),(12252,97,0,1989,1),(12253,134,0,1989,2),(12254,115,0,1989,1),(12255,99,0,1989,1),(12256,93,0,1989,57),(12257,142,0,1989,172),(12258,97,0,1990,1),(12259,134,0,1990,2),(12260,115,0,1990,1),(12261,99,0,1990,4),(12262,143,0,1990,0),(12263,144,0,1990,0),(12264,145,0,1990,0),(12265,146,0,1990,0),(12266,147,0,1990,0),(12267,97,0,1991,1),(12268,134,0,1991,2),(12269,115,0,1991,1),(12270,99,0,1991,1),(12271,93,0,1991,49),(12272,142,0,1991,171),(12273,97,0,1992,1),(12274,134,0,1992,2),(12275,115,0,1992,1),(12276,99,0,1992,1),(12277,93,0,1992,50),(12278,142,0,1992,171),(12279,97,0,1993,1),(12280,134,0,1993,2),(12281,115,0,1993,1),(12282,99,0,1993,1),(12283,93,0,1993,57),(12284,142,0,1993,171),(12285,97,0,1994,1),(12286,134,0,1994,2),(12287,115,0,1994,1),(12288,99,0,1994,1),(12289,93,0,1994,49),(12290,142,0,1994,172),(12291,97,0,1995,1),(12292,134,0,1995,2),(12293,115,0,1995,1),(12294,99,0,1995,1),(12295,93,0,1995,50),(12296,142,0,1995,172),(12297,97,0,1996,1),(12298,134,0,1996,2),(12299,115,0,1996,1),(12300,99,0,1996,1),(12301,93,0,1996,57),(12302,142,0,1996,172),(12303,97,0,1997,1),(12304,134,0,1997,2),(12305,115,0,1997,1),(12306,99,0,1997,4),(12307,143,0,1997,0),(12308,144,0,1997,0),(12309,145,0,1997,0),(12310,146,0,1997,1),(12311,147,0,1997,0),(12312,97,0,1998,1),(12313,134,0,1998,2),(12314,115,0,1998,1),(12315,99,0,1998,1),(12316,93,0,1998,57),(12317,142,0,1998,171),(12318,97,0,1999,1),(12319,134,0,1999,2),(12320,115,0,1999,1),(12321,99,0,1999,1),(12322,93,0,1999,57),(12323,142,0,1999,172),(12324,97,0,2000,1),(12325,134,0,2000,2),(12326,115,0,2000,1),(12327,99,0,2000,1),(12328,93,0,2000,57),(12329,142,0,2000,173),(12330,97,0,2001,1),(12331,134,0,2001,2),(12332,115,0,2001,1),(12333,99,0,2001,1),(12334,93,0,2001,57),(12335,142,0,2001,174),(12336,97,0,2002,1),(12337,134,0,2002,2),(12338,115,0,2002,1),(12339,99,0,2002,1),(12340,93,0,2002,57),(12341,142,0,2002,175),(12342,97,0,2003,1),(12343,134,0,2003,2),(12344,115,0,2003,1),(12345,99,0,2003,4),(12346,143,0,2003,0),(12347,144,0,2003,1),(12348,145,0,2003,0),(12349,146,0,2003,0),(12350,147,0,2003,0),(12351,97,0,2004,1),(12352,134,0,2004,2),(12353,115,0,2004,1),(12354,99,0,2004,1),(12355,93,0,2004,52),(12356,142,0,2004,171),(12357,97,0,2005,1),(12358,134,0,2005,2),(12359,115,0,2005,1),(12360,99,0,2005,1),(12361,93,0,2005,53),(12362,142,0,2005,171),(12363,97,0,2006,1),(12364,134,0,2006,2),(12365,115,0,2006,1),(12366,99,0,2006,1),(12367,93,0,2006,59),(12368,142,0,2006,171),(12369,97,0,2007,1),(12370,134,0,2007,2),(12371,115,0,2007,1),(12372,99,0,2007,1),(12373,93,0,2007,52),(12374,142,0,2007,172),(12375,97,0,2008,1),(12376,134,0,2008,2),(12377,115,0,2008,1),(12378,99,0,2008,1),(12379,93,0,2008,53),(12380,142,0,2008,172),(12381,97,0,2009,1),(12382,134,0,2009,2),(12383,115,0,2009,1),(12384,99,0,2009,1),(12385,93,0,2009,59),(12386,142,0,2009,172),(12387,97,0,2010,1),(12388,134,0,2010,2),(12389,115,0,2010,1),(12390,99,0,2010,4),(12391,143,0,2010,0),(12392,144,0,2010,0),(12393,145,0,2010,0),(12394,146,0,2010,0),(12395,147,0,2010,0),(12396,97,0,2011,1),(12397,134,0,2011,2),(12398,115,0,2011,1),(12399,99,0,2011,1),(12400,93,0,2011,49),(12401,142,0,2011,171),(12402,97,0,2012,1),(12403,134,0,2012,2),(12404,115,0,2012,1),(12405,99,0,2012,1),(12406,93,0,2012,56),(12407,142,0,2012,171),(12408,97,0,2013,1),(12409,134,0,2013,2),(12410,115,0,2013,1),(12411,99,0,2013,1),(12412,93,0,2013,59),(12413,142,0,2013,171),(12414,97,0,2014,1),(12415,134,0,2014,2),(12416,115,0,2014,1),(12417,99,0,2014,1),(12418,93,0,2014,49),(12419,142,0,2014,172),(12420,97,0,2015,1),(12421,134,0,2015,2),(12422,115,0,2015,1),(12423,99,0,2015,1),(12424,93,0,2015,56),(12425,142,0,2015,172),(12426,97,0,2016,1),(12427,134,0,2016,2),(12428,115,0,2016,1),(12429,99,0,2016,1),(12430,93,0,2016,59),(12431,142,0,2016,172),(12432,97,0,2017,1),(12433,134,0,2017,2),(12434,115,0,2017,1),(12435,99,0,2017,4),(12436,143,0,2017,1),(12437,144,0,2017,0),(12438,145,0,2017,0),(12439,146,0,2017,0),(12440,147,0,2017,0),(12441,97,0,2018,1),(12442,134,0,2018,2),(12443,115,0,2018,1),(12444,99,0,2018,1),(12445,93,0,2018,50),(12446,142,0,2018,171),(12447,97,0,2019,1),(12448,134,0,2019,2),(12449,115,0,2019,1),(12450,99,0,2019,1),(12451,93,0,2019,56),(12452,142,0,2019,171),(12453,97,0,2020,1),(12454,134,0,2020,2),(12455,115,0,2020,1),(12456,99,0,2020,1),(12457,93,0,2020,58),(12458,142,0,2020,171),(12459,97,0,2021,1),(12460,134,0,2021,2),(12461,115,0,2021,1),(12462,99,0,2021,1),(12463,93,0,2021,50),(12464,142,0,2021,172),(12465,97,0,2022,1),(12466,134,0,2022,2),(12467,115,0,2022,1),(12468,99,0,2022,1),(12469,93,0,2022,56),(12470,142,0,2022,172),(12471,97,0,2023,1),(12472,134,0,2023,2),(12473,115,0,2023,1),(12474,99,0,2023,1),(12475,93,0,2023,58),(12476,142,0,2023,172),(12477,97,0,2024,1),(12478,134,0,2024,2),(12479,115,0,2024,1),(12480,99,0,2024,4),(12481,143,0,2024,0),(12482,144,0,2024,1),(12483,145,0,2024,1),(12484,146,0,2024,0),(12485,147,0,2024,0),(12486,97,0,2025,1),(12487,134,0,2025,2),(12488,115,0,2025,1),(12489,99,0,2025,1),(12490,93,0,2025,53),(12491,142,0,2025,171),(12492,97,0,2026,1),(12493,134,0,2026,2),(12494,115,0,2026,1),(12495,99,0,2026,1),(12496,93,0,2026,57),(12497,142,0,2026,171),(12498,97,0,2027,1),(12499,134,0,2027,2),(12500,115,0,2027,1),(12501,99,0,2027,1),(12502,93,0,2027,58),(12503,142,0,2027,171),(12504,97,0,2028,1),(12505,134,0,2028,2),(12506,115,0,2028,1),(12507,99,0,2028,1),(12508,93,0,2028,53),(12509,142,0,2028,172),(12510,97,0,2029,1),(12511,134,0,2029,2),(12512,115,0,2029,1),(12513,99,0,2029,1),(12514,93,0,2029,57),(12515,142,0,2029,172),(12516,97,0,2030,1),(12517,134,0,2030,2),(12518,115,0,2030,1),(12519,99,0,2030,1),(12520,93,0,2030,58),(12521,142,0,2030,172),(12522,97,0,2031,1),(12523,134,0,2031,2),(12524,115,0,2031,1),(12525,99,0,2031,1),(12526,93,0,2031,53),(12527,142,0,2031,173),(12528,97,0,2032,1),(12529,134,0,2032,2),(12530,115,0,2032,1),(12531,99,0,2032,1),(12532,93,0,2032,57),(12533,142,0,2032,173),(12534,97,0,2033,1),(12535,134,0,2033,2),(12536,115,0,2033,1),(12537,99,0,2033,1),(12538,93,0,2033,58),(12539,142,0,2033,173),(12540,97,0,2034,1),(12541,134,0,2034,2),(12542,115,0,2034,1),(12543,99,0,2034,1),(12544,93,0,2034,53),(12545,142,0,2034,174),(12546,97,0,2035,1),(12547,134,0,2035,2),(12548,115,0,2035,1),(12549,99,0,2035,1),(12550,93,0,2035,57),(12551,142,0,2035,174),(12552,97,0,2036,1),(12553,134,0,2036,2),(12554,115,0,2036,1),(12555,99,0,2036,1),(12556,93,0,2036,58),(12557,142,0,2036,174),(12558,97,0,2037,1),(12559,134,0,2037,2),(12560,115,0,2037,1),(12561,99,0,2037,1),(12562,93,0,2037,53),(12563,142,0,2037,175),(12564,97,0,2038,1),(12565,134,0,2038,2),(12566,115,0,2038,1),(12567,99,0,2038,1),(12568,93,0,2038,57),(12569,142,0,2038,175),(12570,97,0,2039,1),(12571,134,0,2039,2),(12572,115,0,2039,1),(12573,99,0,2039,1),(12574,93,0,2039,58),(12575,142,0,2039,175),(12576,97,0,2040,1),(12577,134,0,2040,2),(12578,115,0,2040,1),(12579,99,0,2040,4),(12580,143,0,2040,0),(12581,144,0,2040,0),(12582,145,0,2040,1),(12583,146,0,2040,0),(12584,147,0,2040,0),(12585,97,1,1220,1),(12586,134,1,1220,2),(12587,99,1,1220,4),(12588,97,1,1236,1),(12589,134,1,1236,2),(12590,99,1,1236,4),(12591,97,1,1252,1),(12592,134,1,1252,2),(12593,99,1,1252,4),(12594,97,1,1268,1),(12595,134,1,1268,2),(12596,99,1,1268,4),(12597,97,1,1284,1),(12598,134,1,1284,2),(12599,99,1,1284,4),(12600,97,1,1380,1),(12601,134,1,1380,2),(12602,99,1,1380,4),(12603,97,1,1300,1),(12604,134,1,1300,2),(12605,99,1,1300,4),(12606,97,1,1316,1),(12607,134,1,1316,2),(12608,99,1,1316,4),(12609,97,1,1332,1),(12610,134,1,1332,2),(12611,99,1,1332,4),(12612,97,1,1348,1),(12613,134,1,1348,2),(12614,99,1,1348,4),(12615,97,1,1364,1),(12616,134,1,1364,2),(12617,99,1,1364,4),(12618,97,1,1396,1),(12619,134,1,1396,2),(12620,99,1,1396,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_media_gallery`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_media_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_media_gallery` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  `media_type` varchar(32) NOT NULL DEFAULT 'image' COMMENT 'Media entry type',
  `disabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Visibility status',
  PRIMARY KEY (`value_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3417 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Media Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_media_gallery`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_media_gallery` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_media_gallery` VALUES (1,90,'/m/b/mb01-blue-0.jpg','image',0),(2,90,'/m/b/mb04-black-0.jpg','image',0),(3,90,'/m/b/mb04-black-0_alt1.jpg','image',0),(4,90,'/m/b/mb03-black-0.jpg','image',0),(5,90,'/m/b/mb03-black-0_alt1.jpg','image',0),(6,90,'/m/b/mb05-black-0.jpg','image',0),(7,90,'/m/b/mb06-gray-0.jpg','image',0),(8,90,'/m/b/mb02-gray-0.jpg','image',0),(9,90,'/m/b/mb02-blue-0.jpg','image',0),(10,90,'/u/b/ub02-black-0.jpg','image',0),(11,90,'/w/b/wb01-black-0.jpg','image',0),(12,90,'/w/b/wb02-green-0.jpg','image',0),(13,90,'/w/b/wb05-red-0.jpg','image',0),(14,90,'/w/b/wb06-red-0.jpg','image',0),(15,90,'/w/b/wb06-red-0_alt1.jpg','image',0),(16,90,'/w/b/wb03-purple-0.jpg','image',0),(17,90,'/w/b/wb07-brown-0.jpg','image',0),(18,90,'/w/b/wb04-blue-0.jpg','image',0),(19,90,'/u/g/ug06-lb-0.jpg','image',0),(20,90,'/u/g/ug07-bk-0.jpg','image',0),(21,90,'/u/g/ug07-bk-0_alt1.jpg','image',0),(22,90,'/u/g/ug04-bk-0.jpg','image',0),(23,90,'/u/g/ug02-bk-0.jpg','image',0),(24,90,'/u/g/ug05-gr-0.jpg','image',0),(25,90,'/u/g/ug01-bk-0.jpg','image',0),(26,90,'/l/u/luma-yoga-brick.jpg','image',0),(27,90,'/l/u/luma-foam-roller.jpg','image',0),(28,90,'/u/g/ug03-bk-0.jpg','image',0),(29,90,'/l/u/luma-stability-ball-gray.jpg','image',0),(30,90,'/l/u/luma-stability-ball-pink.jpg','image',0),(31,90,'/l/u/luma-stability-ball.jpg','image',0),(32,90,'/l/u/luma-stability-ball-gray.jpg','image',0),(33,90,'/l/u/luma-stability-ball-pink.jpg','image',0),(34,90,'/l/u/luma-stability-ball.jpg','image',0),(35,90,'/l/u/luma-stability-ball-gray.jpg','image',0),(36,90,'/l/u/luma-stability-ball-pink.jpg','image',0),(37,90,'/l/u/luma-stability-ball.jpg','image',0),(38,90,'/l/u/luma-yoga-strap.jpg','image',0),(39,90,'/l/u/luma-yoga-strap.jpg','image',0),(40,90,'/l/u/luma-yoga-strap.jpg','image',0),(41,90,'/m/g/mg04-bk-0.jpg','image',0),(42,90,'/m/g/mg01-bk-0.jpg','image',0),(43,90,'/m/g/mg03-br-0.jpg','image',0),(44,90,'/m/g/mg05-br-0.jpg','image',0),(45,90,'/m/g/mg02-bk-0.jpg','image',0),(46,90,'/w/g/wg09-gr-0.jpg','image',0),(47,90,'/w/g/wg01-bk-0.jpg','image',0),(48,90,'/w/g/wg03-gr-0.jpg','image',0),(49,90,'/w/g/wg03-sa-0.jpg','image',0),(50,90,'/w/g/wg02-bk-0.jpg','image',0),(51,90,'/l/u/luma-yoga-kit-2.jpg','image',0),(52,90,'/l/u/luma-yoga-strap-set.jpg','image',0),(53,90,'/m/h/mh01-black_main_1.jpg','image',0),(54,90,'/m/h/mh01-gray_main_1.jpg','image',0),(55,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(56,90,'/m/h/mh01-gray_back_1.jpg','image',0),(57,90,'/m/h/mh01-orange_main_1.jpg','image',0),(58,90,'/m/h/mh01-black_main_1.jpg','image',0),(59,90,'/m/h/mh01-gray_main_1.jpg','image',0),(60,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(61,90,'/m/h/mh01-gray_back_1.jpg','image',0),(62,90,'/m/h/mh01-orange_main_1.jpg','image',0),(63,90,'/m/h/mh01-black_main_1.jpg','image',0),(64,90,'/m/h/mh01-gray_main_1.jpg','image',0),(65,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(66,90,'/m/h/mh01-gray_back_1.jpg','image',0),(67,90,'/m/h/mh01-orange_main_1.jpg','image',0),(68,90,'/m/h/mh01-black_main_1.jpg','image',0),(69,90,'/m/h/mh01-gray_main_1.jpg','image',0),(70,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(71,90,'/m/h/mh01-gray_back_1.jpg','image',0),(72,90,'/m/h/mh01-orange_main_1.jpg','image',0),(73,90,'/m/h/mh01-black_main_1.jpg','image',0),(74,90,'/m/h/mh01-gray_main_1.jpg','image',0),(75,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(76,90,'/m/h/mh01-gray_back_1.jpg','image',0),(77,90,'/m/h/mh01-orange_main_1.jpg','image',0),(78,90,'/m/h/mh01-gray_main_1.jpg','image',0),(79,90,'/m/h/mh01-gray_alt1_1.jpg','image',0),(80,90,'/m/h/mh01-gray_back_1.jpg','image',0),(81,90,'/m/h/mh02-black_main_1.jpg','image',0),(82,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(83,90,'/m/h/mh02-black_back_1.jpg','image',0),(84,90,'/m/h/mh02-purple_main_1.jpg','image',0),(85,90,'/m/h/mh02-red_main_1.jpg','image',0),(86,90,'/m/h/mh02-black_main_1.jpg','image',0),(87,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(88,90,'/m/h/mh02-black_back_1.jpg','image',0),(89,90,'/m/h/mh02-purple_main_1.jpg','image',0),(90,90,'/m/h/mh02-red_main_1.jpg','image',0),(91,90,'/m/h/mh02-black_main_1.jpg','image',0),(92,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(93,90,'/m/h/mh02-black_back_1.jpg','image',0),(94,90,'/m/h/mh02-purple_main_1.jpg','image',0),(95,90,'/m/h/mh02-red_main_1.jpg','image',0),(96,90,'/m/h/mh02-black_main_1.jpg','image',0),(97,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(98,90,'/m/h/mh02-black_back_1.jpg','image',0),(99,90,'/m/h/mh02-purple_main_1.jpg','image',0),(100,90,'/m/h/mh02-red_main_1.jpg','image',0),(101,90,'/m/h/mh02-black_main_1.jpg','image',0),(102,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(103,90,'/m/h/mh02-black_back_1.jpg','image',0),(104,90,'/m/h/mh02-purple_main_1.jpg','image',0),(105,90,'/m/h/mh02-red_main_1.jpg','image',0),(106,90,'/m/h/mh02-black_main_1.jpg','image',0),(107,90,'/m/h/mh02-black_alt1_1.jpg','image',0),(108,90,'/m/h/mh02-black_back_1.jpg','image',0),(109,90,'/m/h/mh03-black_main_1.jpg','image',0),(110,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(111,90,'/m/h/mh03-black_back_1.jpg','image',0),(112,90,'/m/h/mh03-blue_main_1.jpg','image',0),(113,90,'/m/h/mh03-green_main_1.jpg','image',0),(114,90,'/m/h/mh03-black_main_1.jpg','image',0),(115,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(116,90,'/m/h/mh03-black_back_1.jpg','image',0),(117,90,'/m/h/mh03-blue_main_1.jpg','image',0),(118,90,'/m/h/mh03-green_main_1.jpg','image',0),(119,90,'/m/h/mh03-black_main_1.jpg','image',0),(120,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(121,90,'/m/h/mh03-black_back_1.jpg','image',0),(122,90,'/m/h/mh03-blue_main_1.jpg','image',0),(123,90,'/m/h/mh03-green_main_1.jpg','image',0),(124,90,'/m/h/mh03-black_main_1.jpg','image',0),(125,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(126,90,'/m/h/mh03-black_back_1.jpg','image',0),(127,90,'/m/h/mh03-blue_main_1.jpg','image',0),(128,90,'/m/h/mh03-green_main_1.jpg','image',0),(129,90,'/m/h/mh03-black_main_1.jpg','image',0),(130,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(131,90,'/m/h/mh03-black_back_1.jpg','image',0),(132,90,'/m/h/mh03-blue_main_1.jpg','image',0),(133,90,'/m/h/mh03-green_main_1.jpg','image',0),(134,90,'/m/h/mh03-black_main_1.jpg','image',0),(135,90,'/m/h/mh03-black_alt1_1.jpg','image',0),(136,90,'/m/h/mh03-black_back_1.jpg','image',0),(137,90,'/m/h/mh04-green_main_1.jpg','image',0),(138,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(139,90,'/m/h/mh04-green_back_1.jpg','image',0),(140,90,'/m/h/mh04-white_main_1.jpg','image',0),(141,90,'/m/h/mh04-yellow_main_1.jpg','image',0),(142,90,'/m/h/mh04-green_main_1.jpg','image',0),(143,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(144,90,'/m/h/mh04-green_back_1.jpg','image',0),(145,90,'/m/h/mh04-white_main_1.jpg','image',0),(146,90,'/m/h/mh04-yellow_main_1.jpg','image',0),(147,90,'/m/h/mh04-green_main_1.jpg','image',0),(148,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(149,90,'/m/h/mh04-green_back_1.jpg','image',0),(150,90,'/m/h/mh04-white_main_1.jpg','image',0),(151,90,'/m/h/mh04-yellow_main_1.jpg','image',0),(152,90,'/m/h/mh04-green_main_1.jpg','image',0),(153,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(154,90,'/m/h/mh04-green_back_1.jpg','image',0),(155,90,'/m/h/mh04-white_main_1.jpg','image',0),(156,90,'/m/h/mh04-yellow_main_1.jpg','image',0),(157,90,'/m/h/mh04-green_main_1.jpg','image',0),(158,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(159,90,'/m/h/mh04-green_back_1.jpg','image',0),(160,90,'/m/h/mh04-white_main_1.jpg','image',0),(161,90,'/m/h/mh04-yellow_main_1.jpg','image',0),(162,90,'/m/h/mh04-green_main_1.jpg','image',0),(163,90,'/m/h/mh04-green_alt1_1.jpg','image',0),(164,90,'/m/h/mh04-green_back_1.jpg','image',0),(165,90,'/m/h/mh05-green_main_1.jpg','image',0),(166,90,'/m/h/mh05-red_main_1.jpg','image',0),(167,90,'/m/h/mh05-white_main_1.jpg','image',0),(168,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(169,90,'/m/h/mh05-white_back_1.jpg','image',0),(170,90,'/m/h/mh05-green_main_1.jpg','image',0),(171,90,'/m/h/mh05-red_main_1.jpg','image',0),(172,90,'/m/h/mh05-white_main_1.jpg','image',0),(173,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(174,90,'/m/h/mh05-white_back_1.jpg','image',0),(175,90,'/m/h/mh05-green_main_1.jpg','image',0),(176,90,'/m/h/mh05-red_main_1.jpg','image',0),(177,90,'/m/h/mh05-white_main_1.jpg','image',0),(178,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(179,90,'/m/h/mh05-white_back_1.jpg','image',0),(180,90,'/m/h/mh05-green_main_1.jpg','image',0),(181,90,'/m/h/mh05-red_main_1.jpg','image',0),(182,90,'/m/h/mh05-white_main_1.jpg','image',0),(183,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(184,90,'/m/h/mh05-white_back_1.jpg','image',0),(185,90,'/m/h/mh05-green_main_1.jpg','image',0),(186,90,'/m/h/mh05-red_main_1.jpg','image',0),(187,90,'/m/h/mh05-white_main_1.jpg','image',0),(188,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(189,90,'/m/h/mh05-white_back_1.jpg','image',0),(190,90,'/m/h/mh05-white_main_1.jpg','image',0),(191,90,'/m/h/mh05-white_alt1_1.jpg','image',0),(192,90,'/m/h/mh05-white_back_1.jpg','image',0),(193,90,'/m/h/mh06-black_main_1.jpg','image',0),(194,90,'/m/h/mh06-blue_main_1.jpg','image',0),(195,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(196,90,'/m/h/mh06-blue_back_1.jpg','image',0),(197,90,'/m/h/mh06-purple_main_1.jpg','image',0),(198,90,'/m/h/mh06-black_main_1.jpg','image',0),(199,90,'/m/h/mh06-blue_main_1.jpg','image',0),(200,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(201,90,'/m/h/mh06-blue_back_1.jpg','image',0),(202,90,'/m/h/mh06-purple_main_1.jpg','image',0),(203,90,'/m/h/mh06-black_main_1.jpg','image',0),(204,90,'/m/h/mh06-blue_main_1.jpg','image',0),(205,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(206,90,'/m/h/mh06-blue_back_1.jpg','image',0),(207,90,'/m/h/mh06-purple_main_1.jpg','image',0),(208,90,'/m/h/mh06-black_main_1.jpg','image',0),(209,90,'/m/h/mh06-blue_main_1.jpg','image',0),(210,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(211,90,'/m/h/mh06-blue_back_1.jpg','image',0),(212,90,'/m/h/mh06-purple_main_1.jpg','image',0),(213,90,'/m/h/mh06-black_main_1.jpg','image',0),(214,90,'/m/h/mh06-blue_main_1.jpg','image',0),(215,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(216,90,'/m/h/mh06-blue_back_1.jpg','image',0),(217,90,'/m/h/mh06-purple_main_1.jpg','image',0),(218,90,'/m/h/mh06-blue_main_1.jpg','image',0),(219,90,'/m/h/mh06-blue_alt1_1.jpg','image',0),(220,90,'/m/h/mh06-blue_back_1.jpg','image',0),(221,90,'/m/h/mh07-black_main_1.jpg','image',0),(222,90,'/m/h/mh07-gray_main_1.jpg','image',0),(223,90,'/m/h/mh07-gray_alt1_1.jpg','image',0),(224,90,'/m/h/mh07-gray_back_1.jpg','image',0),(225,90,'/m/h/mh07-green_main_1.jpg','image',0),(226,90,'/m/h/mh07-black_main_1.jpg','image',0),(227,90,'/m/h/mh07-gray_main_2.jpg','image',0),(228,90,'/m/h/mh07-gray_alt1_2.jpg','image',0),(229,90,'/m/h/mh07-gray_back_2.jpg','image',0),(230,90,'/m/h/mh07-green_main_2.jpg','image',0),(231,90,'/m/h/mh07-black_main_2.jpg','image',0),(232,90,'/m/h/mh07-gray_main_2.jpg','image',0),(233,90,'/m/h/mh07-gray_alt1_2.jpg','image',0),(234,90,'/m/h/mh07-gray_back_2.jpg','image',0),(235,90,'/m/h/mh07-green_main_2.jpg','image',0),(236,90,'/m/h/mh07-black_main_2.jpg','image',0),(237,90,'/m/h/mh07-gray_main_2.jpg','image',0),(238,90,'/m/h/mh07-gray_alt1_2.jpg','image',0),(239,90,'/m/h/mh07-gray_back_2.jpg','image',0),(240,90,'/m/h/mh07-green_main_2.jpg','image',0),(241,90,'/m/h/mh07-black_main_2.jpg','image',0),(242,90,'/m/h/mh07-gray_main_2.jpg','image',0),(243,90,'/m/h/mh07-gray_alt1_2.jpg','image',0),(244,90,'/m/h/mh07-gray_back_2.jpg','image',0),(245,90,'/m/h/mh07-green_main_2.jpg','image',0),(246,90,'/m/h/mh07-gray_main_2.jpg','image',0),(247,90,'/m/h/mh07-gray_alt1_2.jpg','image',0),(248,90,'/m/h/mh07-gray_back_2.jpg','image',0),(249,90,'/m/h/mh08-brown_main_1.jpg','image',0),(250,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(251,90,'/m/h/mh08-brown_back_1.jpg','image',0),(252,90,'/m/h/mh08-purple_main_1.jpg','image',0),(253,90,'/m/h/mh08-red_main_1.jpg','image',0),(254,90,'/m/h/mh08-brown_main_1.jpg','image',0),(255,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(256,90,'/m/h/mh08-brown_back_1.jpg','image',0),(257,90,'/m/h/mh08-purple_main_1.jpg','image',0),(258,90,'/m/h/mh08-red_main_1.jpg','image',0),(259,90,'/m/h/mh08-brown_main_1.jpg','image',0),(260,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(261,90,'/m/h/mh08-brown_back_1.jpg','image',0),(262,90,'/m/h/mh08-purple_main_1.jpg','image',0),(263,90,'/m/h/mh08-red_main_1.jpg','image',0),(264,90,'/m/h/mh08-brown_main_1.jpg','image',0),(265,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(266,90,'/m/h/mh08-brown_back_1.jpg','image',0),(267,90,'/m/h/mh08-purple_main_1.jpg','image',0),(268,90,'/m/h/mh08-red_main_1.jpg','image',0),(269,90,'/m/h/mh08-brown_main_1.jpg','image',0),(270,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(271,90,'/m/h/mh08-brown_back_1.jpg','image',0),(272,90,'/m/h/mh08-purple_main_1.jpg','image',0),(273,90,'/m/h/mh08-red_main_1.jpg','image',0),(274,90,'/m/h/mh08-brown_main_1.jpg','image',0),(275,90,'/m/h/mh08-brown_alt1_1.jpg','image',0),(276,90,'/m/h/mh08-brown_back_1.jpg','image',0),(277,90,'/m/h/mh09-blue_main_1.jpg','image',0),(278,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(279,90,'/m/h/mh09-blue_back_1.jpg','image',0),(280,90,'/m/h/mh09-green_main_1.jpg','image',0),(281,90,'/m/h/mh09-red_main_1.jpg','image',0),(282,90,'/m/h/mh09-blue_main_1.jpg','image',0),(283,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(284,90,'/m/h/mh09-blue_back_1.jpg','image',0),(285,90,'/m/h/mh09-green_main_1.jpg','image',0),(286,90,'/m/h/mh09-red_main_1.jpg','image',0),(287,90,'/m/h/mh09-blue_main_1.jpg','image',0),(288,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(289,90,'/m/h/mh09-blue_back_1.jpg','image',0),(290,90,'/m/h/mh09-green_main_1.jpg','image',0),(291,90,'/m/h/mh09-red_main_1.jpg','image',0),(292,90,'/m/h/mh09-blue_main_1.jpg','image',0),(293,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(294,90,'/m/h/mh09-blue_back_1.jpg','image',0),(295,90,'/m/h/mh09-green_main_1.jpg','image',0),(296,90,'/m/h/mh09-red_main_1.jpg','image',0),(297,90,'/m/h/mh09-blue_main_1.jpg','image',0),(298,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(299,90,'/m/h/mh09-blue_back_1.jpg','image',0),(300,90,'/m/h/mh09-green_main_1.jpg','image',0),(301,90,'/m/h/mh09-red_main_1.jpg','image',0),(302,90,'/m/h/mh09-blue_main_1.jpg','image',0),(303,90,'/m/h/mh09-blue_alt1_1.jpg','image',0),(304,90,'/m/h/mh09-blue_back_1.jpg','image',0),(305,90,'/m/h/mh10-black_main_1.jpg','image',0),(306,90,'/m/h/mh10-blue_main_1.jpg','image',0),(307,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(308,90,'/m/h/mh10-blue_back_1.jpg','image',0),(309,90,'/m/h/mh10-red_main_1.jpg','image',0),(310,90,'/m/h/mh10-black_main_1.jpg','image',0),(311,90,'/m/h/mh10-blue_main_1.jpg','image',0),(312,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(313,90,'/m/h/mh10-blue_back_1.jpg','image',0),(314,90,'/m/h/mh10-red_main_1.jpg','image',0),(315,90,'/m/h/mh10-black_main_1.jpg','image',0),(316,90,'/m/h/mh10-blue_main_1.jpg','image',0),(317,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(318,90,'/m/h/mh10-blue_back_1.jpg','image',0),(319,90,'/m/h/mh10-red_main_1.jpg','image',0),(320,90,'/m/h/mh10-black_main_1.jpg','image',0),(321,90,'/m/h/mh10-blue_main_1.jpg','image',0),(322,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(323,90,'/m/h/mh10-blue_back_1.jpg','image',0),(324,90,'/m/h/mh10-red_main_1.jpg','image',0),(325,90,'/m/h/mh10-black_main_1.jpg','image',0),(326,90,'/m/h/mh10-blue_main_1.jpg','image',0),(327,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(328,90,'/m/h/mh10-blue_back_1.jpg','image',0),(329,90,'/m/h/mh10-red_main_1.jpg','image',0),(330,90,'/m/h/mh10-blue_main_1.jpg','image',0),(331,90,'/m/h/mh10-blue_alt1_1.jpg','image',0),(332,90,'/m/h/mh10-blue_back_1.jpg','image',0),(333,90,'/m/h/mh11-orange_main_1.jpg','image',0),(334,90,'/m/h/mh11-red_main_1.jpg','image',0),(335,90,'/m/h/mh11-white_main_1.jpg','image',0),(336,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(337,90,'/m/h/mh11-white_back_1.jpg','image',0),(338,90,'/m/h/mh11-orange_main_1.jpg','image',0),(339,90,'/m/h/mh11-red_main_1.jpg','image',0),(340,90,'/m/h/mh11-white_main_1.jpg','image',0),(341,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(342,90,'/m/h/mh11-white_back_1.jpg','image',0),(343,90,'/m/h/mh11-orange_main_1.jpg','image',0),(344,90,'/m/h/mh11-red_main_1.jpg','image',0),(345,90,'/m/h/mh11-white_main_1.jpg','image',0),(346,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(347,90,'/m/h/mh11-white_back_1.jpg','image',0),(348,90,'/m/h/mh11-orange_main_1.jpg','image',0),(349,90,'/m/h/mh11-red_main_1.jpg','image',0),(350,90,'/m/h/mh11-white_main_1.jpg','image',0),(351,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(352,90,'/m/h/mh11-white_back_1.jpg','image',0),(353,90,'/m/h/mh11-orange_main_1.jpg','image',0),(354,90,'/m/h/mh11-red_main_1.jpg','image',0),(355,90,'/m/h/mh11-white_main_1.jpg','image',0),(356,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(357,90,'/m/h/mh11-white_back_1.jpg','image',0),(358,90,'/m/h/mh11-white_main_1.jpg','image',0),(359,90,'/m/h/mh11-white_alt1_1.jpg','image',0),(360,90,'/m/h/mh11-white_back_1.jpg','image',0),(361,90,'/m/h/mh12-blue_main_1.jpg','image',0),(362,90,'/m/h/mh12-green_main_1.jpg','image',0),(363,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(364,90,'/m/h/mh12-green_back_1.jpg','image',0),(365,90,'/m/h/mh12-red_main_1.jpg','image',0),(366,90,'/m/h/mh12-blue_main_1.jpg','image',0),(367,90,'/m/h/mh12-green_main_1.jpg','image',0),(368,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(369,90,'/m/h/mh12-green_back_1.jpg','image',0),(370,90,'/m/h/mh12-red_main_1.jpg','image',0),(371,90,'/m/h/mh12-blue_main_1.jpg','image',0),(372,90,'/m/h/mh12-green_main_1.jpg','image',0),(373,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(374,90,'/m/h/mh12-green_back_1.jpg','image',0),(375,90,'/m/h/mh12-red_main_1.jpg','image',0),(376,90,'/m/h/mh12-blue_main_1.jpg','image',0),(377,90,'/m/h/mh12-green_main_1.jpg','image',0),(378,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(379,90,'/m/h/mh12-green_back_1.jpg','image',0),(380,90,'/m/h/mh12-red_main_1.jpg','image',0),(381,90,'/m/h/mh12-blue_main_1.jpg','image',0),(382,90,'/m/h/mh12-green_main_1.jpg','image',0),(383,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(384,90,'/m/h/mh12-green_back_1.jpg','image',0),(385,90,'/m/h/mh12-red_main_1.jpg','image',0),(386,90,'/m/h/mh12-green_main_1.jpg','image',0),(387,90,'/m/h/mh12-green_alt1_1.jpg','image',0),(388,90,'/m/h/mh12-green_back_1.jpg','image',0),(389,90,'/m/h/mh13-blue_main_1.jpg','image',0),(390,90,'/m/h/mh13-blue_alt1_1.jpg','image',0),(391,90,'/m/h/mh13-blue_back_1.jpg','image',0),(392,90,'/m/h/mh13-green_main_1.jpg','image',0),(393,90,'/m/h/mh13-lavender_main_1.jpg','image',0),(394,90,'/m/h/mh13-blue_main_1.jpg','image',0),(395,90,'/m/h/mh13-blue_alt1_1.jpg','image',0),(396,90,'/m/h/mh13-blue_back_1.jpg','image',0),(397,90,'/m/h/mh13-green_main_1.jpg','image',0),(398,90,'/m/h/mh13-lavender_main_1.jpg','image',0),(399,90,'/m/h/mh13-blue_main_1.jpg','image',0),(400,90,'/m/h/mh13-blue_alt1_1.jpg','image',0),(401,90,'/m/h/mh13-blue_back_1.jpg','image',0),(402,90,'/m/h/mh13-green_main_1.jpg','image',0),(403,90,'/m/h/mh13-lavender_main_2.jpg','image',0),(404,90,'/m/h/mh13-blue_main_2.jpg','image',0),(405,90,'/m/h/mh13-blue_alt1_2.jpg','image',0),(406,90,'/m/h/mh13-blue_back_2.jpg','image',0),(407,90,'/m/h/mh13-green_main_2.jpg','image',0),(408,90,'/m/h/mh13-lavender_main_2.jpg','image',0),(409,90,'/m/h/mh13-blue_main_2.jpg','image',0),(410,90,'/m/h/mh13-blue_alt1_2.jpg','image',0),(411,90,'/m/h/mh13-blue_back_2.jpg','image',0),(412,90,'/m/h/mh13-green_main_2.jpg','image',0),(413,90,'/m/h/mh13-lavender_main_2.jpg','image',0),(414,90,'/m/h/mh13-blue_main_2.jpg','image',0),(415,90,'/m/h/mh13-blue_alt1_2.jpg','image',0),(416,90,'/m/h/mh13-blue_back_2.jpg','image',0),(417,90,'/m/j/mj01-orange_main_1.jpg','image',0),(418,90,'/m/j/mj01-red_main_1.jpg','image',0),(419,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(420,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(421,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(422,90,'/m/j/mj01-orange_main_1.jpg','image',0),(423,90,'/m/j/mj01-red_main_1.jpg','image',0),(424,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(425,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(426,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(427,90,'/m/j/mj01-orange_main_1.jpg','image',0),(428,90,'/m/j/mj01-red_main_1.jpg','image',0),(429,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(430,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(431,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(432,90,'/m/j/mj01-orange_main_1.jpg','image',0),(433,90,'/m/j/mj01-red_main_1.jpg','image',0),(434,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(435,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(436,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(437,90,'/m/j/mj01-orange_main_1.jpg','image',0),(438,90,'/m/j/mj01-red_main_1.jpg','image',0),(439,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(440,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(441,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(442,90,'/m/j/mj01-yellow_main_1.jpg','image',0),(443,90,'/m/j/mj01-yellow_alt1_1.jpg','image',0),(444,90,'/m/j/mj01-yellow_back_1.jpg','image',0),(445,90,'/m/j/mj02-green_main_1.jpg','image',0),(446,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(447,90,'/m/j/mj02-green_back_1.jpg','image',0),(448,90,'/m/j/mj02-orange_main_1.jpg','image',0),(449,90,'/m/j/mj02-red_main_1.jpg','image',0),(450,90,'/m/j/mj02-green_main_1.jpg','image',0),(451,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(452,90,'/m/j/mj02-green_back_1.jpg','image',0),(453,90,'/m/j/mj02-orange_main_1.jpg','image',0),(454,90,'/m/j/mj02-red_main_1.jpg','image',0),(455,90,'/m/j/mj02-green_main_1.jpg','image',0),(456,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(457,90,'/m/j/mj02-green_back_1.jpg','image',0),(458,90,'/m/j/mj02-orange_main_1.jpg','image',0),(459,90,'/m/j/mj02-red_main_1.jpg','image',0),(460,90,'/m/j/mj02-green_main_1.jpg','image',0),(461,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(462,90,'/m/j/mj02-green_back_1.jpg','image',0),(463,90,'/m/j/mj02-orange_main_1.jpg','image',0),(464,90,'/m/j/mj02-red_main_1.jpg','image',0),(465,90,'/m/j/mj02-green_main_1.jpg','image',0),(466,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(467,90,'/m/j/mj02-green_back_1.jpg','image',0),(468,90,'/m/j/mj02-orange_main_1.jpg','image',0),(469,90,'/m/j/mj02-red_main_1.jpg','image',0),(470,90,'/m/j/mj02-green_main_1.jpg','image',0),(471,90,'/m/j/mj02-green_alt1_1.jpg','image',0),(472,90,'/m/j/mj02-green_back_1.jpg','image',0),(473,90,'/m/j/mj04-black_main_1.jpg','image',0),(474,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(475,90,'/m/j/mj04-black_back_1.jpg','image',0),(476,90,'/m/j/mj04-blue_main_1.jpg','image',0),(477,90,'/m/j/mj04-purple_main_1.jpg','image',0),(478,90,'/m/j/mj04-black_main_1.jpg','image',0),(479,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(480,90,'/m/j/mj04-black_back_1.jpg','image',0),(481,90,'/m/j/mj04-blue_main_1.jpg','image',0),(482,90,'/m/j/mj04-purple_main_1.jpg','image',0),(483,90,'/m/j/mj04-black_main_1.jpg','image',0),(484,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(485,90,'/m/j/mj04-black_back_1.jpg','image',0),(486,90,'/m/j/mj04-blue_main_1.jpg','image',0),(487,90,'/m/j/mj04-purple_main_1.jpg','image',0),(488,90,'/m/j/mj04-black_main_1.jpg','image',0),(489,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(490,90,'/m/j/mj04-black_back_1.jpg','image',0),(491,90,'/m/j/mj04-blue_main_1.jpg','image',0),(492,90,'/m/j/mj04-purple_main_1.jpg','image',0),(493,90,'/m/j/mj04-black_main_1.jpg','image',0),(494,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(495,90,'/m/j/mj04-black_back_1.jpg','image',0),(496,90,'/m/j/mj04-blue_main_1.jpg','image',0),(497,90,'/m/j/mj04-purple_main_1.jpg','image',0),(498,90,'/m/j/mj04-black_main_1.jpg','image',0),(499,90,'/m/j/mj04-black_alt1_1.jpg','image',0),(500,90,'/m/j/mj04-black_back_1.jpg','image',0),(501,90,'/m/j/mj07-black_main_1.jpg','image',0),(502,90,'/m/j/mj07-red_main_1.jpg','image',0),(503,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(504,90,'/m/j/mj07-red_back_1.jpg','image',0),(505,90,'/m/j/mj07-yellow_main_1.jpg','image',0),(506,90,'/m/j/mj07-black_main_1.jpg','image',0),(507,90,'/m/j/mj07-red_main_1.jpg','image',0),(508,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(509,90,'/m/j/mj07-red_back_1.jpg','image',0),(510,90,'/m/j/mj07-yellow_main_1.jpg','image',0),(511,90,'/m/j/mj07-black_main_1.jpg','image',0),(512,90,'/m/j/mj07-red_main_1.jpg','image',0),(513,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(514,90,'/m/j/mj07-red_back_1.jpg','image',0),(515,90,'/m/j/mj07-yellow_main_1.jpg','image',0),(516,90,'/m/j/mj07-black_main_1.jpg','image',0),(517,90,'/m/j/mj07-red_main_1.jpg','image',0),(518,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(519,90,'/m/j/mj07-red_back_1.jpg','image',0),(520,90,'/m/j/mj07-yellow_main_1.jpg','image',0),(521,90,'/m/j/mj07-black_main_1.jpg','image',0),(522,90,'/m/j/mj07-red_main_1.jpg','image',0),(523,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(524,90,'/m/j/mj07-red_back_1.jpg','image',0),(525,90,'/m/j/mj07-yellow_main_1.jpg','image',0),(526,90,'/m/j/mj07-red_main_1.jpg','image',0),(527,90,'/m/j/mj07-red_alt1_1.jpg','image',0),(528,90,'/m/j/mj07-red_back_1.jpg','image',0),(529,90,'/m/j/mj08-blue_main_1.jpg','image',0),(530,90,'/m/j/mj08-gray_main_1.jpg','image',0),(531,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(532,90,'/m/j/mj08-gray_back_1.jpg','image',0),(533,90,'/m/j/mj08-green_main_1.jpg','image',0),(534,90,'/m/j/mj08-blue_main_1.jpg','image',0),(535,90,'/m/j/mj08-gray_main_1.jpg','image',0),(536,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(537,90,'/m/j/mj08-gray_back_1.jpg','image',0),(538,90,'/m/j/mj08-green_main_1.jpg','image',0),(539,90,'/m/j/mj08-blue_main_1.jpg','image',0),(540,90,'/m/j/mj08-gray_main_1.jpg','image',0),(541,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(542,90,'/m/j/mj08-gray_back_1.jpg','image',0),(543,90,'/m/j/mj08-green_main_1.jpg','image',0),(544,90,'/m/j/mj08-blue_main_1.jpg','image',0),(545,90,'/m/j/mj08-gray_main_1.jpg','image',0),(546,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(547,90,'/m/j/mj08-gray_back_1.jpg','image',0),(548,90,'/m/j/mj08-green_main_1.jpg','image',0),(549,90,'/m/j/mj08-blue_main_1.jpg','image',0),(550,90,'/m/j/mj08-gray_main_1.jpg','image',0),(551,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(552,90,'/m/j/mj08-gray_back_1.jpg','image',0),(553,90,'/m/j/mj08-green_main_1.jpg','image',0),(554,90,'/m/j/mj08-gray_main_1.jpg','image',0),(555,90,'/m/j/mj08-gray_alt1_1.jpg','image',0),(556,90,'/m/j/mj08-gray_back_1.jpg','image',0),(557,90,'/m/j/mj09-blue_main_1.jpg','image',0),(558,90,'/m/j/mj09-white_main_1.jpg','image',0),(559,90,'/m/j/mj09-yellow_main_1.jpg','image',0),(560,90,'/m/j/mj09-yellow_alt1_1.jpg','image',0),(561,90,'/m/j/mj09-yellow_back_1.jpg','image',0),(562,90,'/m/j/mj09-blue_main_1.jpg','image',0),(563,90,'/m/j/mj09-white_main_1.jpg','image',0),(564,90,'/m/j/mj09-yellow_main_1.jpg','image',0),(565,90,'/m/j/mj09-yellow_alt1_1.jpg','image',0),(566,90,'/m/j/mj09-yellow_back_1.jpg','image',0),(567,90,'/m/j/mj09-blue_main_1.jpg','image',0),(568,90,'/m/j/mj09-white_main_1.jpg','image',0),(569,90,'/m/j/mj09-yellow_main_1.jpg','image',0),(570,90,'/m/j/mj09-yellow_alt1_1.jpg','image',0),(571,90,'/m/j/mj09-yellow_back_1.jpg','image',0),(572,90,'/m/j/mj09-blue_main_1.jpg','image',0),(573,90,'/m/j/mj09-white_main_1.jpg','image',0),(574,90,'/m/j/mj09-yellow_main_1.jpg','image',0),(575,90,'/m/j/mj09-yellow_alt1_1.jpg','image',0),(576,90,'/m/j/mj09-yellow_back_1.jpg','image',0),(577,90,'/m/j/mj09-blue_main_2.jpg','image',0),(578,90,'/m/j/mj09-white_main_2.jpg','image',0),(579,90,'/m/j/mj09-yellow_main_2.jpg','image',0),(580,90,'/m/j/mj09-yellow_alt1_2.jpg','image',0),(581,90,'/m/j/mj09-yellow_back_2.jpg','image',0),(582,90,'/m/j/mj09-yellow_main_2.jpg','image',0),(583,90,'/m/j/mj09-yellow_alt1_2.jpg','image',0),(584,90,'/m/j/mj09-yellow_back_2.jpg','image',0),(585,90,'/m/j/mj10-black_main_1.jpg','image',0),(586,90,'/m/j/mj10-orange_main_1.jpg','image',0),(587,90,'/m/j/mj10-red_main_1.jpg','image',0),(588,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(589,90,'/m/j/mj10-red_back_1.jpg','image',0),(590,90,'/m/j/mj10-black_main_1.jpg','image',0),(591,90,'/m/j/mj10-orange_main_1.jpg','image',0),(592,90,'/m/j/mj10-red_main_1.jpg','image',0),(593,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(594,90,'/m/j/mj10-red_back_1.jpg','image',0),(595,90,'/m/j/mj10-black_main_1.jpg','image',0),(596,90,'/m/j/mj10-orange_main_1.jpg','image',0),(597,90,'/m/j/mj10-red_main_1.jpg','image',0),(598,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(599,90,'/m/j/mj10-red_back_1.jpg','image',0),(600,90,'/m/j/mj10-black_main_1.jpg','image',0),(601,90,'/m/j/mj10-orange_main_1.jpg','image',0),(602,90,'/m/j/mj10-red_main_1.jpg','image',0),(603,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(604,90,'/m/j/mj10-red_back_1.jpg','image',0),(605,90,'/m/j/mj10-black_main_1.jpg','image',0),(606,90,'/m/j/mj10-orange_main_1.jpg','image',0),(607,90,'/m/j/mj10-red_main_1.jpg','image',0),(608,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(609,90,'/m/j/mj10-red_back_1.jpg','image',0),(610,90,'/m/j/mj10-red_main_1.jpg','image',0),(611,90,'/m/j/mj10-red_alt1_1.jpg','image',0),(612,90,'/m/j/mj10-red_back_1.jpg','image',0),(613,90,'/m/j/mj11-black_main_1.jpg','image',0),(614,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(615,90,'/m/j/mj11-black_back_1.jpg','image',0),(616,90,'/m/j/mj11-green_main_1.jpg','image',0),(617,90,'/m/j/mj11-red_main_1.jpg','image',0),(618,90,'/m/j/mj11-black_main_1.jpg','image',0),(619,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(620,90,'/m/j/mj11-black_back_1.jpg','image',0),(621,90,'/m/j/mj11-green_main_1.jpg','image',0),(622,90,'/m/j/mj11-red_main_1.jpg','image',0),(623,90,'/m/j/mj11-black_main_1.jpg','image',0),(624,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(625,90,'/m/j/mj11-black_back_1.jpg','image',0),(626,90,'/m/j/mj11-green_main_1.jpg','image',0),(627,90,'/m/j/mj11-red_main_1.jpg','image',0),(628,90,'/m/j/mj11-black_main_1.jpg','image',0),(629,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(630,90,'/m/j/mj11-black_back_1.jpg','image',0),(631,90,'/m/j/mj11-green_main_1.jpg','image',0),(632,90,'/m/j/mj11-red_main_1.jpg','image',0),(633,90,'/m/j/mj11-black_main_1.jpg','image',0),(634,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(635,90,'/m/j/mj11-black_back_1.jpg','image',0),(636,90,'/m/j/mj11-green_main_1.jpg','image',0),(637,90,'/m/j/mj11-red_main_1.jpg','image',0),(638,90,'/m/j/mj11-black_main_1.jpg','image',0),(639,90,'/m/j/mj11-black_alt1_1.jpg','image',0),(640,90,'/m/j/mj11-black_back_1.jpg','image',0),(641,90,'/m/j/mj06-blue_main_1.jpg','image',0),(642,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(643,90,'/m/j/mj06-blue_back_1.jpg','image',0),(644,90,'/m/j/mj06-green_main_1.jpg','image',0),(645,90,'/m/j/mj06-purple_main_1.jpg','image',0),(646,90,'/m/j/mj06-blue_main_1.jpg','image',0),(647,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(648,90,'/m/j/mj06-blue_back_1.jpg','image',0),(649,90,'/m/j/mj06-green_main_1.jpg','image',0),(650,90,'/m/j/mj06-purple_main_1.jpg','image',0),(651,90,'/m/j/mj06-blue_main_1.jpg','image',0),(652,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(653,90,'/m/j/mj06-blue_back_1.jpg','image',0),(654,90,'/m/j/mj06-green_main_1.jpg','image',0),(655,90,'/m/j/mj06-purple_main_1.jpg','image',0),(656,90,'/m/j/mj06-blue_main_1.jpg','image',0),(657,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(658,90,'/m/j/mj06-blue_back_1.jpg','image',0),(659,90,'/m/j/mj06-green_main_1.jpg','image',0),(660,90,'/m/j/mj06-purple_main_1.jpg','image',0),(661,90,'/m/j/mj06-blue_main_1.jpg','image',0),(662,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(663,90,'/m/j/mj06-blue_back_1.jpg','image',0),(664,90,'/m/j/mj06-green_main_1.jpg','image',0),(665,90,'/m/j/mj06-purple_main_1.jpg','image',0),(666,90,'/m/j/mj06-blue_main_1.jpg','image',0),(667,90,'/m/j/mj06-blue_alt1_1.jpg','image',0),(668,90,'/m/j/mj06-blue_back_1.jpg','image',0),(669,90,'/m/j/mj03-black_main_1.jpg','image',0),(670,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(671,90,'/m/j/mj03-black_back_1.jpg','image',0),(672,90,'/m/j/mj03-green_main_1.jpg','image',0),(673,90,'/m/j/mj03-red_main_1.jpg','image',0),(674,90,'/m/j/mj03-black_main_1.jpg','image',0),(675,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(676,90,'/m/j/mj03-black_back_1.jpg','image',0),(677,90,'/m/j/mj03-green_main_1.jpg','image',0),(678,90,'/m/j/mj03-red_main_1.jpg','image',0),(679,90,'/m/j/mj03-black_main_1.jpg','image',0),(680,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(681,90,'/m/j/mj03-black_back_1.jpg','image',0),(682,90,'/m/j/mj03-green_main_1.jpg','image',0),(683,90,'/m/j/mj03-red_main_1.jpg','image',0),(684,90,'/m/j/mj03-black_main_1.jpg','image',0),(685,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(686,90,'/m/j/mj03-black_back_1.jpg','image',0),(687,90,'/m/j/mj03-green_main_1.jpg','image',0),(688,90,'/m/j/mj03-red_main_1.jpg','image',0),(689,90,'/m/j/mj03-black_main_1.jpg','image',0),(690,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(691,90,'/m/j/mj03-black_back_1.jpg','image',0),(692,90,'/m/j/mj03-green_main_1.jpg','image',0),(693,90,'/m/j/mj03-red_main_1.jpg','image',0),(694,90,'/m/j/mj03-black_main_1.jpg','image',0),(695,90,'/m/j/mj03-black_alt1_1.jpg','image',0),(696,90,'/m/j/mj03-black_back_1.jpg','image',0),(697,90,'/m/j/mj12-black_main_1.jpg','image',0),(698,90,'/m/j/mj12-blue_main_1.jpg','image',0),(699,90,'/m/j/mj12-orange_main_1.jpg','image',0),(700,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(701,90,'/m/j/mj12-orange_back_1.jpg','image',0),(702,90,'/m/j/mj12-black_main_1.jpg','image',0),(703,90,'/m/j/mj12-blue_main_1.jpg','image',0),(704,90,'/m/j/mj12-orange_main_1.jpg','image',0),(705,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(706,90,'/m/j/mj12-orange_back_1.jpg','image',0),(707,90,'/m/j/mj12-black_main_1.jpg','image',0),(708,90,'/m/j/mj12-blue_main_1.jpg','image',0),(709,90,'/m/j/mj12-orange_main_1.jpg','image',0),(710,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(711,90,'/m/j/mj12-orange_back_1.jpg','image',0),(712,90,'/m/j/mj12-black_main_1.jpg','image',0),(713,90,'/m/j/mj12-blue_main_1.jpg','image',0),(714,90,'/m/j/mj12-orange_main_1.jpg','image',0),(715,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(716,90,'/m/j/mj12-orange_back_1.jpg','image',0),(717,90,'/m/j/mj12-black_main_1.jpg','image',0),(718,90,'/m/j/mj12-blue_main_1.jpg','image',0),(719,90,'/m/j/mj12-orange_main_1.jpg','image',0),(720,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(721,90,'/m/j/mj12-orange_back_1.jpg','image',0),(722,90,'/m/j/mj12-orange_main_1.jpg','image',0),(723,90,'/m/j/mj12-orange_alt1_1.jpg','image',0),(724,90,'/m/j/mj12-orange_back_1.jpg','image',0),(725,90,'/m/s/ms04-black_main_1.jpg','image',0),(726,90,'/m/s/ms04-orange_main_1.jpg','image',0),(727,90,'/m/s/ms04-orange_back_1.jpg','image',0),(728,90,'/m/s/ms04-red_main_1.jpg','image',0),(729,90,'/m/s/ms04-black_main_1.jpg','image',0),(730,90,'/m/s/ms04-orange_main_1.jpg','image',0),(731,90,'/m/s/ms04-orange_back_1.jpg','image',0),(732,90,'/m/s/ms04-red_main_1.jpg','image',0),(733,90,'/m/s/ms04-black_main_1.jpg','image',0),(734,90,'/m/s/ms04-orange_main_1.jpg','image',0),(735,90,'/m/s/ms04-orange_back_1.jpg','image',0),(736,90,'/m/s/ms04-red_main_1.jpg','image',0),(737,90,'/m/s/ms04-black_main_1.jpg','image',0),(738,90,'/m/s/ms04-orange_main_1.jpg','image',0),(739,90,'/m/s/ms04-orange_back_1.jpg','image',0),(740,90,'/m/s/ms04-red_main_1.jpg','image',0),(741,90,'/m/s/ms04-black_main_1.jpg','image',0),(742,90,'/m/s/ms04-orange_main_1.jpg','image',0),(743,90,'/m/s/ms04-orange_back_1.jpg','image',0),(744,90,'/m/s/ms04-red_main_1.jpg','image',0),(745,90,'/m/s/ms04-orange_main_1.jpg','image',0),(746,90,'/m/s/ms04-orange_back_1.jpg','image',0),(747,90,'/m/s/ms05-black_main_1.jpg','image',0),(748,90,'/m/s/ms05-blue_main_1.jpg','image',0),(749,90,'/m/s/ms05-blue_back_1.jpg','image',0),(750,90,'/m/s/ms05-purple_main_1.jpg','image',0),(751,90,'/m/s/ms05-black_main_1.jpg','image',0),(752,90,'/m/s/ms05-blue_main_1.jpg','image',0),(753,90,'/m/s/ms05-blue_back_1.jpg','image',0),(754,90,'/m/s/ms05-purple_main_1.jpg','image',0),(755,90,'/m/s/ms05-black_main_1.jpg','image',0),(756,90,'/m/s/ms05-blue_main_1.jpg','image',0),(757,90,'/m/s/ms05-blue_back_1.jpg','image',0),(758,90,'/m/s/ms05-purple_main_1.jpg','image',0),(759,90,'/m/s/ms05-black_main_1.jpg','image',0),(760,90,'/m/s/ms05-blue_main_1.jpg','image',0),(761,90,'/m/s/ms05-blue_back_1.jpg','image',0),(762,90,'/m/s/ms05-purple_main_1.jpg','image',0),(763,90,'/m/s/ms05-black_main_1.jpg','image',0),(764,90,'/m/s/ms05-blue_main_1.jpg','image',0),(765,90,'/m/s/ms05-blue_back_1.jpg','image',0),(766,90,'/m/s/ms05-purple_main_1.jpg','image',0),(767,90,'/m/s/ms05-blue_main_1.jpg','image',0),(768,90,'/m/s/ms05-blue_back_1.jpg','image',0),(769,90,'/m/s/ms09-black_main_1.jpg','image',0),(770,90,'/m/s/ms09-blue_main_1.jpg','image',0),(771,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(772,90,'/m/s/ms09-blue_back_1.jpg','image',0),(773,90,'/m/s/ms09-red_main_1.jpg','image',0),(774,90,'/m/s/ms09-black_main_1.jpg','image',0),(775,90,'/m/s/ms09-blue_main_1.jpg','image',0),(776,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(777,90,'/m/s/ms09-blue_back_1.jpg','image',0),(778,90,'/m/s/ms09-red_main_1.jpg','image',0),(779,90,'/m/s/ms09-black_main_1.jpg','image',0),(780,90,'/m/s/ms09-blue_main_1.jpg','image',0),(781,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(782,90,'/m/s/ms09-blue_back_1.jpg','image',0),(783,90,'/m/s/ms09-red_main_1.jpg','image',0),(784,90,'/m/s/ms09-black_main_1.jpg','image',0),(785,90,'/m/s/ms09-blue_main_1.jpg','image',0),(786,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(787,90,'/m/s/ms09-blue_back_1.jpg','image',0),(788,90,'/m/s/ms09-red_main_1.jpg','image',0),(789,90,'/m/s/ms09-black_main_1.jpg','image',0),(790,90,'/m/s/ms09-blue_main_1.jpg','image',0),(791,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(792,90,'/m/s/ms09-blue_back_1.jpg','image',0),(793,90,'/m/s/ms09-red_main_1.jpg','image',0),(794,90,'/m/s/ms09-blue_main_1.jpg','image',0),(795,90,'/m/s/ms09-blue_alt1_1.jpg','image',0),(796,90,'/m/s/ms09-blue_back_1.jpg','image',0),(797,90,'/m/s/ms11-blue_main_1.jpg','image',0),(798,90,'/m/s/ms11-green_main_1.jpg','image',0),(799,90,'/m/s/ms11-green_back_1.jpg','image',0),(800,90,'/m/s/ms11-yellow_main_1.jpg','image',0),(801,90,'/m/s/ms11-blue_main_1.jpg','image',0),(802,90,'/m/s/ms11-green_main_1.jpg','image',0),(803,90,'/m/s/ms11-green_back_1.jpg','image',0),(804,90,'/m/s/ms11-yellow_main_1.jpg','image',0),(805,90,'/m/s/ms11-blue_main_1.jpg','image',0),(806,90,'/m/s/ms11-green_main_1.jpg','image',0),(807,90,'/m/s/ms11-green_back_1.jpg','image',0),(808,90,'/m/s/ms11-yellow_main_1.jpg','image',0),(809,90,'/m/s/ms11-blue_main_1.jpg','image',0),(810,90,'/m/s/ms11-green_main_1.jpg','image',0),(811,90,'/m/s/ms11-green_back_1.jpg','image',0),(812,90,'/m/s/ms11-yellow_main_1.jpg','image',0),(813,90,'/m/s/ms11-blue_main_1.jpg','image',0),(814,90,'/m/s/ms11-green_main_1.jpg','image',0),(815,90,'/m/s/ms11-green_back_1.jpg','image',0),(816,90,'/m/s/ms11-yellow_main_1.jpg','image',0),(817,90,'/m/s/ms11-green_main_1.jpg','image',0),(818,90,'/m/s/ms11-green_back_1.jpg','image',0),(819,90,'/m/s/ms12-black_main_1.jpg','image',0),(820,90,'/m/s/ms12-blue_main_1.jpg','image',0),(821,90,'/m/s/ms12-red_main_1.jpg','image',0),(822,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(823,90,'/m/s/ms12-red_back_1.jpg','image',0),(824,90,'/m/s/ms12-black_main_1.jpg','image',0),(825,90,'/m/s/ms12-blue_main_1.jpg','image',0),(826,90,'/m/s/ms12-red_main_1.jpg','image',0),(827,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(828,90,'/m/s/ms12-red_back_1.jpg','image',0),(829,90,'/m/s/ms12-black_main_1.jpg','image',0),(830,90,'/m/s/ms12-blue_main_1.jpg','image',0),(831,90,'/m/s/ms12-red_main_1.jpg','image',0),(832,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(833,90,'/m/s/ms12-red_back_1.jpg','image',0),(834,90,'/m/s/ms12-black_main_1.jpg','image',0),(835,90,'/m/s/ms12-blue_main_1.jpg','image',0),(836,90,'/m/s/ms12-red_main_1.jpg','image',0),(837,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(838,90,'/m/s/ms12-red_back_1.jpg','image',0),(839,90,'/m/s/ms12-black_main_1.jpg','image',0),(840,90,'/m/s/ms12-blue_main_1.jpg','image',0),(841,90,'/m/s/ms12-red_main_1.jpg','image',0),(842,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(843,90,'/m/s/ms12-red_back_1.jpg','image',0),(844,90,'/m/s/ms12-red_main_1.jpg','image',0),(845,90,'/m/s/ms12-red_alt1_1.jpg','image',0),(846,90,'/m/s/ms12-red_back_1.jpg','image',0),(847,90,'/m/s/ms03-gray_main_1.jpg','image',0),(848,90,'/m/s/ms03-gray_alt1_1.jpg','image',0),(849,90,'/m/s/ms03-gray_back_1.jpg','image',0),(850,90,'/m/s/ms03-green_main_1.jpg','image',0),(851,90,'/m/s/ms03-orange_main_1.jpg','image',0),(852,90,'/m/s/ms03-gray_main_1.jpg','image',0),(853,90,'/m/s/ms03-gray_alt1_1.jpg','image',0),(854,90,'/m/s/ms03-gray_back_1.jpg','image',0),(855,90,'/m/s/ms03-green_main_1.jpg','image',0),(856,90,'/m/s/ms03-orange_main_1.jpg','image',0),(857,90,'/m/s/ms03-gray_main_1.jpg','image',0),(858,90,'/m/s/ms03-gray_alt1_1.jpg','image',0),(859,90,'/m/s/ms03-gray_back_1.jpg','image',0),(860,90,'/m/s/ms03-green_main_1.jpg','image',0),(861,90,'/m/s/ms03-orange_main_1.jpg','image',0),(862,90,'/m/s/ms03-gray_main_1.jpg','image',0),(863,90,'/m/s/ms03-gray_alt1_1.jpg','image',0),(864,90,'/m/s/ms03-gray_back_1.jpg','image',0),(865,90,'/m/s/ms03-green_main_1.jpg','image',0),(866,90,'/m/s/ms03-orange_main_1.jpg','image',0),(867,90,'/m/s/ms03-gray_main_1.jpg','image',0),(868,90,'/m/s/ms03-gray_alt1_1.jpg','image',0),(869,90,'/m/s/ms03-gray_back_1.jpg','image',0),(870,90,'/m/s/ms03-green_main_1.jpg','image',0),(871,90,'/m/s/ms03-orange_main_1.jpg','image',0),(872,90,'/m/s/ms03-black_main_1.jpg','image',0),(873,90,'/m/s/ms03-black_back_1.jpg','image',0),(874,90,'/m/s/ms06-blue_main_1.jpg','image',0),(875,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(876,90,'/m/s/ms06-blue_back_1.jpg','image',0),(877,90,'/m/s/ms06-green_main_1.jpg','image',0),(878,90,'/m/s/ms06-yellow_main_1.jpg','image',0),(879,90,'/m/s/ms06-blue_main_1.jpg','image',0),(880,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(881,90,'/m/s/ms06-blue_back_1.jpg','image',0),(882,90,'/m/s/ms06-green_main_1.jpg','image',0),(883,90,'/m/s/ms06-yellow_main_1.jpg','image',0),(884,90,'/m/s/ms06-blue_main_1.jpg','image',0),(885,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(886,90,'/m/s/ms06-blue_back_1.jpg','image',0),(887,90,'/m/s/ms06-green_main_1.jpg','image',0),(888,90,'/m/s/ms06-yellow_main_1.jpg','image',0),(889,90,'/m/s/ms06-blue_main_1.jpg','image',0),(890,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(891,90,'/m/s/ms06-blue_back_1.jpg','image',0),(892,90,'/m/s/ms06-green_main_1.jpg','image',0),(893,90,'/m/s/ms06-yellow_main_1.jpg','image',0),(894,90,'/m/s/ms06-blue_main_1.jpg','image',0),(895,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(896,90,'/m/s/ms06-blue_back_1.jpg','image',0),(897,90,'/m/s/ms06-green_main_1.jpg','image',0),(898,90,'/m/s/ms06-yellow_main_1.jpg','image',0),(899,90,'/m/s/ms06-blue_main_1.jpg','image',0),(900,90,'/m/s/ms06-blue_alt1_1.jpg','image',0),(901,90,'/m/s/ms06-blue_back_1.jpg','image',0),(902,90,'/m/s/ms01-black_main_1.jpg','image',0),(903,90,'/m/s/ms01-brown_main_1.jpg','image',0),(904,90,'/m/s/ms01-brown_back_1.jpg','image',0),(905,90,'/m/s/ms01-yellow_main_1.jpg','image',0),(906,90,'/m/s/ms01-black_main_1.jpg','image',0),(907,90,'/m/s/ms01-brown_main_2.jpg','image',0),(908,90,'/m/s/ms01-brown_back_2.jpg','image',0),(909,90,'/m/s/ms01-yellow_main_2.jpg','image',0),(910,90,'/m/s/ms01-black_main_2.jpg','image',0),(911,90,'/m/s/ms01-brown_main_2.jpg','image',0),(912,90,'/m/s/ms01-brown_back_2.jpg','image',0),(913,90,'/m/s/ms01-yellow_main_2.jpg','image',0),(914,90,'/m/s/ms01-black_main_2.jpg','image',0),(915,90,'/m/s/ms01-brown_main_2.jpg','image',0),(916,90,'/m/s/ms01-brown_back_2.jpg','image',0),(917,90,'/m/s/ms01-yellow_main_2.jpg','image',0),(918,90,'/m/s/ms01-black_main_2.jpg','image',0),(919,90,'/m/s/ms01-brown_main_2.jpg','image',0),(920,90,'/m/s/ms01-brown_back_2.jpg','image',0),(921,90,'/m/s/ms01-yellow_main_2.jpg','image',0),(922,90,'/m/s/ms01-blue_main_1.jpg','image',0),(923,90,'/m/s/ms01-blue_back_1.jpg','image',0),(924,90,'/m/s/ms02-black_main_1.jpg','image',0),(925,90,'/m/s/ms02-blue_main_1.jpg','image',0),(926,90,'/m/s/ms02-gray_main_1.jpg','image',0),(927,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(928,90,'/m/s/ms02-gray_back_1.jpg','image',0),(929,90,'/m/s/ms02-black_main_1.jpg','image',0),(930,90,'/m/s/ms02-blue_main_1.jpg','image',0),(931,90,'/m/s/ms02-gray_main_1.jpg','image',0),(932,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(933,90,'/m/s/ms02-gray_back_1.jpg','image',0),(934,90,'/m/s/ms02-black_main_1.jpg','image',0),(935,90,'/m/s/ms02-blue_main_1.jpg','image',0),(936,90,'/m/s/ms02-gray_main_1.jpg','image',0),(937,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(938,90,'/m/s/ms02-gray_back_1.jpg','image',0),(939,90,'/m/s/ms02-black_main_1.jpg','image',0),(940,90,'/m/s/ms02-blue_main_1.jpg','image',0),(941,90,'/m/s/ms02-gray_main_1.jpg','image',0),(942,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(943,90,'/m/s/ms02-gray_back_1.jpg','image',0),(944,90,'/m/s/ms02-black_main_1.jpg','image',0),(945,90,'/m/s/ms02-blue_main_1.jpg','image',0),(946,90,'/m/s/ms02-gray_main_1.jpg','image',0),(947,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(948,90,'/m/s/ms02-gray_back_1.jpg','image',0),(949,90,'/m/s/ms02-gray_main_1.jpg','image',0),(950,90,'/m/s/ms02-gray_alt1_1.jpg','image',0),(951,90,'/m/s/ms02-gray_back_1.jpg','image',0),(952,90,'/m/s/ms10-black_main_1.jpg','image',0),(953,90,'/m/s/ms10-blue_main_1.jpg','image',0),(954,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(955,90,'/m/s/ms10-blue_back_1.jpg','image',0),(956,90,'/m/s/ms10-red_main_1.jpg','image',0),(957,90,'/m/s/ms10-black_main_1.jpg','image',0),(958,90,'/m/s/ms10-blue_main_1.jpg','image',0),(959,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(960,90,'/m/s/ms10-blue_back_1.jpg','image',0),(961,90,'/m/s/ms10-red_main_1.jpg','image',0),(962,90,'/m/s/ms10-black_main_1.jpg','image',0),(963,90,'/m/s/ms10-blue_main_1.jpg','image',0),(964,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(965,90,'/m/s/ms10-blue_back_1.jpg','image',0),(966,90,'/m/s/ms10-red_main_1.jpg','image',0),(967,90,'/m/s/ms10-black_main_1.jpg','image',0),(968,90,'/m/s/ms10-blue_main_1.jpg','image',0),(969,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(970,90,'/m/s/ms10-blue_back_1.jpg','image',0),(971,90,'/m/s/ms10-red_main_1.jpg','image',0),(972,90,'/m/s/ms10-black_main_1.jpg','image',0),(973,90,'/m/s/ms10-blue_main_1.jpg','image',0),(974,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(975,90,'/m/s/ms10-blue_back_1.jpg','image',0),(976,90,'/m/s/ms10-red_main_1.jpg','image',0),(977,90,'/m/s/ms10-blue_main_1.jpg','image',0),(978,90,'/m/s/ms10-blue_alt1_1.jpg','image',0),(979,90,'/m/s/ms10-blue_back_1.jpg','image',0),(980,90,'/m/s/ms07-black_main_1.jpg','image',0),(981,90,'/m/s/ms07-green_main_1.jpg','image',0),(982,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(983,90,'/m/s/ms07-green_back_1.jpg','image',0),(984,90,'/m/s/ms07-white_main_1.jpg','image',0),(985,90,'/m/s/ms07-black_main_1.jpg','image',0),(986,90,'/m/s/ms07-green_main_1.jpg','image',0),(987,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(988,90,'/m/s/ms07-green_back_1.jpg','image',0),(989,90,'/m/s/ms07-white_main_1.jpg','image',0),(990,90,'/m/s/ms07-black_main_1.jpg','image',0),(991,90,'/m/s/ms07-green_main_1.jpg','image',0),(992,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(993,90,'/m/s/ms07-green_back_1.jpg','image',0),(994,90,'/m/s/ms07-white_main_1.jpg','image',0),(995,90,'/m/s/ms07-black_main_1.jpg','image',0),(996,90,'/m/s/ms07-green_main_1.jpg','image',0),(997,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(998,90,'/m/s/ms07-green_back_1.jpg','image',0),(999,90,'/m/s/ms07-white_main_1.jpg','image',0),(1000,90,'/m/s/ms07-black_main_1.jpg','image',0),(1001,90,'/m/s/ms07-green_main_1.jpg','image',0),(1002,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(1003,90,'/m/s/ms07-green_back_1.jpg','image',0),(1004,90,'/m/s/ms07-white_main_1.jpg','image',0),(1005,90,'/m/s/ms07-green_main_1.jpg','image',0),(1006,90,'/m/s/ms07-green_alt1_1.jpg','image',0),(1007,90,'/m/s/ms07-green_back_1.jpg','image',0),(1008,90,'/m/s/ms08-black_main_1.jpg','image',0),(1009,90,'/m/s/ms08-black_back_1.jpg','image',0),(1010,90,'/m/s/ms08-blue_main_1.jpg','image',0),(1011,90,'/m/s/ms08-red_main_1.jpg','image',0),(1012,90,'/m/s/ms08-black_main_1.jpg','image',0),(1013,90,'/m/s/ms08-black_back_1.jpg','image',0),(1014,90,'/m/s/ms08-blue_main_1.jpg','image',0),(1015,90,'/m/s/ms08-red_main_1.jpg','image',0),(1016,90,'/m/s/ms08-black_main_1.jpg','image',0),(1017,90,'/m/s/ms08-black_back_1.jpg','image',0),(1018,90,'/m/s/ms08-blue_main_1.jpg','image',0),(1019,90,'/m/s/ms08-red_main_1.jpg','image',0),(1020,90,'/m/s/ms08-black_main_1.jpg','image',0),(1021,90,'/m/s/ms08-black_back_1.jpg','image',0),(1022,90,'/m/s/ms08-blue_main_1.jpg','image',0),(1023,90,'/m/s/ms08-red_main_1.jpg','image',0),(1024,90,'/m/s/ms08-black_main_1.jpg','image',0),(1025,90,'/m/s/ms08-black_back_1.jpg','image',0),(1026,90,'/m/s/ms08-blue_main_1.jpg','image',0),(1027,90,'/m/s/ms08-red_main_1.jpg','image',0),(1028,90,'/m/s/ms08-black_main_1.jpg','image',0),(1029,90,'/m/s/ms08-black_back_1.jpg','image',0),(1030,90,'/m/t/mt01-gray_main_1.jpg','image',0),(1031,90,'/m/t/mt01-orange_main_1.jpg','image',0),(1032,90,'/m/t/mt01-red_main_1.jpg','image',0),(1033,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1034,90,'/m/t/mt01-red_back_1.jpg','image',0),(1035,90,'/m/t/mt01-gray_main_1.jpg','image',0),(1036,90,'/m/t/mt01-orange_main_1.jpg','image',0),(1037,90,'/m/t/mt01-red_main_1.jpg','image',0),(1038,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1039,90,'/m/t/mt01-red_back_1.jpg','image',0),(1040,90,'/m/t/mt01-gray_main_1.jpg','image',0),(1041,90,'/m/t/mt01-orange_main_1.jpg','image',0),(1042,90,'/m/t/mt01-red_main_1.jpg','image',0),(1043,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1044,90,'/m/t/mt01-red_back_1.jpg','image',0),(1045,90,'/m/t/mt01-gray_main_1.jpg','image',0),(1046,90,'/m/t/mt01-orange_main_1.jpg','image',0),(1047,90,'/m/t/mt01-red_main_1.jpg','image',0),(1048,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1049,90,'/m/t/mt01-red_back_1.jpg','image',0),(1050,90,'/m/t/mt01-gray_main_1.jpg','image',0),(1051,90,'/m/t/mt01-orange_main_1.jpg','image',0),(1052,90,'/m/t/mt01-red_main_1.jpg','image',0),(1053,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1054,90,'/m/t/mt01-red_back_1.jpg','image',0),(1055,90,'/m/t/mt01-red_main_1.jpg','image',0),(1056,90,'/m/t/mt01-red_alt1_1.jpg','image',0),(1057,90,'/m/t/mt01-red_back_1.jpg','image',0),(1058,90,'/m/t/mt02-gray_main_1.jpg','image',0),(1059,90,'/m/t/mt02-red_main_1.jpg','image',0),(1060,90,'/m/t/mt02-white_main_1.jpg','image',0),(1061,90,'/m/t/mt02-white_alt1_1.jpg','image',0),(1062,90,'/m/t/mt02-white_back_1.jpg','image',0),(1063,90,'/m/t/mt02-white_sideb_1.jpg','image',0),(1064,90,'/m/t/mt02-gray_main_1.jpg','image',0),(1065,90,'/m/t/mt02-red_main_1.jpg','image',0),(1066,90,'/m/t/mt02-white_main_1.jpg','image',0),(1067,90,'/m/t/mt02-white_alt1_1.jpg','image',0),(1068,90,'/m/t/mt02-white_back_1.jpg','image',0),(1069,90,'/m/t/mt02-white_sideb_1.jpg','image',0),(1070,90,'/m/t/mt02-gray_main_1.jpg','image',0),(1071,90,'/m/t/mt02-red_main_1.jpg','image',0),(1072,90,'/m/t/mt02-white_main_2.jpg','image',0),(1073,90,'/m/t/mt02-white_alt1_2.jpg','image',0),(1074,90,'/m/t/mt02-white_back_2.jpg','image',0),(1075,90,'/m/t/mt02-white_sideb_2.jpg','image',0),(1076,90,'/m/t/mt02-gray_main_2.jpg','image',0),(1077,90,'/m/t/mt02-red_main_2.jpg','image',0),(1078,90,'/m/t/mt02-white_main_2.jpg','image',0),(1079,90,'/m/t/mt02-white_alt1_2.jpg','image',0),(1080,90,'/m/t/mt02-white_back_2.jpg','image',0),(1081,90,'/m/t/mt02-white_sideb_2.jpg','image',0),(1082,90,'/m/t/mt02-gray_main_2.jpg','image',0),(1083,90,'/m/t/mt02-red_main_2.jpg','image',0),(1084,90,'/m/t/mt02-white_main_2.jpg','image',0),(1085,90,'/m/t/mt02-white_alt1_2.jpg','image',0),(1086,90,'/m/t/mt02-white_back_2.jpg','image',0),(1087,90,'/m/t/mt02-white_sideb_2.jpg','image',0),(1088,90,'/m/t/mt02-white_main_2.jpg','image',0),(1089,90,'/m/t/mt02-white_alt1_2.jpg','image',0),(1090,90,'/m/t/mt02-white_back_2.jpg','image',0),(1091,90,'/m/t/mt02-white_sideb_2.jpg','image',0),(1092,90,'/m/t/mt03-blue_main_1.jpg','image',0),(1093,90,'/m/t/mt03-red_main_1.jpg','image',0),(1094,90,'/m/t/mt03-yellow_main_1.jpg','image',0),(1095,90,'/m/t/mt03-blue_main_1.jpg','image',0),(1096,90,'/m/t/mt03-red_main_1.jpg','image',0),(1097,90,'/m/t/mt03-yellow_main_1.jpg','image',0),(1098,90,'/m/t/mt03-blue_main_1.jpg','image',0),(1099,90,'/m/t/mt03-red_main_1.jpg','image',0),(1100,90,'/m/t/mt03-yellow_main_1.jpg','image',0),(1101,90,'/m/t/mt03-blue_main_1.jpg','image',0),(1102,90,'/m/t/mt03-red_main_1.jpg','image',0),(1103,90,'/m/t/mt03-yellow_main_1.jpg','image',0),(1104,90,'/m/t/mt03-blue_main_1.jpg','image',0),(1105,90,'/m/t/mt03-red_main_1.jpg','image',0),(1106,90,'/m/t/mt03-yellow_main_1.jpg','image',0),(1107,90,'/m/t/mt03-red_main_1.jpg','image',0),(1108,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1109,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1110,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1111,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1112,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1113,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1114,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1115,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1116,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1117,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1118,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1119,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1120,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1121,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1122,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1123,90,'/m/t/mt04-blue_main_1.jpg','image',0),(1124,90,'/m/t/mt04-blue_alt1_1.jpg','image',0),(1125,90,'/m/t/mt04-blue_back_1.jpg','image',0),(1126,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1127,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1128,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1129,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1130,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1131,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1132,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1133,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1134,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1135,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1136,90,'/m/t/mt05-blue_main_1.jpg','image',0),(1137,90,'/m/t/mt05-blue_back_1.jpg','image',0),(1138,90,'/m/t/mt06-black_main_1.jpg','image',0),(1139,90,'/m/t/mt06-black_back_1.jpg','image',0),(1140,90,'/m/t/mt06-black_main_1.jpg','image',0),(1141,90,'/m/t/mt06-black_back_1.jpg','image',0),(1142,90,'/m/t/mt06-black_main_1.jpg','image',0),(1143,90,'/m/t/mt06-black_back_1.jpg','image',0),(1144,90,'/m/t/mt06-black_main_1.jpg','image',0),(1145,90,'/m/t/mt06-black_back_1.jpg','image',0),(1146,90,'/m/t/mt06-black_main_1.jpg','image',0),(1147,90,'/m/t/mt06-black_back_1.jpg','image',0),(1148,90,'/m/t/mt06-black_main_1.jpg','image',0),(1149,90,'/m/t/mt06-black_back_1.jpg','image',0),(1150,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1151,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1152,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1153,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1154,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1155,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1156,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1157,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1158,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1159,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1160,90,'/m/t/mt07-gray_main_1.jpg','image',0),(1161,90,'/m/t/mt07-gray_back_1.jpg','image',0),(1162,90,'/m/t/mt08-green_main_1.jpg','image',0),(1163,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1164,90,'/m/t/mt08-green_back_1.jpg','image',0),(1165,90,'/m/t/mt08-green_main_1.jpg','image',0),(1166,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1167,90,'/m/t/mt08-green_back_1.jpg','image',0),(1168,90,'/m/t/mt08-green_main_1.jpg','image',0),(1169,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1170,90,'/m/t/mt08-green_back_1.jpg','image',0),(1171,90,'/m/t/mt08-green_main_1.jpg','image',0),(1172,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1173,90,'/m/t/mt08-green_back_1.jpg','image',0),(1174,90,'/m/t/mt08-green_main_1.jpg','image',0),(1175,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1176,90,'/m/t/mt08-green_back_1.jpg','image',0),(1177,90,'/m/t/mt08-green_main_1.jpg','image',0),(1178,90,'/m/t/mt08-green_alt1_1.jpg','image',0),(1179,90,'/m/t/mt08-green_back_1.jpg','image',0),(1180,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1181,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1182,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1183,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1184,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1185,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1186,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1187,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1188,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1189,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1190,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1191,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1192,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1193,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1194,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1195,90,'/m/t/mt09-blue_main_1.jpg','image',0),(1196,90,'/m/t/mt09-blue_alt1_1.jpg','image',0),(1197,90,'/m/t/mt09-blue_back_1.jpg','image',0),(1198,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1199,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1200,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1201,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1202,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1203,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1204,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1205,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1206,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1207,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1208,90,'/m/t/mt10-yellow_main_1.jpg','image',0),(1209,90,'/m/t/mt10-yellow_back_1.jpg','image',0),(1210,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1211,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1212,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1213,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1214,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1215,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1216,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1217,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1218,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1219,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1220,90,'/m/t/mt11-blue_main_1.jpg','image',0),(1221,90,'/m/t/mt11-blue_back_1.jpg','image',0),(1222,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1223,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1224,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1225,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1226,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1227,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1228,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1229,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1230,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1231,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1232,90,'/m/t/mt12-blue_main_1.jpg','image',0),(1233,90,'/m/t/mt12-blue_back_1.jpg','image',0),(1234,90,'/m/p/mp01-black_main_1.jpg','image',0),(1235,90,'/m/p/mp01-gray_main_1.jpg','image',0),(1236,90,'/m/p/mp01-gray_back_1.jpg','image',0),(1237,90,'/m/p/mp01-purple_main_1.jpg','image',0),(1238,90,'/m/p/mp01-black_main_1.jpg','image',0),(1239,90,'/m/p/mp01-gray_main_1.jpg','image',0),(1240,90,'/m/p/mp01-gray_back_1.jpg','image',0),(1241,90,'/m/p/mp01-purple_main_1.jpg','image',0),(1242,90,'/m/p/mp01-black_main_1.jpg','image',0),(1243,90,'/m/p/mp01-gray_main_1.jpg','image',0),(1244,90,'/m/p/mp01-gray_back_1.jpg','image',0),(1245,90,'/m/p/mp01-purple_main_1.jpg','image',0),(1246,90,'/m/p/mp01-black_main_1.jpg','image',0),(1247,90,'/m/p/mp01-gray_main_1.jpg','image',0),(1248,90,'/m/p/mp01-gray_back_1.jpg','image',0),(1249,90,'/m/p/mp01-purple_main_1.jpg','image',0),(1250,90,'/m/p/mp01-gray_main_1.jpg','image',0),(1251,90,'/m/p/mp01-gray_back_1.jpg','image',0),(1252,90,'/m/p/mp02-blue_main_1.jpg','image',0),(1253,90,'/m/p/mp02-gray_main_1.jpg','image',0),(1254,90,'/m/p/mp02-gray_back_1.jpg','image',0),(1255,90,'/m/p/mp02-red_main_1.jpg','image',0),(1256,90,'/m/p/mp02-blue_main_1.jpg','image',0),(1257,90,'/m/p/mp02-gray_main_1.jpg','image',0),(1258,90,'/m/p/mp02-gray_back_1.jpg','image',0),(1259,90,'/m/p/mp02-red_main_1.jpg','image',0),(1260,90,'/m/p/mp02-blue_main_1.jpg','image',0),(1261,90,'/m/p/mp02-gray_main_1.jpg','image',0),(1262,90,'/m/p/mp02-gray_back_1.jpg','image',0),(1263,90,'/m/p/mp02-red_main_1.jpg','image',0),(1264,90,'/m/p/mp02-blue_main_2.jpg','image',0),(1265,90,'/m/p/mp02-gray_main_2.jpg','image',0),(1266,90,'/m/p/mp02-gray_back_2.jpg','image',0),(1267,90,'/m/p/mp02-red_main_2.jpg','image',0),(1268,90,'/m/p/mp02-gray_main_2.jpg','image',0),(1269,90,'/m/p/mp02-gray_back_2.jpg','image',0),(1270,90,'/m/p/mp03-blue_main_1.jpg','image',0),(1271,90,'/m/p/mp03-green_main_1.jpg','image',0),(1272,90,'/m/p/mp03-red_main_1.jpg','image',0),(1273,90,'/m/p/mp03-blue_main_1.jpg','image',0),(1274,90,'/m/p/mp03-green_main_1.jpg','image',0),(1275,90,'/m/p/mp03-red_main_1.jpg','image',0),(1276,90,'/m/p/mp03-blue_main_1.jpg','image',0),(1277,90,'/m/p/mp03-green_main_1.jpg','image',0),(1278,90,'/m/p/mp03-red_main_1.jpg','image',0),(1279,90,'/m/p/mp03-blue_main_1.jpg','image',0),(1280,90,'/m/p/mp03-green_main_1.jpg','image',0),(1281,90,'/m/p/mp03-red_main_1.jpg','image',0),(1282,90,'/m/p/mp03-black_main_1.jpg','image',0),(1283,90,'/m/p/mp03-black_alt1_1.jpg','image',0),(1284,90,'/m/p/mp03-black_back_1.jpg','image',0),(1285,90,'/m/p/mp04-black_main_1.jpg','image',0),(1286,90,'/m/p/mp04-gray_main_1.jpg','image',0),(1287,90,'/m/p/mp04-gray_back_1.jpg','image',0),(1288,90,'/m/p/mp04-green_main_1.jpg','image',0),(1289,90,'/m/p/mp04-black_main_1.jpg','image',0),(1290,90,'/m/p/mp04-gray_main_1.jpg','image',0),(1291,90,'/m/p/mp04-gray_back_1.jpg','image',0),(1292,90,'/m/p/mp04-green_main_1.jpg','image',0),(1293,90,'/m/p/mp04-black_main_1.jpg','image',0),(1294,90,'/m/p/mp04-gray_main_1.jpg','image',0),(1295,90,'/m/p/mp04-gray_back_1.jpg','image',0),(1296,90,'/m/p/mp04-green_main_1.jpg','image',0),(1297,90,'/m/p/mp04-black_main_1.jpg','image',0),(1298,90,'/m/p/mp04-gray_main_1.jpg','image',0),(1299,90,'/m/p/mp04-gray_back_1.jpg','image',0),(1300,90,'/m/p/mp04-green_main_1.jpg','image',0),(1301,90,'/m/p/mp04-gray_main_1.jpg','image',0),(1302,90,'/m/p/mp04-gray_back_1.jpg','image',0),(1303,90,'/m/p/mp05-black_main_1.jpg','image',0),(1304,90,'/m/p/mp05-blue_main_1.jpg','image',0),(1305,90,'/m/p/mp05-blue_back_1.jpg','image',0),(1306,90,'/m/p/mp05-blue_outfit_1.jpg','image',0),(1307,90,'/m/p/mp05-green_main_1.jpg','image',0),(1308,90,'/m/p/mp05-black_main_1.jpg','image',0),(1309,90,'/m/p/mp05-blue_main_1.jpg','image',0),(1310,90,'/m/p/mp05-blue_back_1.jpg','image',0),(1311,90,'/m/p/mp05-blue_outfit_1.jpg','image',0),(1312,90,'/m/p/mp05-green_main_1.jpg','image',0),(1313,90,'/m/p/mp05-black_main_1.jpg','image',0),(1314,90,'/m/p/mp05-blue_main_1.jpg','image',0),(1315,90,'/m/p/mp05-blue_back_1.jpg','image',0),(1316,90,'/m/p/mp05-blue_outfit_1.jpg','image',0),(1317,90,'/m/p/mp05-green_main_1.jpg','image',0),(1318,90,'/m/p/mp05-black_main_1.jpg','image',0),(1319,90,'/m/p/mp05-blue_main_1.jpg','image',0),(1320,90,'/m/p/mp05-blue_back_1.jpg','image',0),(1321,90,'/m/p/mp05-blue_outfit_1.jpg','image',0),(1322,90,'/m/p/mp05-green_main_1.jpg','image',0),(1323,90,'/m/p/mp05-blue_main_1.jpg','image',0),(1324,90,'/m/p/mp05-blue_back_1.jpg','image',0),(1325,90,'/m/p/mp05-blue_outfit_1.jpg','image',0),(1326,90,'/m/p/mp06-gray_main_1.jpg','image',0),(1327,90,'/m/p/mp06-gray_back_1.jpg','image',0),(1328,90,'/m/p/mp06-gray_outfit_1.jpg','image',0),(1329,90,'/m/p/mp06-green_main_1.jpg','image',0),(1330,90,'/m/p/mp06-orange_main_1.jpg','image',0),(1331,90,'/m/p/mp06-gray_main_1.jpg','image',0),(1332,90,'/m/p/mp06-gray_back_1.jpg','image',0),(1333,90,'/m/p/mp06-gray_outfit_1.jpg','image',0),(1334,90,'/m/p/mp06-green_main_1.jpg','image',0),(1335,90,'/m/p/mp06-orange_main_1.jpg','image',0),(1336,90,'/m/p/mp06-gray_main_1.jpg','image',0),(1337,90,'/m/p/mp06-gray_back_1.jpg','image',0),(1338,90,'/m/p/mp06-gray_outfit_1.jpg','image',0),(1339,90,'/m/p/mp06-green_main_1.jpg','image',0),(1340,90,'/m/p/mp06-orange_main_1.jpg','image',0),(1341,90,'/m/p/mp06-gray_main_1.jpg','image',0),(1342,90,'/m/p/mp06-gray_back_1.jpg','image',0),(1343,90,'/m/p/mp06-gray_outfit_1.jpg','image',0),(1344,90,'/m/p/mp06-green_main_1.jpg','image',0),(1345,90,'/m/p/mp06-orange_main_1.jpg','image',0),(1346,90,'/m/p/mp06-gray_main_1.jpg','image',0),(1347,90,'/m/p/mp06-gray_back_1.jpg','image',0),(1348,90,'/m/p/mp06-gray_outfit_1.jpg','image',0),(1349,90,'/m/p/mp07-black_main_1.jpg','image',0),(1350,90,'/m/p/mp07-blue_main_1.jpg','image',0),(1351,90,'/m/p/mp07-blue_alt1_1.jpg','image',0),(1352,90,'/m/p/mp07-blue_back_1.jpg','image',0),(1353,90,'/m/p/mp07-blue_side_a_1.jpg','image',0),(1354,90,'/m/p/mp07-blue_side_b_1.jpg','image',0),(1355,90,'/m/p/mp07-purple_main_1.jpg','image',0),(1356,90,'/m/p/mp07-black_main_1.jpg','image',0),(1357,90,'/m/p/mp07-blue_main_1.jpg','image',0),(1358,90,'/m/p/mp07-blue_alt1_1.jpg','image',0),(1359,90,'/m/p/mp07-blue_back_1.jpg','image',0),(1360,90,'/m/p/mp07-blue_side_a_1.jpg','image',0),(1361,90,'/m/p/mp07-blue_side_b_1.jpg','image',0),(1362,90,'/m/p/mp07-purple_main_1.jpg','image',0),(1363,90,'/m/p/mp07-black_main_1.jpg','image',0),(1364,90,'/m/p/mp07-blue_main_1.jpg','image',0),(1365,90,'/m/p/mp07-blue_alt1_1.jpg','image',0),(1366,90,'/m/p/mp07-blue_back_1.jpg','image',0),(1367,90,'/m/p/mp07-blue_side_a_1.jpg','image',0),(1368,90,'/m/p/mp07-blue_side_b_1.jpg','image',0),(1369,90,'/m/p/mp07-purple_main_1.jpg','image',0),(1370,90,'/m/p/mp07-black_main_1.jpg','image',0),(1371,90,'/m/p/mp07-blue_main_1.jpg','image',0),(1372,90,'/m/p/mp07-blue_alt1_1.jpg','image',0),(1373,90,'/m/p/mp07-blue_back_1.jpg','image',0),(1374,90,'/m/p/mp07-blue_side_a_1.jpg','image',0),(1375,90,'/m/p/mp07-blue_side_b_1.jpg','image',0),(1376,90,'/m/p/mp07-purple_main_1.jpg','image',0),(1377,90,'/m/p/mp07-blue_main_1.jpg','image',0),(1378,90,'/m/p/mp07-blue_alt1_1.jpg','image',0),(1379,90,'/m/p/mp07-blue_back_1.jpg','image',0),(1380,90,'/m/p/mp07-blue_side_a_1.jpg','image',0),(1381,90,'/m/p/mp07-blue_side_b_1.jpg','image',0),(1382,90,'/m/p/mp08-blue_main_1.jpg','image',0),(1383,90,'/m/p/mp08-green_main_1.jpg','image',0),(1384,90,'/m/p/mp08-green_alt1_1.jpg','image',0),(1385,90,'/m/p/mp08-green_back_1.jpg','image',0),(1386,90,'/m/p/mp08-red_main_1.jpg','image',0),(1387,90,'/m/p/mp08-blue_main_1.jpg','image',0),(1388,90,'/m/p/mp08-green_main_1.jpg','image',0),(1389,90,'/m/p/mp08-green_alt1_1.jpg','image',0),(1390,90,'/m/p/mp08-green_back_1.jpg','image',0),(1391,90,'/m/p/mp08-red_main_1.jpg','image',0),(1392,90,'/m/p/mp08-blue_main_1.jpg','image',0),(1393,90,'/m/p/mp08-green_main_1.jpg','image',0),(1394,90,'/m/p/mp08-green_alt1_1.jpg','image',0),(1395,90,'/m/p/mp08-green_back_1.jpg','image',0),(1396,90,'/m/p/mp08-red_main_1.jpg','image',0),(1397,90,'/m/p/mp08-blue_main_1.jpg','image',0),(1398,90,'/m/p/mp08-green_main_1.jpg','image',0),(1399,90,'/m/p/mp08-green_alt1_1.jpg','image',0),(1400,90,'/m/p/mp08-green_back_1.jpg','image',0),(1401,90,'/m/p/mp08-red_main_1.jpg','image',0),(1402,90,'/m/p/mp08-green_main_1.jpg','image',0),(1403,90,'/m/p/mp08-green_alt1_1.jpg','image',0),(1404,90,'/m/p/mp08-green_back_1.jpg','image',0),(1405,90,'/m/p/mp09-black_main_1.jpg','image',0),(1406,90,'/m/p/mp09-blue_main_1.jpg','image',0),(1407,90,'/m/p/mp09-blue_alt1_1.jpg','image',0),(1408,90,'/m/p/mp09-blue_back_1.jpg','image',0),(1409,90,'/m/p/mp09-red_main_1.jpg','image',0),(1410,90,'/m/p/mp09-black_main_1.jpg','image',0),(1411,90,'/m/p/mp09-blue_main_1.jpg','image',0),(1412,90,'/m/p/mp09-blue_alt1_1.jpg','image',0),(1413,90,'/m/p/mp09-blue_back_1.jpg','image',0),(1414,90,'/m/p/mp09-red_main_1.jpg','image',0),(1415,90,'/m/p/mp09-black_main_1.jpg','image',0),(1416,90,'/m/p/mp09-blue_main_1.jpg','image',0),(1417,90,'/m/p/mp09-blue_alt1_1.jpg','image',0),(1418,90,'/m/p/mp09-blue_back_1.jpg','image',0),(1419,90,'/m/p/mp09-red_main_1.jpg','image',0),(1420,90,'/m/p/mp09-black_main_1.jpg','image',0),(1421,90,'/m/p/mp09-blue_main_1.jpg','image',0),(1422,90,'/m/p/mp09-blue_alt1_1.jpg','image',0),(1423,90,'/m/p/mp09-blue_back_1.jpg','image',0),(1424,90,'/m/p/mp09-red_main_1.jpg','image',0),(1425,90,'/m/p/mp09-blue_main_1.jpg','image',0),(1426,90,'/m/p/mp09-blue_alt1_1.jpg','image',0),(1427,90,'/m/p/mp09-blue_back_1.jpg','image',0),(1428,90,'/m/p/mp10-black_main_1.jpg','image',0),(1429,90,'/m/p/mp10-black_alt1_1.jpg','image',0),(1430,90,'/m/p/mp10-black_back_1.jpg','image',0),(1431,90,'/m/p/mp10-blue_main_1.jpg','image',0),(1432,90,'/m/p/mp10-green_main_1.jpg','image',0),(1433,90,'/m/p/mp10-black_main_1.jpg','image',0),(1434,90,'/m/p/mp10-black_alt1_1.jpg','image',0),(1435,90,'/m/p/mp10-black_back_1.jpg','image',0),(1436,90,'/m/p/mp10-blue_main_1.jpg','image',0),(1437,90,'/m/p/mp10-green_main_2.jpg','image',0),(1438,90,'/m/p/mp10-black_main_2.jpg','image',0),(1439,90,'/m/p/mp10-black_alt1_2.jpg','image',0),(1440,90,'/m/p/mp10-black_back_2.jpg','image',0),(1441,90,'/m/p/mp10-blue_main_2.jpg','image',0),(1442,90,'/m/p/mp10-green_main_2.jpg','image',0),(1443,90,'/m/p/mp10-black_main_2.jpg','image',0),(1444,90,'/m/p/mp10-black_alt1_2.jpg','image',0),(1445,90,'/m/p/mp10-black_back_2.jpg','image',0),(1446,90,'/m/p/mp10-blue_main_2.jpg','image',0),(1447,90,'/m/p/mp10-green_main_2.jpg','image',0),(1448,90,'/m/p/mp10-black_main_2.jpg','image',0),(1449,90,'/m/p/mp10-black_alt1_2.jpg','image',0),(1450,90,'/m/p/mp10-black_back_2.jpg','image',0),(1451,90,'/m/p/mp11-blue_main_1.jpg','image',0),(1452,90,'/m/p/mp11-brown_main_1.jpg','image',0),(1453,90,'/m/p/mp11-brown_alt1_1.jpg','image',0),(1454,90,'/m/p/mp11-brown_back_1.jpg','image',0),(1455,90,'/m/p/mp11-green_main_1.jpg','image',0),(1456,90,'/m/p/mp11-blue_main_1.jpg','image',0),(1457,90,'/m/p/mp11-brown_main_1.jpg','image',0),(1458,90,'/m/p/mp11-brown_alt1_1.jpg','image',0),(1459,90,'/m/p/mp11-brown_back_1.jpg','image',0),(1460,90,'/m/p/mp11-green_main_1.jpg','image',0),(1461,90,'/m/p/mp11-blue_main_1.jpg','image',0),(1462,90,'/m/p/mp11-brown_main_1.jpg','image',0),(1463,90,'/m/p/mp11-brown_alt1_1.jpg','image',0),(1464,90,'/m/p/mp11-brown_back_1.jpg','image',0),(1465,90,'/m/p/mp11-green_main_1.jpg','image',0),(1466,90,'/m/p/mp11-blue_main_1.jpg','image',0),(1467,90,'/m/p/mp11-brown_main_1.jpg','image',0),(1468,90,'/m/p/mp11-brown_alt1_1.jpg','image',0),(1469,90,'/m/p/mp11-brown_back_1.jpg','image',0),(1470,90,'/m/p/mp11-green_main_1.jpg','image',0),(1471,90,'/m/p/mp11-brown_main_1.jpg','image',0),(1472,90,'/m/p/mp11-brown_alt1_1.jpg','image',0),(1473,90,'/m/p/mp11-brown_back_1.jpg','image',0),(1474,90,'/m/p/mp12-black_main_1.jpg','image',0),(1475,90,'/m/p/mp12-black_back_1.jpg','image',0),(1476,90,'/m/p/mp12-blue_main_1.jpg','image',0),(1477,90,'/m/p/mp12-red_main_1.jpg','image',0),(1478,90,'/m/p/mp12-black_main_1.jpg','image',0),(1479,90,'/m/p/mp12-black_back_1.jpg','image',0),(1480,90,'/m/p/mp12-blue_main_1.jpg','image',0),(1481,90,'/m/p/mp12-red_main_1.jpg','image',0),(1482,90,'/m/p/mp12-black_main_1.jpg','image',0),(1483,90,'/m/p/mp12-black_back_1.jpg','image',0),(1484,90,'/m/p/mp12-blue_main_1.jpg','image',0),(1485,90,'/m/p/mp12-red_main_1.jpg','image',0),(1486,90,'/m/p/mp12-black_main_1.jpg','image',0),(1487,90,'/m/p/mp12-black_back_1.jpg','image',0),(1488,90,'/m/p/mp12-blue_main_1.jpg','image',0),(1489,90,'/m/p/mp12-red_main_1.jpg','image',0),(1490,90,'/m/p/mp12-black_main_1.jpg','image',0),(1491,90,'/m/p/mp12-black_back_1.jpg','image',0),(1492,90,'/m/s/msh01-black_main_1.jpg','image',0),(1493,90,'/m/s/msh01-blue_main_1.jpg','image',0),(1494,90,'/m/s/msh01-blue_back_1.jpg','image',0),(1495,90,'/m/s/msh01-red_main_1.jpg','image',0),(1496,90,'/m/s/msh01-black_main_1.jpg','image',0),(1497,90,'/m/s/msh01-blue_main_1.jpg','image',0),(1498,90,'/m/s/msh01-blue_back_1.jpg','image',0),(1499,90,'/m/s/msh01-red_main_1.jpg','image',0),(1500,90,'/m/s/msh01-black_main_1.jpg','image',0),(1501,90,'/m/s/msh01-blue_main_1.jpg','image',0),(1502,90,'/m/s/msh01-blue_back_1.jpg','image',0),(1503,90,'/m/s/msh01-red_main_1.jpg','image',0),(1504,90,'/m/s/msh01-black_main_1.jpg','image',0),(1505,90,'/m/s/msh01-blue_main_1.jpg','image',0),(1506,90,'/m/s/msh01-blue_back_1.jpg','image',0),(1507,90,'/m/s/msh01-red_main_1.jpg','image',0),(1508,90,'/m/s/msh01-blue_main_1.jpg','image',0),(1509,90,'/m/s/msh01-blue_back_1.jpg','image',0),(1510,90,'/m/s/msh02-black_main_1.jpg','image',0),(1511,90,'/m/s/msh02-black_alt1_1.jpg','image',0),(1512,90,'/m/s/msh02-black_back_1.jpg','image',0),(1513,90,'/m/s/msh02-black_main_1.jpg','image',0),(1514,90,'/m/s/msh02-black_alt1_1.jpg','image',0),(1515,90,'/m/s/msh02-black_back_1.jpg','image',0),(1516,90,'/m/s/msh02-black_main_1.jpg','image',0),(1517,90,'/m/s/msh02-black_alt1_1.jpg','image',0),(1518,90,'/m/s/msh02-black_back_1.jpg','image',0),(1519,90,'/m/s/msh02-black_main_1.jpg','image',0),(1520,90,'/m/s/msh02-black_alt1_1.jpg','image',0),(1521,90,'/m/s/msh02-black_back_1.jpg','image',0),(1522,90,'/m/s/msh02-black_main_1.jpg','image',0),(1523,90,'/m/s/msh02-black_alt1_1.jpg','image',0),(1524,90,'/m/s/msh02-black_back_1.jpg','image',0),(1525,90,'/m/s/msh03-black_main_1.jpg','image',0),(1526,90,'/m/s/msh03-blue_main_1.jpg','image',0),(1527,90,'/m/s/msh03-blue_alt1_1.jpg','image',0),(1528,90,'/m/s/msh03-blue_back_1.jpg','image',0),(1529,90,'/m/s/msh03-green_main_1.jpg','image',0),(1530,90,'/m/s/msh03-black_main_1.jpg','image',0),(1531,90,'/m/s/msh03-blue_main_1.jpg','image',0),(1532,90,'/m/s/msh03-blue_alt1_1.jpg','image',0),(1533,90,'/m/s/msh03-blue_back_1.jpg','image',0),(1534,90,'/m/s/msh03-green_main_1.jpg','image',0),(1535,90,'/m/s/msh03-black_main_1.jpg','image',0),(1536,90,'/m/s/msh03-blue_main_1.jpg','image',0),(1537,90,'/m/s/msh03-blue_alt1_1.jpg','image',0),(1538,90,'/m/s/msh03-blue_back_1.jpg','image',0),(1539,90,'/m/s/msh03-green_main_1.jpg','image',0),(1540,90,'/m/s/msh03-black_main_1.jpg','image',0),(1541,90,'/m/s/msh03-blue_main_1.jpg','image',0),(1542,90,'/m/s/msh03-blue_alt1_1.jpg','image',0),(1543,90,'/m/s/msh03-blue_back_1.jpg','image',0),(1544,90,'/m/s/msh03-green_main_1.jpg','image',0),(1545,90,'/m/s/msh03-blue_main_1.jpg','image',0),(1546,90,'/m/s/msh03-blue_alt1_1.jpg','image',0),(1547,90,'/m/s/msh03-blue_back_1.jpg','image',0),(1548,90,'/m/s/msh04-gray_main_1.jpg','image',0),(1549,90,'/m/s/msh04-gray_back_1.jpg','image',0),(1550,90,'/m/s/msh04-purple_main_1.jpg','image',0),(1551,90,'/m/s/msh04-yellow_main_1.jpg','image',0),(1552,90,'/m/s/msh04-gray_main_1.jpg','image',0),(1553,90,'/m/s/msh04-gray_back_1.jpg','image',0),(1554,90,'/m/s/msh04-purple_main_1.jpg','image',0),(1555,90,'/m/s/msh04-yellow_main_1.jpg','image',0),(1556,90,'/m/s/msh04-gray_main_1.jpg','image',0),(1557,90,'/m/s/msh04-gray_back_1.jpg','image',0),(1558,90,'/m/s/msh04-purple_main_1.jpg','image',0),(1559,90,'/m/s/msh04-yellow_main_1.jpg','image',0),(1560,90,'/m/s/msh04-gray_main_1.jpg','image',0),(1561,90,'/m/s/msh04-gray_back_1.jpg','image',0),(1562,90,'/m/s/msh04-purple_main_1.jpg','image',0),(1563,90,'/m/s/msh04-yellow_main_1.jpg','image',0),(1564,90,'/m/s/msh04-gray_main_1.jpg','image',0),(1565,90,'/m/s/msh04-gray_back_1.jpg','image',0),(1566,90,'/m/s/msh05-black_main_1.jpg','image',0),(1567,90,'/m/s/msh05-blue_main_1.jpg','image',0),(1568,90,'/m/s/msh05-gray_main_1.jpg','image',0),(1569,90,'/m/s/msh05-gray_alt1_1.jpg','image',0),(1570,90,'/m/s/msh05-gray_back_1.jpg','image',0),(1571,90,'/m/s/msh05-black_main_1.jpg','image',0),(1572,90,'/m/s/msh05-blue_main_1.jpg','image',0),(1573,90,'/m/s/msh05-gray_main_1.jpg','image',0),(1574,90,'/m/s/msh05-gray_alt1_1.jpg','image',0),(1575,90,'/m/s/msh05-gray_back_1.jpg','image',0),(1576,90,'/m/s/msh05-black_main_1.jpg','image',0),(1577,90,'/m/s/msh05-blue_main_1.jpg','image',0),(1578,90,'/m/s/msh05-gray_main_1.jpg','image',0),(1579,90,'/m/s/msh05-gray_alt1_1.jpg','image',0),(1580,90,'/m/s/msh05-gray_back_1.jpg','image',0),(1581,90,'/m/s/msh05-black_main_1.jpg','image',0),(1582,90,'/m/s/msh05-blue_main_1.jpg','image',0),(1583,90,'/m/s/msh05-gray_main_1.jpg','image',0),(1584,90,'/m/s/msh05-gray_alt1_1.jpg','image',0),(1585,90,'/m/s/msh05-gray_back_1.jpg','image',0),(1586,90,'/m/s/msh05-gray_main_1.jpg','image',0),(1587,90,'/m/s/msh05-gray_alt1_1.jpg','image',0),(1588,90,'/m/s/msh05-gray_back_1.jpg','image',0),(1589,90,'/m/s/msh06-blue_main_1.jpg','image',0),(1590,90,'/m/s/msh06-gray_main_1.jpg','image',0),(1591,90,'/m/s/msh06-gray_alt1_1.jpg','image',0),(1592,90,'/m/s/msh06-gray_back_1.jpg','image',0),(1593,90,'/m/s/msh06-red_main_1.jpg','image',0),(1594,90,'/m/s/msh06-blue_main_1.jpg','image',0),(1595,90,'/m/s/msh06-gray_main_1.jpg','image',0),(1596,90,'/m/s/msh06-gray_alt1_1.jpg','image',0),(1597,90,'/m/s/msh06-gray_back_1.jpg','image',0),(1598,90,'/m/s/msh06-red_main_1.jpg','image',0),(1599,90,'/m/s/msh06-blue_main_1.jpg','image',0),(1600,90,'/m/s/msh06-gray_main_1.jpg','image',0),(1601,90,'/m/s/msh06-gray_alt1_1.jpg','image',0),(1602,90,'/m/s/msh06-gray_back_1.jpg','image',0),(1603,90,'/m/s/msh06-red_main_1.jpg','image',0),(1604,90,'/m/s/msh06-blue_main_2.jpg','image',0),(1605,90,'/m/s/msh06-gray_main_2.jpg','image',0),(1606,90,'/m/s/msh06-gray_alt1_2.jpg','image',0),(1607,90,'/m/s/msh06-gray_back_2.jpg','image',0),(1608,90,'/m/s/msh06-red_main_2.jpg','image',0),(1609,90,'/m/s/msh06-gray_main_2.jpg','image',0),(1610,90,'/m/s/msh06-gray_alt1_2.jpg','image',0),(1611,90,'/m/s/msh06-gray_back_2.jpg','image',0),(1612,90,'/m/s/msh07-black_main_1.jpg','image',0),(1613,90,'/m/s/msh07-black_alt1_1.jpg','image',0),(1614,90,'/m/s/msh07-black_back_1.jpg','image',0),(1615,90,'/m/s/msh07-blue_main_1.jpg','image',0),(1616,90,'/m/s/msh07-purple_main_1.jpg','image',0),(1617,90,'/m/s/msh07-black_main_1.jpg','image',0),(1618,90,'/m/s/msh07-black_alt1_1.jpg','image',0),(1619,90,'/m/s/msh07-black_back_1.jpg','image',0),(1620,90,'/m/s/msh07-blue_main_1.jpg','image',0),(1621,90,'/m/s/msh07-purple_main_1.jpg','image',0),(1622,90,'/m/s/msh07-black_main_1.jpg','image',0),(1623,90,'/m/s/msh07-black_alt1_1.jpg','image',0),(1624,90,'/m/s/msh07-black_back_1.jpg','image',0),(1625,90,'/m/s/msh07-blue_main_1.jpg','image',0),(1626,90,'/m/s/msh07-purple_main_1.jpg','image',0),(1627,90,'/m/s/msh07-black_main_1.jpg','image',0),(1628,90,'/m/s/msh07-black_alt1_1.jpg','image',0),(1629,90,'/m/s/msh07-black_back_1.jpg','image',0),(1630,90,'/m/s/msh07-blue_main_1.jpg','image',0),(1631,90,'/m/s/msh07-purple_main_1.jpg','image',0),(1632,90,'/m/s/msh07-black_main_1.jpg','image',0),(1633,90,'/m/s/msh07-black_alt1_1.jpg','image',0),(1634,90,'/m/s/msh07-black_back_1.jpg','image',0),(1635,90,'/m/s/msh08-black_main_1.jpg','image',0),(1636,90,'/m/s/msh08-black_back_1.jpg','image',0),(1637,90,'/m/s/msh08-blue_main_1.jpg','image',0),(1638,90,'/m/s/msh08-green_main_1.jpg','image',0),(1639,90,'/m/s/msh08-black_main_1.jpg','image',0),(1640,90,'/m/s/msh08-black_back_1.jpg','image',0),(1641,90,'/m/s/msh08-blue_main_1.jpg','image',0),(1642,90,'/m/s/msh08-green_main_1.jpg','image',0),(1643,90,'/m/s/msh08-black_main_1.jpg','image',0),(1644,90,'/m/s/msh08-black_back_1.jpg','image',0),(1645,90,'/m/s/msh08-blue_main_1.jpg','image',0),(1646,90,'/m/s/msh08-green_main_1.jpg','image',0),(1647,90,'/m/s/msh08-black_main_1.jpg','image',0),(1648,90,'/m/s/msh08-black_back_1.jpg','image',0),(1649,90,'/m/s/msh08-blue_main_1.jpg','image',0),(1650,90,'/m/s/msh08-green_main_1.jpg','image',0),(1651,90,'/m/s/msh08-black_main_1.jpg','image',0),(1652,90,'/m/s/msh08-black_back_1.jpg','image',0),(1653,90,'/m/s/msh09-black_main_1.jpg','image',0),(1654,90,'/m/s/msh09-blue_main_1.jpg','image',0),(1655,90,'/m/s/msh09-blue_alt1_1.jpg','image',0),(1656,90,'/m/s/msh09-blue_back_1.jpg','image',0),(1657,90,'/m/s/msh09-green_main_1.jpg','image',0),(1658,90,'/m/s/msh09-black_main_1.jpg','image',0),(1659,90,'/m/s/msh09-blue_main_1.jpg','image',0),(1660,90,'/m/s/msh09-blue_alt1_1.jpg','image',0),(1661,90,'/m/s/msh09-blue_back_1.jpg','image',0),(1662,90,'/m/s/msh09-green_main_1.jpg','image',0),(1663,90,'/m/s/msh09-black_main_1.jpg','image',0),(1664,90,'/m/s/msh09-blue_main_1.jpg','image',0),(1665,90,'/m/s/msh09-blue_alt1_1.jpg','image',0),(1666,90,'/m/s/msh09-blue_back_1.jpg','image',0),(1667,90,'/m/s/msh09-green_main_1.jpg','image',0),(1668,90,'/m/s/msh09-black_main_1.jpg','image',0),(1669,90,'/m/s/msh09-blue_main_1.jpg','image',0),(1670,90,'/m/s/msh09-blue_alt1_1.jpg','image',0),(1671,90,'/m/s/msh09-blue_back_1.jpg','image',0),(1672,90,'/m/s/msh09-green_main_1.jpg','image',0),(1673,90,'/m/s/msh09-blue_main_1.jpg','image',0),(1674,90,'/m/s/msh09-blue_alt1_1.jpg','image',0),(1675,90,'/m/s/msh09-blue_back_1.jpg','image',0),(1676,90,'/m/s/msh10-blue_main_1.jpg','image',0),(1677,90,'/m/s/msh10-blue_alt1_1.jpg','image',0),(1678,90,'/m/s/msh10-blue_back_1.jpg','image',0),(1679,90,'/m/s/msh10-green_main_1.jpg','image',0),(1680,90,'/m/s/msh10-purple_main_1.jpg','image',0),(1681,90,'/m/s/msh10-blue_main_1.jpg','image',0),(1682,90,'/m/s/msh10-blue_alt1_1.jpg','image',0),(1683,90,'/m/s/msh10-blue_back_1.jpg','image',0),(1684,90,'/m/s/msh10-green_main_1.jpg','image',0),(1685,90,'/m/s/msh10-purple_main_1.jpg','image',0),(1686,90,'/m/s/msh10-blue_main_1.jpg','image',0),(1687,90,'/m/s/msh10-blue_alt1_1.jpg','image',0),(1688,90,'/m/s/msh10-blue_back_1.jpg','image',0),(1689,90,'/m/s/msh10-green_main_1.jpg','image',0),(1690,90,'/m/s/msh10-purple_main_1.jpg','image',0),(1691,90,'/m/s/msh10-blue_main_1.jpg','image',0),(1692,90,'/m/s/msh10-blue_alt1_1.jpg','image',0),(1693,90,'/m/s/msh10-blue_back_1.jpg','image',0),(1694,90,'/m/s/msh10-green_main_1.jpg','image',0),(1695,90,'/m/s/msh10-purple_main_1.jpg','image',0),(1696,90,'/m/s/msh10-blue_main_1.jpg','image',0),(1697,90,'/m/s/msh10-blue_alt1_1.jpg','image',0),(1698,90,'/m/s/msh10-blue_back_1.jpg','image',0),(1699,90,'/m/s/msh11-black_main_1.jpg','image',0),(1700,90,'/m/s/msh11-blue_main_1.jpg','image',0),(1701,90,'/m/s/msh11-blue_back_1.jpg','image',0),(1702,90,'/m/s/msh11-red_main_1.jpg','image',0),(1703,90,'/m/s/msh11-black_main_1.jpg','image',0),(1704,90,'/m/s/msh11-blue_main_1.jpg','image',0),(1705,90,'/m/s/msh11-blue_back_1.jpg','image',0),(1706,90,'/m/s/msh11-red_main_1.jpg','image',0),(1707,90,'/m/s/msh11-black_main_1.jpg','image',0),(1708,90,'/m/s/msh11-blue_main_1.jpg','image',0),(1709,90,'/m/s/msh11-blue_back_1.jpg','image',0),(1710,90,'/m/s/msh11-red_main_1.jpg','image',0),(1711,90,'/m/s/msh11-black_main_1.jpg','image',0),(1712,90,'/m/s/msh11-blue_main_1.jpg','image',0),(1713,90,'/m/s/msh11-blue_back_1.jpg','image',0),(1714,90,'/m/s/msh11-red_main_1.jpg','image',0),(1715,90,'/m/s/msh11-blue_main_1.jpg','image',0),(1716,90,'/m/s/msh11-blue_back_1.jpg','image',0),(1717,90,'/m/s/msh12-black_main_1.jpg','image',0),(1718,90,'/m/s/msh12-gray_main_1.jpg','image',0),(1719,90,'/m/s/msh12-red_main_1.jpg','image',0),(1720,90,'/m/s/msh12-red_back_1.jpg','image',0),(1721,90,'/m/s/msh12-black_main_1.jpg','image',0),(1722,90,'/m/s/msh12-gray_main_1.jpg','image',0),(1723,90,'/m/s/msh12-red_main_1.jpg','image',0),(1724,90,'/m/s/msh12-red_back_1.jpg','image',0),(1725,90,'/m/s/msh12-black_main_1.jpg','image',0),(1726,90,'/m/s/msh12-gray_main_1.jpg','image',0),(1727,90,'/m/s/msh12-red_main_1.jpg','image',0),(1728,90,'/m/s/msh12-red_back_1.jpg','image',0),(1729,90,'/m/s/msh12-black_main_1.jpg','image',0),(1730,90,'/m/s/msh12-gray_main_1.jpg','image',0),(1731,90,'/m/s/msh12-red_main_1.jpg','image',0),(1732,90,'/m/s/msh12-red_back_1.jpg','image',0),(1733,90,'/m/s/msh12-red_main_1.jpg','image',0),(1734,90,'/m/s/msh12-red_back_1.jpg','image',0),(1735,90,'/w/h/wh01-green_main_1.jpg','image',0),(1736,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1737,90,'/w/h/wh01-green_back_1.jpg','image',0),(1738,90,'/w/h/wh01-orange_main_1.jpg','image',0),(1739,90,'/w/h/wh01-purple_main_1.jpg','image',0),(1740,90,'/w/h/wh01-green_main_1.jpg','image',0),(1741,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1742,90,'/w/h/wh01-green_back_1.jpg','image',0),(1743,90,'/w/h/wh01-orange_main_1.jpg','image',0),(1744,90,'/w/h/wh01-purple_main_1.jpg','image',0),(1745,90,'/w/h/wh01-green_main_1.jpg','image',0),(1746,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1747,90,'/w/h/wh01-green_back_1.jpg','image',0),(1748,90,'/w/h/wh01-orange_main_1.jpg','image',0),(1749,90,'/w/h/wh01-purple_main_1.jpg','image',0),(1750,90,'/w/h/wh01-green_main_1.jpg','image',0),(1751,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1752,90,'/w/h/wh01-green_back_1.jpg','image',0),(1753,90,'/w/h/wh01-orange_main_1.jpg','image',0),(1754,90,'/w/h/wh01-purple_main_1.jpg','image',0),(1755,90,'/w/h/wh01-green_main_1.jpg','image',0),(1756,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1757,90,'/w/h/wh01-green_back_1.jpg','image',0),(1758,90,'/w/h/wh01-orange_main_1.jpg','image',0),(1759,90,'/w/h/wh01-purple_main_1.jpg','image',0),(1760,90,'/w/h/wh01-green_main_1.jpg','image',0),(1761,90,'/w/h/wh01-green_alt1_1.jpg','image',0),(1762,90,'/w/h/wh01-green_back_1.jpg','image',0),(1763,90,'/w/h/wh02-blue_main_1.jpg','image',0),(1764,90,'/w/h/wh02-blue_alt1_1.jpg','image',0),(1765,90,'/w/h/wh02-blue_back_1.jpg','image',0),(1766,90,'/w/h/wh02-green_main_1.jpg','image',0),(1767,90,'/w/h/wh02-orange_main_1.jpg','image',0),(1768,90,'/w/h/wh02-blue_main_2.jpg','image',0),(1769,90,'/w/h/wh02-blue_alt1_2.jpg','image',0),(1770,90,'/w/h/wh02-blue_back_2.jpg','image',0),(1771,90,'/w/h/wh02-green_main_2.jpg','image',0),(1772,90,'/w/h/wh02-orange_main_1.jpg','image',0),(1773,90,'/w/h/wh02-blue_main_2.jpg','image',0),(1774,90,'/w/h/wh02-blue_alt1_2.jpg','image',0),(1775,90,'/w/h/wh02-blue_back_2.jpg','image',0),(1776,90,'/w/h/wh02-green_main_2.jpg','image',0),(1777,90,'/w/h/wh02-orange_main_1.jpg','image',0),(1778,90,'/w/h/wh02-blue_main_2.jpg','image',0),(1779,90,'/w/h/wh02-blue_alt1_2.jpg','image',0),(1780,90,'/w/h/wh02-blue_back_2.jpg','image',0),(1781,90,'/w/h/wh02-green_main_2.jpg','image',0),(1782,90,'/w/h/wh02-orange_main_1.jpg','image',0),(1783,90,'/w/h/wh02-blue_main_2.jpg','image',0),(1784,90,'/w/h/wh02-blue_alt1_2.jpg','image',0),(1785,90,'/w/h/wh02-blue_back_2.jpg','image',0),(1786,90,'/w/h/wh02-green_main_2.jpg','image',0),(1787,90,'/w/h/wh02-orange_main_1.jpg','image',0),(1788,90,'/w/h/wh02-blue_main_2.jpg','image',0),(1789,90,'/w/h/wh02-blue_alt1_2.jpg','image',0),(1790,90,'/w/h/wh02-blue_back_2.jpg','image',0),(1791,90,'/w/h/wh03-green_main_1.jpg','image',0),(1792,90,'/w/h/wh03-purple_main_1.jpg','image',0),(1793,90,'/w/h/wh03-red_main_1.jpg','image',0),(1794,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1795,90,'/w/h/wh03-red_back_1.jpg','image',0),(1796,90,'/w/h/wh03-green_main_1.jpg','image',0),(1797,90,'/w/h/wh03-purple_main_1.jpg','image',0),(1798,90,'/w/h/wh03-red_main_1.jpg','image',0),(1799,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1800,90,'/w/h/wh03-red_back_1.jpg','image',0),(1801,90,'/w/h/wh03-green_main_1.jpg','image',0),(1802,90,'/w/h/wh03-purple_main_1.jpg','image',0),(1803,90,'/w/h/wh03-red_main_1.jpg','image',0),(1804,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1805,90,'/w/h/wh03-red_back_1.jpg','image',0),(1806,90,'/w/h/wh03-green_main_1.jpg','image',0),(1807,90,'/w/h/wh03-purple_main_1.jpg','image',0),(1808,90,'/w/h/wh03-red_main_1.jpg','image',0),(1809,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1810,90,'/w/h/wh03-red_back_1.jpg','image',0),(1811,90,'/w/h/wh03-green_main_1.jpg','image',0),(1812,90,'/w/h/wh03-purple_main_1.jpg','image',0),(1813,90,'/w/h/wh03-red_main_1.jpg','image',0),(1814,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1815,90,'/w/h/wh03-red_back_1.jpg','image',0),(1816,90,'/w/h/wh03-red_main_1.jpg','image',0),(1817,90,'/w/h/wh03-red_alt1_1.jpg','image',0),(1818,90,'/w/h/wh03-red_back_1.jpg','image',0),(1819,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1820,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1821,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1822,90,'/w/h/wh04-orange_main_1.jpg','image',0),(1823,90,'/w/h/wh04-purple_main_1.jpg','image',0),(1824,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1825,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1826,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1827,90,'/w/h/wh04-orange_main_1.jpg','image',0),(1828,90,'/w/h/wh04-purple_main_1.jpg','image',0),(1829,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1830,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1831,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1832,90,'/w/h/wh04-orange_main_1.jpg','image',0),(1833,90,'/w/h/wh04-purple_main_1.jpg','image',0),(1834,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1835,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1836,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1837,90,'/w/h/wh04-orange_main_1.jpg','image',0),(1838,90,'/w/h/wh04-purple_main_1.jpg','image',0),(1839,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1840,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1841,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1842,90,'/w/h/wh04-orange_main_1.jpg','image',0),(1843,90,'/w/h/wh04-purple_main_1.jpg','image',0),(1844,90,'/w/h/wh04-blue_main_1.jpg','image',0),(1845,90,'/w/h/wh04-blue_alt1_1.jpg','image',0),(1846,90,'/w/h/wh04-blue_back_1.jpg','image',0),(1847,90,'/w/h/wh05-orange_main_1.jpg','image',0),(1848,90,'/w/h/wh05-purple_main_1.jpg','image',0),(1849,90,'/w/h/wh05-white_main_1.jpg','image',0),(1850,90,'/w/h/wh05-white_back_1.jpg','image',0),(1851,90,'/w/h/wh05-orange_main_1.jpg','image',0),(1852,90,'/w/h/wh05-purple_main_1.jpg','image',0),(1853,90,'/w/h/wh05-white_main_1.jpg','image',0),(1854,90,'/w/h/wh05-white_back_1.jpg','image',0),(1855,90,'/w/h/wh05-orange_main_1.jpg','image',0),(1856,90,'/w/h/wh05-purple_main_1.jpg','image',0),(1857,90,'/w/h/wh05-white_main_1.jpg','image',0),(1858,90,'/w/h/wh05-white_back_1.jpg','image',0),(1859,90,'/w/h/wh05-orange_main_1.jpg','image',0),(1860,90,'/w/h/wh05-purple_main_1.jpg','image',0),(1861,90,'/w/h/wh05-white_main_1.jpg','image',0),(1862,90,'/w/h/wh05-white_back_1.jpg','image',0),(1863,90,'/w/h/wh05-orange_main_1.jpg','image',0),(1864,90,'/w/h/wh05-purple_main_1.jpg','image',0),(1865,90,'/w/h/wh05-white_main_1.jpg','image',0),(1866,90,'/w/h/wh05-white_back_1.jpg','image',0),(1867,90,'/w/h/wh05-white_main_1.jpg','image',0),(1868,90,'/w/h/wh05-white_back_1.jpg','image',0),(1869,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1870,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1871,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1872,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1873,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1874,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1875,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1876,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1877,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1878,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1879,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1880,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1881,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1882,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1883,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1884,90,'/w/h/wh06-purple_main_1.jpg','image',0),(1885,90,'/w/h/wh06-purple_alt1_1.jpg','image',0),(1886,90,'/w/h/wh06-purple_back_1.jpg','image',0),(1887,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1888,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1889,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1890,90,'/w/h/wh07-purple_main_1.jpg','image',0),(1891,90,'/w/h/wh07-white_main_1.jpg','image',0),(1892,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1893,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1894,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1895,90,'/w/h/wh07-purple_main_1.jpg','image',0),(1896,90,'/w/h/wh07-white_main_1.jpg','image',0),(1897,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1898,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1899,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1900,90,'/w/h/wh07-purple_main_1.jpg','image',0),(1901,90,'/w/h/wh07-white_main_1.jpg','image',0),(1902,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1903,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1904,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1905,90,'/w/h/wh07-purple_main_1.jpg','image',0),(1906,90,'/w/h/wh07-white_main_1.jpg','image',0),(1907,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1908,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1909,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1910,90,'/w/h/wh07-purple_main_1.jpg','image',0),(1911,90,'/w/h/wh07-white_main_1.jpg','image',0),(1912,90,'/w/h/wh07-gray_main_1.jpg','image',0),(1913,90,'/w/h/wh07-gray_alt1_1.jpg','image',0),(1914,90,'/w/h/wh07-gray_back_1.jpg','image',0),(1915,90,'/w/h/wh08-orange_main_1.jpg','image',0),(1916,90,'/w/h/wh08-purple_main_1.jpg','image',0),(1917,90,'/w/h/wh08-white_main_1.jpg','image',0),(1918,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1919,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1920,90,'/w/h/wh08-white_back_1.jpg','image',0),(1921,90,'/w/h/wh08-orange_main_1.jpg','image',0),(1922,90,'/w/h/wh08-purple_main_1.jpg','image',0),(1923,90,'/w/h/wh08-white_main_1.jpg','image',0),(1924,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1925,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1926,90,'/w/h/wh08-white_back_1.jpg','image',0),(1927,90,'/w/h/wh08-orange_main_1.jpg','image',0),(1928,90,'/w/h/wh08-purple_main_1.jpg','image',0),(1929,90,'/w/h/wh08-white_main_1.jpg','image',0),(1930,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1931,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1932,90,'/w/h/wh08-white_back_1.jpg','image',0),(1933,90,'/w/h/wh08-orange_main_1.jpg','image',0),(1934,90,'/w/h/wh08-purple_main_1.jpg','image',0),(1935,90,'/w/h/wh08-white_main_1.jpg','image',0),(1936,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1937,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1938,90,'/w/h/wh08-white_back_1.jpg','image',0),(1939,90,'/w/h/wh08-orange_main_1.jpg','image',0),(1940,90,'/w/h/wh08-purple_main_1.jpg','image',0),(1941,90,'/w/h/wh08-white_main_1.jpg','image',0),(1942,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1943,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1944,90,'/w/h/wh08-white_back_1.jpg','image',0),(1945,90,'/w/h/wh08-white_main_1.jpg','image',0),(1946,90,'/w/h/wh08-white_alt1_1.jpg','image',0),(1947,90,'/w/h/wh08-white_alternate_1.jpg','image',0),(1948,90,'/w/h/wh08-white_back_1.jpg','image',0),(1949,90,'/w/h/wh09-green_main_1.jpg','image',0),(1950,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1951,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1952,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1953,90,'/w/h/wh09-red_main_1.jpg','image',0),(1954,90,'/w/h/wh09-green_main_1.jpg','image',0),(1955,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1956,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1957,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1958,90,'/w/h/wh09-red_main_1.jpg','image',0),(1959,90,'/w/h/wh09-green_main_1.jpg','image',0),(1960,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1961,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1962,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1963,90,'/w/h/wh09-red_main_1.jpg','image',0),(1964,90,'/w/h/wh09-green_main_1.jpg','image',0),(1965,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1966,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1967,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1968,90,'/w/h/wh09-red_main_1.jpg','image',0),(1969,90,'/w/h/wh09-green_main_1.jpg','image',0),(1970,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1971,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1972,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1973,90,'/w/h/wh09-red_main_1.jpg','image',0),(1974,90,'/w/h/wh09-purple_main_1.jpg','image',0),(1975,90,'/w/h/wh09-purple_alt1_1.jpg','image',0),(1976,90,'/w/h/wh09-purple_back_1.jpg','image',0),(1977,90,'/w/h/wh10-blue_main_1.jpg','image',0),(1978,90,'/w/h/wh10-gray_main_1.jpg','image',0),(1979,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(1980,90,'/w/h/wh10-gray_back_1.jpg','image',0),(1981,90,'/w/h/wh10-yellow_main_1.jpg','image',0),(1982,90,'/w/h/wh10-blue_main_1.jpg','image',0),(1983,90,'/w/h/wh10-gray_main_1.jpg','image',0),(1984,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(1985,90,'/w/h/wh10-gray_back_1.jpg','image',0),(1986,90,'/w/h/wh10-yellow_main_1.jpg','image',0),(1987,90,'/w/h/wh10-blue_main_1.jpg','image',0),(1988,90,'/w/h/wh10-gray_main_1.jpg','image',0),(1989,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(1990,90,'/w/h/wh10-gray_back_1.jpg','image',0),(1991,90,'/w/h/wh10-yellow_main_1.jpg','image',0),(1992,90,'/w/h/wh10-blue_main_1.jpg','image',0),(1993,90,'/w/h/wh10-gray_main_1.jpg','image',0),(1994,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(1995,90,'/w/h/wh10-gray_back_1.jpg','image',0),(1996,90,'/w/h/wh10-yellow_main_1.jpg','image',0),(1997,90,'/w/h/wh10-blue_main_1.jpg','image',0),(1998,90,'/w/h/wh10-gray_main_1.jpg','image',0),(1999,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(2000,90,'/w/h/wh10-gray_back_1.jpg','image',0),(2001,90,'/w/h/wh10-yellow_main_1.jpg','image',0),(2002,90,'/w/h/wh10-gray_main_1.jpg','image',0),(2003,90,'/w/h/wh10-gray_alt1_1.jpg','image',0),(2004,90,'/w/h/wh10-gray_back_1.jpg','image',0),(2005,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2006,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2007,90,'/w/h/wh11-green_main_1.jpg','image',0),(2008,90,'/w/h/wh11-orange_main_1.jpg','image',0),(2009,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2010,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2011,90,'/w/h/wh11-green_main_1.jpg','image',0),(2012,90,'/w/h/wh11-orange_main_1.jpg','image',0),(2013,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2014,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2015,90,'/w/h/wh11-green_main_1.jpg','image',0),(2016,90,'/w/h/wh11-orange_main_1.jpg','image',0),(2017,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2018,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2019,90,'/w/h/wh11-green_main_1.jpg','image',0),(2020,90,'/w/h/wh11-orange_main_1.jpg','image',0),(2021,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2022,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2023,90,'/w/h/wh11-green_main_1.jpg','image',0),(2024,90,'/w/h/wh11-orange_main_1.jpg','image',0),(2025,90,'/w/h/wh11-blue_main_1.jpg','image',0),(2026,90,'/w/h/wh11-blue_back_1.jpg','image',0),(2027,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2028,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2029,90,'/w/h/wh12-green_main_1.jpg','image',0),(2030,90,'/w/h/wh12-purple_main_1.jpg','image',0),(2031,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2032,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2033,90,'/w/h/wh12-green_main_1.jpg','image',0),(2034,90,'/w/h/wh12-purple_main_1.jpg','image',0),(2035,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2036,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2037,90,'/w/h/wh12-green_main_1.jpg','image',0),(2038,90,'/w/h/wh12-purple_main_1.jpg','image',0),(2039,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2040,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2041,90,'/w/h/wh12-green_main_1.jpg','image',0),(2042,90,'/w/h/wh12-purple_main_1.jpg','image',0),(2043,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2044,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2045,90,'/w/h/wh12-green_main_1.jpg','image',0),(2046,90,'/w/h/wh12-purple_main_1.jpg','image',0),(2047,90,'/w/h/wh12-gray_main_1.jpg','image',0),(2048,90,'/w/h/wh12-gray_back_1.jpg','image',0),(2049,90,'/w/j/wj01-blue_main_1.jpg','image',0),(2050,90,'/w/j/wj01-red_main_1.jpg','image',0),(2051,90,'/w/j/wj01-red_alt1_1.jpg','image',0),(2052,90,'/w/j/wj01-red_back_1.jpg','image',0),(2053,90,'/w/j/wj01-yellow_main_1.jpg','image',0),(2054,90,'/w/j/wj01-blue_main_1.jpg','image',0),(2055,90,'/w/j/wj01-red_main_1.jpg','image',0),(2056,90,'/w/j/wj01-red_alt1_1.jpg','image',0),(2057,90,'/w/j/wj01-red_back_1.jpg','image',0),(2058,90,'/w/j/wj01-yellow_main_1.jpg','image',0),(2059,90,'/w/j/wj01-blue_main_1.jpg','image',0),(2060,90,'/w/j/wj01-red_main_1.jpg','image',0),(2061,90,'/w/j/wj01-red_alt1_1.jpg','image',0),(2062,90,'/w/j/wj01-red_back_1.jpg','image',0),(2063,90,'/w/j/wj01-yellow_main_1.jpg','image',0),(2064,90,'/w/j/wj01-red_main_1.jpg','image',0),(2065,90,'/w/j/wj01-red_alt1_1.jpg','image',0),(2066,90,'/w/j/wj01-red_back_1.jpg','image',0),(2067,90,'/w/j/wj02-black_main_1.jpg','image',0),(2068,90,'/w/j/wj02-blue_main_1.jpg','image',0),(2069,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2070,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2071,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2072,90,'/w/j/wj02-black_main_1.jpg','image',0),(2073,90,'/w/j/wj02-blue_main_1.jpg','image',0),(2074,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2075,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2076,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2077,90,'/w/j/wj02-black_main_1.jpg','image',0),(2078,90,'/w/j/wj02-blue_main_1.jpg','image',0),(2079,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2080,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2081,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2082,90,'/w/j/wj02-black_main_1.jpg','image',0),(2083,90,'/w/j/wj02-blue_main_1.jpg','image',0),(2084,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2085,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2086,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2087,90,'/w/j/wj02-black_main_1.jpg','image',0),(2088,90,'/w/j/wj02-blue_main_1.jpg','image',0),(2089,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2090,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2091,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2092,90,'/w/j/wj02-gray_main_1.jpg','image',0),(2093,90,'/w/j/wj02-gray_alt1_1.jpg','image',0),(2094,90,'/w/j/wj02-gray_back_1.jpg','image',0),(2095,90,'/w/j/wj03-blue_main_1.jpg','image',0),(2096,90,'/w/j/wj03-orange_main_1.jpg','image',0),(2097,90,'/w/j/wj03-red_main_1.jpg','image',0),(2098,90,'/w/j/wj03-red_alt1_1.jpg','image',0),(2099,90,'/w/j/wj03-red_back_1.jpg','image',0),(2100,90,'/w/j/wj03-blue_main_1.jpg','image',0),(2101,90,'/w/j/wj03-orange_main_1.jpg','image',0),(2102,90,'/w/j/wj03-red_main_1.jpg','image',0),(2103,90,'/w/j/wj03-red_alt1_1.jpg','image',0),(2104,90,'/w/j/wj03-red_back_1.jpg','image',0),(2105,90,'/w/j/wj03-blue_main_1.jpg','image',0),(2106,90,'/w/j/wj03-orange_main_1.jpg','image',0),(2107,90,'/w/j/wj03-red_main_1.jpg','image',0),(2108,90,'/w/j/wj03-red_alt1_1.jpg','image',0),(2109,90,'/w/j/wj03-red_back_1.jpg','image',0),(2110,90,'/w/j/wj03-blue_main_1.jpg','image',0),(2111,90,'/w/j/wj03-orange_main_2.jpg','image',0),(2112,90,'/w/j/wj03-red_main_2.jpg','image',0),(2113,90,'/w/j/wj03-red_alt1_2.jpg','image',0),(2114,90,'/w/j/wj03-red_back_2.jpg','image',0),(2115,90,'/w/j/wj03-blue_main_2.jpg','image',0),(2116,90,'/w/j/wj03-orange_main_2.jpg','image',0),(2117,90,'/w/j/wj03-red_main_2.jpg','image',0),(2118,90,'/w/j/wj03-red_alt1_2.jpg','image',0),(2119,90,'/w/j/wj03-red_back_2.jpg','image',0),(2120,90,'/w/j/wj03-red_main_2.jpg','image',0),(2121,90,'/w/j/wj03-red_alt1_2.jpg','image',0),(2122,90,'/w/j/wj03-red_back_2.jpg','image',0),(2123,90,'/w/j/wj04-orange_main_1.jpg','image',0),(2124,90,'/w/j/wj04-red_main_1.jpg','image',0),(2125,90,'/w/j/wj04-white_main_1.jpg','image',0),(2126,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2127,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2128,90,'/w/j/wj04-white_back_1.jpg','image',0),(2129,90,'/w/j/wj04-orange_main_1.jpg','image',0),(2130,90,'/w/j/wj04-red_main_1.jpg','image',0),(2131,90,'/w/j/wj04-white_main_1.jpg','image',0),(2132,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2133,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2134,90,'/w/j/wj04-white_back_1.jpg','image',0),(2135,90,'/w/j/wj04-orange_main_1.jpg','image',0),(2136,90,'/w/j/wj04-red_main_1.jpg','image',0),(2137,90,'/w/j/wj04-white_main_1.jpg','image',0),(2138,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2139,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2140,90,'/w/j/wj04-white_back_1.jpg','image',0),(2141,90,'/w/j/wj04-orange_main_1.jpg','image',0),(2142,90,'/w/j/wj04-red_main_1.jpg','image',0),(2143,90,'/w/j/wj04-white_main_1.jpg','image',0),(2144,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2145,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2146,90,'/w/j/wj04-white_back_1.jpg','image',0),(2147,90,'/w/j/wj04-orange_main_1.jpg','image',0),(2148,90,'/w/j/wj04-red_main_1.jpg','image',0),(2149,90,'/w/j/wj04-white_main_1.jpg','image',0),(2150,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2151,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2152,90,'/w/j/wj04-white_back_1.jpg','image',0),(2153,90,'/w/j/wj04-white_main_1.jpg','image',0),(2154,90,'/w/j/wj04-white_alt1_1.jpg','image',0),(2155,90,'/w/j/wj04-white_alternate_1.jpg','image',0),(2156,90,'/w/j/wj04-white_back_1.jpg','image',0),(2157,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2158,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2159,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2160,90,'/w/j/wj05-green_main_1.jpg','image',0),(2161,90,'/w/j/wj05-red_main_1.jpg','image',0),(2162,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2163,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2164,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2165,90,'/w/j/wj05-green_main_1.jpg','image',0),(2166,90,'/w/j/wj05-red_main_1.jpg','image',0),(2167,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2168,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2169,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2170,90,'/w/j/wj05-green_main_1.jpg','image',0),(2171,90,'/w/j/wj05-red_main_1.jpg','image',0),(2172,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2173,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2174,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2175,90,'/w/j/wj05-green_main_1.jpg','image',0),(2176,90,'/w/j/wj05-red_main_1.jpg','image',0),(2177,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2178,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2179,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2180,90,'/w/j/wj05-green_main_1.jpg','image',0),(2181,90,'/w/j/wj05-red_main_1.jpg','image',0),(2182,90,'/w/j/wj05-brown_main_1.jpg','image',0),(2183,90,'/w/j/wj05-brown_alt1_1.jpg','image',0),(2184,90,'/w/j/wj05-brown_back_1.jpg','image',0),(2185,90,'/w/j/wj07-orange_main_1.jpg','image',0),(2186,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2187,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2188,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2189,90,'/w/j/wj07-red_main_1.jpg','image',0),(2190,90,'/w/j/wj07-orange_main_1.jpg','image',0),(2191,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2192,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2193,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2194,90,'/w/j/wj07-red_main_1.jpg','image',0),(2195,90,'/w/j/wj07-orange_main_1.jpg','image',0),(2196,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2197,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2198,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2199,90,'/w/j/wj07-red_main_1.jpg','image',0),(2200,90,'/w/j/wj07-orange_main_1.jpg','image',0),(2201,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2202,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2203,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2204,90,'/w/j/wj07-red_main_1.jpg','image',0),(2205,90,'/w/j/wj07-orange_main_1.jpg','image',0),(2206,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2207,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2208,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2209,90,'/w/j/wj07-red_main_1.jpg','image',0),(2210,90,'/w/j/wj07-purple_main_1.jpg','image',0),(2211,90,'/w/j/wj07-purple_alt1_1.jpg','image',0),(2212,90,'/w/j/wj07-purple_back_1.jpg','image',0),(2213,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2214,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2215,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2216,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2217,90,'/w/j/wj08-orange_main_1.jpg','image',0),(2218,90,'/w/j/wj08-purple_main_1.jpg','image',0),(2219,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2220,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2221,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2222,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2223,90,'/w/j/wj08-orange_main_1.jpg','image',0),(2224,90,'/w/j/wj08-purple_main_1.jpg','image',0),(2225,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2226,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2227,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2228,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2229,90,'/w/j/wj08-orange_main_1.jpg','image',0),(2230,90,'/w/j/wj08-purple_main_1.jpg','image',0),(2231,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2232,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2233,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2234,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2235,90,'/w/j/wj08-orange_main_1.jpg','image',0),(2236,90,'/w/j/wj08-purple_main_1.jpg','image',0),(2237,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2238,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2239,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2240,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2241,90,'/w/j/wj08-orange_main_1.jpg','image',0),(2242,90,'/w/j/wj08-purple_main_1.jpg','image',0),(2243,90,'/w/j/wj08-gray_main_1.jpg','image',0),(2244,90,'/w/j/wj08-gray_alt1_1.jpg','image',0),(2245,90,'/w/j/wj08-gray_alternate_1.jpg','image',0),(2246,90,'/w/j/wj08-gray_back_1.jpg','image',0),(2247,90,'/w/j/wj09-blue_main_1.jpg','image',0),(2248,90,'/w/j/wj09-gray_main_1.jpg','image',0),(2249,90,'/w/j/wj09-green_main_1.jpg','image',0),(2250,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2251,90,'/w/j/wj09-green_back_1.jpg','image',0),(2252,90,'/w/j/wj09-blue_main_1.jpg','image',0),(2253,90,'/w/j/wj09-gray_main_1.jpg','image',0),(2254,90,'/w/j/wj09-green_main_1.jpg','image',0),(2255,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2256,90,'/w/j/wj09-green_back_1.jpg','image',0),(2257,90,'/w/j/wj09-blue_main_1.jpg','image',0),(2258,90,'/w/j/wj09-gray_main_1.jpg','image',0),(2259,90,'/w/j/wj09-green_main_1.jpg','image',0),(2260,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2261,90,'/w/j/wj09-green_back_1.jpg','image',0),(2262,90,'/w/j/wj09-blue_main_1.jpg','image',0),(2263,90,'/w/j/wj09-gray_main_1.jpg','image',0),(2264,90,'/w/j/wj09-green_main_1.jpg','image',0),(2265,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2266,90,'/w/j/wj09-green_back_1.jpg','image',0),(2267,90,'/w/j/wj09-blue_main_1.jpg','image',0),(2268,90,'/w/j/wj09-gray_main_1.jpg','image',0),(2269,90,'/w/j/wj09-green_main_1.jpg','image',0),(2270,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2271,90,'/w/j/wj09-green_back_1.jpg','image',0),(2272,90,'/w/j/wj09-green_main_1.jpg','image',0),(2273,90,'/w/j/wj09-green_alt1_1.jpg','image',0),(2274,90,'/w/j/wj09-green_back_1.jpg','image',0),(2275,90,'/w/j/wj10-black_main_1.jpg','image',0),(2276,90,'/w/j/wj10-orange_main_1.jpg','image',0),(2277,90,'/w/j/wj10-yellow_main_1.jpg','image',0),(2278,90,'/w/j/wj10-yellow_alt1_1.jpg','image',0),(2279,90,'/w/j/wj10-yellow_back_1.jpg','image',0),(2280,90,'/w/j/wj10-black_main_1.jpg','image',0),(2281,90,'/w/j/wj10-orange_main_1.jpg','image',0),(2282,90,'/w/j/wj10-yellow_main_1.jpg','image',0),(2283,90,'/w/j/wj10-yellow_alt1_1.jpg','image',0),(2284,90,'/w/j/wj10-yellow_back_1.jpg','image',0),(2285,90,'/w/j/wj10-black_main_1.jpg','image',0),(2286,90,'/w/j/wj10-orange_main_1.jpg','image',0),(2287,90,'/w/j/wj10-yellow_main_1.jpg','image',0),(2288,90,'/w/j/wj10-yellow_alt1_1.jpg','image',0),(2289,90,'/w/j/wj10-yellow_back_1.jpg','image',0),(2290,90,'/w/j/wj10-black_main_1.jpg','image',0),(2291,90,'/w/j/wj10-orange_main_1.jpg','image',0),(2292,90,'/w/j/wj10-yellow_main_1.jpg','image',0),(2293,90,'/w/j/wj10-yellow_alt1_1.jpg','image',0),(2294,90,'/w/j/wj10-yellow_back_1.jpg','image',0),(2295,90,'/w/j/wj10-black_main_1.jpg','image',0),(2296,90,'/w/j/wj10-orange_main_1.jpg','image',0),(2297,90,'/w/j/wj10-yellow_main_2.jpg','image',0),(2298,90,'/w/j/wj10-yellow_alt1_2.jpg','image',0),(2299,90,'/w/j/wj10-yellow_back_2.jpg','image',0),(2300,90,'/w/j/wj10-yellow_main_2.jpg','image',0),(2301,90,'/w/j/wj10-yellow_alt1_2.jpg','image',0),(2302,90,'/w/j/wj10-yellow_back_2.jpg','image',0),(2303,90,'/w/j/wj11-black_main_1.jpg','image',0),(2304,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2305,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2306,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2307,90,'/w/j/wj11-orange_main_1.jpg','image',0),(2308,90,'/w/j/wj11-black_main_1.jpg','image',0),(2309,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2310,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2311,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2312,90,'/w/j/wj11-orange_main_1.jpg','image',0),(2313,90,'/w/j/wj11-black_main_1.jpg','image',0),(2314,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2315,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2316,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2317,90,'/w/j/wj11-orange_main_1.jpg','image',0),(2318,90,'/w/j/wj11-black_main_1.jpg','image',0),(2319,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2320,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2321,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2322,90,'/w/j/wj11-orange_main_1.jpg','image',0),(2323,90,'/w/j/wj11-black_main_1.jpg','image',0),(2324,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2325,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2326,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2327,90,'/w/j/wj11-orange_main_1.jpg','image',0),(2328,90,'/w/j/wj11-blue_main_1.jpg','image',0),(2329,90,'/w/j/wj11-blue_alt1_1.jpg','image',0),(2330,90,'/w/j/wj11-blue_back_1.jpg','image',0),(2331,90,'/w/j/wj06-blue_main_1.jpg','image',0),(2332,90,'/w/j/wj06-green_main_1.jpg','image',0),(2333,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2334,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2335,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2336,90,'/w/j/wj06-blue_main_1.jpg','image',0),(2337,90,'/w/j/wj06-green_main_1.jpg','image',0),(2338,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2339,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2340,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2341,90,'/w/j/wj06-blue_main_1.jpg','image',0),(2342,90,'/w/j/wj06-green_main_1.jpg','image',0),(2343,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2344,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2345,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2346,90,'/w/j/wj06-blue_main_1.jpg','image',0),(2347,90,'/w/j/wj06-green_main_1.jpg','image',0),(2348,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2349,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2350,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2351,90,'/w/j/wj06-blue_main_1.jpg','image',0),(2352,90,'/w/j/wj06-green_main_1.jpg','image',0),(2353,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2354,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2355,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2356,90,'/w/j/wj06-purple_main_1.jpg','image',0),(2357,90,'/w/j/wj06-purple_alt1_1.jpg','image',0),(2358,90,'/w/j/wj06-purple_back_1.jpg','image',0),(2359,90,'/w/j/wj12-black_main_1.jpg','image',0),(2360,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2361,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2362,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2363,90,'/w/j/wj12-purple_main_1.jpg','image',0),(2364,90,'/w/j/wj12-black_main_1.jpg','image',0),(2365,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2366,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2367,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2368,90,'/w/j/wj12-purple_main_1.jpg','image',0),(2369,90,'/w/j/wj12-black_main_1.jpg','image',0),(2370,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2371,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2372,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2373,90,'/w/j/wj12-purple_main_1.jpg','image',0),(2374,90,'/w/j/wj12-black_main_1.jpg','image',0),(2375,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2376,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2377,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2378,90,'/w/j/wj12-purple_main_1.jpg','image',0),(2379,90,'/w/j/wj12-black_main_1.jpg','image',0),(2380,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2381,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2382,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2383,90,'/w/j/wj12-purple_main_1.jpg','image',0),(2384,90,'/w/j/wj12-blue_main_1.jpg','image',0),(2385,90,'/w/j/wj12-blue_alt1_1.jpg','image',0),(2386,90,'/w/j/wj12-blue_back_1.jpg','image',0),(2387,90,'/w/s/ws02-blue_main_1.jpg','image',0),(2388,90,'/w/s/ws02-green_main_1.jpg','image',0),(2389,90,'/w/s/ws02-green_back_1.jpg','image',0),(2390,90,'/w/s/ws02-red_main_1.jpg','image',0),(2391,90,'/w/s/ws02-blue_main_1.jpg','image',0),(2392,90,'/w/s/ws02-green_main_1.jpg','image',0),(2393,90,'/w/s/ws02-green_back_1.jpg','image',0),(2394,90,'/w/s/ws02-red_main_1.jpg','image',0),(2395,90,'/w/s/ws02-blue_main_1.jpg','image',0),(2396,90,'/w/s/ws02-green_main_1.jpg','image',0),(2397,90,'/w/s/ws02-green_back_1.jpg','image',0),(2398,90,'/w/s/ws02-red_main_1.jpg','image',0),(2399,90,'/w/s/ws02-blue_main_1.jpg','image',0),(2400,90,'/w/s/ws02-green_main_1.jpg','image',0),(2401,90,'/w/s/ws02-green_back_1.jpg','image',0),(2402,90,'/w/s/ws02-red_main_1.jpg','image',0),(2403,90,'/w/s/ws02-blue_main_1.jpg','image',0),(2404,90,'/w/s/ws02-green_main_1.jpg','image',0),(2405,90,'/w/s/ws02-green_back_1.jpg','image',0),(2406,90,'/w/s/ws02-red_main_1.jpg','image',0),(2407,90,'/w/s/ws02-green_main_1.jpg','image',0),(2408,90,'/w/s/ws02-green_back_1.jpg','image',0),(2409,90,'/w/s/ws03-blue_main_1.jpg','image',0),(2410,90,'/w/s/ws03-green_main_1.jpg','image',0),(2411,90,'/w/s/ws03-red_main_1.jpg','image',0),(2412,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2413,90,'/w/s/ws03-red_back_1.jpg','image',0),(2414,90,'/w/s/ws03-blue_main_1.jpg','image',0),(2415,90,'/w/s/ws03-green_main_1.jpg','image',0),(2416,90,'/w/s/ws03-red_main_1.jpg','image',0),(2417,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2418,90,'/w/s/ws03-red_back_1.jpg','image',0),(2419,90,'/w/s/ws03-blue_main_1.jpg','image',0),(2420,90,'/w/s/ws03-green_main_1.jpg','image',0),(2421,90,'/w/s/ws03-red_main_1.jpg','image',0),(2422,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2423,90,'/w/s/ws03-red_back_1.jpg','image',0),(2424,90,'/w/s/ws03-blue_main_1.jpg','image',0),(2425,90,'/w/s/ws03-green_main_1.jpg','image',0),(2426,90,'/w/s/ws03-red_main_1.jpg','image',0),(2427,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2428,90,'/w/s/ws03-red_back_1.jpg','image',0),(2429,90,'/w/s/ws03-blue_main_1.jpg','image',0),(2430,90,'/w/s/ws03-green_main_1.jpg','image',0),(2431,90,'/w/s/ws03-red_main_1.jpg','image',0),(2432,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2433,90,'/w/s/ws03-red_back_1.jpg','image',0),(2434,90,'/w/s/ws03-red_main_1.jpg','image',0),(2435,90,'/w/s/ws03-red_alt1_1.jpg','image',0),(2436,90,'/w/s/ws03-red_back_1.jpg','image',0),(2437,90,'/w/s/ws04-blue_main_1.jpg','image',0),(2438,90,'/w/s/ws04-green_main_1.jpg','image',0),(2439,90,'/w/s/ws04-green_back_1.jpg','image',0),(2440,90,'/w/s/ws04-red_main_1.jpg','image',0),(2441,90,'/w/s/ws04-blue_main_1.jpg','image',0),(2442,90,'/w/s/ws04-green_main_1.jpg','image',0),(2443,90,'/w/s/ws04-green_back_1.jpg','image',0),(2444,90,'/w/s/ws04-red_main_1.jpg','image',0),(2445,90,'/w/s/ws04-blue_main_1.jpg','image',0),(2446,90,'/w/s/ws04-green_main_1.jpg','image',0),(2447,90,'/w/s/ws04-green_back_1.jpg','image',0),(2448,90,'/w/s/ws04-red_main_1.jpg','image',0),(2449,90,'/w/s/ws04-blue_main_1.jpg','image',0),(2450,90,'/w/s/ws04-green_main_1.jpg','image',0),(2451,90,'/w/s/ws04-green_back_1.jpg','image',0),(2452,90,'/w/s/ws04-red_main_1.jpg','image',0),(2453,90,'/w/s/ws04-blue_main_1.jpg','image',0),(2454,90,'/w/s/ws04-green_main_1.jpg','image',0),(2455,90,'/w/s/ws04-green_back_1.jpg','image',0),(2456,90,'/w/s/ws04-red_main_1.jpg','image',0),(2457,90,'/w/s/ws04-green_main_1.jpg','image',0),(2458,90,'/w/s/ws04-green_back_1.jpg','image',0),(2459,90,'/w/s/ws06-gray_main_1.jpg','image',0),(2460,90,'/w/s/ws06-purple_main_1.jpg','image',0),(2461,90,'/w/s/ws06-purple_back_1.jpg','image',0),(2462,90,'/w/s/ws06-red_main_1.jpg','image',0),(2463,90,'/w/s/ws06-gray_main_2.jpg','image',0),(2464,90,'/w/s/ws06-purple_main_2.jpg','image',0),(2465,90,'/w/s/ws06-purple_back_2.jpg','image',0),(2466,90,'/w/s/ws06-red_main_1.jpg','image',0),(2467,90,'/w/s/ws06-gray_main_2.jpg','image',0),(2468,90,'/w/s/ws06-purple_main_2.jpg','image',0),(2469,90,'/w/s/ws06-purple_back_2.jpg','image',0),(2470,90,'/w/s/ws06-red_main_1.jpg','image',0),(2471,90,'/w/s/ws06-gray_main_2.jpg','image',0),(2472,90,'/w/s/ws06-purple_main_2.jpg','image',0),(2473,90,'/w/s/ws06-purple_back_2.jpg','image',0),(2474,90,'/w/s/ws06-red_main_1.jpg','image',0),(2475,90,'/w/s/ws06-gray_main_2.jpg','image',0),(2476,90,'/w/s/ws06-purple_main_2.jpg','image',0),(2477,90,'/w/s/ws06-purple_back_2.jpg','image',0),(2478,90,'/w/s/ws06-red_main_1.jpg','image',0),(2479,90,'/w/s/ws06-purple_main_2.jpg','image',0),(2480,90,'/w/s/ws06-purple_back_2.jpg','image',0),(2481,90,'/w/s/ws07-black_main_1.jpg','image',0),(2482,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2483,90,'/w/s/ws07-black_back_1.jpg','image',0),(2484,90,'/w/s/ws07-white_main_1.jpg','image',0),(2485,90,'/w/s/ws07-yellow_main_1.jpg','image',0),(2486,90,'/w/s/ws07-black_main_1.jpg','image',0),(2487,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2488,90,'/w/s/ws07-black_back_1.jpg','image',0),(2489,90,'/w/s/ws07-white_main_1.jpg','image',0),(2490,90,'/w/s/ws07-yellow_main_1.jpg','image',0),(2491,90,'/w/s/ws07-black_main_1.jpg','image',0),(2492,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2493,90,'/w/s/ws07-black_back_1.jpg','image',0),(2494,90,'/w/s/ws07-white_main_1.jpg','image',0),(2495,90,'/w/s/ws07-yellow_main_1.jpg','image',0),(2496,90,'/w/s/ws07-black_main_1.jpg','image',0),(2497,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2498,90,'/w/s/ws07-black_back_1.jpg','image',0),(2499,90,'/w/s/ws07-white_main_1.jpg','image',0),(2500,90,'/w/s/ws07-yellow_main_1.jpg','image',0),(2501,90,'/w/s/ws07-black_main_1.jpg','image',0),(2502,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2503,90,'/w/s/ws07-black_back_1.jpg','image',0),(2504,90,'/w/s/ws07-white_main_1.jpg','image',0),(2505,90,'/w/s/ws07-yellow_main_1.jpg','image',0),(2506,90,'/w/s/ws07-black_main_1.jpg','image',0),(2507,90,'/w/s/ws07-black_alt1_1.jpg','image',0),(2508,90,'/w/s/ws07-black_back_1.jpg','image',0),(2509,90,'/w/s/ws08-black_main_1.jpg','image',0),(2510,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2511,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2512,90,'/w/s/ws08-red_main_1.jpg','image',0),(2513,90,'/w/s/ws08-black_main_1.jpg','image',0),(2514,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2515,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2516,90,'/w/s/ws08-red_main_1.jpg','image',0),(2517,90,'/w/s/ws08-black_main_1.jpg','image',0),(2518,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2519,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2520,90,'/w/s/ws08-red_main_1.jpg','image',0),(2521,90,'/w/s/ws08-black_main_1.jpg','image',0),(2522,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2523,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2524,90,'/w/s/ws08-red_main_1.jpg','image',0),(2525,90,'/w/s/ws08-black_main_1.jpg','image',0),(2526,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2527,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2528,90,'/w/s/ws08-red_main_1.jpg','image',0),(2529,90,'/w/s/ws08-blue_main_1.jpg','image',0),(2530,90,'/w/s/ws08-blue_back_1.jpg','image',0),(2531,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2532,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2533,90,'/w/s/ws09-red_main_1.jpg','image',0),(2534,90,'/w/s/ws09-white_main_1.jpg','image',0),(2535,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2536,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2537,90,'/w/s/ws09-red_main_1.jpg','image',0),(2538,90,'/w/s/ws09-white_main_1.jpg','image',0),(2539,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2540,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2541,90,'/w/s/ws09-red_main_1.jpg','image',0),(2542,90,'/w/s/ws09-white_main_1.jpg','image',0),(2543,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2544,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2545,90,'/w/s/ws09-red_main_1.jpg','image',0),(2546,90,'/w/s/ws09-white_main_1.jpg','image',0),(2547,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2548,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2549,90,'/w/s/ws09-red_main_1.jpg','image',0),(2550,90,'/w/s/ws09-white_main_1.jpg','image',0),(2551,90,'/w/s/ws09-blue_main_1.jpg','image',0),(2552,90,'/w/s/ws09-blue_back_1.jpg','image',0),(2553,90,'/w/s/ws10-green_main_1.jpg','image',0),(2554,90,'/w/s/ws10-red_main_1.jpg','image',0),(2555,90,'/w/s/ws10-red_back_1.jpg','image',0),(2556,90,'/w/s/ws10-yellow_main_1.jpg','image',0),(2557,90,'/w/s/ws10-green_main_1.jpg','image',0),(2558,90,'/w/s/ws10-red_main_1.jpg','image',0),(2559,90,'/w/s/ws10-red_back_1.jpg','image',0),(2560,90,'/w/s/ws10-yellow_main_1.jpg','image',0),(2561,90,'/w/s/ws10-green_main_1.jpg','image',0),(2562,90,'/w/s/ws10-red_main_1.jpg','image',0),(2563,90,'/w/s/ws10-red_back_1.jpg','image',0),(2564,90,'/w/s/ws10-yellow_main_1.jpg','image',0),(2565,90,'/w/s/ws10-green_main_1.jpg','image',0),(2566,90,'/w/s/ws10-red_main_1.jpg','image',0),(2567,90,'/w/s/ws10-red_back_1.jpg','image',0),(2568,90,'/w/s/ws10-yellow_main_1.jpg','image',0),(2569,90,'/w/s/ws10-green_main_1.jpg','image',0),(2570,90,'/w/s/ws10-red_main_1.jpg','image',0),(2571,90,'/w/s/ws10-red_back_1.jpg','image',0),(2572,90,'/w/s/ws10-yellow_main_1.jpg','image',0),(2573,90,'/w/s/ws10-red_main_1.jpg','image',0),(2574,90,'/w/s/ws10-red_back_1.jpg','image',0),(2575,90,'/w/s/ws11-green_main_1.jpg','image',0),(2576,90,'/w/s/ws11-orange_main_1.jpg','image',0),(2577,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2578,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2579,90,'/w/s/ws11-green_main_1.jpg','image',0),(2580,90,'/w/s/ws11-orange_main_1.jpg','image',0),(2581,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2582,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2583,90,'/w/s/ws11-green_main_1.jpg','image',0),(2584,90,'/w/s/ws11-orange_main_1.jpg','image',0),(2585,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2586,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2587,90,'/w/s/ws11-green_main_1.jpg','image',0),(2588,90,'/w/s/ws11-orange_main_1.jpg','image',0),(2589,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2590,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2591,90,'/w/s/ws11-green_main_1.jpg','image',0),(2592,90,'/w/s/ws11-orange_main_1.jpg','image',0),(2593,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2594,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2595,90,'/w/s/ws11-yellow_main_1.jpg','image',0),(2596,90,'/w/s/ws11-yellow_back_1.jpg','image',0),(2597,90,'/w/s/ws12-blue_main_1.jpg','image',0),(2598,90,'/w/s/ws12-orange_main_1.jpg','image',0),(2599,90,'/w/s/ws12-orange_back_1.jpg','image',0),(2600,90,'/w/s/ws12-purple_main_1.jpg','image',0),(2601,90,'/w/s/ws12-blue_main_1.jpg','image',0),(2602,90,'/w/s/ws12-orange_main_1.jpg','image',0),(2603,90,'/w/s/ws12-orange_back_1.jpg','image',0),(2604,90,'/w/s/ws12-purple_main_1.jpg','image',0),(2605,90,'/w/s/ws12-blue_main_2.jpg','image',0),(2606,90,'/w/s/ws12-orange_main_2.jpg','image',0),(2607,90,'/w/s/ws12-orange_back_2.jpg','image',0),(2608,90,'/w/s/ws12-purple_main_2.jpg','image',0),(2609,90,'/w/s/ws12-blue_main_2.jpg','image',0),(2610,90,'/w/s/ws12-orange_main_2.jpg','image',0),(2611,90,'/w/s/ws12-orange_back_2.jpg','image',0),(2612,90,'/w/s/ws12-purple_main_2.jpg','image',0),(2613,90,'/w/s/ws12-blue_main_2.jpg','image',0),(2614,90,'/w/s/ws12-orange_main_2.jpg','image',0),(2615,90,'/w/s/ws12-orange_back_2.jpg','image',0),(2616,90,'/w/s/ws12-purple_main_2.jpg','image',0),(2617,90,'/w/s/ws12-orange_main_2.jpg','image',0),(2618,90,'/w/s/ws12-orange_back_2.jpg','image',0),(2619,90,'/w/s/ws01-black_main_1.jpg','image',0),(2620,90,'/w/s/ws01-black_back_1.jpg','image',0),(2621,90,'/w/s/ws01-green_main_1.jpg','image',0),(2622,90,'/w/s/ws01-yellow_main_1.jpg','image',0),(2623,90,'/w/s/ws01-black_main_1.jpg','image',0),(2624,90,'/w/s/ws01-black_back_1.jpg','image',0),(2625,90,'/w/s/ws01-green_main_1.jpg','image',0),(2626,90,'/w/s/ws01-yellow_main_1.jpg','image',0),(2627,90,'/w/s/ws01-black_main_1.jpg','image',0),(2628,90,'/w/s/ws01-black_back_1.jpg','image',0),(2629,90,'/w/s/ws01-green_main_1.jpg','image',0),(2630,90,'/w/s/ws01-yellow_main_1.jpg','image',0),(2631,90,'/w/s/ws01-black_main_1.jpg','image',0),(2632,90,'/w/s/ws01-black_back_1.jpg','image',0),(2633,90,'/w/s/ws01-green_main_1.jpg','image',0),(2634,90,'/w/s/ws01-yellow_main_1.jpg','image',0),(2635,90,'/w/s/ws01-black_main_1.jpg','image',0),(2636,90,'/w/s/ws01-black_back_1.jpg','image',0),(2637,90,'/w/s/ws01-green_main_1.jpg','image',0),(2638,90,'/w/s/ws01-yellow_main_1.jpg','image',0),(2639,90,'/w/s/ws01-black_main_1.jpg','image',0),(2640,90,'/w/s/ws01-black_back_1.jpg','image',0),(2641,90,'/w/s/ws05-black_main_1.jpg','image',0),(2642,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2643,90,'/w/s/ws05-black_back_1.jpg','image',0),(2644,90,'/w/s/ws05-orange_main_1.jpg','image',0),(2645,90,'/w/s/ws05-yellow_main_1.jpg','image',0),(2646,90,'/w/s/ws05-black_main_1.jpg','image',0),(2647,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2648,90,'/w/s/ws05-black_back_1.jpg','image',0),(2649,90,'/w/s/ws05-orange_main_1.jpg','image',0),(2650,90,'/w/s/ws05-yellow_main_1.jpg','image',0),(2651,90,'/w/s/ws05-black_main_1.jpg','image',0),(2652,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2653,90,'/w/s/ws05-black_back_1.jpg','image',0),(2654,90,'/w/s/ws05-orange_main_1.jpg','image',0),(2655,90,'/w/s/ws05-yellow_main_1.jpg','image',0),(2656,90,'/w/s/ws05-black_main_1.jpg','image',0),(2657,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2658,90,'/w/s/ws05-black_back_1.jpg','image',0),(2659,90,'/w/s/ws05-orange_main_1.jpg','image',0),(2660,90,'/w/s/ws05-yellow_main_1.jpg','image',0),(2661,90,'/w/s/ws05-black_main_1.jpg','image',0),(2662,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2663,90,'/w/s/ws05-black_back_1.jpg','image',0),(2664,90,'/w/s/ws05-orange_main_1.jpg','image',0),(2665,90,'/w/s/ws05-yellow_main_1.jpg','image',0),(2666,90,'/w/s/ws05-black_main_1.jpg','image',0),(2667,90,'/w/s/ws05-black_alt1_1.jpg','image',0),(2668,90,'/w/s/ws05-black_back_1.jpg','image',0),(2669,90,'/w/b/wb01-black_main_1.jpg','image',0),(2670,90,'/w/b/wb01-black-0_1.jpg','image',0),(2671,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2672,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2673,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2674,90,'/w/b/wb01-purple_main_1.jpg','image',0),(2675,90,'/w/b/wb01-black_main_1.jpg','image',0),(2676,90,'/w/b/wb01-black-0_1.jpg','image',0),(2677,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2678,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2679,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2680,90,'/w/b/wb01-purple_main_1.jpg','image',0),(2681,90,'/w/b/wb01-black_main_1.jpg','image',0),(2682,90,'/w/b/wb01-black-0_1.jpg','image',0),(2683,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2684,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2685,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2686,90,'/w/b/wb01-purple_main_1.jpg','image',0),(2687,90,'/w/b/wb01-black_main_1.jpg','image',0),(2688,90,'/w/b/wb01-black-0_1.jpg','image',0),(2689,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2690,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2691,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2692,90,'/w/b/wb01-purple_main_1.jpg','image',0),(2693,90,'/w/b/wb01-black_main_1.jpg','image',0),(2694,90,'/w/b/wb01-black-0_1.jpg','image',0),(2695,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2696,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2697,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2698,90,'/w/b/wb01-purple_main_1.jpg','image',0),(2699,90,'/w/b/wb01-gray_main_1.jpg','image',0),(2700,90,'/w/b/wb01-gray_alt1_1.jpg','image',0),(2701,90,'/w/b/wb01-gray_back_1.jpg','image',0),(2702,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2703,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2704,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2705,90,'/w/b/wb02-orange_main_1.jpg','image',0),(2706,90,'/w/b/wb02-yellow_main_1.jpg','image',0),(2707,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2708,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2709,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2710,90,'/w/b/wb02-orange_main_1.jpg','image',0),(2711,90,'/w/b/wb02-yellow_main_1.jpg','image',0),(2712,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2713,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2714,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2715,90,'/w/b/wb02-orange_main_1.jpg','image',0),(2716,90,'/w/b/wb02-yellow_main_1.jpg','image',0),(2717,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2718,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2719,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2720,90,'/w/b/wb02-orange_main_1.jpg','image',0),(2721,90,'/w/b/wb02-yellow_main_1.jpg','image',0),(2722,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2723,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2724,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2725,90,'/w/b/wb02-orange_main_1.jpg','image',0),(2726,90,'/w/b/wb02-yellow_main_1.jpg','image',0),(2727,90,'/w/b/wb02-blue_main_1.jpg','image',0),(2728,90,'/w/b/wb02-blue_alt1_1.jpg','image',0),(2729,90,'/w/b/wb02-blue_back_1.jpg','image',0),(2730,90,'/w/b/wb03-green_main_1.jpg','image',0),(2731,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2732,90,'/w/b/wb03-green_back_1.jpg','image',0),(2733,90,'/w/b/wb03-red_main_1.jpg','image',0),(2734,90,'/w/b/wb03-yellow_main_1.jpg','image',0),(2735,90,'/w/b/wb03-green_main_1.jpg','image',0),(2736,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2737,90,'/w/b/wb03-green_back_1.jpg','image',0),(2738,90,'/w/b/wb03-red_main_1.jpg','image',0),(2739,90,'/w/b/wb03-yellow_main_1.jpg','image',0),(2740,90,'/w/b/wb03-green_main_1.jpg','image',0),(2741,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2742,90,'/w/b/wb03-green_back_1.jpg','image',0),(2743,90,'/w/b/wb03-red_main_1.jpg','image',0),(2744,90,'/w/b/wb03-yellow_main_1.jpg','image',0),(2745,90,'/w/b/wb03-green_main_1.jpg','image',0),(2746,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2747,90,'/w/b/wb03-green_back_1.jpg','image',0),(2748,90,'/w/b/wb03-red_main_1.jpg','image',0),(2749,90,'/w/b/wb03-yellow_main_1.jpg','image',0),(2750,90,'/w/b/wb03-green_main_1.jpg','image',0),(2751,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2752,90,'/w/b/wb03-green_back_1.jpg','image',0),(2753,90,'/w/b/wb03-red_main_1.jpg','image',0),(2754,90,'/w/b/wb03-yellow_main_1.jpg','image',0),(2755,90,'/w/b/wb03-green_main_1.jpg','image',0),(2756,90,'/w/b/wb03-green_alt1_1.jpg','image',0),(2757,90,'/w/b/wb03-green_back_1.jpg','image',0),(2758,90,'/w/b/wb04-blue_main_1.jpg','image',0),(2759,90,'/w/b/wb04-blue-0_1.jpg','image',0),(2760,90,'/w/b/wb04-blue_alt1_1.jpg','image',0),(2761,90,'/w/b/wb04-blue_back_1.jpg','image',0),(2762,90,'/w/b/wb04-purple_main_1.jpg','image',0),(2763,90,'/w/b/wb04-yellow_main_1.jpg','image',0),(2764,90,'/w/b/wb04-blue_main_1.jpg','image',0),(2765,90,'/w/b/wb04-blue-0_1.jpg','image',0),(2766,90,'/w/b/wb04-blue_alt1_1.jpg','image',0),(2767,90,'/w/b/wb04-blue_back_1.jpg','image',0),(2768,90,'/w/b/wb04-purple_main_1.jpg','image',0),(2769,90,'/w/b/wb04-yellow_main_1.jpg','image',0),(2770,90,'/w/b/wb04-blue_main_1.jpg','image',0),(2771,90,'/w/b/wb04-blue-0_1.jpg','image',0),(2772,90,'/w/b/wb04-blue_alt1_1.jpg','image',0),(2773,90,'/w/b/wb04-blue_back_1.jpg','image',0),(2774,90,'/w/b/wb04-purple_main_1.jpg','image',0),(2775,90,'/w/b/wb04-yellow_main_1.jpg','image',0),(2776,90,'/w/b/wb04-blue_main_1.jpg','image',0),(2777,90,'/w/b/wb04-blue-0_1.jpg','image',0),(2778,90,'/w/b/wb04-blue_alt1_1.jpg','image',0),(2779,90,'/w/b/wb04-blue_back_1.jpg','image',0),(2780,90,'/w/b/wb04-purple_main_2.jpg','image',0),(2781,90,'/w/b/wb04-yellow_main_2.jpg','image',0),(2782,90,'/w/b/wb04-blue_main_2.jpg','image',0),(2783,90,'/w/b/wb04-blue-0_2.jpg','image',0),(2784,90,'/w/b/wb04-blue_alt1_2.jpg','image',0),(2785,90,'/w/b/wb04-blue_back_2.jpg','image',0),(2786,90,'/w/b/wb04-purple_main_2.jpg','image',0),(2787,90,'/w/b/wb04-yellow_main_2.jpg','image',0),(2788,90,'/w/b/wb04-blue_main_2.jpg','image',0),(2789,90,'/w/b/wb04-blue-0_2.jpg','image',0),(2790,90,'/w/b/wb04-blue_alt1_2.jpg','image',0),(2791,90,'/w/b/wb04-blue_back_2.jpg','image',0),(2792,90,'/w/b/wb05-black_main_1.jpg','image',0),(2793,90,'/w/b/wb05-black_back_1.jpg','image',0),(2794,90,'/w/b/wb05-orange_main_1.jpg','image',0),(2795,90,'/w/b/wb05-purple_main_1.jpg','image',0),(2796,90,'/w/b/wb05-black_main_1.jpg','image',0),(2797,90,'/w/b/wb05-black_back_1.jpg','image',0),(2798,90,'/w/b/wb05-orange_main_1.jpg','image',0),(2799,90,'/w/b/wb05-purple_main_1.jpg','image',0),(2800,90,'/w/b/wb05-black_main_1.jpg','image',0),(2801,90,'/w/b/wb05-black_back_1.jpg','image',0),(2802,90,'/w/b/wb05-orange_main_1.jpg','image',0),(2803,90,'/w/b/wb05-purple_main_1.jpg','image',0),(2804,90,'/w/b/wb05-black_main_1.jpg','image',0),(2805,90,'/w/b/wb05-black_back_1.jpg','image',0),(2806,90,'/w/b/wb05-orange_main_1.jpg','image',0),(2807,90,'/w/b/wb05-purple_main_1.jpg','image',0),(2808,90,'/w/b/wb05-black_main_1.jpg','image',0),(2809,90,'/w/b/wb05-black_back_1.jpg','image',0),(2810,90,'/w/b/wb05-orange_main_1.jpg','image',0),(2811,90,'/w/b/wb05-purple_main_1.jpg','image',0),(2812,90,'/w/b/wb05-black_main_1.jpg','image',0),(2813,90,'/w/b/wb05-black_back_1.jpg','image',0),(2814,90,'/w/t/wt01-black_main_1.jpg','image',0),(2815,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2816,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2817,90,'/w/t/wt01-orange_main_1.jpg','image',0),(2818,90,'/w/t/wt01-black_main_1.jpg','image',0),(2819,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2820,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2821,90,'/w/t/wt01-orange_main_1.jpg','image',0),(2822,90,'/w/t/wt01-black_main_1.jpg','image',0),(2823,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2824,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2825,90,'/w/t/wt01-orange_main_1.jpg','image',0),(2826,90,'/w/t/wt01-black_main_1.jpg','image',0),(2827,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2828,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2829,90,'/w/t/wt01-orange_main_1.jpg','image',0),(2830,90,'/w/t/wt01-black_main_1.jpg','image',0),(2831,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2832,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2833,90,'/w/t/wt01-orange_main_1.jpg','image',0),(2834,90,'/w/t/wt01-blue_main_1.jpg','image',0),(2835,90,'/w/t/wt01-blue_back_1.jpg','image',0),(2836,90,'/w/t/wt02-green_main_1.jpg','image',0),(2837,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2838,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2839,90,'/w/t/wt02-yellow_main_1.jpg','image',0),(2840,90,'/w/t/wt02-green_main_1.jpg','image',0),(2841,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2842,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2843,90,'/w/t/wt02-yellow_main_1.jpg','image',0),(2844,90,'/w/t/wt02-green_main_1.jpg','image',0),(2845,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2846,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2847,90,'/w/t/wt02-yellow_main_1.jpg','image',0),(2848,90,'/w/t/wt02-green_main_1.jpg','image',0),(2849,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2850,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2851,90,'/w/t/wt02-yellow_main_1.jpg','image',0),(2852,90,'/w/t/wt02-green_main_1.jpg','image',0),(2853,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2854,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2855,90,'/w/t/wt02-yellow_main_1.jpg','image',0),(2856,90,'/w/t/wt02-orange_main_1.jpg','image',0),(2857,90,'/w/t/wt02-orange_back_1.jpg','image',0),(2858,90,'/w/t/wt03-orange_main_1.jpg','image',0),(2859,90,'/w/t/wt03-purple_main_1.jpg','image',0),(2860,90,'/w/t/wt03-red_main_1.jpg','image',0),(2861,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2862,90,'/w/t/wt03-red_back_1.jpg','image',0),(2863,90,'/w/t/wt03-orange_main_1.jpg','image',0),(2864,90,'/w/t/wt03-purple_main_1.jpg','image',0),(2865,90,'/w/t/wt03-red_main_1.jpg','image',0),(2866,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2867,90,'/w/t/wt03-red_back_1.jpg','image',0),(2868,90,'/w/t/wt03-orange_main_1.jpg','image',0),(2869,90,'/w/t/wt03-purple_main_1.jpg','image',0),(2870,90,'/w/t/wt03-red_main_1.jpg','image',0),(2871,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2872,90,'/w/t/wt03-red_back_1.jpg','image',0),(2873,90,'/w/t/wt03-orange_main_1.jpg','image',0),(2874,90,'/w/t/wt03-purple_main_1.jpg','image',0),(2875,90,'/w/t/wt03-red_main_1.jpg','image',0),(2876,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2877,90,'/w/t/wt03-red_back_1.jpg','image',0),(2878,90,'/w/t/wt03-orange_main_1.jpg','image',0),(2879,90,'/w/t/wt03-purple_main_1.jpg','image',0),(2880,90,'/w/t/wt03-red_main_1.jpg','image',0),(2881,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2882,90,'/w/t/wt03-red_back_1.jpg','image',0),(2883,90,'/w/t/wt03-red_main_1.jpg','image',0),(2884,90,'/w/t/wt03-red_alt1_1.jpg','image',0),(2885,90,'/w/t/wt03-red_back_1.jpg','image',0),(2886,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2887,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2888,90,'/w/t/wt04-purple_main_1.jpg','image',0),(2889,90,'/w/t/wt04-red_main_1.jpg','image',0),(2890,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2891,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2892,90,'/w/t/wt04-purple_main_1.jpg','image',0),(2893,90,'/w/t/wt04-red_main_1.jpg','image',0),(2894,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2895,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2896,90,'/w/t/wt04-purple_main_1.jpg','image',0),(2897,90,'/w/t/wt04-red_main_1.jpg','image',0),(2898,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2899,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2900,90,'/w/t/wt04-purple_main_1.jpg','image',0),(2901,90,'/w/t/wt04-red_main_1.jpg','image',0),(2902,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2903,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2904,90,'/w/t/wt04-purple_main_1.jpg','image',0),(2905,90,'/w/t/wt04-red_main_1.jpg','image',0),(2906,90,'/w/t/wt04-blue_main_1.jpg','image',0),(2907,90,'/w/t/wt04-blue_back_1.jpg','image',0),(2908,90,'/w/t/wt05-orange_main_1.jpg','image',0),(2909,90,'/w/t/wt05-purple_main_1.jpg','image',0),(2910,90,'/w/t/wt05-purple_alt1_1.jpg','image',0),(2911,90,'/w/t/wt05-purple_back_1.jpg','image',0),(2912,90,'/w/t/wt05-white_main_1.jpg','image',0),(2913,90,'/w/t/wt05-orange_main_1.jpg','image',0),(2914,90,'/w/t/wt05-purple_main_1.jpg','image',0),(2915,90,'/w/t/wt05-purple_alt1_1.jpg','image',0),(2916,90,'/w/t/wt05-purple_back_1.jpg','image',0),(2917,90,'/w/t/wt05-white_main_1.jpg','image',0),(2918,90,'/w/t/wt05-orange_main_1.jpg','image',0),(2919,90,'/w/t/wt05-purple_main_1.jpg','image',0),(2920,90,'/w/t/wt05-purple_alt1_1.jpg','image',0),(2921,90,'/w/t/wt05-purple_back_1.jpg','image',0),(2922,90,'/w/t/wt05-white_main_1.jpg','image',0),(2923,90,'/w/t/wt05-orange_main_1.jpg','image',0),(2924,90,'/w/t/wt05-purple_main_1.jpg','image',0),(2925,90,'/w/t/wt05-purple_alt1_1.jpg','image',0),(2926,90,'/w/t/wt05-purple_back_1.jpg','image',0),(2927,90,'/w/t/wt05-white_main_1.jpg','image',0),(2928,90,'/w/t/wt05-orange_main_1.jpg','image',0),(2929,90,'/w/t/wt05-purple_main_1.jpg','image',0),(2930,90,'/w/t/wt05-purple_alt1_1.jpg','image',0),(2931,90,'/w/t/wt05-purple_back_1.jpg','image',0),(2932,90,'/w/t/wt05-white_main_2.jpg','image',0),(2933,90,'/w/t/wt05-purple_main_2.jpg','image',0),(2934,90,'/w/t/wt05-purple_alt1_2.jpg','image',0),(2935,90,'/w/t/wt05-purple_back_2.jpg','image',0),(2936,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2937,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2938,90,'/w/t/wt06-red_main_1.jpg','image',0),(2939,90,'/w/t/wt06-yellow_main_1.jpg','image',0),(2940,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2941,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2942,90,'/w/t/wt06-red_main_1.jpg','image',0),(2943,90,'/w/t/wt06-yellow_main_1.jpg','image',0),(2944,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2945,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2946,90,'/w/t/wt06-red_main_1.jpg','image',0),(2947,90,'/w/t/wt06-yellow_main_1.jpg','image',0),(2948,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2949,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2950,90,'/w/t/wt06-red_main_1.jpg','image',0),(2951,90,'/w/t/wt06-yellow_main_1.jpg','image',0),(2952,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2953,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2954,90,'/w/t/wt06-red_main_1.jpg','image',0),(2955,90,'/w/t/wt06-yellow_main_1.jpg','image',0),(2956,90,'/w/t/wt06-blue_main_1.jpg','image',0),(2957,90,'/w/t/wt06-blue_back_1.jpg','image',0),(2958,90,'/w/t/wt07-green_main_1.jpg','image',0),(2959,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2960,90,'/w/t/wt07-green_back_1.jpg','image',0),(2961,90,'/w/t/wt07-white_main_1.jpg','image',0),(2962,90,'/w/t/wt07-yellow_main_1.jpg','image',0),(2963,90,'/w/t/wt07-green_main_1.jpg','image',0),(2964,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2965,90,'/w/t/wt07-green_back_1.jpg','image',0),(2966,90,'/w/t/wt07-white_main_1.jpg','image',0),(2967,90,'/w/t/wt07-yellow_main_1.jpg','image',0),(2968,90,'/w/t/wt07-green_main_1.jpg','image',0),(2969,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2970,90,'/w/t/wt07-green_back_1.jpg','image',0),(2971,90,'/w/t/wt07-white_main_1.jpg','image',0),(2972,90,'/w/t/wt07-yellow_main_1.jpg','image',0),(2973,90,'/w/t/wt07-green_main_1.jpg','image',0),(2974,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2975,90,'/w/t/wt07-green_back_1.jpg','image',0),(2976,90,'/w/t/wt07-white_main_1.jpg','image',0),(2977,90,'/w/t/wt07-yellow_main_1.jpg','image',0),(2978,90,'/w/t/wt07-green_main_1.jpg','image',0),(2979,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2980,90,'/w/t/wt07-green_back_1.jpg','image',0),(2981,90,'/w/t/wt07-white_main_1.jpg','image',0),(2982,90,'/w/t/wt07-yellow_main_1.jpg','image',0),(2983,90,'/w/t/wt07-green_main_1.jpg','image',0),(2984,90,'/w/t/wt07-green_alt1_1.jpg','image',0),(2985,90,'/w/t/wt07-green_back_1.jpg','image',0),(2986,90,'/w/t/wt08-black_main_1.jpg','image',0),(2987,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(2988,90,'/w/t/wt08-black_back_1.jpg','image',0),(2989,90,'/w/t/wt08-purple_main_1.jpg','image',0),(2990,90,'/w/t/wt08-yellow_main_1.jpg','image',0),(2991,90,'/w/t/wt08-black_main_1.jpg','image',0),(2992,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(2993,90,'/w/t/wt08-black_back_1.jpg','image',0),(2994,90,'/w/t/wt08-purple_main_1.jpg','image',0),(2995,90,'/w/t/wt08-yellow_main_1.jpg','image',0),(2996,90,'/w/t/wt08-black_main_1.jpg','image',0),(2997,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(2998,90,'/w/t/wt08-black_back_1.jpg','image',0),(2999,90,'/w/t/wt08-purple_main_1.jpg','image',0),(3000,90,'/w/t/wt08-yellow_main_1.jpg','image',0),(3001,90,'/w/t/wt08-black_main_1.jpg','image',0),(3002,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(3003,90,'/w/t/wt08-black_back_1.jpg','image',0),(3004,90,'/w/t/wt08-purple_main_1.jpg','image',0),(3005,90,'/w/t/wt08-yellow_main_1.jpg','image',0),(3006,90,'/w/t/wt08-black_main_1.jpg','image',0),(3007,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(3008,90,'/w/t/wt08-black_back_1.jpg','image',0),(3009,90,'/w/t/wt08-purple_main_1.jpg','image',0),(3010,90,'/w/t/wt08-yellow_main_1.jpg','image',0),(3011,90,'/w/t/wt08-black_main_1.jpg','image',0),(3012,90,'/w/t/wt08-black_alt1_1.jpg','image',0),(3013,90,'/w/t/wt08-black_back_1.jpg','image',0),(3014,90,'/w/t/wt09-purple_main_1.jpg','image',0),(3015,90,'/w/t/wt09-white_main_1.jpg','image',0),(3016,90,'/w/t/wt09-white_back_1.jpg','image',0),(3017,90,'/w/t/wt09-yellow_main_1.jpg','image',0),(3018,90,'/w/t/wt09-purple_main_1.jpg','image',0),(3019,90,'/w/t/wt09-white_main_1.jpg','image',0),(3020,90,'/w/t/wt09-white_back_1.jpg','image',0),(3021,90,'/w/t/wt09-yellow_main_1.jpg','image',0),(3022,90,'/w/t/wt09-purple_main_1.jpg','image',0),(3023,90,'/w/t/wt09-white_main_1.jpg','image',0),(3024,90,'/w/t/wt09-white_back_1.jpg','image',0),(3025,90,'/w/t/wt09-yellow_main_1.jpg','image',0),(3026,90,'/w/t/wt09-purple_main_1.jpg','image',0),(3027,90,'/w/t/wt09-white_main_1.jpg','image',0),(3028,90,'/w/t/wt09-white_back_1.jpg','image',0),(3029,90,'/w/t/wt09-yellow_main_1.jpg','image',0),(3030,90,'/w/t/wt09-purple_main_1.jpg','image',0),(3031,90,'/w/t/wt09-white_main_1.jpg','image',0),(3032,90,'/w/t/wt09-white_back_1.jpg','image',0),(3033,90,'/w/t/wt09-yellow_main_1.jpg','image',0),(3034,90,'/w/t/wt09-white_main_1.jpg','image',0),(3035,90,'/w/t/wt09-white_back_1.jpg','image',0),(3036,90,'/w/p/wp01-black_main_1.jpg','image',0),(3037,90,'/w/p/wp01-gray_main_1.jpg','image',0),(3038,90,'/w/p/wp01-gray_back_1.jpg','image',0),(3039,90,'/w/p/wp01-white_main_1.jpg','image',0),(3040,90,'/w/p/wp01-black_main_1.jpg','image',0),(3041,90,'/w/p/wp01-gray_main_1.jpg','image',0),(3042,90,'/w/p/wp01-gray_back_1.jpg','image',0),(3043,90,'/w/p/wp01-white_main_1.jpg','image',0),(3044,90,'/w/p/wp01-gray_main_1.jpg','image',0),(3045,90,'/w/p/wp01-gray_back_1.jpg','image',0),(3046,90,'/w/p/wp02-blue_main_1.jpg','image',0),(3047,90,'/w/p/wp02-blue_back_1.jpg','image',0),(3048,90,'/w/p/wp02-purple_main_1.jpg','image',0),(3049,90,'/w/p/wp02-red_main_1.jpg','image',0),(3050,90,'/w/p/wp02-blue_main_1.jpg','image',0),(3051,90,'/w/p/wp02-blue_back_1.jpg','image',0),(3052,90,'/w/p/wp02-purple_main_1.jpg','image',0),(3053,90,'/w/p/wp02-red_main_1.jpg','image',0),(3054,90,'/w/p/wp02-blue_main_1.jpg','image',0),(3055,90,'/w/p/wp02-blue_back_1.jpg','image',0),(3056,90,'/w/p/wp03-black_main_1.jpg','image',0),(3057,90,'/w/p/wp03-blue_main_1.jpg','image',0),(3058,90,'/w/p/wp03-blue_alt1_1.jpg','image',0),(3059,90,'/w/p/wp03-blue_back_1.jpg','image',0),(3060,90,'/w/p/wp03-purple_main_1.jpg','image',0),(3061,90,'/w/p/wp03-black_main_1.jpg','image',0),(3062,90,'/w/p/wp03-blue_main_1.jpg','image',0),(3063,90,'/w/p/wp03-blue_alt1_1.jpg','image',0),(3064,90,'/w/p/wp03-blue_back_1.jpg','image',0),(3065,90,'/w/p/wp03-purple_main_1.jpg','image',0),(3066,90,'/w/p/wp03-blue_main_1.jpg','image',0),(3067,90,'/w/p/wp03-blue_alt1_1.jpg','image',0),(3068,90,'/w/p/wp03-blue_back_1.jpg','image',0),(3069,90,'/w/p/wp04-black_main_1.jpg','image',0),(3070,90,'/w/p/wp04-blue_main_1.jpg','image',0),(3071,90,'/w/p/wp04-blue_alt1_1.jpg','image',0),(3072,90,'/w/p/wp04-blue_alternate_1.jpg','image',0),(3073,90,'/w/p/wp04-blue_back_1.jpg','image',0),(3074,90,'/w/p/wp04-white_main_1.jpg','image',0),(3075,90,'/w/p/wp04-black_main_1.jpg','image',0),(3076,90,'/w/p/wp04-blue_main_1.jpg','image',0),(3077,90,'/w/p/wp04-blue_alt1_1.jpg','image',0),(3078,90,'/w/p/wp04-blue_alternate_1.jpg','image',0),(3079,90,'/w/p/wp04-blue_back_1.jpg','image',0),(3080,90,'/w/p/wp04-white_main_1.jpg','image',0),(3081,90,'/w/p/wp04-blue_main_1.jpg','image',0),(3082,90,'/w/p/wp04-blue_alt1_1.jpg','image',0),(3083,90,'/w/p/wp04-blue_alternate_1.jpg','image',0),(3084,90,'/w/p/wp04-blue_back_1.jpg','image',0),(3085,90,'/w/p/wp05-blue_main_1.jpg','image',0),(3086,90,'/w/p/wp05-gray_main_1.jpg','image',0),(3087,90,'/w/p/wp05-gray_alt1_1.jpg','image',0),(3088,90,'/w/p/wp05-gray_back_1.jpg','image',0),(3089,90,'/w/p/wp05-red_main_1.jpg','image',0),(3090,90,'/w/p/wp05-blue_main_1.jpg','image',0),(3091,90,'/w/p/wp05-gray_main_1.jpg','image',0),(3092,90,'/w/p/wp05-gray_alt1_1.jpg','image',0),(3093,90,'/w/p/wp05-gray_back_1.jpg','image',0),(3094,90,'/w/p/wp05-red_main_1.jpg','image',0),(3095,90,'/w/p/wp05-gray_main_2.jpg','image',0),(3096,90,'/w/p/wp05-gray_alt1_2.jpg','image',0),(3097,90,'/w/p/wp05-gray_back_2.jpg','image',0),(3098,90,'/w/p/wp06-black_main_1.jpg','image',0),(3099,90,'/w/p/wp06-black_alt1_1.jpg','image',0),(3100,90,'/w/p/wp06-black_back_1.jpg','image',0),(3101,90,'/w/p/wp06-black_outfit_1.jpg','image',0),(3102,90,'/w/p/wp06-blue_main_1.jpg','image',0),(3103,90,'/w/p/wp06-orange_main_1.jpg','image',0),(3104,90,'/w/p/wp06-black_main_1.jpg','image',0),(3105,90,'/w/p/wp06-black_alt1_1.jpg','image',0),(3106,90,'/w/p/wp06-black_back_1.jpg','image',0),(3107,90,'/w/p/wp06-black_outfit_1.jpg','image',0),(3108,90,'/w/p/wp06-blue_main_1.jpg','image',0),(3109,90,'/w/p/wp06-orange_main_1.jpg','image',0),(3110,90,'/w/p/wp06-black_main_1.jpg','image',0),(3111,90,'/w/p/wp06-black_alt1_1.jpg','image',0),(3112,90,'/w/p/wp06-black_back_1.jpg','image',0),(3113,90,'/w/p/wp06-black_outfit_1.jpg','image',0),(3114,90,'/w/p/wp07-black_main_1.jpg','image',0),(3115,90,'/w/p/wp07-black_alt1_1.jpg','image',0),(3116,90,'/w/p/wp07-black_back_1.jpg','image',0),(3117,90,'/w/p/wp07-blue_main_1.jpg','image',0),(3118,90,'/w/p/wp07-orange_main_1.jpg','image',0),(3119,90,'/w/p/wp07-black_main_1.jpg','image',0),(3120,90,'/w/p/wp07-black_alt1_1.jpg','image',0),(3121,90,'/w/p/wp07-black_back_1.jpg','image',0),(3122,90,'/w/p/wp07-blue_main_1.jpg','image',0),(3123,90,'/w/p/wp07-orange_main_1.jpg','image',0),(3124,90,'/w/p/wp07-black_main_1.jpg','image',0),(3125,90,'/w/p/wp07-black_alt1_1.jpg','image',0),(3126,90,'/w/p/wp07-black_back_1.jpg','image',0),(3127,90,'/w/p/wp08-black_main_1.jpg','image',0),(3128,90,'/w/p/wp08-black_back_1.jpg','image',0),(3129,90,'/w/p/wp08-green_main_1.jpg','image',0),(3130,90,'/w/p/wp08-red_main_1.jpg','image',0),(3131,90,'/w/p/wp08-black_main_1.jpg','image',0),(3132,90,'/w/p/wp08-black_back_1.jpg','image',0),(3133,90,'/w/p/wp08-green_main_1.jpg','image',0),(3134,90,'/w/p/wp08-red_main_1.jpg','image',0),(3135,90,'/w/p/wp08-black_main_1.jpg','image',0),(3136,90,'/w/p/wp08-black_back_1.jpg','image',0),(3137,90,'/w/p/wp09-black_main_1.jpg','image',0),(3138,90,'/w/p/wp09-black_alt1_1.jpg','image',0),(3139,90,'/w/p/wp09-black_back_1.jpg','image',0),(3140,90,'/w/p/wp09-black_outfit_1.jpg','image',0),(3141,90,'/w/p/wp09-blue_main_1.jpg','image',0),(3142,90,'/w/p/wp09-purple_main_1.jpg','image',0),(3143,90,'/w/p/wp09-black_main_1.jpg','image',0),(3144,90,'/w/p/wp09-black_alt1_1.jpg','image',0),(3145,90,'/w/p/wp09-black_back_1.jpg','image',0),(3146,90,'/w/p/wp09-black_outfit_1.jpg','image',0),(3147,90,'/w/p/wp09-blue_main_1.jpg','image',0),(3148,90,'/w/p/wp09-purple_main_1.jpg','image',0),(3149,90,'/w/p/wp09-black_main_1.jpg','image',0),(3150,90,'/w/p/wp09-black_alt1_1.jpg','image',0),(3151,90,'/w/p/wp09-black_back_1.jpg','image',0),(3152,90,'/w/p/wp09-black_outfit_1.jpg','image',0),(3153,90,'/w/p/wp10-black_main_1.jpg','image',0),(3154,90,'/w/p/wp10-gray_main_1.jpg','image',0),(3155,90,'/w/p/wp10-gray_alt1_1.jpg','image',0),(3156,90,'/w/p/wp10-gray_back_1.jpg','image',0),(3157,90,'/w/p/wp10-white_main_1.jpg','image',0),(3158,90,'/w/p/wp10-black_main_1.jpg','image',0),(3159,90,'/w/p/wp10-gray_main_1.jpg','image',0),(3160,90,'/w/p/wp10-gray_alt1_1.jpg','image',0),(3161,90,'/w/p/wp10-gray_back_1.jpg','image',0),(3162,90,'/w/p/wp10-white_main_1.jpg','image',0),(3163,90,'/w/p/wp10-gray_main_1.jpg','image',0),(3164,90,'/w/p/wp10-gray_alt1_1.jpg','image',0),(3165,90,'/w/p/wp10-gray_back_1.jpg','image',0),(3166,90,'/w/p/wp11-blue_main_1.jpg','image',0),(3167,90,'/w/p/wp11-green_main_1.jpg','image',0),(3168,90,'/w/p/wp11-green_back_1.jpg','image',0),(3169,90,'/w/p/wp11-red_main_1.jpg','image',0),(3170,90,'/w/p/wp11-blue_main_1.jpg','image',0),(3171,90,'/w/p/wp11-green_main_1.jpg','image',0),(3172,90,'/w/p/wp11-green_back_1.jpg','image',0),(3173,90,'/w/p/wp11-red_main_1.jpg','image',0),(3174,90,'/w/p/wp11-green_main_1.jpg','image',0),(3175,90,'/w/p/wp11-green_back_1.jpg','image',0),(3176,90,'/w/p/wp12-blue_main_1.jpg','image',0),(3177,90,'/w/p/wp12-gray_main_1.jpg','image',0),(3178,90,'/w/p/wp12-gray_back_1.jpg','image',0),(3179,90,'/w/p/wp12-green_main_1.jpg','image',0),(3180,90,'/w/p/wp12-blue_main_1.jpg','image',0),(3181,90,'/w/p/wp12-gray_main_1.jpg','image',0),(3182,90,'/w/p/wp12-gray_back_1.jpg','image',0),(3183,90,'/w/p/wp12-green_main_1.jpg','image',0),(3184,90,'/w/p/wp12-gray_main_1.jpg','image',0),(3185,90,'/w/p/wp12-gray_back_1.jpg','image',0),(3186,90,'/w/p/wp13-blue_main_1.jpg','image',0),(3187,90,'/w/p/wp13-green_main_1.jpg','image',0),(3188,90,'/w/p/wp13-orange_main_1.jpg','image',0),(3189,90,'/w/p/wp13-orange_back_1.jpg','image',0),(3190,90,'/w/p/wp13-blue_main_1.jpg','image',0),(3191,90,'/w/p/wp13-green_main_1.jpg','image',0),(3192,90,'/w/p/wp13-orange_main_1.jpg','image',0),(3193,90,'/w/p/wp13-orange_back_1.jpg','image',0),(3194,90,'/w/p/wp13-orange_main_1.jpg','image',0),(3195,90,'/w/p/wp13-orange_back_1.jpg','image',0),(3196,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3197,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3198,90,'/w/s/wsh01-green_main_1.jpg','image',0),(3199,90,'/w/s/wsh01-red_main_1.jpg','image',0),(3200,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3201,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3202,90,'/w/s/wsh01-green_main_1.jpg','image',0),(3203,90,'/w/s/wsh01-red_main_1.jpg','image',0),(3204,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3205,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3206,90,'/w/s/wsh01-green_main_1.jpg','image',0),(3207,90,'/w/s/wsh01-red_main_1.jpg','image',0),(3208,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3209,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3210,90,'/w/s/wsh01-green_main_1.jpg','image',0),(3211,90,'/w/s/wsh01-red_main_1.jpg','image',0),(3212,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3213,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3214,90,'/w/s/wsh01-green_main_1.jpg','image',0),(3215,90,'/w/s/wsh01-red_main_1.jpg','image',0),(3216,90,'/w/s/wsh01-black_main_1.jpg','image',0),(3217,90,'/w/s/wsh01-black_back_1.jpg','image',0),(3218,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3219,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3220,90,'/w/s/wsh02-orange_main_1.jpg','image',0),(3221,90,'/w/s/wsh02-yellow_main_1.jpg','image',0),(3222,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3223,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3224,90,'/w/s/wsh02-orange_main_1.jpg','image',0),(3225,90,'/w/s/wsh02-yellow_main_1.jpg','image',0),(3226,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3227,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3228,90,'/w/s/wsh02-orange_main_1.jpg','image',0),(3229,90,'/w/s/wsh02-yellow_main_1.jpg','image',0),(3230,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3231,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3232,90,'/w/s/wsh02-orange_main_1.jpg','image',0),(3233,90,'/w/s/wsh02-yellow_main_1.jpg','image',0),(3234,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3235,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3236,90,'/w/s/wsh02-orange_main_1.jpg','image',0),(3237,90,'/w/s/wsh02-yellow_main_1.jpg','image',0),(3238,90,'/w/s/wsh02-gray_main_1.jpg','image',0),(3239,90,'/w/s/wsh02-gray_back_1.jpg','image',0),(3240,90,'/w/s/wsh03-blue_main_1.jpg','image',0),(3241,90,'/w/s/wsh03-gray_main_1.jpg','image',0),(3242,90,'/w/s/wsh03-gray_alt1_1.jpg','image',0),(3243,90,'/w/s/wsh03-gray_back_1.jpg','image',0),(3244,90,'/w/s/wsh03-orange_main_1.jpg','image',0),(3245,90,'/w/s/wsh03-blue_main_1.jpg','image',0),(3246,90,'/w/s/wsh03-gray_main_1.jpg','image',0),(3247,90,'/w/s/wsh03-gray_alt1_1.jpg','image',0),(3248,90,'/w/s/wsh03-gray_back_1.jpg','image',0),(3249,90,'/w/s/wsh03-orange_main_1.jpg','image',0),(3250,90,'/w/s/wsh03-blue_main_1.jpg','image',0),(3251,90,'/w/s/wsh03-gray_main_1.jpg','image',0),(3252,90,'/w/s/wsh03-gray_alt1_1.jpg','image',0),(3253,90,'/w/s/wsh03-gray_back_1.jpg','image',0),(3254,90,'/w/s/wsh03-orange_main_1.jpg','image',0),(3255,90,'/w/s/wsh03-blue_main_1.jpg','image',0),(3256,90,'/w/s/wsh03-gray_main_1.jpg','image',0),(3257,90,'/w/s/wsh03-gray_alt1_1.jpg','image',0),(3258,90,'/w/s/wsh03-gray_back_1.jpg','image',0),(3259,90,'/w/s/wsh03-orange_main_2.jpg','image',0),(3260,90,'/w/s/wsh03-blue_main_2.jpg','image',0),(3261,90,'/w/s/wsh03-gray_main_2.jpg','image',0),(3262,90,'/w/s/wsh03-gray_alt1_2.jpg','image',0),(3263,90,'/w/s/wsh03-gray_back_2.jpg','image',0),(3264,90,'/w/s/wsh03-orange_main_2.jpg','image',0),(3265,90,'/w/s/wsh03-gray_main_2.jpg','image',0),(3266,90,'/w/s/wsh03-gray_alt1_2.jpg','image',0),(3267,90,'/w/s/wsh03-gray_back_2.jpg','image',0),(3268,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3269,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3270,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3271,90,'/w/s/wsh04-green_main_1.jpg','image',0),(3272,90,'/w/s/wsh04-orange_main_1.jpg','image',0),(3273,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3274,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3275,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3276,90,'/w/s/wsh04-green_main_1.jpg','image',0),(3277,90,'/w/s/wsh04-orange_main_1.jpg','image',0),(3278,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3279,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3280,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3281,90,'/w/s/wsh04-green_main_1.jpg','image',0),(3282,90,'/w/s/wsh04-orange_main_1.jpg','image',0),(3283,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3284,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3285,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3286,90,'/w/s/wsh04-green_main_1.jpg','image',0),(3287,90,'/w/s/wsh04-orange_main_1.jpg','image',0),(3288,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3289,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3290,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3291,90,'/w/s/wsh04-green_main_1.jpg','image',0),(3292,90,'/w/s/wsh04-orange_main_1.jpg','image',0),(3293,90,'/w/s/wsh04-black_main_1.jpg','image',0),(3294,90,'/w/s/wsh04-black_alt1_1.jpg','image',0),(3295,90,'/w/s/wsh04-black_back_1.jpg','image',0),(3296,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3297,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3298,90,'/w/s/wsh05-purple_main_1.jpg','image',0),(3299,90,'/w/s/wsh05-yellow_main_1.jpg','image',0),(3300,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3301,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3302,90,'/w/s/wsh05-purple_main_1.jpg','image',0),(3303,90,'/w/s/wsh05-yellow_main_1.jpg','image',0),(3304,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3305,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3306,90,'/w/s/wsh05-purple_main_1.jpg','image',0),(3307,90,'/w/s/wsh05-yellow_main_1.jpg','image',0),(3308,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3309,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3310,90,'/w/s/wsh05-purple_main_1.jpg','image',0),(3311,90,'/w/s/wsh05-yellow_main_1.jpg','image',0),(3312,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3313,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3314,90,'/w/s/wsh05-purple_main_1.jpg','image',0),(3315,90,'/w/s/wsh05-yellow_main_1.jpg','image',0),(3316,90,'/w/s/wsh05-blue_main_1.jpg','image',0),(3317,90,'/w/s/wsh05-blue_back_1.jpg','image',0),(3318,90,'/w/s/wsh06-gray_main_1.jpg','image',0),(3319,90,'/w/s/wsh06-gray_alt1_1.jpg','image',0),(3320,90,'/w/s/wsh06-gray_back_1.jpg','image',0),(3321,90,'/w/s/wsh06-orange_main_1.jpg','image',0),(3322,90,'/w/s/wsh06-purple_main_1.jpg','image',0),(3323,90,'/w/s/wsh06-gray_main_1.jpg','image',0),(3324,90,'/w/s/wsh06-gray_alt1_1.jpg','image',0),(3325,90,'/w/s/wsh06-gray_back_1.jpg','image',0),(3326,90,'/w/s/wsh06-orange_main_1.jpg','image',0),(3327,90,'/w/s/wsh06-purple_main_1.jpg','image',0),(3328,90,'/w/s/wsh06-gray_main_1.jpg','image',0),(3329,90,'/w/s/wsh06-gray_alt1_1.jpg','image',0),(3330,90,'/w/s/wsh06-gray_back_1.jpg','image',0),(3331,90,'/w/s/wsh07-black_main_1.jpg','image',0),(3332,90,'/w/s/wsh07-black_back_1.jpg','image',0),(3333,90,'/w/s/wsh07-blue_main_1.jpg','image',0),(3334,90,'/w/s/wsh07-purple_main_1.jpg','image',0),(3335,90,'/w/s/wsh07-black_main_1.jpg','image',0),(3336,90,'/w/s/wsh07-black_back_1.jpg','image',0),(3337,90,'/w/s/wsh07-blue_main_1.jpg','image',0),(3338,90,'/w/s/wsh07-purple_main_1.jpg','image',0),(3339,90,'/w/s/wsh07-black_main_1.jpg','image',0),(3340,90,'/w/s/wsh07-black_back_1.jpg','image',0),(3341,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3342,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3343,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3344,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3345,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3346,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3347,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3348,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3349,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3350,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3351,90,'/w/s/wsh08-purple_main_1.jpg','image',0),(3352,90,'/w/s/wsh08-purple_back_1.jpg','image',0),(3353,90,'/w/s/wsh09-gray_main_1.jpg','image',0),(3354,90,'/w/s/wsh09-gray_alt1_1.jpg','image',0),(3355,90,'/w/s/wsh09-gray_back_1.jpg','image',0),(3356,90,'/w/s/wsh09-green_main_1.jpg','image',0),(3357,90,'/w/s/wsh09-white_main_1.jpg','image',0),(3358,90,'/w/s/wsh09-gray_main_1.jpg','image',0),(3359,90,'/w/s/wsh09-gray_alt1_1.jpg','image',0),(3360,90,'/w/s/wsh09-gray_back_1.jpg','image',0),(3361,90,'/w/s/wsh09-green_main_1.jpg','image',0),(3362,90,'/w/s/wsh09-white_main_1.jpg','image',0),(3363,90,'/w/s/wsh09-gray_main_1.jpg','image',0),(3364,90,'/w/s/wsh09-gray_alt1_1.jpg','image',0),(3365,90,'/w/s/wsh09-gray_back_1.jpg','image',0),(3366,90,'/w/s/wsh10-black_main_1.jpg','image',0),(3367,90,'/w/s/wsh10-black_alt1_1.jpg','image',0),(3368,90,'/w/s/wsh10-black_back_1.jpg','image',0),(3369,90,'/w/s/wsh10-orange_main_1.jpg','image',0),(3370,90,'/w/s/wsh10-white_main_1.jpg','image',0),(3371,90,'/w/s/wsh10-black_main_1.jpg','image',0),(3372,90,'/w/s/wsh10-black_alt1_1.jpg','image',0),(3373,90,'/w/s/wsh10-black_back_1.jpg','image',0),(3374,90,'/w/s/wsh10-orange_main_1.jpg','image',0),(3375,90,'/w/s/wsh10-white_main_1.jpg','image',0),(3376,90,'/w/s/wsh10-black_main_1.jpg','image',0),(3377,90,'/w/s/wsh10-black_alt1_1.jpg','image',0),(3378,90,'/w/s/wsh10-black_back_1.jpg','image',0),(3379,90,'/w/s/wsh11-blue_main_1.jpg','image',0),(3380,90,'/w/s/wsh11-blue_back_1.jpg','image',0),(3381,90,'/w/s/wsh11-orange_main_1.jpg','image',0),(3382,90,'/w/s/wsh11-red_main_1.jpg','image',0),(3383,90,'/w/s/wsh11-blue_main_1.jpg','image',0),(3384,90,'/w/s/wsh11-blue_back_1.jpg','image',0),(3385,90,'/w/s/wsh11-orange_main_1.jpg','image',0),(3386,90,'/w/s/wsh11-red_main_1.jpg','image',0),(3387,90,'/w/s/wsh11-blue_main_1.jpg','image',0),(3388,90,'/w/s/wsh11-blue_back_1.jpg','image',0),(3389,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3390,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3391,90,'/w/s/wsh12-green_back_1.jpg','image',0),(3392,90,'/w/s/wsh12-purple_main_1.jpg','image',0),(3393,90,'/w/s/wsh12-red_main_1.jpg','image',0),(3394,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3395,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3396,90,'/w/s/wsh12-green_back_1.jpg','image',0),(3397,90,'/w/s/wsh12-purple_main_1.jpg','image',0),(3398,90,'/w/s/wsh12-red_main_1.jpg','image',0),(3399,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3400,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3401,90,'/w/s/wsh12-green_back_1.jpg','image',0),(3402,90,'/w/s/wsh12-purple_main_1.jpg','image',0),(3403,90,'/w/s/wsh12-red_main_1.jpg','image',0),(3404,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3405,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3406,90,'/w/s/wsh12-green_back_1.jpg','image',0),(3407,90,'/w/s/wsh12-purple_main_1.jpg','image',0),(3408,90,'/w/s/wsh12-red_main_1.jpg','image',0),(3409,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3410,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3411,90,'/w/s/wsh12-green_back_1.jpg','image',0),(3412,90,'/w/s/wsh12-purple_main_1.jpg','image',0),(3413,90,'/w/s/wsh12-red_main_1.jpg','image',0),(3414,90,'/w/s/wsh12-green_main_1.jpg','image',0),(3415,90,'/w/s/wsh12-green_alt1_1.jpg','image',0),(3416,90,'/w/s/wsh12-green_back_1.jpg','image',0);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_media_gallery_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_media_gallery_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value` (
  `value_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Value ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  `position` int unsigned DEFAULT NULL COMMENT 'Position',
  `disabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Disabled',
  `record_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record ID',
  PRIMARY KEY (`record_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`),
  KEY `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`),
  CONSTRAINT `FK_CCAEA26D5065C2D6A7A1517EBBA6ED81` FOREIGN KEY (`value_id`) REFERENCES `[[dbprefix]]catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3417 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Media Gallery Attribute Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_media_gallery_value`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_media_gallery_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_media_gallery_value` VALUES (1,0,1,'Image',1,0,1),(2,0,2,'Image',1,0,2),(3,0,2,'Image',2,0,3),(4,0,3,'Image',1,0,4),(5,0,3,'Image',2,0,5),(6,0,4,'Image',1,0,6),(7,0,5,'Image',1,0,7),(8,0,6,'Image',1,0,8),(9,0,6,'Image',2,0,9),(10,0,7,'Image',1,0,10),(11,0,8,'Image',1,0,11),(12,0,9,'Image',1,0,12),(13,0,10,'Image',1,0,13),(14,0,11,'Image',1,0,14),(15,0,11,'Image',2,0,15),(16,0,12,'Image',1,0,16),(17,0,13,'Image',1,0,17),(18,0,14,'Image',1,0,18),(19,0,15,'Image',1,0,19),(20,0,16,'Image',1,0,20),(21,0,16,'Image',2,0,21),(22,0,17,'Image',1,0,22),(23,0,18,'Image',1,0,23),(24,0,19,'Image',1,0,24),(25,0,20,'Image',1,0,25),(26,0,21,'Image',1,0,26),(27,0,22,'Image',1,0,27),(28,0,23,'Image',1,0,28),(29,0,24,'Image',1,0,29),(30,0,25,'Image',1,0,30),(31,0,26,'Image',1,0,31),(32,0,27,'Image',1,0,32),(33,0,28,'Image',1,0,33),(34,0,29,'Image',1,0,34),(35,0,30,'Image',1,0,35),(36,0,31,'Image',1,0,36),(37,0,32,'Image',1,0,37),(38,0,33,'Image',1,0,38),(39,0,34,'Image',1,0,39),(40,0,35,'Image',1,0,40),(41,0,36,'Image',1,0,41),(42,0,37,'Image',1,0,42),(43,0,38,'Image',1,0,43),(44,0,39,'Image',1,0,44),(45,0,40,'Image',1,0,45),(46,0,41,'Image',1,0,46),(47,0,42,'Image',1,0,47),(48,0,43,'Image',1,0,48),(49,0,43,'Image',2,0,49),(50,0,44,'Image',1,0,50),(51,0,45,'Image',1,0,51),(52,0,46,'Image',1,0,52),(53,0,47,'',1,0,53),(54,0,48,'',1,0,54),(55,0,48,'',2,0,55),(56,0,48,'',3,0,56),(57,0,49,'',1,0,57),(58,0,50,'',1,0,58),(59,0,51,'',1,0,59),(60,0,51,'',2,0,60),(61,0,51,'',3,0,61),(62,0,52,'',1,0,62),(63,0,53,'',1,0,63),(64,0,54,'',1,0,64),(65,0,54,'',2,0,65),(66,0,54,'',3,0,66),(67,0,55,'',1,0,67),(68,0,56,'',1,0,68),(69,0,57,'',1,0,69),(70,0,57,'',2,0,70),(71,0,57,'',3,0,71),(72,0,58,'',1,0,72),(73,0,59,'',1,0,73),(74,0,60,'',1,0,74),(75,0,60,'',2,0,75),(76,0,60,'',3,0,76),(77,0,61,'',1,0,77),(78,0,62,'',1,0,78),(79,0,62,'',2,0,79),(80,0,62,'',3,0,80),(81,0,63,'',1,0,81),(82,0,63,'',2,0,82),(83,0,63,'',3,0,83),(84,0,64,'',1,0,84),(85,0,65,'',1,0,85),(86,0,66,'',1,0,86),(87,0,66,'',2,0,87),(88,0,66,'',3,0,88),(89,0,67,'',1,0,89),(90,0,68,'',1,0,90),(91,0,69,'',1,0,91),(92,0,69,'',2,0,92),(93,0,69,'',3,0,93),(94,0,70,'',1,0,94),(95,0,71,'',1,0,95),(96,0,72,'',1,0,96),(97,0,72,'',2,0,97),(98,0,72,'',3,0,98),(99,0,73,'',1,0,99),(100,0,74,'',1,0,100),(101,0,75,'',1,0,101),(102,0,75,'',2,0,102),(103,0,75,'',3,0,103),(104,0,76,'',1,0,104),(105,0,77,'',1,0,105),(106,0,78,'',1,0,106),(107,0,78,'',2,0,107),(108,0,78,'',3,0,108),(109,0,79,'',1,0,109),(110,0,79,'',2,0,110),(111,0,79,'',3,0,111),(112,0,80,'',1,0,112),(113,0,81,'',1,0,113),(114,0,82,'',1,0,114),(115,0,82,'',2,0,115),(116,0,82,'',3,0,116),(117,0,83,'',1,0,117),(118,0,84,'',1,0,118),(119,0,85,'',1,0,119),(120,0,85,'',2,0,120),(121,0,85,'',3,0,121),(122,0,86,'',1,0,122),(123,0,87,'',1,0,123),(124,0,88,'',1,0,124),(125,0,88,'',2,0,125),(126,0,88,'',3,0,126),(127,0,89,'',1,0,127),(128,0,90,'',1,0,128),(129,0,91,'',1,0,129),(130,0,91,'',2,0,130),(131,0,91,'',3,0,131),(132,0,92,'',1,0,132),(133,0,93,'',1,0,133),(134,0,94,'',1,0,134),(135,0,94,'',2,0,135),(136,0,94,'',3,0,136),(137,0,95,'',1,0,137),(138,0,95,'',2,0,138),(139,0,95,'',3,0,139),(140,0,96,'',1,0,140),(141,0,97,'',1,0,141),(142,0,98,'',1,0,142),(143,0,98,'',2,0,143),(144,0,98,'',3,0,144),(145,0,99,'',1,0,145),(146,0,100,'',1,0,146),(147,0,101,'',1,0,147),(148,0,101,'',2,0,148),(149,0,101,'',3,0,149),(150,0,102,'',1,0,150),(151,0,103,'',1,0,151),(152,0,104,'',1,0,152),(153,0,104,'',2,0,153),(154,0,104,'',3,0,154),(155,0,105,'',1,0,155),(156,0,106,'',1,0,156),(157,0,107,'',1,0,157),(158,0,107,'',2,0,158),(159,0,107,'',3,0,159),(160,0,108,'',1,0,160),(161,0,109,'',1,0,161),(162,0,110,'',1,0,162),(163,0,110,'',2,0,163),(164,0,110,'',3,0,164),(165,0,111,'',1,0,165),(166,0,112,'',1,0,166),(167,0,113,'',1,0,167),(168,0,113,'',2,0,168),(169,0,113,'',3,0,169),(170,0,114,'',1,0,170),(171,0,115,'',1,0,171),(172,0,116,'',1,0,172),(173,0,116,'',2,0,173),(174,0,116,'',3,0,174),(175,0,117,'',1,0,175),(176,0,118,'',1,0,176),(177,0,119,'',1,0,177),(178,0,119,'',2,0,178),(179,0,119,'',3,0,179),(180,0,120,'',1,0,180),(181,0,121,'',1,0,181),(182,0,122,'',1,0,182),(183,0,122,'',2,0,183),(184,0,122,'',3,0,184),(185,0,123,'',1,0,185),(186,0,124,'',1,0,186),(187,0,125,'',1,0,187),(188,0,125,'',2,0,188),(189,0,125,'',3,0,189),(190,0,126,'',1,0,190),(191,0,126,'',2,0,191),(192,0,126,'',3,0,192),(193,0,127,'',1,0,193),(194,0,128,'',1,0,194),(195,0,128,'',2,0,195),(196,0,128,'',3,0,196),(197,0,129,'',1,0,197),(198,0,130,'',1,0,198),(199,0,131,'',1,0,199),(200,0,131,'',2,0,200),(201,0,131,'',3,0,201),(202,0,132,'',1,0,202),(203,0,133,'',1,0,203),(204,0,134,'',1,0,204),(205,0,134,'',2,0,205),(206,0,134,'',3,0,206),(207,0,135,'',1,0,207),(208,0,136,'',1,0,208),(209,0,137,'',1,0,209),(210,0,137,'',2,0,210),(211,0,137,'',3,0,211),(212,0,138,'',1,0,212),(213,0,139,'',1,0,213),(214,0,140,'',1,0,214),(215,0,140,'',2,0,215),(216,0,140,'',3,0,216),(217,0,141,'',1,0,217),(218,0,142,'',1,0,218),(219,0,142,'',2,0,219),(220,0,142,'',3,0,220),(221,0,143,'',1,0,221),(222,0,144,'',1,0,222),(223,0,144,'',2,0,223),(224,0,144,'',3,0,224),(225,0,145,'',1,0,225),(226,0,146,'',1,0,226),(227,0,147,'',1,0,227),(228,0,147,'',2,0,228),(229,0,147,'',3,0,229),(230,0,148,'',1,0,230),(231,0,149,'',1,0,231),(232,0,150,'',1,0,232),(233,0,150,'',2,0,233),(234,0,150,'',3,0,234),(235,0,151,'',1,0,235),(236,0,152,'',1,0,236),(237,0,153,'',1,0,237),(238,0,153,'',2,0,238),(239,0,153,'',3,0,239),(240,0,154,'',1,0,240),(241,0,155,'',1,0,241),(242,0,156,'',1,0,242),(243,0,156,'',2,0,243),(244,0,156,'',3,0,244),(245,0,157,'',1,0,245),(246,0,158,'',1,0,246),(247,0,158,'',2,0,247),(248,0,158,'',3,0,248),(249,0,159,'',1,0,249),(250,0,159,'',2,0,250),(251,0,159,'',3,0,251),(252,0,160,'',1,0,252),(253,0,161,'',1,0,253),(254,0,162,'',1,0,254),(255,0,162,'',2,0,255),(256,0,162,'',3,0,256),(257,0,163,'',1,0,257),(258,0,164,'',1,0,258),(259,0,165,'',1,0,259),(260,0,165,'',2,0,260),(261,0,165,'',3,0,261),(262,0,166,'',1,0,262),(263,0,167,'',1,0,263),(264,0,168,'',1,0,264),(265,0,168,'',2,0,265),(266,0,168,'',3,0,266),(267,0,169,'',1,0,267),(268,0,170,'',1,0,268),(269,0,171,'',1,0,269),(270,0,171,'',2,0,270),(271,0,171,'',3,0,271),(272,0,172,'',1,0,272),(273,0,173,'',1,0,273),(274,0,174,'',1,0,274),(275,0,174,'',2,0,275),(276,0,174,'',3,0,276),(277,0,175,'',1,0,277),(278,0,175,'',2,0,278),(279,0,175,'',3,0,279),(280,0,176,'',1,0,280),(281,0,177,'',1,0,281),(282,0,178,'',1,0,282),(283,0,178,'',2,0,283),(284,0,178,'',3,0,284),(285,0,179,'',1,0,285),(286,0,180,'',1,0,286),(287,0,181,'',1,0,287),(288,0,181,'',2,0,288),(289,0,181,'',3,0,289),(290,0,182,'',1,0,290),(291,0,183,'',1,0,291),(292,0,184,'',1,0,292),(293,0,184,'',2,0,293),(294,0,184,'',3,0,294),(295,0,185,'',1,0,295),(296,0,186,'',1,0,296),(297,0,187,'',1,0,297),(298,0,187,'',2,0,298),(299,0,187,'',3,0,299),(300,0,188,'',1,0,300),(301,0,189,'',1,0,301),(302,0,190,'',1,0,302),(303,0,190,'',2,0,303),(304,0,190,'',3,0,304),(305,0,191,'',1,0,305),(306,0,192,'',1,0,306),(307,0,192,'',2,0,307),(308,0,192,'',3,0,308),(309,0,193,'',1,0,309),(310,0,194,'',1,0,310),(311,0,195,'',1,0,311),(312,0,195,'',2,0,312),(313,0,195,'',3,0,313),(314,0,196,'',1,0,314),(315,0,197,'',1,0,315),(316,0,198,'',1,0,316),(317,0,198,'',2,0,317),(318,0,198,'',3,0,318),(319,0,199,'',1,0,319),(320,0,200,'',1,0,320),(321,0,201,'',1,0,321),(322,0,201,'',2,0,322),(323,0,201,'',3,0,323),(324,0,202,'',1,0,324),(325,0,203,'',1,0,325),(326,0,204,'',1,0,326),(327,0,204,'',2,0,327),(328,0,204,'',3,0,328),(329,0,205,'',1,0,329),(330,0,206,'',1,0,330),(331,0,206,'',2,0,331),(332,0,206,'',3,0,332),(333,0,207,'',1,0,333),(334,0,208,'',1,0,334),(335,0,209,'',1,0,335),(336,0,209,'',2,0,336),(337,0,209,'',3,0,337),(338,0,210,'',1,0,338),(339,0,211,'',1,0,339),(340,0,212,'',1,0,340),(341,0,212,'',2,0,341),(342,0,212,'',3,0,342),(343,0,213,'',1,0,343),(344,0,214,'',1,0,344),(345,0,215,'',1,0,345),(346,0,215,'',2,0,346),(347,0,215,'',3,0,347),(348,0,216,'',1,0,348),(349,0,217,'',1,0,349),(350,0,218,'',1,0,350),(351,0,218,'',2,0,351),(352,0,218,'',3,0,352),(353,0,219,'',1,0,353),(354,0,220,'',1,0,354),(355,0,221,'',1,0,355),(356,0,221,'',2,0,356),(357,0,221,'',3,0,357),(358,0,222,'',1,0,358),(359,0,222,'',2,0,359),(360,0,222,'',3,0,360),(361,0,223,'',1,0,361),(362,0,224,'',1,0,362),(363,0,224,'',2,0,363),(364,0,224,'',3,0,364),(365,0,225,'',1,0,365),(366,0,226,'',1,0,366),(367,0,227,'',1,0,367),(368,0,227,'',2,0,368),(369,0,227,'',3,0,369),(370,0,228,'',1,0,370),(371,0,229,'',1,0,371),(372,0,230,'',1,0,372),(373,0,230,'',2,0,373),(374,0,230,'',3,0,374),(375,0,231,'',1,0,375),(376,0,232,'',1,0,376),(377,0,233,'',1,0,377),(378,0,233,'',2,0,378),(379,0,233,'',3,0,379),(380,0,234,'',1,0,380),(381,0,235,'',1,0,381),(382,0,236,'',1,0,382),(383,0,236,'',2,0,383),(384,0,236,'',3,0,384),(385,0,237,'',1,0,385),(386,0,238,'',1,0,386),(387,0,238,'',2,0,387),(388,0,238,'',3,0,388),(389,0,239,'',1,0,389),(390,0,239,'',2,0,390),(391,0,239,'',3,0,391),(392,0,240,'',1,0,392),(393,0,241,'',1,0,393),(394,0,242,'',1,0,394),(395,0,242,'',2,0,395),(396,0,242,'',3,0,396),(397,0,243,'',1,0,397),(398,0,244,'',1,0,398),(399,0,245,'',1,0,399),(400,0,245,'',2,0,400),(401,0,245,'',3,0,401),(402,0,246,'',1,0,402),(403,0,247,'',1,0,403),(404,0,248,'',1,0,404),(405,0,248,'',2,0,405),(406,0,248,'',3,0,406),(407,0,249,'',1,0,407),(408,0,250,'',1,0,408),(409,0,251,'',1,0,409),(410,0,251,'',2,0,410),(411,0,251,'',3,0,411),(412,0,252,'',1,0,412),(413,0,253,'',1,0,413),(414,0,254,'',1,0,414),(415,0,254,'',2,0,415),(416,0,254,'',3,0,416),(417,0,255,'',1,0,417),(418,0,256,'',1,0,418),(419,0,257,'',1,0,419),(420,0,257,'',2,0,420),(421,0,257,'',3,0,421),(422,0,258,'',1,0,422),(423,0,259,'',1,0,423),(424,0,260,'',1,0,424),(425,0,260,'',2,0,425),(426,0,260,'',3,0,426),(427,0,261,'',1,0,427),(428,0,262,'',1,0,428),(429,0,263,'',1,0,429),(430,0,263,'',2,0,430),(431,0,263,'',3,0,431),(432,0,264,'',1,0,432),(433,0,265,'',1,0,433),(434,0,266,'',1,0,434),(435,0,266,'',2,0,435),(436,0,266,'',3,0,436),(437,0,267,'',1,0,437),(438,0,268,'',1,0,438),(439,0,269,'',1,0,439),(440,0,269,'',2,0,440),(441,0,269,'',3,0,441),(442,0,270,'',1,0,442),(443,0,270,'',2,0,443),(444,0,270,'',3,0,444),(445,0,271,'',1,0,445),(446,0,271,'',2,0,446),(447,0,271,'',3,0,447),(448,0,272,'',1,0,448),(449,0,273,'',1,0,449),(450,0,274,'',1,0,450),(451,0,274,'',2,0,451),(452,0,274,'',3,0,452),(453,0,275,'',1,0,453),(454,0,276,'',1,0,454),(455,0,277,'',1,0,455),(456,0,277,'',2,0,456),(457,0,277,'',3,0,457),(458,0,278,'',1,0,458),(459,0,279,'',1,0,459),(460,0,280,'',1,0,460),(461,0,280,'',2,0,461),(462,0,280,'',3,0,462),(463,0,281,'',1,0,463),(464,0,282,'',1,0,464),(465,0,283,'',1,0,465),(466,0,283,'',2,0,466),(467,0,283,'',3,0,467),(468,0,284,'',1,0,468),(469,0,285,'',1,0,469),(470,0,286,'',1,0,470),(471,0,286,'',2,0,471),(472,0,286,'',3,0,472),(473,0,287,'',1,0,473),(474,0,287,'',2,0,474),(475,0,287,'',3,0,475),(476,0,288,'',1,0,476),(477,0,289,'',1,0,477),(478,0,290,'',1,0,478),(479,0,290,'',2,0,479),(480,0,290,'',3,0,480),(481,0,291,'',1,0,481),(482,0,292,'',1,0,482),(483,0,293,'',1,0,483),(484,0,293,'',2,0,484),(485,0,293,'',3,0,485),(486,0,294,'',1,0,486),(487,0,295,'',1,0,487),(488,0,296,'',1,0,488),(489,0,296,'',2,0,489),(490,0,296,'',3,0,490),(491,0,297,'',1,0,491),(492,0,298,'',1,0,492),(493,0,299,'',1,0,493),(494,0,299,'',2,0,494),(495,0,299,'',3,0,495),(496,0,300,'',1,0,496),(497,0,301,'',1,0,497),(498,0,302,'',1,0,498),(499,0,302,'',2,0,499),(500,0,302,'',3,0,500),(501,0,303,'',1,0,501),(502,0,304,'',1,0,502),(503,0,304,'',2,0,503),(504,0,304,'',3,0,504),(505,0,305,'',1,0,505),(506,0,306,'',1,0,506),(507,0,307,'',1,0,507),(508,0,307,'',2,0,508),(509,0,307,'',3,0,509),(510,0,308,'',1,0,510),(511,0,309,'',1,0,511),(512,0,310,'',1,0,512),(513,0,310,'',2,0,513),(514,0,310,'',3,0,514),(515,0,311,'',1,0,515),(516,0,312,'',1,0,516),(517,0,313,'',1,0,517),(518,0,313,'',2,0,518),(519,0,313,'',3,0,519),(520,0,314,'',1,0,520),(521,0,315,'',1,0,521),(522,0,316,'',1,0,522),(523,0,316,'',2,0,523),(524,0,316,'',3,0,524),(525,0,317,'',1,0,525),(526,0,318,'',1,0,526),(527,0,318,'',2,0,527),(528,0,318,'',3,0,528),(529,0,319,'',1,0,529),(530,0,320,'',1,0,530),(531,0,320,'',2,0,531),(532,0,320,'',3,0,532),(533,0,321,'',1,0,533),(534,0,322,'',1,0,534),(535,0,323,'',1,0,535),(536,0,323,'',2,0,536),(537,0,323,'',3,0,537),(538,0,324,'',1,0,538),(539,0,325,'',1,0,539),(540,0,326,'',1,0,540),(541,0,326,'',2,0,541),(542,0,326,'',3,0,542),(543,0,327,'',1,0,543),(544,0,328,'',1,0,544),(545,0,329,'',1,0,545),(546,0,329,'',2,0,546),(547,0,329,'',3,0,547),(548,0,330,'',1,0,548),(549,0,331,'',1,0,549),(550,0,332,'',1,0,550),(551,0,332,'',2,0,551),(552,0,332,'',3,0,552),(553,0,333,'',1,0,553),(554,0,334,'',1,0,554),(555,0,334,'',2,0,555),(556,0,334,'',3,0,556),(557,0,335,'',1,0,557),(558,0,336,'',1,0,558),(559,0,337,'',1,0,559),(560,0,337,'',2,0,560),(561,0,337,'',3,0,561),(562,0,338,'',1,0,562),(563,0,339,'',1,0,563),(564,0,340,'',1,0,564),(565,0,340,'',2,0,565),(566,0,340,'',3,0,566),(567,0,341,'',1,0,567),(568,0,342,'',1,0,568),(569,0,343,'',1,0,569),(570,0,343,'',2,0,570),(571,0,343,'',3,0,571),(572,0,344,'',1,0,572),(573,0,345,'',1,0,573),(574,0,346,'',1,0,574),(575,0,346,'',2,0,575),(576,0,346,'',3,0,576),(577,0,347,'',1,0,577),(578,0,348,'',1,0,578),(579,0,349,'',1,0,579),(580,0,349,'',2,0,580),(581,0,349,'',3,0,581),(582,0,350,'',1,0,582),(583,0,350,'',2,0,583),(584,0,350,'',3,0,584),(585,0,351,'',1,0,585),(586,0,352,'',1,0,586),(587,0,353,'',1,0,587),(588,0,353,'',2,0,588),(589,0,353,'',3,0,589),(590,0,354,'',1,0,590),(591,0,355,'',1,0,591),(592,0,356,'',1,0,592),(593,0,356,'',2,0,593),(594,0,356,'',3,0,594),(595,0,357,'',1,0,595),(596,0,358,'',1,0,596),(597,0,359,'',1,0,597),(598,0,359,'',2,0,598),(599,0,359,'',3,0,599),(600,0,360,'',1,0,600),(601,0,361,'',1,0,601),(602,0,362,'',1,0,602),(603,0,362,'',2,0,603),(604,0,362,'',3,0,604),(605,0,363,'',1,0,605),(606,0,364,'',1,0,606),(607,0,365,'',1,0,607),(608,0,365,'',2,0,608),(609,0,365,'',3,0,609),(610,0,366,'',1,0,610),(611,0,366,'',2,0,611),(612,0,366,'',3,0,612),(613,0,367,'',1,0,613),(614,0,367,'',2,0,614),(615,0,367,'',3,0,615),(616,0,368,'',1,0,616),(617,0,369,'',1,0,617),(618,0,370,'',1,0,618),(619,0,370,'',2,0,619),(620,0,370,'',3,0,620),(621,0,371,'',1,0,621),(622,0,372,'',1,0,622),(623,0,373,'',1,0,623),(624,0,373,'',2,0,624),(625,0,373,'',3,0,625),(626,0,374,'',1,0,626),(627,0,375,'',1,0,627),(628,0,376,'',1,0,628),(629,0,376,'',2,0,629),(630,0,376,'',3,0,630),(631,0,377,'',1,0,631),(632,0,378,'',1,0,632),(633,0,379,'',1,0,633),(634,0,379,'',2,0,634),(635,0,379,'',3,0,635),(636,0,380,'',1,0,636),(637,0,381,'',1,0,637),(638,0,382,'',1,0,638),(639,0,382,'',2,0,639),(640,0,382,'',3,0,640),(641,0,383,'',1,0,641),(642,0,383,'',2,0,642),(643,0,383,'',3,0,643),(644,0,384,'',1,0,644),(645,0,385,'',1,0,645),(646,0,386,'',1,0,646),(647,0,386,'',2,0,647),(648,0,386,'',3,0,648),(649,0,387,'',1,0,649),(650,0,388,'',1,0,650),(651,0,389,'',1,0,651),(652,0,389,'',2,0,652),(653,0,389,'',3,0,653),(654,0,390,'',1,0,654),(655,0,391,'',1,0,655),(656,0,392,'',1,0,656),(657,0,392,'',2,0,657),(658,0,392,'',3,0,658),(659,0,393,'',1,0,659),(660,0,394,'',1,0,660),(661,0,395,'',1,0,661),(662,0,395,'',2,0,662),(663,0,395,'',3,0,663),(664,0,396,'',1,0,664),(665,0,397,'',1,0,665),(666,0,398,'',1,0,666),(667,0,398,'',2,0,667),(668,0,398,'',3,0,668),(669,0,399,'',1,0,669),(670,0,399,'',2,0,670),(671,0,399,'',3,0,671),(672,0,400,'',1,0,672),(673,0,401,'',1,0,673),(674,0,402,'',1,0,674),(675,0,402,'',2,0,675),(676,0,402,'',3,0,676),(677,0,403,'',1,0,677),(678,0,404,'',1,0,678),(679,0,405,'',1,0,679),(680,0,405,'',2,0,680),(681,0,405,'',3,0,681),(682,0,406,'',1,0,682),(683,0,407,'',1,0,683),(684,0,408,'',1,0,684),(685,0,408,'',2,0,685),(686,0,408,'',3,0,686),(687,0,409,'',1,0,687),(688,0,410,'',1,0,688),(689,0,411,'',1,0,689),(690,0,411,'',2,0,690),(691,0,411,'',3,0,691),(692,0,412,'',1,0,692),(693,0,413,'',1,0,693),(694,0,414,'',1,0,694),(695,0,414,'',2,0,695),(696,0,414,'',3,0,696),(697,0,415,'',1,0,697),(698,0,416,'',1,0,698),(699,0,417,'',1,0,699),(700,0,417,'',2,0,700),(701,0,417,'',3,0,701),(702,0,418,'',1,0,702),(703,0,419,'',1,0,703),(704,0,420,'',1,0,704),(705,0,420,'',2,0,705),(706,0,420,'',3,0,706),(707,0,421,'',1,0,707),(708,0,422,'',1,0,708),(709,0,423,'',1,0,709),(710,0,423,'',2,0,710),(711,0,423,'',3,0,711),(712,0,424,'',1,0,712),(713,0,425,'',1,0,713),(714,0,426,'',1,0,714),(715,0,426,'',2,0,715),(716,0,426,'',3,0,716),(717,0,427,'',1,0,717),(718,0,428,'',1,0,718),(719,0,429,'',1,0,719),(720,0,429,'',2,0,720),(721,0,429,'',3,0,721),(722,0,430,'',1,0,722),(723,0,430,'',2,0,723),(724,0,430,'',3,0,724),(725,0,431,'',1,0,725),(726,0,432,'',1,0,726),(727,0,432,'',2,0,727),(728,0,433,'',1,0,728),(729,0,434,'',1,0,729),(730,0,435,'',1,0,730),(731,0,435,'',2,0,731),(732,0,436,'',1,0,732),(733,0,437,'',1,0,733),(734,0,438,'',1,0,734),(735,0,438,'',2,0,735),(736,0,439,'',1,0,736),(737,0,440,'',1,0,737),(738,0,441,'',1,0,738),(739,0,441,'',2,0,739),(740,0,442,'',1,0,740),(741,0,443,'',1,0,741),(742,0,444,'',1,0,742),(743,0,444,'',2,0,743),(744,0,445,'',1,0,744),(745,0,446,'',1,0,745),(746,0,446,'',2,0,746),(747,0,447,'',1,0,747),(748,0,448,'',1,0,748),(749,0,448,'',2,0,749),(750,0,449,'',1,0,750),(751,0,450,'',1,0,751),(752,0,451,'',1,0,752),(753,0,451,'',2,0,753),(754,0,452,'',1,0,754),(755,0,453,'',1,0,755),(756,0,454,'',1,0,756),(757,0,454,'',2,0,757),(758,0,455,'',1,0,758),(759,0,456,'',1,0,759),(760,0,457,'',1,0,760),(761,0,457,'',2,0,761),(762,0,458,'',1,0,762),(763,0,459,'',1,0,763),(764,0,460,'',1,0,764),(765,0,460,'',2,0,765),(766,0,461,'',1,0,766),(767,0,462,'',1,0,767),(768,0,462,'',2,0,768),(769,0,463,'',1,0,769),(770,0,464,'',1,0,770),(771,0,464,'',2,0,771),(772,0,464,'',3,0,772),(773,0,465,'',1,0,773),(774,0,466,'',1,0,774),(775,0,467,'',1,0,775),(776,0,467,'',2,0,776),(777,0,467,'',3,0,777),(778,0,468,'',1,0,778),(779,0,469,'',1,0,779),(780,0,470,'',1,0,780),(781,0,470,'',2,0,781),(782,0,470,'',3,0,782),(783,0,471,'',1,0,783),(784,0,472,'',1,0,784),(785,0,473,'',1,0,785),(786,0,473,'',2,0,786),(787,0,473,'',3,0,787),(788,0,474,'',1,0,788),(789,0,475,'',1,0,789),(790,0,476,'',1,0,790),(791,0,476,'',2,0,791),(792,0,476,'',3,0,792),(793,0,477,'',1,0,793),(794,0,478,'',1,0,794),(795,0,478,'',2,0,795),(796,0,478,'',3,0,796),(797,0,479,'',1,0,797),(798,0,480,'',1,0,798),(799,0,480,'',2,0,799),(800,0,481,'',1,0,800),(801,0,482,'',1,0,801),(802,0,483,'',1,0,802),(803,0,483,'',2,0,803),(804,0,484,'',1,0,804),(805,0,485,'',1,0,805),(806,0,486,'',1,0,806),(807,0,486,'',2,0,807),(808,0,487,'',1,0,808),(809,0,488,'',1,0,809),(810,0,489,'',1,0,810),(811,0,489,'',2,0,811),(812,0,490,'',1,0,812),(813,0,491,'',1,0,813),(814,0,492,'',1,0,814),(815,0,492,'',2,0,815),(816,0,493,'',1,0,816),(817,0,494,'',1,0,817),(818,0,494,'',2,0,818),(819,0,495,'',1,0,819),(820,0,496,'',1,0,820),(821,0,497,'',1,0,821),(822,0,497,'',2,0,822),(823,0,497,'',3,0,823),(824,0,498,'',1,0,824),(825,0,499,'',1,0,825),(826,0,500,'',1,0,826),(827,0,500,'',2,0,827),(828,0,500,'',3,0,828),(829,0,501,'',1,0,829),(830,0,502,'',1,0,830),(831,0,503,'',1,0,831),(832,0,503,'',2,0,832),(833,0,503,'',3,0,833),(834,0,504,'',1,0,834),(835,0,505,'',1,0,835),(836,0,506,'',1,0,836),(837,0,506,'',2,0,837),(838,0,506,'',3,0,838),(839,0,507,'',1,0,839),(840,0,508,'',1,0,840),(841,0,509,'',1,0,841),(842,0,509,'',2,0,842),(843,0,509,'',3,0,843),(844,0,510,'',1,0,844),(845,0,510,'',2,0,845),(846,0,510,'',3,0,846),(847,0,511,'',1,0,847),(848,0,511,'',2,0,848),(849,0,511,'',3,0,849),(850,0,512,'',1,0,850),(851,0,513,'',1,0,851),(852,0,514,'',1,0,852),(853,0,514,'',2,0,853),(854,0,514,'',3,0,854),(855,0,515,'',1,0,855),(856,0,516,'',1,0,856),(857,0,517,'',1,0,857),(858,0,517,'',2,0,858),(859,0,517,'',3,0,859),(860,0,518,'',1,0,860),(861,0,519,'',1,0,861),(862,0,520,'',1,0,862),(863,0,520,'',2,0,863),(864,0,520,'',3,0,864),(865,0,521,'',1,0,865),(866,0,522,'',1,0,866),(867,0,523,'',1,0,867),(868,0,523,'',2,0,868),(869,0,523,'',3,0,869),(870,0,524,'',1,0,870),(871,0,525,'',1,0,871),(872,0,526,'',1,0,872),(873,0,526,'',2,0,873),(874,0,527,'',1,0,874),(875,0,527,'',2,0,875),(876,0,527,'',3,0,876),(877,0,528,'',1,0,877),(878,0,529,'',1,0,878),(879,0,530,'',1,0,879),(880,0,530,'',2,0,880),(881,0,530,'',3,0,881),(882,0,531,'',1,0,882),(883,0,532,'',1,0,883),(884,0,533,'',1,0,884),(885,0,533,'',2,0,885),(886,0,533,'',3,0,886),(887,0,534,'',1,0,887),(888,0,535,'',1,0,888),(889,0,536,'',1,0,889),(890,0,536,'',2,0,890),(891,0,536,'',3,0,891),(892,0,537,'',1,0,892),(893,0,538,'',1,0,893),(894,0,539,'',1,0,894),(895,0,539,'',2,0,895),(896,0,539,'',3,0,896),(897,0,540,'',1,0,897),(898,0,541,'',1,0,898),(899,0,542,'',1,0,899),(900,0,542,'',2,0,900),(901,0,542,'',3,0,901),(902,0,543,'',1,0,902),(903,0,544,'',1,0,903),(904,0,544,'',2,0,904),(905,0,545,'',1,0,905),(906,0,546,'',1,0,906),(907,0,547,'',1,0,907),(908,0,547,'',2,0,908),(909,0,548,'',1,0,909),(910,0,549,'',1,0,910),(911,0,550,'',1,0,911),(912,0,550,'',2,0,912),(913,0,551,'',1,0,913),(914,0,552,'',1,0,914),(915,0,553,'',1,0,915),(916,0,553,'',2,0,916),(917,0,554,'',1,0,917),(918,0,555,'',1,0,918),(919,0,556,'',1,0,919),(920,0,556,'',2,0,920),(921,0,557,'',1,0,921),(922,0,558,'',1,0,922),(923,0,558,'',2,0,923),(924,0,559,'',1,0,924),(925,0,560,'',1,0,925),(926,0,561,'',1,0,926),(927,0,561,'',2,0,927),(928,0,561,'',3,0,928),(929,0,562,'',1,0,929),(930,0,563,'',1,0,930),(931,0,564,'',1,0,931),(932,0,564,'',2,0,932),(933,0,564,'',3,0,933),(934,0,565,'',1,0,934),(935,0,566,'',1,0,935),(936,0,567,'',1,0,936),(937,0,567,'',2,0,937),(938,0,567,'',3,0,938),(939,0,568,'',1,0,939),(940,0,569,'',1,0,940),(941,0,570,'',1,0,941),(942,0,570,'',2,0,942),(943,0,570,'',3,0,943),(944,0,571,'',1,0,944),(945,0,572,'',1,0,945),(946,0,573,'',1,0,946),(947,0,573,'',2,0,947),(948,0,573,'',3,0,948),(949,0,574,'',1,0,949),(950,0,574,'',2,0,950),(951,0,574,'',3,0,951),(952,0,575,'',1,0,952),(953,0,576,'',1,0,953),(954,0,576,'',2,0,954),(955,0,576,'',3,0,955),(956,0,577,'',1,0,956),(957,0,578,'',1,0,957),(958,0,579,'',1,0,958),(959,0,579,'',2,0,959),(960,0,579,'',3,0,960),(961,0,580,'',1,0,961),(962,0,581,'',1,0,962),(963,0,582,'',1,0,963),(964,0,582,'',2,0,964),(965,0,582,'',3,0,965),(966,0,583,'',1,0,966),(967,0,584,'',1,0,967),(968,0,585,'',1,0,968),(969,0,585,'',2,0,969),(970,0,585,'',3,0,970),(971,0,586,'',1,0,971),(972,0,587,'',1,0,972),(973,0,588,'',1,0,973),(974,0,588,'',2,0,974),(975,0,588,'',3,0,975),(976,0,589,'',1,0,976),(977,0,590,'',1,0,977),(978,0,590,'',2,0,978),(979,0,590,'',3,0,979),(980,0,591,'',1,0,980),(981,0,592,'',1,0,981),(982,0,592,'',2,0,982),(983,0,592,'',3,0,983),(984,0,593,'',1,0,984),(985,0,594,'',1,0,985),(986,0,595,'',1,0,986),(987,0,595,'',2,0,987),(988,0,595,'',3,0,988),(989,0,596,'',1,0,989),(990,0,597,'',1,0,990),(991,0,598,'',1,0,991),(992,0,598,'',2,0,992),(993,0,598,'',3,0,993),(994,0,599,'',1,0,994),(995,0,600,'',1,0,995),(996,0,601,'',1,0,996),(997,0,601,'',2,0,997),(998,0,601,'',3,0,998),(999,0,602,'',1,0,999),(1000,0,603,'',1,0,1000),(1001,0,604,'',1,0,1001),(1002,0,604,'',2,0,1002),(1003,0,604,'',3,0,1003),(1004,0,605,'',1,0,1004),(1005,0,606,'',1,0,1005),(1006,0,606,'',2,0,1006),(1007,0,606,'',3,0,1007),(1008,0,607,'',1,0,1008),(1009,0,607,'',2,0,1009),(1010,0,608,'',1,0,1010),(1011,0,609,'',1,0,1011),(1012,0,610,'',1,0,1012),(1013,0,610,'',2,0,1013),(1014,0,611,'',1,0,1014),(1015,0,612,'',1,0,1015),(1016,0,613,'',1,0,1016),(1017,0,613,'',2,0,1017),(1018,0,614,'',1,0,1018),(1019,0,615,'',1,0,1019),(1020,0,616,'',1,0,1020),(1021,0,616,'',2,0,1021),(1022,0,617,'',1,0,1022),(1023,0,618,'',1,0,1023),(1024,0,619,'',1,0,1024),(1025,0,619,'',2,0,1025),(1026,0,620,'',1,0,1026),(1027,0,621,'',1,0,1027),(1028,0,622,'',1,0,1028),(1029,0,622,'',2,0,1029),(1030,0,623,'',1,0,1030),(1031,0,624,'',1,0,1031),(1032,0,625,'',1,0,1032),(1033,0,625,'',2,0,1033),(1034,0,625,'',3,0,1034),(1035,0,626,'',1,0,1035),(1036,0,627,'',1,0,1036),(1037,0,628,'',1,0,1037),(1038,0,628,'',2,0,1038),(1039,0,628,'',3,0,1039),(1040,0,629,'',1,0,1040),(1041,0,630,'',1,0,1041),(1042,0,631,'',1,0,1042),(1043,0,631,'',2,0,1043),(1044,0,631,'',3,0,1044),(1045,0,632,'',1,0,1045),(1046,0,633,'',1,0,1046),(1047,0,634,'',1,0,1047),(1048,0,634,'',2,0,1048),(1049,0,634,'',3,0,1049),(1050,0,635,'',1,0,1050),(1051,0,636,'',1,0,1051),(1052,0,637,'',1,0,1052),(1053,0,637,'',2,0,1053),(1054,0,637,'',3,0,1054),(1055,0,638,'',1,0,1055),(1056,0,638,'',2,0,1056),(1057,0,638,'',3,0,1057),(1058,0,639,'',1,0,1058),(1059,0,640,'',1,0,1059),(1060,0,641,'',1,0,1060),(1061,0,641,'',2,0,1061),(1062,0,641,'',3,0,1062),(1063,0,641,'',4,0,1063),(1064,0,642,'',1,0,1064),(1065,0,643,'',1,0,1065),(1066,0,644,'',1,0,1066),(1067,0,644,'',2,0,1067),(1068,0,644,'',3,0,1068),(1069,0,644,'',4,0,1069),(1070,0,645,'',1,0,1070),(1071,0,646,'',1,0,1071),(1072,0,647,'',1,0,1072),(1073,0,647,'',2,0,1073),(1074,0,647,'',3,0,1074),(1075,0,647,'',4,0,1075),(1076,0,648,'',1,0,1076),(1077,0,649,'',1,0,1077),(1078,0,650,'',1,0,1078),(1079,0,650,'',2,0,1079),(1080,0,650,'',3,0,1080),(1081,0,650,'',4,0,1081),(1082,0,651,'',1,0,1082),(1083,0,652,'',1,0,1083),(1084,0,653,'',1,0,1084),(1085,0,653,'',2,0,1085),(1086,0,653,'',3,0,1086),(1087,0,653,'',4,0,1087),(1088,0,654,'',1,0,1088),(1089,0,654,'',2,0,1089),(1090,0,654,'',3,0,1090),(1091,0,654,'',4,0,1091),(1092,0,655,'',1,0,1092),(1093,0,656,'',1,0,1093),(1094,0,657,'',1,0,1094),(1095,0,658,'',1,0,1095),(1096,0,659,'',1,0,1096),(1097,0,660,'',1,0,1097),(1098,0,661,'',1,0,1098),(1099,0,662,'',1,0,1099),(1100,0,663,'',1,0,1100),(1101,0,664,'',1,0,1101),(1102,0,665,'',1,0,1102),(1103,0,666,'',1,0,1103),(1104,0,667,'',1,0,1104),(1105,0,668,'',1,0,1105),(1106,0,669,'',1,0,1106),(1107,0,670,'',1,0,1107),(1108,0,671,'',1,0,1108),(1109,0,671,'',2,0,1109),(1110,0,671,'',3,0,1110),(1111,0,672,'',1,0,1111),(1112,0,672,'',2,0,1112),(1113,0,672,'',3,0,1113),(1114,0,673,'',1,0,1114),(1115,0,673,'',2,0,1115),(1116,0,673,'',3,0,1116),(1117,0,674,'',1,0,1117),(1118,0,674,'',2,0,1118),(1119,0,674,'',3,0,1119),(1120,0,675,'',1,0,1120),(1121,0,675,'',2,0,1121),(1122,0,675,'',3,0,1122),(1123,0,676,'',1,0,1123),(1124,0,676,'',2,0,1124),(1125,0,676,'',3,0,1125),(1126,0,677,'',1,0,1126),(1127,0,677,'',2,0,1127),(1128,0,678,'',1,0,1128),(1129,0,678,'',2,0,1129),(1130,0,679,'',1,0,1130),(1131,0,679,'',2,0,1131),(1132,0,680,'',1,0,1132),(1133,0,680,'',2,0,1133),(1134,0,681,'',1,0,1134),(1135,0,681,'',2,0,1135),(1136,0,682,'',1,0,1136),(1137,0,682,'',2,0,1137),(1138,0,683,'',1,0,1138),(1139,0,683,'',2,0,1139),(1140,0,684,'',1,0,1140),(1141,0,684,'',2,0,1141),(1142,0,685,'',1,0,1142),(1143,0,685,'',2,0,1143),(1144,0,686,'',1,0,1144),(1145,0,686,'',2,0,1145),(1146,0,687,'',1,0,1146),(1147,0,687,'',2,0,1147),(1148,0,688,'',1,0,1148),(1149,0,688,'',2,0,1149),(1150,0,689,'',1,0,1150),(1151,0,689,'',2,0,1151),(1152,0,690,'',1,0,1152),(1153,0,690,'',2,0,1153),(1154,0,691,'',1,0,1154),(1155,0,691,'',2,0,1155),(1156,0,692,'',1,0,1156),(1157,0,692,'',2,0,1157),(1158,0,693,'',1,0,1158),(1159,0,693,'',2,0,1159),(1160,0,694,'',1,0,1160),(1161,0,694,'',2,0,1161),(1162,0,695,'',1,0,1162),(1163,0,695,'',2,0,1163),(1164,0,695,'',3,0,1164),(1165,0,696,'',1,0,1165),(1166,0,696,'',2,0,1166),(1167,0,696,'',3,0,1167),(1168,0,697,'',1,0,1168),(1169,0,697,'',2,0,1169),(1170,0,697,'',3,0,1170),(1171,0,698,'',1,0,1171),(1172,0,698,'',2,0,1172),(1173,0,698,'',3,0,1173),(1174,0,699,'',1,0,1174),(1175,0,699,'',2,0,1175),(1176,0,699,'',3,0,1176),(1177,0,700,'',1,0,1177),(1178,0,700,'',2,0,1178),(1179,0,700,'',3,0,1179),(1180,0,701,'',1,0,1180),(1181,0,701,'',2,0,1181),(1182,0,701,'',3,0,1182),(1183,0,702,'',1,0,1183),(1184,0,702,'',2,0,1184),(1185,0,702,'',3,0,1185),(1186,0,703,'',1,0,1186),(1187,0,703,'',2,0,1187),(1188,0,703,'',3,0,1188),(1189,0,704,'',1,0,1189),(1190,0,704,'',2,0,1190),(1191,0,704,'',3,0,1191),(1192,0,705,'',1,0,1192),(1193,0,705,'',2,0,1193),(1194,0,705,'',3,0,1194),(1195,0,706,'',1,0,1195),(1196,0,706,'',2,0,1196),(1197,0,706,'',3,0,1197),(1198,0,707,'',1,0,1198),(1199,0,707,'',2,0,1199),(1200,0,708,'',1,0,1200),(1201,0,708,'',2,0,1201),(1202,0,709,'',1,0,1202),(1203,0,709,'',2,0,1203),(1204,0,710,'',1,0,1204),(1205,0,710,'',2,0,1205),(1206,0,711,'',1,0,1206),(1207,0,711,'',2,0,1207),(1208,0,712,'',1,0,1208),(1209,0,712,'',2,0,1209),(1210,0,713,'',1,0,1210),(1211,0,713,'',2,0,1211),(1212,0,714,'',1,0,1212),(1213,0,714,'',2,0,1213),(1214,0,715,'',1,0,1214),(1215,0,715,'',2,0,1215),(1216,0,716,'',1,0,1216),(1217,0,716,'',2,0,1217),(1218,0,717,'',1,0,1218),(1219,0,717,'',2,0,1219),(1220,0,718,'',1,0,1220),(1221,0,718,'',2,0,1221),(1222,0,719,'',1,0,1222),(1223,0,719,'',2,0,1223),(1224,0,720,'',1,0,1224),(1225,0,720,'',2,0,1225),(1226,0,721,'',1,0,1226),(1227,0,721,'',2,0,1227),(1228,0,722,'',1,0,1228),(1229,0,722,'',2,0,1229),(1230,0,723,'',1,0,1230),(1231,0,723,'',2,0,1231),(1232,0,724,'',1,0,1232),(1233,0,724,'',2,0,1233),(1234,0,725,'',1,0,1234),(1235,0,726,'',1,0,1235),(1236,0,726,'',2,0,1236),(1237,0,727,'',1,0,1237),(1238,0,728,'',1,0,1238),(1239,0,729,'',1,0,1239),(1240,0,729,'',2,0,1240),(1241,0,730,'',1,0,1241),(1242,0,731,'',1,0,1242),(1243,0,732,'',1,0,1243),(1244,0,732,'',2,0,1244),(1245,0,733,'',1,0,1245),(1246,0,734,'',1,0,1246),(1247,0,735,'',1,0,1247),(1248,0,735,'',2,0,1248),(1249,0,736,'',1,0,1249),(1250,0,737,'',1,0,1250),(1251,0,737,'',2,0,1251),(1252,0,738,'',1,0,1252),(1253,0,739,'',1,0,1253),(1254,0,739,'',2,0,1254),(1255,0,740,'',1,0,1255),(1256,0,741,'',1,0,1256),(1257,0,742,'',1,0,1257),(1258,0,742,'',2,0,1258),(1259,0,743,'',1,0,1259),(1260,0,744,'',1,0,1260),(1261,0,745,'',1,0,1261),(1262,0,745,'',2,0,1262),(1263,0,746,'',1,0,1263),(1264,0,747,'',1,0,1264),(1265,0,748,'',1,0,1265),(1266,0,748,'',2,0,1266),(1267,0,749,'',1,0,1267),(1268,0,750,'',1,0,1268),(1269,0,750,'',2,0,1269),(1270,0,751,'',1,0,1270),(1271,0,752,'',1,0,1271),(1272,0,753,'',1,0,1272),(1273,0,754,'',1,0,1273),(1274,0,755,'',1,0,1274),(1275,0,756,'',1,0,1275),(1276,0,757,'',1,0,1276),(1277,0,758,'',1,0,1277),(1278,0,759,'',1,0,1278),(1279,0,760,'',1,0,1279),(1280,0,761,'',1,0,1280),(1281,0,762,'',1,0,1281),(1282,0,763,'',1,0,1282),(1283,0,763,'',2,0,1283),(1284,0,763,'',3,0,1284),(1285,0,764,'',1,0,1285),(1286,0,765,'',1,0,1286),(1287,0,765,'',2,0,1287),(1288,0,766,'',1,0,1288),(1289,0,767,'',1,0,1289),(1290,0,768,'',1,0,1290),(1291,0,768,'',2,0,1291),(1292,0,769,'',1,0,1292),(1293,0,770,'',1,0,1293),(1294,0,771,'',1,0,1294),(1295,0,771,'',2,0,1295),(1296,0,772,'',1,0,1296),(1297,0,773,'',1,0,1297),(1298,0,774,'',1,0,1298),(1299,0,774,'',2,0,1299),(1300,0,775,'',1,0,1300),(1301,0,776,'',1,0,1301),(1302,0,776,'',2,0,1302),(1303,0,777,'',1,0,1303),(1304,0,778,'',1,0,1304),(1305,0,778,'',2,0,1305),(1306,0,778,'',3,0,1306),(1307,0,779,'',1,0,1307),(1308,0,780,'',1,0,1308),(1309,0,781,'',1,0,1309),(1310,0,781,'',2,0,1310),(1311,0,781,'',3,0,1311),(1312,0,782,'',1,0,1312),(1313,0,783,'',1,0,1313),(1314,0,784,'',1,0,1314),(1315,0,784,'',2,0,1315),(1316,0,784,'',3,0,1316),(1317,0,785,'',1,0,1317),(1318,0,786,'',1,0,1318),(1319,0,787,'',1,0,1319),(1320,0,787,'',2,0,1320),(1321,0,787,'',3,0,1321),(1322,0,788,'',1,0,1322),(1323,0,789,'',1,0,1323),(1324,0,789,'',2,0,1324),(1325,0,789,'',3,0,1325),(1326,0,790,'',1,0,1326),(1327,0,790,'',2,0,1327),(1328,0,790,'',3,0,1328),(1329,0,791,'',1,0,1329),(1330,0,792,'',1,0,1330),(1331,0,793,'',1,0,1331),(1332,0,793,'',2,0,1332),(1333,0,793,'',3,0,1333),(1334,0,794,'',1,0,1334),(1335,0,795,'',1,0,1335),(1336,0,796,'',1,0,1336),(1337,0,796,'',2,0,1337),(1338,0,796,'',3,0,1338),(1339,0,797,'',1,0,1339),(1340,0,798,'',1,0,1340),(1341,0,799,'',1,0,1341),(1342,0,799,'',2,0,1342),(1343,0,799,'',3,0,1343),(1344,0,800,'',1,0,1344),(1345,0,801,'',1,0,1345),(1346,0,802,'',1,0,1346),(1347,0,802,'',2,0,1347),(1348,0,802,'',3,0,1348),(1349,0,803,'',1,0,1349),(1350,0,804,'',1,0,1350),(1351,0,804,'',2,0,1351),(1352,0,804,'',3,0,1352),(1353,0,804,'',4,0,1353),(1354,0,804,'',5,0,1354),(1355,0,805,'',1,0,1355),(1356,0,806,'',1,0,1356),(1357,0,807,'',1,0,1357),(1358,0,807,'',2,0,1358),(1359,0,807,'',3,0,1359),(1360,0,807,'',4,0,1360),(1361,0,807,'',5,0,1361),(1362,0,808,'',1,0,1362),(1363,0,809,'',1,0,1363),(1364,0,810,'',1,0,1364),(1365,0,810,'',2,0,1365),(1366,0,810,'',3,0,1366),(1367,0,810,'',4,0,1367),(1368,0,810,'',5,0,1368),(1369,0,811,'',1,0,1369),(1370,0,812,'',1,0,1370),(1371,0,813,'',1,0,1371),(1372,0,813,'',2,0,1372),(1373,0,813,'',3,0,1373),(1374,0,813,'',4,0,1374),(1375,0,813,'',5,0,1375),(1376,0,814,'',1,0,1376),(1377,0,815,'',1,0,1377),(1378,0,815,'',2,0,1378),(1379,0,815,'',3,0,1379),(1380,0,815,'',4,0,1380),(1381,0,815,'',5,0,1381),(1382,0,816,'',1,0,1382),(1383,0,817,'',1,0,1383),(1384,0,817,'',2,0,1384),(1385,0,817,'',3,0,1385),(1386,0,818,'',1,0,1386),(1387,0,819,'',1,0,1387),(1388,0,820,'',1,0,1388),(1389,0,820,'',2,0,1389),(1390,0,820,'',3,0,1390),(1391,0,821,'',1,0,1391),(1392,0,822,'',1,0,1392),(1393,0,823,'',1,0,1393),(1394,0,823,'',2,0,1394),(1395,0,823,'',3,0,1395),(1396,0,824,'',1,0,1396),(1397,0,825,'',1,0,1397),(1398,0,826,'',1,0,1398),(1399,0,826,'',2,0,1399),(1400,0,826,'',3,0,1400),(1401,0,827,'',1,0,1401),(1402,0,828,'',1,0,1402),(1403,0,828,'',2,0,1403),(1404,0,828,'',3,0,1404),(1405,0,829,'',1,0,1405),(1406,0,830,'',1,0,1406),(1407,0,830,'',2,0,1407),(1408,0,830,'',3,0,1408),(1409,0,831,'',1,0,1409),(1410,0,832,'',1,0,1410),(1411,0,833,'',1,0,1411),(1412,0,833,'',2,0,1412),(1413,0,833,'',3,0,1413),(1414,0,834,'',1,0,1414),(1415,0,835,'',1,0,1415),(1416,0,836,'',1,0,1416),(1417,0,836,'',2,0,1417),(1418,0,836,'',3,0,1418),(1419,0,837,'',1,0,1419),(1420,0,838,'',1,0,1420),(1421,0,839,'',1,0,1421),(1422,0,839,'',2,0,1422),(1423,0,839,'',3,0,1423),(1424,0,840,'',1,0,1424),(1425,0,841,'',1,0,1425),(1426,0,841,'',2,0,1426),(1427,0,841,'',3,0,1427),(1428,0,842,'',1,0,1428),(1429,0,842,'',2,0,1429),(1430,0,842,'',3,0,1430),(1431,0,843,'',1,0,1431),(1432,0,844,'',1,0,1432),(1433,0,845,'',1,0,1433),(1434,0,845,'',2,0,1434),(1435,0,845,'',3,0,1435),(1436,0,846,'',1,0,1436),(1437,0,847,'',1,0,1437),(1438,0,848,'',1,0,1438),(1439,0,848,'',2,0,1439),(1440,0,848,'',3,0,1440),(1441,0,849,'',1,0,1441),(1442,0,850,'',1,0,1442),(1443,0,851,'',1,0,1443),(1444,0,851,'',2,0,1444),(1445,0,851,'',3,0,1445),(1446,0,852,'',1,0,1446),(1447,0,853,'',1,0,1447),(1448,0,854,'',1,0,1448),(1449,0,854,'',2,0,1449),(1450,0,854,'',3,0,1450),(1451,0,855,'',1,0,1451),(1452,0,856,'',1,0,1452),(1453,0,856,'',2,0,1453),(1454,0,856,'',3,0,1454),(1455,0,857,'',1,0,1455),(1456,0,858,'',1,0,1456),(1457,0,859,'',1,0,1457),(1458,0,859,'',2,0,1458),(1459,0,859,'',3,0,1459),(1460,0,860,'',1,0,1460),(1461,0,861,'',1,0,1461),(1462,0,862,'',1,0,1462),(1463,0,862,'',2,0,1463),(1464,0,862,'',3,0,1464),(1465,0,863,'',1,0,1465),(1466,0,864,'',1,0,1466),(1467,0,865,'',1,0,1467),(1468,0,865,'',2,0,1468),(1469,0,865,'',3,0,1469),(1470,0,866,'',1,0,1470),(1471,0,867,'',1,0,1471),(1472,0,867,'',2,0,1472),(1473,0,867,'',3,0,1473),(1474,0,868,'',1,0,1474),(1475,0,868,'',2,0,1475),(1476,0,869,'',1,0,1476),(1477,0,870,'',1,0,1477),(1478,0,871,'',1,0,1478),(1479,0,871,'',2,0,1479),(1480,0,872,'',1,0,1480),(1481,0,873,'',1,0,1481),(1482,0,874,'',1,0,1482),(1483,0,874,'',2,0,1483),(1484,0,875,'',1,0,1484),(1485,0,876,'',1,0,1485),(1486,0,877,'',1,0,1486),(1487,0,877,'',2,0,1487),(1488,0,878,'',1,0,1488),(1489,0,879,'',1,0,1489),(1490,0,880,'',1,0,1490),(1491,0,880,'',2,0,1491),(1492,0,881,'',1,0,1492),(1493,0,882,'',1,0,1493),(1494,0,882,'',2,0,1494),(1495,0,883,'',1,0,1495),(1496,0,884,'',1,0,1496),(1497,0,885,'',1,0,1497),(1498,0,885,'',2,0,1498),(1499,0,886,'',1,0,1499),(1500,0,887,'',1,0,1500),(1501,0,888,'',1,0,1501),(1502,0,888,'',2,0,1502),(1503,0,889,'',1,0,1503),(1504,0,890,'',1,0,1504),(1505,0,891,'',1,0,1505),(1506,0,891,'',2,0,1506),(1507,0,892,'',1,0,1507),(1508,0,893,'',1,0,1508),(1509,0,893,'',2,0,1509),(1510,0,894,'',1,0,1510),(1511,0,894,'',2,0,1511),(1512,0,894,'',3,0,1512),(1513,0,895,'',1,0,1513),(1514,0,895,'',2,0,1514),(1515,0,895,'',3,0,1515),(1516,0,896,'',1,0,1516),(1517,0,896,'',2,0,1517),(1518,0,896,'',3,0,1518),(1519,0,897,'',1,0,1519),(1520,0,897,'',2,0,1520),(1521,0,897,'',3,0,1521),(1522,0,898,'',1,0,1522),(1523,0,898,'',2,0,1523),(1524,0,898,'',3,0,1524),(1525,0,899,'',1,0,1525),(1526,0,900,'',1,0,1526),(1527,0,900,'',2,0,1527),(1528,0,900,'',3,0,1528),(1529,0,901,'',1,0,1529),(1530,0,902,'',1,0,1530),(1531,0,903,'',1,0,1531),(1532,0,903,'',2,0,1532),(1533,0,903,'',3,0,1533),(1534,0,904,'',1,0,1534),(1535,0,905,'',1,0,1535),(1536,0,906,'',1,0,1536),(1537,0,906,'',2,0,1537),(1538,0,906,'',3,0,1538),(1539,0,907,'',1,0,1539),(1540,0,908,'',1,0,1540),(1541,0,909,'',1,0,1541),(1542,0,909,'',2,0,1542),(1543,0,909,'',3,0,1543),(1544,0,910,'',1,0,1544),(1545,0,911,'',1,0,1545),(1546,0,911,'',2,0,1546),(1547,0,911,'',3,0,1547),(1548,0,912,'',1,0,1548),(1549,0,912,'',2,0,1549),(1550,0,913,'',1,0,1550),(1551,0,914,'',1,0,1551),(1552,0,915,'',1,0,1552),(1553,0,915,'',2,0,1553),(1554,0,916,'',1,0,1554),(1555,0,917,'',1,0,1555),(1556,0,918,'',1,0,1556),(1557,0,918,'',2,0,1557),(1558,0,919,'',1,0,1558),(1559,0,920,'',1,0,1559),(1560,0,921,'',1,0,1560),(1561,0,921,'',2,0,1561),(1562,0,922,'',1,0,1562),(1563,0,923,'',1,0,1563),(1564,0,924,'',1,0,1564),(1565,0,924,'',2,0,1565),(1566,0,925,'',1,0,1566),(1567,0,926,'',1,0,1567),(1568,0,927,'',1,0,1568),(1569,0,927,'',2,0,1569),(1570,0,927,'',3,0,1570),(1571,0,928,'',1,0,1571),(1572,0,929,'',1,0,1572),(1573,0,930,'',1,0,1573),(1574,0,930,'',2,0,1574),(1575,0,930,'',3,0,1575),(1576,0,931,'',1,0,1576),(1577,0,932,'',1,0,1577),(1578,0,933,'',1,0,1578),(1579,0,933,'',2,0,1579),(1580,0,933,'',3,0,1580),(1581,0,934,'',1,0,1581),(1582,0,935,'',1,0,1582),(1583,0,936,'',1,0,1583),(1584,0,936,'',2,0,1584),(1585,0,936,'',3,0,1585),(1586,0,937,'',1,0,1586),(1587,0,937,'',2,0,1587),(1588,0,937,'',3,0,1588),(1589,0,938,'',1,0,1589),(1590,0,939,'',1,0,1590),(1591,0,939,'',2,0,1591),(1592,0,939,'',3,0,1592),(1593,0,940,'',1,0,1593),(1594,0,941,'',1,0,1594),(1595,0,942,'',1,0,1595),(1596,0,942,'',2,0,1596),(1597,0,942,'',3,0,1597),(1598,0,943,'',1,0,1598),(1599,0,944,'',1,0,1599),(1600,0,945,'',1,0,1600),(1601,0,945,'',2,0,1601),(1602,0,945,'',3,0,1602),(1603,0,946,'',1,0,1603),(1604,0,947,'',1,0,1604),(1605,0,948,'',1,0,1605),(1606,0,948,'',2,0,1606),(1607,0,948,'',3,0,1607),(1608,0,949,'',1,0,1608),(1609,0,950,'',1,0,1609),(1610,0,950,'',2,0,1610),(1611,0,950,'',3,0,1611),(1612,0,951,'',1,0,1612),(1613,0,951,'',2,0,1613),(1614,0,951,'',3,0,1614),(1615,0,952,'',1,0,1615),(1616,0,953,'',1,0,1616),(1617,0,954,'',1,0,1617),(1618,0,954,'',2,0,1618),(1619,0,954,'',3,0,1619),(1620,0,955,'',1,0,1620),(1621,0,956,'',1,0,1621),(1622,0,957,'',1,0,1622),(1623,0,957,'',2,0,1623),(1624,0,957,'',3,0,1624),(1625,0,958,'',1,0,1625),(1626,0,959,'',1,0,1626),(1627,0,960,'',1,0,1627),(1628,0,960,'',2,0,1628),(1629,0,960,'',3,0,1629),(1630,0,961,'',1,0,1630),(1631,0,962,'',1,0,1631),(1632,0,963,'',1,0,1632),(1633,0,963,'',2,0,1633),(1634,0,963,'',3,0,1634),(1635,0,964,'',1,0,1635),(1636,0,964,'',2,0,1636),(1637,0,965,'',1,0,1637),(1638,0,966,'',1,0,1638),(1639,0,967,'',1,0,1639),(1640,0,967,'',2,0,1640),(1641,0,968,'',1,0,1641),(1642,0,969,'',1,0,1642),(1643,0,970,'',1,0,1643),(1644,0,970,'',2,0,1644),(1645,0,971,'',1,0,1645),(1646,0,972,'',1,0,1646),(1647,0,973,'',1,0,1647),(1648,0,973,'',2,0,1648),(1649,0,974,'',1,0,1649),(1650,0,975,'',1,0,1650),(1651,0,976,'',1,0,1651),(1652,0,976,'',2,0,1652),(1653,0,977,'',1,0,1653),(1654,0,978,'',1,0,1654),(1655,0,978,'',2,0,1655),(1656,0,978,'',3,0,1656),(1657,0,979,'',1,0,1657),(1658,0,980,'',1,0,1658),(1659,0,981,'',1,0,1659),(1660,0,981,'',2,0,1660),(1661,0,981,'',3,0,1661),(1662,0,982,'',1,0,1662),(1663,0,983,'',1,0,1663),(1664,0,984,'',1,0,1664),(1665,0,984,'',2,0,1665),(1666,0,984,'',3,0,1666),(1667,0,985,'',1,0,1667),(1668,0,986,'',1,0,1668),(1669,0,987,'',1,0,1669),(1670,0,987,'',2,0,1670),(1671,0,987,'',3,0,1671),(1672,0,988,'',1,0,1672),(1673,0,989,'',1,0,1673),(1674,0,989,'',2,0,1674),(1675,0,989,'',3,0,1675),(1676,0,990,'',1,0,1676),(1677,0,990,'',2,0,1677),(1678,0,990,'',3,0,1678),(1679,0,991,'',1,0,1679),(1680,0,992,'',1,0,1680),(1681,0,993,'',1,0,1681),(1682,0,993,'',2,0,1682),(1683,0,993,'',3,0,1683),(1684,0,994,'',1,0,1684),(1685,0,995,'',1,0,1685),(1686,0,996,'',1,0,1686),(1687,0,996,'',2,0,1687),(1688,0,996,'',3,0,1688),(1689,0,997,'',1,0,1689),(1690,0,998,'',1,0,1690),(1691,0,999,'',1,0,1691),(1692,0,999,'',2,0,1692),(1693,0,999,'',3,0,1693),(1694,0,1000,'',1,0,1694),(1695,0,1001,'',1,0,1695),(1696,0,1002,'',1,0,1696),(1697,0,1002,'',2,0,1697),(1698,0,1002,'',3,0,1698),(1699,0,1003,'',1,0,1699),(1700,0,1004,'',1,0,1700),(1701,0,1004,'',2,0,1701),(1702,0,1005,'',1,0,1702),(1703,0,1006,'',1,0,1703),(1704,0,1007,'',1,0,1704),(1705,0,1007,'',2,0,1705),(1706,0,1008,'',1,0,1706),(1707,0,1009,'',1,0,1707),(1708,0,1010,'',1,0,1708),(1709,0,1010,'',2,0,1709),(1710,0,1011,'',1,0,1710),(1711,0,1012,'',1,0,1711),(1712,0,1013,'',1,0,1712),(1713,0,1013,'',2,0,1713),(1714,0,1014,'',1,0,1714),(1715,0,1015,'',1,0,1715),(1716,0,1015,'',2,0,1716),(1717,0,1016,'',1,0,1717),(1718,0,1017,'',1,0,1718),(1719,0,1018,'',1,0,1719),(1720,0,1018,'',2,0,1720),(1721,0,1019,'',1,0,1721),(1722,0,1020,'',1,0,1722),(1723,0,1021,'',1,0,1723),(1724,0,1021,'',2,0,1724),(1725,0,1022,'',1,0,1725),(1726,0,1023,'',1,0,1726),(1727,0,1024,'',1,0,1727),(1728,0,1024,'',2,0,1728),(1729,0,1025,'',1,0,1729),(1730,0,1026,'',1,0,1730),(1731,0,1027,'',1,0,1731),(1732,0,1027,'',2,0,1732),(1733,0,1028,'',1,0,1733),(1734,0,1028,'',2,0,1734),(1735,0,1029,'',1,0,1735),(1736,0,1029,'',2,0,1736),(1737,0,1029,'',3,0,1737),(1738,0,1030,'',1,0,1738),(1739,0,1031,'',1,0,1739),(1740,0,1032,'',1,0,1740),(1741,0,1032,'',2,0,1741),(1742,0,1032,'',3,0,1742),(1743,0,1033,'',1,0,1743),(1744,0,1034,'',1,0,1744),(1745,0,1035,'',1,0,1745),(1746,0,1035,'',2,0,1746),(1747,0,1035,'',3,0,1747),(1748,0,1036,'',1,0,1748),(1749,0,1037,'',1,0,1749),(1750,0,1038,'',1,0,1750),(1751,0,1038,'',2,0,1751),(1752,0,1038,'',3,0,1752),(1753,0,1039,'',1,0,1753),(1754,0,1040,'',1,0,1754),(1755,0,1041,'',1,0,1755),(1756,0,1041,'',2,0,1756),(1757,0,1041,'',3,0,1757),(1758,0,1042,'',1,0,1758),(1759,0,1043,'',1,0,1759),(1760,0,1044,'',1,0,1760),(1761,0,1044,'',2,0,1761),(1762,0,1044,'',3,0,1762),(1763,0,1045,'',1,0,1763),(1764,0,1045,'',2,0,1764),(1765,0,1045,'',3,0,1765),(1766,0,1046,'',1,0,1766),(1767,0,1047,'',1,0,1767),(1768,0,1048,'',1,0,1768),(1769,0,1048,'',2,0,1769),(1770,0,1048,'',3,0,1770),(1771,0,1049,'',1,0,1771),(1772,0,1050,'',1,0,1772),(1773,0,1051,'',1,0,1773),(1774,0,1051,'',2,0,1774),(1775,0,1051,'',3,0,1775),(1776,0,1052,'',1,0,1776),(1777,0,1053,'',1,0,1777),(1778,0,1054,'',1,0,1778),(1779,0,1054,'',2,0,1779),(1780,0,1054,'',3,0,1780),(1781,0,1055,'',1,0,1781),(1782,0,1056,'',1,0,1782),(1783,0,1057,'',1,0,1783),(1784,0,1057,'',2,0,1784),(1785,0,1057,'',3,0,1785),(1786,0,1058,'',1,0,1786),(1787,0,1059,'',1,0,1787),(1788,0,1060,'',1,0,1788),(1789,0,1060,'',2,0,1789),(1790,0,1060,'',3,0,1790),(1791,0,1061,'',1,0,1791),(1792,0,1062,'',1,0,1792),(1793,0,1063,'',1,0,1793),(1794,0,1063,'',2,0,1794),(1795,0,1063,'',3,0,1795),(1796,0,1064,'',1,0,1796),(1797,0,1065,'',1,0,1797),(1798,0,1066,'',1,0,1798),(1799,0,1066,'',2,0,1799),(1800,0,1066,'',3,0,1800),(1801,0,1067,'',1,0,1801),(1802,0,1068,'',1,0,1802),(1803,0,1069,'',1,0,1803),(1804,0,1069,'',2,0,1804),(1805,0,1069,'',3,0,1805),(1806,0,1070,'',1,0,1806),(1807,0,1071,'',1,0,1807),(1808,0,1072,'',1,0,1808),(1809,0,1072,'',2,0,1809),(1810,0,1072,'',3,0,1810),(1811,0,1073,'',1,0,1811),(1812,0,1074,'',1,0,1812),(1813,0,1075,'',1,0,1813),(1814,0,1075,'',2,0,1814),(1815,0,1075,'',3,0,1815),(1816,0,1076,'',1,0,1816),(1817,0,1076,'',2,0,1817),(1818,0,1076,'',3,0,1818),(1819,0,1077,'',1,0,1819),(1820,0,1077,'',2,0,1820),(1821,0,1077,'',3,0,1821),(1822,0,1078,'',1,0,1822),(1823,0,1079,'',1,0,1823),(1824,0,1080,'',1,0,1824),(1825,0,1080,'',2,0,1825),(1826,0,1080,'',3,0,1826),(1827,0,1081,'',1,0,1827),(1828,0,1082,'',1,0,1828),(1829,0,1083,'',1,0,1829),(1830,0,1083,'',2,0,1830),(1831,0,1083,'',3,0,1831),(1832,0,1084,'',1,0,1832),(1833,0,1085,'',1,0,1833),(1834,0,1086,'',1,0,1834),(1835,0,1086,'',2,0,1835),(1836,0,1086,'',3,0,1836),(1837,0,1087,'',1,0,1837),(1838,0,1088,'',1,0,1838),(1839,0,1089,'',1,0,1839),(1840,0,1089,'',2,0,1840),(1841,0,1089,'',3,0,1841),(1842,0,1090,'',1,0,1842),(1843,0,1091,'',1,0,1843),(1844,0,1092,'',1,0,1844),(1845,0,1092,'',2,0,1845),(1846,0,1092,'',3,0,1846),(1847,0,1093,'',1,0,1847),(1848,0,1094,'',1,0,1848),(1849,0,1095,'',1,0,1849),(1850,0,1095,'',2,0,1850),(1851,0,1096,'',1,0,1851),(1852,0,1097,'',1,0,1852),(1853,0,1098,'',1,0,1853),(1854,0,1098,'',2,0,1854),(1855,0,1099,'',1,0,1855),(1856,0,1100,'',1,0,1856),(1857,0,1101,'',1,0,1857),(1858,0,1101,'',2,0,1858),(1859,0,1102,'',1,0,1859),(1860,0,1103,'',1,0,1860),(1861,0,1104,'',1,0,1861),(1862,0,1104,'',2,0,1862),(1863,0,1105,'',1,0,1863),(1864,0,1106,'',1,0,1864),(1865,0,1107,'',1,0,1865),(1866,0,1107,'',2,0,1866),(1867,0,1108,'',1,0,1867),(1868,0,1108,'',2,0,1868),(1869,0,1109,'',1,0,1869),(1870,0,1109,'',2,0,1870),(1871,0,1109,'',3,0,1871),(1872,0,1110,'',1,0,1872),(1873,0,1110,'',2,0,1873),(1874,0,1110,'',3,0,1874),(1875,0,1111,'',1,0,1875),(1876,0,1111,'',2,0,1876),(1877,0,1111,'',3,0,1877),(1878,0,1112,'',1,0,1878),(1879,0,1112,'',2,0,1879),(1880,0,1112,'',3,0,1880),(1881,0,1113,'',1,0,1881),(1882,0,1113,'',2,0,1882),(1883,0,1113,'',3,0,1883),(1884,0,1114,'',1,0,1884),(1885,0,1114,'',2,0,1885),(1886,0,1114,'',3,0,1886),(1887,0,1115,'',1,0,1887),(1888,0,1115,'',2,0,1888),(1889,0,1115,'',3,0,1889),(1890,0,1116,'',1,0,1890),(1891,0,1117,'',1,0,1891),(1892,0,1118,'',1,0,1892),(1893,0,1118,'',2,0,1893),(1894,0,1118,'',3,0,1894),(1895,0,1119,'',1,0,1895),(1896,0,1120,'',1,0,1896),(1897,0,1121,'',1,0,1897),(1898,0,1121,'',2,0,1898),(1899,0,1121,'',3,0,1899),(1900,0,1122,'',1,0,1900),(1901,0,1123,'',1,0,1901),(1902,0,1124,'',1,0,1902),(1903,0,1124,'',2,0,1903),(1904,0,1124,'',3,0,1904),(1905,0,1125,'',1,0,1905),(1906,0,1126,'',1,0,1906),(1907,0,1127,'',1,0,1907),(1908,0,1127,'',2,0,1908),(1909,0,1127,'',3,0,1909),(1910,0,1128,'',1,0,1910),(1911,0,1129,'',1,0,1911),(1912,0,1130,'',1,0,1912),(1913,0,1130,'',2,0,1913),(1914,0,1130,'',3,0,1914),(1915,0,1131,'',1,0,1915),(1916,0,1132,'',1,0,1916),(1917,0,1133,'',1,0,1917),(1918,0,1133,'',2,0,1918),(1919,0,1133,'',3,0,1919),(1920,0,1133,'',4,0,1920),(1921,0,1134,'',1,0,1921),(1922,0,1135,'',1,0,1922),(1923,0,1136,'',1,0,1923),(1924,0,1136,'',2,0,1924),(1925,0,1136,'',3,0,1925),(1926,0,1136,'',4,0,1926),(1927,0,1137,'',1,0,1927),(1928,0,1138,'',1,0,1928),(1929,0,1139,'',1,0,1929),(1930,0,1139,'',2,0,1930),(1931,0,1139,'',3,0,1931),(1932,0,1139,'',4,0,1932),(1933,0,1140,'',1,0,1933),(1934,0,1141,'',1,0,1934),(1935,0,1142,'',1,0,1935),(1936,0,1142,'',2,0,1936),(1937,0,1142,'',3,0,1937),(1938,0,1142,'',4,0,1938),(1939,0,1143,'',1,0,1939),(1940,0,1144,'',1,0,1940),(1941,0,1145,'',1,0,1941),(1942,0,1145,'',2,0,1942),(1943,0,1145,'',3,0,1943),(1944,0,1145,'',4,0,1944),(1945,0,1146,'',1,0,1945),(1946,0,1146,'',2,0,1946),(1947,0,1146,'',3,0,1947),(1948,0,1146,'',4,0,1948),(1949,0,1147,'',1,0,1949),(1950,0,1148,'',1,0,1950),(1951,0,1148,'',2,0,1951),(1952,0,1148,'',3,0,1952),(1953,0,1149,'',1,0,1953),(1954,0,1150,'',1,0,1954),(1955,0,1151,'',1,0,1955),(1956,0,1151,'',2,0,1956),(1957,0,1151,'',3,0,1957),(1958,0,1152,'',1,0,1958),(1959,0,1153,'',1,0,1959),(1960,0,1154,'',1,0,1960),(1961,0,1154,'',2,0,1961),(1962,0,1154,'',3,0,1962),(1963,0,1155,'',1,0,1963),(1964,0,1156,'',1,0,1964),(1965,0,1157,'',1,0,1965),(1966,0,1157,'',2,0,1966),(1967,0,1157,'',3,0,1967),(1968,0,1158,'',1,0,1968),(1969,0,1159,'',1,0,1969),(1970,0,1160,'',1,0,1970),(1971,0,1160,'',2,0,1971),(1972,0,1160,'',3,0,1972),(1973,0,1161,'',1,0,1973),(1974,0,1162,'',1,0,1974),(1975,0,1162,'',2,0,1975),(1976,0,1162,'',3,0,1976),(1977,0,1163,'',1,0,1977),(1978,0,1164,'',1,0,1978),(1979,0,1164,'',2,0,1979),(1980,0,1164,'',3,0,1980),(1981,0,1165,'',1,0,1981),(1982,0,1166,'',1,0,1982),(1983,0,1167,'',1,0,1983),(1984,0,1167,'',2,0,1984),(1985,0,1167,'',3,0,1985),(1986,0,1168,'',1,0,1986),(1987,0,1169,'',1,0,1987),(1988,0,1170,'',1,0,1988),(1989,0,1170,'',2,0,1989),(1990,0,1170,'',3,0,1990),(1991,0,1171,'',1,0,1991),(1992,0,1172,'',1,0,1992),(1993,0,1173,'',1,0,1993),(1994,0,1173,'',2,0,1994),(1995,0,1173,'',3,0,1995),(1996,0,1174,'',1,0,1996),(1997,0,1175,'',1,0,1997),(1998,0,1176,'',1,0,1998),(1999,0,1176,'',2,0,1999),(2000,0,1176,'',3,0,2000),(2001,0,1177,'',1,0,2001),(2002,0,1178,'',1,0,2002),(2003,0,1178,'',2,0,2003),(2004,0,1178,'',3,0,2004),(2005,0,1179,'',1,0,2005),(2006,0,1179,'',2,0,2006),(2007,0,1180,'',1,0,2007),(2008,0,1181,'',1,0,2008),(2009,0,1182,'',1,0,2009),(2010,0,1182,'',2,0,2010),(2011,0,1183,'',1,0,2011),(2012,0,1184,'',1,0,2012),(2013,0,1185,'',1,0,2013),(2014,0,1185,'',2,0,2014),(2015,0,1186,'',1,0,2015),(2016,0,1187,'',1,0,2016),(2017,0,1188,'',1,0,2017),(2018,0,1188,'',2,0,2018),(2019,0,1189,'',1,0,2019),(2020,0,1190,'',1,0,2020),(2021,0,1191,'',1,0,2021),(2022,0,1191,'',2,0,2022),(2023,0,1192,'',1,0,2023),(2024,0,1193,'',1,0,2024),(2025,0,1194,'',1,0,2025),(2026,0,1194,'',2,0,2026),(2027,0,1195,'',1,0,2027),(2028,0,1195,'',2,0,2028),(2029,0,1196,'',1,0,2029),(2030,0,1197,'',1,0,2030),(2031,0,1198,'',1,0,2031),(2032,0,1198,'',2,0,2032),(2033,0,1199,'',1,0,2033),(2034,0,1200,'',1,0,2034),(2035,0,1201,'',1,0,2035),(2036,0,1201,'',2,0,2036),(2037,0,1202,'',1,0,2037),(2038,0,1203,'',1,0,2038),(2039,0,1204,'',1,0,2039),(2040,0,1204,'',2,0,2040),(2041,0,1205,'',1,0,2041),(2042,0,1206,'',1,0,2042),(2043,0,1207,'',1,0,2043),(2044,0,1207,'',2,0,2044),(2045,0,1208,'',1,0,2045),(2046,0,1209,'',1,0,2046),(2047,0,1210,'',1,0,2047),(2048,0,1210,'',2,0,2048),(2049,0,1211,'',1,0,2049),(2050,0,1212,'',1,0,2050),(2051,0,1212,'',2,0,2051),(2052,0,1212,'',3,0,2052),(2053,0,1213,'',1,0,2053),(2054,0,1214,'',1,0,2054),(2055,0,1215,'',1,0,2055),(2056,0,1215,'',2,0,2056),(2057,0,1215,'',3,0,2057),(2058,0,1216,'',1,0,2058),(2059,0,1217,'',1,0,2059),(2060,0,1218,'',1,0,2060),(2061,0,1218,'',2,0,2061),(2062,0,1218,'',3,0,2062),(2063,0,1219,'',1,0,2063),(2064,0,1220,'',1,0,2064),(2065,0,1220,'',2,0,2065),(2066,0,1220,'',3,0,2066),(2067,0,1221,'',1,0,2067),(2068,0,1222,'',1,0,2068),(2069,0,1223,'',1,0,2069),(2070,0,1223,'',2,0,2070),(2071,0,1223,'',3,0,2071),(2072,0,1224,'',1,0,2072),(2073,0,1225,'',1,0,2073),(2074,0,1226,'',1,0,2074),(2075,0,1226,'',2,0,2075),(2076,0,1226,'',3,0,2076),(2077,0,1227,'',1,0,2077),(2078,0,1228,'',1,0,2078),(2079,0,1229,'',1,0,2079),(2080,0,1229,'',2,0,2080),(2081,0,1229,'',3,0,2081),(2082,0,1230,'',1,0,2082),(2083,0,1231,'',1,0,2083),(2084,0,1232,'',1,0,2084),(2085,0,1232,'',2,0,2085),(2086,0,1232,'',3,0,2086),(2087,0,1233,'',1,0,2087),(2088,0,1234,'',1,0,2088),(2089,0,1235,'',1,0,2089),(2090,0,1235,'',2,0,2090),(2091,0,1235,'',3,0,2091),(2092,0,1236,'',1,0,2092),(2093,0,1236,'',2,0,2093),(2094,0,1236,'',3,0,2094),(2095,0,1237,'',1,0,2095),(2096,0,1238,'',1,0,2096),(2097,0,1239,'',1,0,2097),(2098,0,1239,'',2,0,2098),(2099,0,1239,'',3,0,2099),(2100,0,1240,'',1,0,2100),(2101,0,1241,'',1,0,2101),(2102,0,1242,'',1,0,2102),(2103,0,1242,'',2,0,2103),(2104,0,1242,'',3,0,2104),(2105,0,1243,'',1,0,2105),(2106,0,1244,'',1,0,2106),(2107,0,1245,'',1,0,2107),(2108,0,1245,'',2,0,2108),(2109,0,1245,'',3,0,2109),(2110,0,1246,'',1,0,2110),(2111,0,1247,'',1,0,2111),(2112,0,1248,'',1,0,2112),(2113,0,1248,'',2,0,2113),(2114,0,1248,'',3,0,2114),(2115,0,1249,'',1,0,2115),(2116,0,1250,'',1,0,2116),(2117,0,1251,'',1,0,2117),(2118,0,1251,'',2,0,2118),(2119,0,1251,'',3,0,2119),(2120,0,1252,'',1,0,2120),(2121,0,1252,'',2,0,2121),(2122,0,1252,'',3,0,2122),(2123,0,1253,'',1,0,2123),(2124,0,1254,'',1,0,2124),(2125,0,1255,'',1,0,2125),(2126,0,1255,'',2,0,2126),(2127,0,1255,'',3,0,2127),(2128,0,1255,'',4,0,2128),(2129,0,1256,'',1,0,2129),(2130,0,1257,'',1,0,2130),(2131,0,1258,'',1,0,2131),(2132,0,1258,'',2,0,2132),(2133,0,1258,'',3,0,2133),(2134,0,1258,'',4,0,2134),(2135,0,1259,'',1,0,2135),(2136,0,1260,'',1,0,2136),(2137,0,1261,'',1,0,2137),(2138,0,1261,'',2,0,2138),(2139,0,1261,'',3,0,2139),(2140,0,1261,'',4,0,2140),(2141,0,1262,'',1,0,2141),(2142,0,1263,'',1,0,2142),(2143,0,1264,'',1,0,2143),(2144,0,1264,'',2,0,2144),(2145,0,1264,'',3,0,2145),(2146,0,1264,'',4,0,2146),(2147,0,1265,'',1,0,2147),(2148,0,1266,'',1,0,2148),(2149,0,1267,'',1,0,2149),(2150,0,1267,'',2,0,2150),(2151,0,1267,'',3,0,2151),(2152,0,1267,'',4,0,2152),(2153,0,1268,'',1,0,2153),(2154,0,1268,'',2,0,2154),(2155,0,1268,'',3,0,2155),(2156,0,1268,'',4,0,2156),(2157,0,1269,'',1,0,2157),(2158,0,1269,'',2,0,2158),(2159,0,1269,'',3,0,2159),(2160,0,1270,'',1,0,2160),(2161,0,1271,'',1,0,2161),(2162,0,1272,'',1,0,2162),(2163,0,1272,'',2,0,2163),(2164,0,1272,'',3,0,2164),(2165,0,1273,'',1,0,2165),(2166,0,1274,'',1,0,2166),(2167,0,1275,'',1,0,2167),(2168,0,1275,'',2,0,2168),(2169,0,1275,'',3,0,2169),(2170,0,1276,'',1,0,2170),(2171,0,1277,'',1,0,2171),(2172,0,1278,'',1,0,2172),(2173,0,1278,'',2,0,2173),(2174,0,1278,'',3,0,2174),(2175,0,1279,'',1,0,2175),(2176,0,1280,'',1,0,2176),(2177,0,1281,'',1,0,2177),(2178,0,1281,'',2,0,2178),(2179,0,1281,'',3,0,2179),(2180,0,1282,'',1,0,2180),(2181,0,1283,'',1,0,2181),(2182,0,1284,'',1,0,2182),(2183,0,1284,'',2,0,2183),(2184,0,1284,'',3,0,2184),(2185,0,1285,'',1,0,2185),(2186,0,1286,'',1,0,2186),(2187,0,1286,'',2,0,2187),(2188,0,1286,'',3,0,2188),(2189,0,1287,'',1,0,2189),(2190,0,1288,'',1,0,2190),(2191,0,1289,'',1,0,2191),(2192,0,1289,'',2,0,2192),(2193,0,1289,'',3,0,2193),(2194,0,1290,'',1,0,2194),(2195,0,1291,'',1,0,2195),(2196,0,1292,'',1,0,2196),(2197,0,1292,'',2,0,2197),(2198,0,1292,'',3,0,2198),(2199,0,1293,'',1,0,2199),(2200,0,1294,'',1,0,2200),(2201,0,1295,'',1,0,2201),(2202,0,1295,'',2,0,2202),(2203,0,1295,'',3,0,2203),(2204,0,1296,'',1,0,2204),(2205,0,1297,'',1,0,2205),(2206,0,1298,'',1,0,2206),(2207,0,1298,'',2,0,2207),(2208,0,1298,'',3,0,2208),(2209,0,1299,'',1,0,2209),(2210,0,1300,'',1,0,2210),(2211,0,1300,'',2,0,2211),(2212,0,1300,'',3,0,2212),(2213,0,1301,'',1,0,2213),(2214,0,1301,'',2,0,2214),(2215,0,1301,'',3,0,2215),(2216,0,1301,'',4,0,2216),(2217,0,1302,'',1,0,2217),(2218,0,1303,'',1,0,2218),(2219,0,1304,'',1,0,2219),(2220,0,1304,'',2,0,2220),(2221,0,1304,'',3,0,2221),(2222,0,1304,'',4,0,2222),(2223,0,1305,'',1,0,2223),(2224,0,1306,'',1,0,2224),(2225,0,1307,'',1,0,2225),(2226,0,1307,'',2,0,2226),(2227,0,1307,'',3,0,2227),(2228,0,1307,'',4,0,2228),(2229,0,1308,'',1,0,2229),(2230,0,1309,'',1,0,2230),(2231,0,1310,'',1,0,2231),(2232,0,1310,'',2,0,2232),(2233,0,1310,'',3,0,2233),(2234,0,1310,'',4,0,2234),(2235,0,1311,'',1,0,2235),(2236,0,1312,'',1,0,2236),(2237,0,1313,'',1,0,2237),(2238,0,1313,'',2,0,2238),(2239,0,1313,'',3,0,2239),(2240,0,1313,'',4,0,2240),(2241,0,1314,'',1,0,2241),(2242,0,1315,'',1,0,2242),(2243,0,1316,'',1,0,2243),(2244,0,1316,'',2,0,2244),(2245,0,1316,'',3,0,2245),(2246,0,1316,'',4,0,2246),(2247,0,1317,'',1,0,2247),(2248,0,1318,'',1,0,2248),(2249,0,1319,'',1,0,2249),(2250,0,1319,'',2,0,2250),(2251,0,1319,'',3,0,2251),(2252,0,1320,'',1,0,2252),(2253,0,1321,'',1,0,2253),(2254,0,1322,'',1,0,2254),(2255,0,1322,'',2,0,2255),(2256,0,1322,'',3,0,2256),(2257,0,1323,'',1,0,2257),(2258,0,1324,'',1,0,2258),(2259,0,1325,'',1,0,2259),(2260,0,1325,'',2,0,2260),(2261,0,1325,'',3,0,2261),(2262,0,1326,'',1,0,2262),(2263,0,1327,'',1,0,2263),(2264,0,1328,'',1,0,2264),(2265,0,1328,'',2,0,2265),(2266,0,1328,'',3,0,2266),(2267,0,1329,'',1,0,2267),(2268,0,1330,'',1,0,2268),(2269,0,1331,'',1,0,2269),(2270,0,1331,'',2,0,2270),(2271,0,1331,'',3,0,2271),(2272,0,1332,'',1,0,2272),(2273,0,1332,'',2,0,2273),(2274,0,1332,'',3,0,2274),(2275,0,1333,'',1,0,2275),(2276,0,1334,'',1,0,2276),(2277,0,1335,'',1,0,2277),(2278,0,1335,'',2,0,2278),(2279,0,1335,'',3,0,2279),(2280,0,1336,'',1,0,2280),(2281,0,1337,'',1,0,2281),(2282,0,1338,'',1,0,2282),(2283,0,1338,'',2,0,2283),(2284,0,1338,'',3,0,2284),(2285,0,1339,'',1,0,2285),(2286,0,1340,'',1,0,2286),(2287,0,1341,'',1,0,2287),(2288,0,1341,'',2,0,2288),(2289,0,1341,'',3,0,2289),(2290,0,1342,'',1,0,2290),(2291,0,1343,'',1,0,2291),(2292,0,1344,'',1,0,2292),(2293,0,1344,'',2,0,2293),(2294,0,1344,'',3,0,2294),(2295,0,1345,'',1,0,2295),(2296,0,1346,'',1,0,2296),(2297,0,1347,'',1,0,2297),(2298,0,1347,'',2,0,2298),(2299,0,1347,'',3,0,2299),(2300,0,1348,'',1,0,2300),(2301,0,1348,'',2,0,2301),(2302,0,1348,'',3,0,2302),(2303,0,1349,'',1,0,2303),(2304,0,1350,'',1,0,2304),(2305,0,1350,'',2,0,2305),(2306,0,1350,'',3,0,2306),(2307,0,1351,'',1,0,2307),(2308,0,1352,'',1,0,2308),(2309,0,1353,'',1,0,2309),(2310,0,1353,'',2,0,2310),(2311,0,1353,'',3,0,2311),(2312,0,1354,'',1,0,2312),(2313,0,1355,'',1,0,2313),(2314,0,1356,'',1,0,2314),(2315,0,1356,'',2,0,2315),(2316,0,1356,'',3,0,2316),(2317,0,1357,'',1,0,2317),(2318,0,1358,'',1,0,2318),(2319,0,1359,'',1,0,2319),(2320,0,1359,'',2,0,2320),(2321,0,1359,'',3,0,2321),(2322,0,1360,'',1,0,2322),(2323,0,1361,'',1,0,2323),(2324,0,1362,'',1,0,2324),(2325,0,1362,'',2,0,2325),(2326,0,1362,'',3,0,2326),(2327,0,1363,'',1,0,2327),(2328,0,1364,'',1,0,2328),(2329,0,1364,'',2,0,2329),(2330,0,1364,'',3,0,2330),(2331,0,1365,'',1,0,2331),(2332,0,1366,'',1,0,2332),(2333,0,1367,'',1,0,2333),(2334,0,1367,'',2,0,2334),(2335,0,1367,'',3,0,2335),(2336,0,1368,'',1,0,2336),(2337,0,1369,'',1,0,2337),(2338,0,1370,'',1,0,2338),(2339,0,1370,'',2,0,2339),(2340,0,1370,'',3,0,2340),(2341,0,1371,'',1,0,2341),(2342,0,1372,'',1,0,2342),(2343,0,1373,'',1,0,2343),(2344,0,1373,'',2,0,2344),(2345,0,1373,'',3,0,2345),(2346,0,1374,'',1,0,2346),(2347,0,1375,'',1,0,2347),(2348,0,1376,'',1,0,2348),(2349,0,1376,'',2,0,2349),(2350,0,1376,'',3,0,2350),(2351,0,1377,'',1,0,2351),(2352,0,1378,'',1,0,2352),(2353,0,1379,'',1,0,2353),(2354,0,1379,'',2,0,2354),(2355,0,1379,'',3,0,2355),(2356,0,1380,'',1,0,2356),(2357,0,1380,'',2,0,2357),(2358,0,1380,'',3,0,2358),(2359,0,1381,'',1,0,2359),(2360,0,1382,'',1,0,2360),(2361,0,1382,'',2,0,2361),(2362,0,1382,'',3,0,2362),(2363,0,1383,'',1,0,2363),(2364,0,1384,'',1,0,2364),(2365,0,1385,'',1,0,2365),(2366,0,1385,'',2,0,2366),(2367,0,1385,'',3,0,2367),(2368,0,1386,'',1,0,2368),(2369,0,1387,'',1,0,2369),(2370,0,1388,'',1,0,2370),(2371,0,1388,'',2,0,2371),(2372,0,1388,'',3,0,2372),(2373,0,1389,'',1,0,2373),(2374,0,1390,'',1,0,2374),(2375,0,1391,'',1,0,2375),(2376,0,1391,'',2,0,2376),(2377,0,1391,'',3,0,2377),(2378,0,1392,'',1,0,2378),(2379,0,1393,'',1,0,2379),(2380,0,1394,'',1,0,2380),(2381,0,1394,'',2,0,2381),(2382,0,1394,'',3,0,2382),(2383,0,1395,'',1,0,2383),(2384,0,1396,'',1,0,2384),(2385,0,1396,'',2,0,2385),(2386,0,1396,'',3,0,2386),(2387,0,1397,'',1,0,2387),(2388,0,1398,'',1,0,2388),(2389,0,1398,'',2,0,2389),(2390,0,1399,'',1,0,2390),(2391,0,1400,'',1,0,2391),(2392,0,1401,'',1,0,2392),(2393,0,1401,'',2,0,2393),(2394,0,1402,'',1,0,2394),(2395,0,1403,'',1,0,2395),(2396,0,1404,'',1,0,2396),(2397,0,1404,'',2,0,2397),(2398,0,1405,'',1,0,2398),(2399,0,1406,'',1,0,2399),(2400,0,1407,'',1,0,2400),(2401,0,1407,'',2,0,2401),(2402,0,1408,'',1,0,2402),(2403,0,1409,'',1,0,2403),(2404,0,1410,'',1,0,2404),(2405,0,1410,'',2,0,2405),(2406,0,1411,'',1,0,2406),(2407,0,1412,'',1,0,2407),(2408,0,1412,'',2,0,2408),(2409,0,1413,'',1,0,2409),(2410,0,1414,'',1,0,2410),(2411,0,1415,'',1,0,2411),(2412,0,1415,'',2,0,2412),(2413,0,1415,'',3,0,2413),(2414,0,1416,'',1,0,2414),(2415,0,1417,'',1,0,2415),(2416,0,1418,'',1,0,2416),(2417,0,1418,'',2,0,2417),(2418,0,1418,'',3,0,2418),(2419,0,1419,'',1,0,2419),(2420,0,1420,'',1,0,2420),(2421,0,1421,'',1,0,2421),(2422,0,1421,'',2,0,2422),(2423,0,1421,'',3,0,2423),(2424,0,1422,'',1,0,2424),(2425,0,1423,'',1,0,2425),(2426,0,1424,'',1,0,2426),(2427,0,1424,'',2,0,2427),(2428,0,1424,'',3,0,2428),(2429,0,1425,'',1,0,2429),(2430,0,1426,'',1,0,2430),(2431,0,1427,'',1,0,2431),(2432,0,1427,'',2,0,2432),(2433,0,1427,'',3,0,2433),(2434,0,1428,'',1,0,2434),(2435,0,1428,'',2,0,2435),(2436,0,1428,'',3,0,2436),(2437,0,1429,'',1,0,2437),(2438,0,1430,'',1,0,2438),(2439,0,1430,'',2,0,2439),(2440,0,1431,'',1,0,2440),(2441,0,1432,'',1,0,2441),(2442,0,1433,'',1,0,2442),(2443,0,1433,'',2,0,2443),(2444,0,1434,'',1,0,2444),(2445,0,1435,'',1,0,2445),(2446,0,1436,'',1,0,2446),(2447,0,1436,'',2,0,2447),(2448,0,1437,'',1,0,2448),(2449,0,1438,'',1,0,2449),(2450,0,1439,'',1,0,2450),(2451,0,1439,'',2,0,2451),(2452,0,1440,'',1,0,2452),(2453,0,1441,'',1,0,2453),(2454,0,1442,'',1,0,2454),(2455,0,1442,'',2,0,2455),(2456,0,1443,'',1,0,2456),(2457,0,1444,'',1,0,2457),(2458,0,1444,'',2,0,2458),(2459,0,1445,'',1,0,2459),(2460,0,1446,'',1,0,2460),(2461,0,1446,'',2,0,2461),(2462,0,1447,'',1,0,2462),(2463,0,1448,'',1,0,2463),(2464,0,1449,'',1,0,2464),(2465,0,1449,'',2,0,2465),(2466,0,1450,'',1,0,2466),(2467,0,1451,'',1,0,2467),(2468,0,1452,'',1,0,2468),(2469,0,1452,'',2,0,2469),(2470,0,1453,'',1,0,2470),(2471,0,1454,'',1,0,2471),(2472,0,1455,'',1,0,2472),(2473,0,1455,'',2,0,2473),(2474,0,1456,'',1,0,2474),(2475,0,1457,'',1,0,2475),(2476,0,1458,'',1,0,2476),(2477,0,1458,'',2,0,2477),(2478,0,1459,'',1,0,2478),(2479,0,1460,'',1,0,2479),(2480,0,1460,'',2,0,2480),(2481,0,1461,'',1,0,2481),(2482,0,1461,'',2,0,2482),(2483,0,1461,'',3,0,2483),(2484,0,1462,'',1,0,2484),(2485,0,1463,'',1,0,2485),(2486,0,1464,'',1,0,2486),(2487,0,1464,'',2,0,2487),(2488,0,1464,'',3,0,2488),(2489,0,1465,'',1,0,2489),(2490,0,1466,'',1,0,2490),(2491,0,1467,'',1,0,2491),(2492,0,1467,'',2,0,2492),(2493,0,1467,'',3,0,2493),(2494,0,1468,'',1,0,2494),(2495,0,1469,'',1,0,2495),(2496,0,1470,'',1,0,2496),(2497,0,1470,'',2,0,2497),(2498,0,1470,'',3,0,2498),(2499,0,1471,'',1,0,2499),(2500,0,1472,'',1,0,2500),(2501,0,1473,'',1,0,2501),(2502,0,1473,'',2,0,2502),(2503,0,1473,'',3,0,2503),(2504,0,1474,'',1,0,2504),(2505,0,1475,'',1,0,2505),(2506,0,1476,'',1,0,2506),(2507,0,1476,'',2,0,2507),(2508,0,1476,'',3,0,2508),(2509,0,1477,'',1,0,2509),(2510,0,1478,'',1,0,2510),(2511,0,1478,'',2,0,2511),(2512,0,1479,'',1,0,2512),(2513,0,1480,'',1,0,2513),(2514,0,1481,'',1,0,2514),(2515,0,1481,'',2,0,2515),(2516,0,1482,'',1,0,2516),(2517,0,1483,'',1,0,2517),(2518,0,1484,'',1,0,2518),(2519,0,1484,'',2,0,2519),(2520,0,1485,'',1,0,2520),(2521,0,1486,'',1,0,2521),(2522,0,1487,'',1,0,2522),(2523,0,1487,'',2,0,2523),(2524,0,1488,'',1,0,2524),(2525,0,1489,'',1,0,2525),(2526,0,1490,'',1,0,2526),(2527,0,1490,'',2,0,2527),(2528,0,1491,'',1,0,2528),(2529,0,1492,'',1,0,2529),(2530,0,1492,'',2,0,2530),(2531,0,1493,'',1,0,2531),(2532,0,1493,'',2,0,2532),(2533,0,1494,'',1,0,2533),(2534,0,1495,'',1,0,2534),(2535,0,1496,'',1,0,2535),(2536,0,1496,'',2,0,2536),(2537,0,1497,'',1,0,2537),(2538,0,1498,'',1,0,2538),(2539,0,1499,'',1,0,2539),(2540,0,1499,'',2,0,2540),(2541,0,1500,'',1,0,2541),(2542,0,1501,'',1,0,2542),(2543,0,1502,'',1,0,2543),(2544,0,1502,'',2,0,2544),(2545,0,1503,'',1,0,2545),(2546,0,1504,'',1,0,2546),(2547,0,1505,'',1,0,2547),(2548,0,1505,'',2,0,2548),(2549,0,1506,'',1,0,2549),(2550,0,1507,'',1,0,2550),(2551,0,1508,'',1,0,2551),(2552,0,1508,'',2,0,2552),(2553,0,1509,'',1,0,2553),(2554,0,1510,'',1,0,2554),(2555,0,1510,'',2,0,2555),(2556,0,1511,'',1,0,2556),(2557,0,1512,'',1,0,2557),(2558,0,1513,'',1,0,2558),(2559,0,1513,'',2,0,2559),(2560,0,1514,'',1,0,2560),(2561,0,1515,'',1,0,2561),(2562,0,1516,'',1,0,2562),(2563,0,1516,'',2,0,2563),(2564,0,1517,'',1,0,2564),(2565,0,1518,'',1,0,2565),(2566,0,1519,'',1,0,2566),(2567,0,1519,'',2,0,2567),(2568,0,1520,'',1,0,2568),(2569,0,1521,'',1,0,2569),(2570,0,1522,'',1,0,2570),(2571,0,1522,'',2,0,2571),(2572,0,1523,'',1,0,2572),(2573,0,1524,'',1,0,2573),(2574,0,1524,'',2,0,2574),(2575,0,1525,'',1,0,2575),(2576,0,1526,'',1,0,2576),(2577,0,1527,'',1,0,2577),(2578,0,1527,'',2,0,2578),(2579,0,1528,'',1,0,2579),(2580,0,1529,'',1,0,2580),(2581,0,1530,'',1,0,2581),(2582,0,1530,'',2,0,2582),(2583,0,1531,'',1,0,2583),(2584,0,1532,'',1,0,2584),(2585,0,1533,'',1,0,2585),(2586,0,1533,'',2,0,2586),(2587,0,1534,'',1,0,2587),(2588,0,1535,'',1,0,2588),(2589,0,1536,'',1,0,2589),(2590,0,1536,'',2,0,2590),(2591,0,1537,'',1,0,2591),(2592,0,1538,'',1,0,2592),(2593,0,1539,'',1,0,2593),(2594,0,1539,'',2,0,2594),(2595,0,1540,'',1,0,2595),(2596,0,1540,'',2,0,2596),(2597,0,1541,'',1,0,2597),(2598,0,1542,'',1,0,2598),(2599,0,1542,'',2,0,2599),(2600,0,1543,'',1,0,2600),(2601,0,1544,'',1,0,2601),(2602,0,1545,'',1,0,2602),(2603,0,1545,'',2,0,2603),(2604,0,1546,'',1,0,2604),(2605,0,1547,'',1,0,2605),(2606,0,1548,'',1,0,2606),(2607,0,1548,'',2,0,2607),(2608,0,1549,'',1,0,2608),(2609,0,1550,'',1,0,2609),(2610,0,1551,'',1,0,2610),(2611,0,1551,'',2,0,2611),(2612,0,1552,'',1,0,2612),(2613,0,1553,'',1,0,2613),(2614,0,1554,'',1,0,2614),(2615,0,1554,'',2,0,2615),(2616,0,1555,'',1,0,2616),(2617,0,1556,'',1,0,2617),(2618,0,1556,'',2,0,2618),(2619,0,1557,'',1,0,2619),(2620,0,1557,'',2,0,2620),(2621,0,1558,'',1,0,2621),(2622,0,1559,'',1,0,2622),(2623,0,1560,'',1,0,2623),(2624,0,1560,'',2,0,2624),(2625,0,1561,'',1,0,2625),(2626,0,1562,'',1,0,2626),(2627,0,1563,'',1,0,2627),(2628,0,1563,'',2,0,2628),(2629,0,1564,'',1,0,2629),(2630,0,1565,'',1,0,2630),(2631,0,1566,'',1,0,2631),(2632,0,1566,'',2,0,2632),(2633,0,1567,'',1,0,2633),(2634,0,1568,'',1,0,2634),(2635,0,1569,'',1,0,2635),(2636,0,1569,'',2,0,2636),(2637,0,1570,'',1,0,2637),(2638,0,1571,'',1,0,2638),(2639,0,1572,'',1,0,2639),(2640,0,1572,'',2,0,2640),(2641,0,1573,'',1,0,2641),(2642,0,1573,'',2,0,2642),(2643,0,1573,'',3,0,2643),(2644,0,1574,'',1,0,2644),(2645,0,1575,'',1,0,2645),(2646,0,1576,'',1,0,2646),(2647,0,1576,'',2,0,2647),(2648,0,1576,'',3,0,2648),(2649,0,1577,'',1,0,2649),(2650,0,1578,'',1,0,2650),(2651,0,1579,'',1,0,2651),(2652,0,1579,'',2,0,2652),(2653,0,1579,'',3,0,2653),(2654,0,1580,'',1,0,2654),(2655,0,1581,'',1,0,2655),(2656,0,1582,'',1,0,2656),(2657,0,1582,'',2,0,2657),(2658,0,1582,'',3,0,2658),(2659,0,1583,'',1,0,2659),(2660,0,1584,'',1,0,2660),(2661,0,1585,'',1,0,2661),(2662,0,1585,'',2,0,2662),(2663,0,1585,'',3,0,2663),(2664,0,1586,'',1,0,2664),(2665,0,1587,'',1,0,2665),(2666,0,1588,'',1,0,2666),(2667,0,1588,'',2,0,2667),(2668,0,1588,'',3,0,2668),(2669,0,1589,'',1,0,2669),(2670,0,1589,'',2,0,2670),(2671,0,1590,'',1,0,2671),(2672,0,1590,'',2,0,2672),(2673,0,1590,'',3,0,2673),(2674,0,1591,'',1,0,2674),(2675,0,1592,'',1,0,2675),(2676,0,1592,'',2,0,2676),(2677,0,1593,'',1,0,2677),(2678,0,1593,'',2,0,2678),(2679,0,1593,'',3,0,2679),(2680,0,1594,'',1,0,2680),(2681,0,1595,'',1,0,2681),(2682,0,1595,'',2,0,2682),(2683,0,1596,'',1,0,2683),(2684,0,1596,'',2,0,2684),(2685,0,1596,'',3,0,2685),(2686,0,1597,'',1,0,2686),(2687,0,1598,'',1,0,2687),(2688,0,1598,'',2,0,2688),(2689,0,1599,'',1,0,2689),(2690,0,1599,'',2,0,2690),(2691,0,1599,'',3,0,2691),(2692,0,1600,'',1,0,2692),(2693,0,1601,'',1,0,2693),(2694,0,1601,'',2,0,2694),(2695,0,1602,'',1,0,2695),(2696,0,1602,'',2,0,2696),(2697,0,1602,'',3,0,2697),(2698,0,1603,'',1,0,2698),(2699,0,1604,'',1,0,2699),(2700,0,1604,'',2,0,2700),(2701,0,1604,'',3,0,2701),(2702,0,1605,'',1,0,2702),(2703,0,1605,'',2,0,2703),(2704,0,1605,'',3,0,2704),(2705,0,1606,'',1,0,2705),(2706,0,1607,'',1,0,2706),(2707,0,1608,'',1,0,2707),(2708,0,1608,'',2,0,2708),(2709,0,1608,'',3,0,2709),(2710,0,1609,'',1,0,2710),(2711,0,1610,'',1,0,2711),(2712,0,1611,'',1,0,2712),(2713,0,1611,'',2,0,2713),(2714,0,1611,'',3,0,2714),(2715,0,1612,'',1,0,2715),(2716,0,1613,'',1,0,2716),(2717,0,1614,'',1,0,2717),(2718,0,1614,'',2,0,2718),(2719,0,1614,'',3,0,2719),(2720,0,1615,'',1,0,2720),(2721,0,1616,'',1,0,2721),(2722,0,1617,'',1,0,2722),(2723,0,1617,'',2,0,2723),(2724,0,1617,'',3,0,2724),(2725,0,1618,'',1,0,2725),(2726,0,1619,'',1,0,2726),(2727,0,1620,'',1,0,2727),(2728,0,1620,'',2,0,2728),(2729,0,1620,'',3,0,2729),(2730,0,1621,'',1,0,2730),(2731,0,1621,'',2,0,2731),(2732,0,1621,'',3,0,2732),(2733,0,1622,'',1,0,2733),(2734,0,1623,'',1,0,2734),(2735,0,1624,'',1,0,2735),(2736,0,1624,'',2,0,2736),(2737,0,1624,'',3,0,2737),(2738,0,1625,'',1,0,2738),(2739,0,1626,'',1,0,2739),(2740,0,1627,'',1,0,2740),(2741,0,1627,'',2,0,2741),(2742,0,1627,'',3,0,2742),(2743,0,1628,'',1,0,2743),(2744,0,1629,'',1,0,2744),(2745,0,1630,'',1,0,2745),(2746,0,1630,'',2,0,2746),(2747,0,1630,'',3,0,2747),(2748,0,1631,'',1,0,2748),(2749,0,1632,'',1,0,2749),(2750,0,1633,'',1,0,2750),(2751,0,1633,'',2,0,2751),(2752,0,1633,'',3,0,2752),(2753,0,1634,'',1,0,2753),(2754,0,1635,'',1,0,2754),(2755,0,1636,'',1,0,2755),(2756,0,1636,'',2,0,2756),(2757,0,1636,'',3,0,2757),(2758,0,1637,'',1,0,2758),(2759,0,1637,'',2,0,2759),(2760,0,1637,'',3,0,2760),(2761,0,1637,'',4,0,2761),(2762,0,1638,'',1,0,2762),(2763,0,1639,'',1,0,2763),(2764,0,1640,'',1,0,2764),(2765,0,1640,'',2,0,2765),(2766,0,1640,'',3,0,2766),(2767,0,1640,'',4,0,2767),(2768,0,1641,'',1,0,2768),(2769,0,1642,'',1,0,2769),(2770,0,1643,'',1,0,2770),(2771,0,1643,'',2,0,2771),(2772,0,1643,'',3,0,2772),(2773,0,1643,'',4,0,2773),(2774,0,1644,'',1,0,2774),(2775,0,1645,'',1,0,2775),(2776,0,1646,'',1,0,2776),(2777,0,1646,'',2,0,2777),(2778,0,1646,'',3,0,2778),(2779,0,1646,'',4,0,2779),(2780,0,1647,'',1,0,2780),(2781,0,1648,'',1,0,2781),(2782,0,1649,'',1,0,2782),(2783,0,1649,'',2,0,2783),(2784,0,1649,'',3,0,2784),(2785,0,1649,'',4,0,2785),(2786,0,1650,'',1,0,2786),(2787,0,1651,'',1,0,2787),(2788,0,1652,'',1,0,2788),(2789,0,1652,'',2,0,2789),(2790,0,1652,'',3,0,2790),(2791,0,1652,'',4,0,2791),(2792,0,1653,'',1,0,2792),(2793,0,1653,'',2,0,2793),(2794,0,1654,'',1,0,2794),(2795,0,1655,'',1,0,2795),(2796,0,1656,'',1,0,2796),(2797,0,1656,'',2,0,2797),(2798,0,1657,'',1,0,2798),(2799,0,1658,'',1,0,2799),(2800,0,1659,'',1,0,2800),(2801,0,1659,'',2,0,2801),(2802,0,1660,'',1,0,2802),(2803,0,1661,'',1,0,2803),(2804,0,1662,'',1,0,2804),(2805,0,1662,'',2,0,2805),(2806,0,1663,'',1,0,2806),(2807,0,1664,'',1,0,2807),(2808,0,1665,'',1,0,2808),(2809,0,1665,'',2,0,2809),(2810,0,1666,'',1,0,2810),(2811,0,1667,'',1,0,2811),(2812,0,1668,'',1,0,2812),(2813,0,1668,'',2,0,2813),(2814,0,1669,'',1,0,2814),(2815,0,1670,'',1,0,2815),(2816,0,1670,'',2,0,2816),(2817,0,1671,'',1,0,2817),(2818,0,1672,'',1,0,2818),(2819,0,1673,'',1,0,2819),(2820,0,1673,'',2,0,2820),(2821,0,1674,'',1,0,2821),(2822,0,1675,'',1,0,2822),(2823,0,1676,'',1,0,2823),(2824,0,1676,'',2,0,2824),(2825,0,1677,'',1,0,2825),(2826,0,1678,'',1,0,2826),(2827,0,1679,'',1,0,2827),(2828,0,1679,'',2,0,2828),(2829,0,1680,'',1,0,2829),(2830,0,1681,'',1,0,2830),(2831,0,1682,'',1,0,2831),(2832,0,1682,'',2,0,2832),(2833,0,1683,'',1,0,2833),(2834,0,1684,'',1,0,2834),(2835,0,1684,'',2,0,2835),(2836,0,1685,'',1,0,2836),(2837,0,1686,'',1,0,2837),(2838,0,1686,'',2,0,2838),(2839,0,1687,'',1,0,2839),(2840,0,1688,'',1,0,2840),(2841,0,1689,'',1,0,2841),(2842,0,1689,'',2,0,2842),(2843,0,1690,'',1,0,2843),(2844,0,1691,'',1,0,2844),(2845,0,1692,'',1,0,2845),(2846,0,1692,'',2,0,2846),(2847,0,1693,'',1,0,2847),(2848,0,1694,'',1,0,2848),(2849,0,1695,'',1,0,2849),(2850,0,1695,'',2,0,2850),(2851,0,1696,'',1,0,2851),(2852,0,1697,'',1,0,2852),(2853,0,1698,'',1,0,2853),(2854,0,1698,'',2,0,2854),(2855,0,1699,'',1,0,2855),(2856,0,1700,'',1,0,2856),(2857,0,1700,'',2,0,2857),(2858,0,1701,'',1,0,2858),(2859,0,1702,'',1,0,2859),(2860,0,1703,'',1,0,2860),(2861,0,1703,'',2,0,2861),(2862,0,1703,'',3,0,2862),(2863,0,1704,'',1,0,2863),(2864,0,1705,'',1,0,2864),(2865,0,1706,'',1,0,2865),(2866,0,1706,'',2,0,2866),(2867,0,1706,'',3,0,2867),(2868,0,1707,'',1,0,2868),(2869,0,1708,'',1,0,2869),(2870,0,1709,'',1,0,2870),(2871,0,1709,'',2,0,2871),(2872,0,1709,'',3,0,2872),(2873,0,1710,'',1,0,2873),(2874,0,1711,'',1,0,2874),(2875,0,1712,'',1,0,2875),(2876,0,1712,'',2,0,2876),(2877,0,1712,'',3,0,2877),(2878,0,1713,'',1,0,2878),(2879,0,1714,'',1,0,2879),(2880,0,1715,'',1,0,2880),(2881,0,1715,'',2,0,2881),(2882,0,1715,'',3,0,2882),(2883,0,1716,'',1,0,2883),(2884,0,1716,'',2,0,2884),(2885,0,1716,'',3,0,2885),(2886,0,1717,'',1,0,2886),(2887,0,1717,'',2,0,2887),(2888,0,1718,'',1,0,2888),(2889,0,1719,'',1,0,2889),(2890,0,1720,'',1,0,2890),(2891,0,1720,'',2,0,2891),(2892,0,1721,'',1,0,2892),(2893,0,1722,'',1,0,2893),(2894,0,1723,'',1,0,2894),(2895,0,1723,'',2,0,2895),(2896,0,1724,'',1,0,2896),(2897,0,1725,'',1,0,2897),(2898,0,1726,'',1,0,2898),(2899,0,1726,'',2,0,2899),(2900,0,1727,'',1,0,2900),(2901,0,1728,'',1,0,2901),(2902,0,1729,'',1,0,2902),(2903,0,1729,'',2,0,2903),(2904,0,1730,'',1,0,2904),(2905,0,1731,'',1,0,2905),(2906,0,1732,'',1,0,2906),(2907,0,1732,'',2,0,2907),(2908,0,1733,'',1,0,2908),(2909,0,1734,'',1,0,2909),(2910,0,1734,'',2,0,2910),(2911,0,1734,'',3,0,2911),(2912,0,1735,'',1,0,2912),(2913,0,1736,'',1,0,2913),(2914,0,1737,'',1,0,2914),(2915,0,1737,'',2,0,2915),(2916,0,1737,'',3,0,2916),(2917,0,1738,'',1,0,2917),(2918,0,1739,'',1,0,2918),(2919,0,1740,'',1,0,2919),(2920,0,1740,'',2,0,2920),(2921,0,1740,'',3,0,2921),(2922,0,1741,'',1,0,2922),(2923,0,1742,'',1,0,2923),(2924,0,1743,'',1,0,2924),(2925,0,1743,'',2,0,2925),(2926,0,1743,'',3,0,2926),(2927,0,1744,'',1,0,2927),(2928,0,1745,'',1,0,2928),(2929,0,1746,'',1,0,2929),(2930,0,1746,'',2,0,2930),(2931,0,1746,'',3,0,2931),(2932,0,1747,'',1,0,2932),(2933,0,1748,'',1,0,2933),(2934,0,1748,'',2,0,2934),(2935,0,1748,'',3,0,2935),(2936,0,1749,'',1,0,2936),(2937,0,1749,'',2,0,2937),(2938,0,1750,'',1,0,2938),(2939,0,1751,'',1,0,2939),(2940,0,1752,'',1,0,2940),(2941,0,1752,'',2,0,2941),(2942,0,1753,'',1,0,2942),(2943,0,1754,'',1,0,2943),(2944,0,1755,'',1,0,2944),(2945,0,1755,'',2,0,2945),(2946,0,1756,'',1,0,2946),(2947,0,1757,'',1,0,2947),(2948,0,1758,'',1,0,2948),(2949,0,1758,'',2,0,2949),(2950,0,1759,'',1,0,2950),(2951,0,1760,'',1,0,2951),(2952,0,1761,'',1,0,2952),(2953,0,1761,'',2,0,2953),(2954,0,1762,'',1,0,2954),(2955,0,1763,'',1,0,2955),(2956,0,1764,'',1,0,2956),(2957,0,1764,'',2,0,2957),(2958,0,1765,'',1,0,2958),(2959,0,1765,'',2,0,2959),(2960,0,1765,'',3,0,2960),(2961,0,1766,'',1,0,2961),(2962,0,1767,'',1,0,2962),(2963,0,1768,'',1,0,2963),(2964,0,1768,'',2,0,2964),(2965,0,1768,'',3,0,2965),(2966,0,1769,'',1,0,2966),(2967,0,1770,'',1,0,2967),(2968,0,1771,'',1,0,2968),(2969,0,1771,'',2,0,2969),(2970,0,1771,'',3,0,2970),(2971,0,1772,'',1,0,2971),(2972,0,1773,'',1,0,2972),(2973,0,1774,'',1,0,2973),(2974,0,1774,'',2,0,2974),(2975,0,1774,'',3,0,2975),(2976,0,1775,'',1,0,2976),(2977,0,1776,'',1,0,2977),(2978,0,1777,'',1,0,2978),(2979,0,1777,'',2,0,2979),(2980,0,1777,'',3,0,2980),(2981,0,1778,'',1,0,2981),(2982,0,1779,'',1,0,2982),(2983,0,1780,'',1,0,2983),(2984,0,1780,'',2,0,2984),(2985,0,1780,'',3,0,2985),(2986,0,1781,'',1,0,2986),(2987,0,1781,'',2,0,2987),(2988,0,1781,'',3,0,2988),(2989,0,1782,'',1,0,2989),(2990,0,1783,'',1,0,2990),(2991,0,1784,'',1,0,2991),(2992,0,1784,'',2,0,2992),(2993,0,1784,'',3,0,2993),(2994,0,1785,'',1,0,2994),(2995,0,1786,'',1,0,2995),(2996,0,1787,'',1,0,2996),(2997,0,1787,'',2,0,2997),(2998,0,1787,'',3,0,2998),(2999,0,1788,'',1,0,2999),(3000,0,1789,'',1,0,3000),(3001,0,1790,'',1,0,3001),(3002,0,1790,'',2,0,3002),(3003,0,1790,'',3,0,3003),(3004,0,1791,'',1,0,3004),(3005,0,1792,'',1,0,3005),(3006,0,1793,'',1,0,3006),(3007,0,1793,'',2,0,3007),(3008,0,1793,'',3,0,3008),(3009,0,1794,'',1,0,3009),(3010,0,1795,'',1,0,3010),(3011,0,1796,'',1,0,3011),(3012,0,1796,'',2,0,3012),(3013,0,1796,'',3,0,3013),(3014,0,1797,'',1,0,3014),(3015,0,1798,'',1,0,3015),(3016,0,1798,'',2,0,3016),(3017,0,1799,'',1,0,3017),(3018,0,1800,'',1,0,3018),(3019,0,1801,'',1,0,3019),(3020,0,1801,'',2,0,3020),(3021,0,1802,'',1,0,3021),(3022,0,1803,'',1,0,3022),(3023,0,1804,'',1,0,3023),(3024,0,1804,'',2,0,3024),(3025,0,1805,'',1,0,3025),(3026,0,1806,'',1,0,3026),(3027,0,1807,'',1,0,3027),(3028,0,1807,'',2,0,3028),(3029,0,1808,'',1,0,3029),(3030,0,1809,'',1,0,3030),(3031,0,1810,'',1,0,3031),(3032,0,1810,'',2,0,3032),(3033,0,1811,'',1,0,3033),(3034,0,1812,'',1,0,3034),(3035,0,1812,'',2,0,3035),(3036,0,1813,'',1,0,3036),(3037,0,1814,'',1,0,3037),(3038,0,1814,'',2,0,3038),(3039,0,1815,'',1,0,3039),(3040,0,1816,'',1,0,3040),(3041,0,1817,'',1,0,3041),(3042,0,1817,'',2,0,3042),(3043,0,1818,'',1,0,3043),(3044,0,1819,'',1,0,3044),(3045,0,1819,'',2,0,3045),(3046,0,1820,'',1,0,3046),(3047,0,1820,'',2,0,3047),(3048,0,1821,'',1,0,3048),(3049,0,1822,'',1,0,3049),(3050,0,1823,'',1,0,3050),(3051,0,1823,'',2,0,3051),(3052,0,1824,'',1,0,3052),(3053,0,1825,'',1,0,3053),(3054,0,1826,'',1,0,3054),(3055,0,1826,'',2,0,3055),(3056,0,1827,'',1,0,3056),(3057,0,1828,'',1,0,3057),(3058,0,1828,'',2,0,3058),(3059,0,1828,'',3,0,3059),(3060,0,1829,'',1,0,3060),(3061,0,1830,'',1,0,3061),(3062,0,1831,'',1,0,3062),(3063,0,1831,'',2,0,3063),(3064,0,1831,'',3,0,3064),(3065,0,1832,'',1,0,3065),(3066,0,1833,'',1,0,3066),(3067,0,1833,'',2,0,3067),(3068,0,1833,'',3,0,3068),(3069,0,1834,'',1,0,3069),(3070,0,1835,'',1,0,3070),(3071,0,1835,'',2,0,3071),(3072,0,1835,'',3,0,3072),(3073,0,1835,'',4,0,3073),(3074,0,1836,'',1,0,3074),(3075,0,1837,'',1,0,3075),(3076,0,1838,'',1,0,3076),(3077,0,1838,'',2,0,3077),(3078,0,1838,'',3,0,3078),(3079,0,1838,'',4,0,3079),(3080,0,1839,'',1,0,3080),(3081,0,1840,'',1,0,3081),(3082,0,1840,'',2,0,3082),(3083,0,1840,'',3,0,3083),(3084,0,1840,'',4,0,3084),(3085,0,1841,'',1,0,3085),(3086,0,1842,'',1,0,3086),(3087,0,1842,'',2,0,3087),(3088,0,1842,'',3,0,3088),(3089,0,1843,'',1,0,3089),(3090,0,1844,'',1,0,3090),(3091,0,1845,'',1,0,3091),(3092,0,1845,'',2,0,3092),(3093,0,1845,'',3,0,3093),(3094,0,1846,'',1,0,3094),(3095,0,1847,'',1,0,3095),(3096,0,1847,'',2,0,3096),(3097,0,1847,'',3,0,3097),(3098,0,1848,'',1,0,3098),(3099,0,1848,'',2,0,3099),(3100,0,1848,'',3,0,3100),(3101,0,1848,'',4,0,3101),(3102,0,1849,'',1,0,3102),(3103,0,1850,'',1,0,3103),(3104,0,1851,'',1,0,3104),(3105,0,1851,'',2,0,3105),(3106,0,1851,'',3,0,3106),(3107,0,1851,'',4,0,3107),(3108,0,1852,'',1,0,3108),(3109,0,1853,'',1,0,3109),(3110,0,1854,'',1,0,3110),(3111,0,1854,'',2,0,3111),(3112,0,1854,'',3,0,3112),(3113,0,1854,'',4,0,3113),(3114,0,1855,'',1,0,3114),(3115,0,1855,'',2,0,3115),(3116,0,1855,'',3,0,3116),(3117,0,1856,'',1,0,3117),(3118,0,1857,'',1,0,3118),(3119,0,1858,'',1,0,3119),(3120,0,1858,'',2,0,3120),(3121,0,1858,'',3,0,3121),(3122,0,1859,'',1,0,3122),(3123,0,1860,'',1,0,3123),(3124,0,1861,'',1,0,3124),(3125,0,1861,'',2,0,3125),(3126,0,1861,'',3,0,3126),(3127,0,1862,'',1,0,3127),(3128,0,1862,'',2,0,3128),(3129,0,1863,'',1,0,3129),(3130,0,1864,'',1,0,3130),(3131,0,1865,'',1,0,3131),(3132,0,1865,'',2,0,3132),(3133,0,1866,'',1,0,3133),(3134,0,1867,'',1,0,3134),(3135,0,1868,'',1,0,3135),(3136,0,1868,'',2,0,3136),(3137,0,1869,'',1,0,3137),(3138,0,1869,'',2,0,3138),(3139,0,1869,'',3,0,3139),(3140,0,1869,'',4,0,3140),(3141,0,1870,'',1,0,3141),(3142,0,1871,'',1,0,3142),(3143,0,1872,'',1,0,3143),(3144,0,1872,'',2,0,3144),(3145,0,1872,'',3,0,3145),(3146,0,1872,'',4,0,3146),(3147,0,1873,'',1,0,3147),(3148,0,1874,'',1,0,3148),(3149,0,1875,'',1,0,3149),(3150,0,1875,'',2,0,3150),(3151,0,1875,'',3,0,3151),(3152,0,1875,'',4,0,3152),(3153,0,1876,'',1,0,3153),(3154,0,1877,'',1,0,3154),(3155,0,1877,'',2,0,3155),(3156,0,1877,'',3,0,3156),(3157,0,1878,'',1,0,3157),(3158,0,1879,'',1,0,3158),(3159,0,1880,'',1,0,3159),(3160,0,1880,'',2,0,3160),(3161,0,1880,'',3,0,3161),(3162,0,1881,'',1,0,3162),(3163,0,1882,'',1,0,3163),(3164,0,1882,'',2,0,3164),(3165,0,1882,'',3,0,3165),(3166,0,1883,'',1,0,3166),(3167,0,1884,'',1,0,3167),(3168,0,1884,'',2,0,3168),(3169,0,1885,'',1,0,3169),(3170,0,1886,'',1,0,3170),(3171,0,1887,'',1,0,3171),(3172,0,1887,'',2,0,3172),(3173,0,1888,'',1,0,3173),(3174,0,1889,'',1,0,3174),(3175,0,1889,'',2,0,3175),(3176,0,1890,'',1,0,3176),(3177,0,1891,'',1,0,3177),(3178,0,1891,'',2,0,3178),(3179,0,1892,'',1,0,3179),(3180,0,1893,'',1,0,3180),(3181,0,1894,'',1,0,3181),(3182,0,1894,'',2,0,3182),(3183,0,1895,'',1,0,3183),(3184,0,1896,'',1,0,3184),(3185,0,1896,'',2,0,3185),(3186,0,1897,'',1,0,3186),(3187,0,1898,'',1,0,3187),(3188,0,1899,'',1,0,3188),(3189,0,1899,'',2,0,3189),(3190,0,1900,'',1,0,3190),(3191,0,1901,'',1,0,3191),(3192,0,1902,'',1,0,3192),(3193,0,1902,'',2,0,3193),(3194,0,1903,'',1,0,3194),(3195,0,1903,'',2,0,3195),(3196,0,1904,'',1,0,3196),(3197,0,1904,'',2,0,3197),(3198,0,1905,'',1,0,3198),(3199,0,1906,'',1,0,3199),(3200,0,1907,'',1,0,3200),(3201,0,1907,'',2,0,3201),(3202,0,1908,'',1,0,3202),(3203,0,1909,'',1,0,3203),(3204,0,1910,'',1,0,3204),(3205,0,1910,'',2,0,3205),(3206,0,1911,'',1,0,3206),(3207,0,1912,'',1,0,3207),(3208,0,1913,'',1,0,3208),(3209,0,1913,'',2,0,3209),(3210,0,1914,'',1,0,3210),(3211,0,1915,'',1,0,3211),(3212,0,1916,'',1,0,3212),(3213,0,1916,'',2,0,3213),(3214,0,1917,'',1,0,3214),(3215,0,1918,'',1,0,3215),(3216,0,1919,'',1,0,3216),(3217,0,1919,'',2,0,3217),(3218,0,1920,'',1,0,3218),(3219,0,1920,'',2,0,3219),(3220,0,1921,'',1,0,3220),(3221,0,1922,'',1,0,3221),(3222,0,1923,'',1,0,3222),(3223,0,1923,'',2,0,3223),(3224,0,1924,'',1,0,3224),(3225,0,1925,'',1,0,3225),(3226,0,1926,'',1,0,3226),(3227,0,1926,'',2,0,3227),(3228,0,1927,'',1,0,3228),(3229,0,1928,'',1,0,3229),(3230,0,1929,'',1,0,3230),(3231,0,1929,'',2,0,3231),(3232,0,1930,'',1,0,3232),(3233,0,1931,'',1,0,3233),(3234,0,1932,'',1,0,3234),(3235,0,1932,'',2,0,3235),(3236,0,1933,'',1,0,3236),(3237,0,1934,'',1,0,3237),(3238,0,1935,'',1,0,3238),(3239,0,1935,'',2,0,3239),(3240,0,1936,'',1,0,3240),(3241,0,1937,'',1,0,3241),(3242,0,1937,'',2,0,3242),(3243,0,1937,'',3,0,3243),(3244,0,1938,'',1,0,3244),(3245,0,1939,'',1,0,3245),(3246,0,1940,'',1,0,3246),(3247,0,1940,'',2,0,3247),(3248,0,1940,'',3,0,3248),(3249,0,1941,'',1,0,3249),(3250,0,1942,'',1,0,3250),(3251,0,1943,'',1,0,3251),(3252,0,1943,'',2,0,3252),(3253,0,1943,'',3,0,3253),(3254,0,1944,'',1,0,3254),(3255,0,1945,'',1,0,3255),(3256,0,1946,'',1,0,3256),(3257,0,1946,'',2,0,3257),(3258,0,1946,'',3,0,3258),(3259,0,1947,'',1,0,3259),(3260,0,1948,'',1,0,3260),(3261,0,1949,'',1,0,3261),(3262,0,1949,'',2,0,3262),(3263,0,1949,'',3,0,3263),(3264,0,1950,'',1,0,3264),(3265,0,1951,'',1,0,3265),(3266,0,1951,'',2,0,3266),(3267,0,1951,'',3,0,3267),(3268,0,1952,'',1,0,3268),(3269,0,1952,'',2,0,3269),(3270,0,1952,'',3,0,3270),(3271,0,1953,'',1,0,3271),(3272,0,1954,'',1,0,3272),(3273,0,1955,'',1,0,3273),(3274,0,1955,'',2,0,3274),(3275,0,1955,'',3,0,3275),(3276,0,1956,'',1,0,3276),(3277,0,1957,'',1,0,3277),(3278,0,1958,'',1,0,3278),(3279,0,1958,'',2,0,3279),(3280,0,1958,'',3,0,3280),(3281,0,1959,'',1,0,3281),(3282,0,1960,'',1,0,3282),(3283,0,1961,'',1,0,3283),(3284,0,1961,'',2,0,3284),(3285,0,1961,'',3,0,3285),(3286,0,1962,'',1,0,3286),(3287,0,1963,'',1,0,3287),(3288,0,1964,'',1,0,3288),(3289,0,1964,'',2,0,3289),(3290,0,1964,'',3,0,3290),(3291,0,1965,'',1,0,3291),(3292,0,1966,'',1,0,3292),(3293,0,1967,'',1,0,3293),(3294,0,1967,'',2,0,3294),(3295,0,1967,'',3,0,3295),(3296,0,1968,'',1,0,3296),(3297,0,1968,'',2,0,3297),(3298,0,1969,'',1,0,3298),(3299,0,1970,'',1,0,3299),(3300,0,1971,'',1,0,3300),(3301,0,1971,'',2,0,3301),(3302,0,1972,'',1,0,3302),(3303,0,1973,'',1,0,3303),(3304,0,1974,'',1,0,3304),(3305,0,1974,'',2,0,3305),(3306,0,1975,'',1,0,3306),(3307,0,1976,'',1,0,3307),(3308,0,1977,'',1,0,3308),(3309,0,1977,'',2,0,3309),(3310,0,1978,'',1,0,3310),(3311,0,1979,'',1,0,3311),(3312,0,1980,'',1,0,3312),(3313,0,1980,'',2,0,3313),(3314,0,1981,'',1,0,3314),(3315,0,1982,'',1,0,3315),(3316,0,1983,'',1,0,3316),(3317,0,1983,'',2,0,3317),(3318,0,1984,'',1,0,3318),(3319,0,1984,'',2,0,3319),(3320,0,1984,'',3,0,3320),(3321,0,1985,'',1,0,3321),(3322,0,1986,'',1,0,3322),(3323,0,1987,'',1,0,3323),(3324,0,1987,'',2,0,3324),(3325,0,1987,'',3,0,3325),(3326,0,1988,'',1,0,3326),(3327,0,1989,'',1,0,3327),(3328,0,1990,'',1,0,3328),(3329,0,1990,'',2,0,3329),(3330,0,1990,'',3,0,3330),(3331,0,1991,'',1,0,3331),(3332,0,1991,'',2,0,3332),(3333,0,1992,'',1,0,3333),(3334,0,1993,'',1,0,3334),(3335,0,1994,'',1,0,3335),(3336,0,1994,'',2,0,3336),(3337,0,1995,'',1,0,3337),(3338,0,1996,'',1,0,3338),(3339,0,1997,'',1,0,3339),(3340,0,1997,'',2,0,3340),(3341,0,1998,'',1,0,3341),(3342,0,1998,'',2,0,3342),(3343,0,1999,'',1,0,3343),(3344,0,1999,'',2,0,3344),(3345,0,2000,'',1,0,3345),(3346,0,2000,'',2,0,3346),(3347,0,2001,'',1,0,3347),(3348,0,2001,'',2,0,3348),(3349,0,2002,'',1,0,3349),(3350,0,2002,'',2,0,3350),(3351,0,2003,'',1,0,3351),(3352,0,2003,'',2,0,3352),(3353,0,2004,'',1,0,3353),(3354,0,2004,'',2,0,3354),(3355,0,2004,'',3,0,3355),(3356,0,2005,'',1,0,3356),(3357,0,2006,'',1,0,3357),(3358,0,2007,'',1,0,3358),(3359,0,2007,'',2,0,3359),(3360,0,2007,'',3,0,3360),(3361,0,2008,'',1,0,3361),(3362,0,2009,'',1,0,3362),(3363,0,2010,'',1,0,3363),(3364,0,2010,'',2,0,3364),(3365,0,2010,'',3,0,3365),(3366,0,2011,'',1,0,3366),(3367,0,2011,'',2,0,3367),(3368,0,2011,'',3,0,3368),(3369,0,2012,'',1,0,3369),(3370,0,2013,'',1,0,3370),(3371,0,2014,'',1,0,3371),(3372,0,2014,'',2,0,3372),(3373,0,2014,'',3,0,3373),(3374,0,2015,'',1,0,3374),(3375,0,2016,'',1,0,3375),(3376,0,2017,'',1,0,3376),(3377,0,2017,'',2,0,3377),(3378,0,2017,'',3,0,3378),(3379,0,2018,'',1,0,3379),(3380,0,2018,'',2,0,3380),(3381,0,2019,'',1,0,3381),(3382,0,2020,'',1,0,3382),(3383,0,2021,'',1,0,3383),(3384,0,2021,'',2,0,3384),(3385,0,2022,'',1,0,3385),(3386,0,2023,'',1,0,3386),(3387,0,2024,'',1,0,3387),(3388,0,2024,'',2,0,3388),(3389,0,2025,'',1,0,3389),(3390,0,2025,'',2,0,3390),(3391,0,2025,'',3,0,3391),(3392,0,2026,'',1,0,3392),(3393,0,2027,'',1,0,3393),(3394,0,2028,'',1,0,3394),(3395,0,2028,'',2,0,3395),(3396,0,2028,'',3,0,3396),(3397,0,2029,'',1,0,3397),(3398,0,2030,'',1,0,3398),(3399,0,2031,'',1,0,3399),(3400,0,2031,'',2,0,3400),(3401,0,2031,'',3,0,3401),(3402,0,2032,'',1,0,3402),(3403,0,2033,'',1,0,3403),(3404,0,2034,'',1,0,3404),(3405,0,2034,'',2,0,3405),(3406,0,2034,'',3,0,3406),(3407,0,2035,'',1,0,3407),(3408,0,2036,'',1,0,3408),(3409,0,2037,'',1,0,3409),(3410,0,2037,'',2,0,3410),(3411,0,2037,'',3,0,3411),(3412,0,2038,'',1,0,3412),(3413,0,2039,'',1,0,3413),(3414,0,2040,'',1,0,3414),(3415,0,2040,'',2,0,3415),(3416,0,2040,'',3,0,3416);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity` (
  `value_id` int unsigned NOT NULL COMMENT 'Value media Entry ID',
  `entity_id` int unsigned NOT NULL COMMENT 'Product Entity ID',
  PRIMARY KEY (`value_id`,`entity_id`),
  KEY `FK_11B443E566D0F1A4C7684AD8FAC9CFAE` (`entity_id`),
  CONSTRAINT `FK_11B443E566D0F1A4C7684AD8FAC9CFAE` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_80EC8D98740F21EDD3873AF489663BE3` FOREIGN KEY (`value_id`) REFERENCES `[[dbprefix]]catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Link Media value to Product entity table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity` VALUES (1,1),(2,2),(3,2),(4,3),(5,3),(6,4),(7,5),(8,6),(9,6),(10,7),(11,8),(12,9),(13,10),(14,11),(15,11),(16,12),(17,13),(18,14),(19,15),(20,16),(21,16),(22,17),(23,18),(24,19),(25,20),(26,21),(27,22),(28,23),(29,24),(30,25),(31,26),(32,27),(33,28),(34,29),(35,30),(36,31),(37,32),(38,33),(39,34),(40,35),(41,36),(42,37),(43,38),(44,39),(45,40),(46,41),(47,42),(48,43),(49,43),(50,44),(51,45),(52,46),(53,47),(54,48),(55,48),(56,48),(57,49),(58,50),(59,51),(60,51),(61,51),(62,52),(63,53),(64,54),(65,54),(66,54),(67,55),(68,56),(69,57),(70,57),(71,57),(72,58),(73,59),(74,60),(75,60),(76,60),(77,61),(78,62),(79,62),(80,62),(81,63),(82,63),(83,63),(84,64),(85,65),(86,66),(87,66),(88,66),(89,67),(90,68),(91,69),(92,69),(93,69),(94,70),(95,71),(96,72),(97,72),(98,72),(99,73),(100,74),(101,75),(102,75),(103,75),(104,76),(105,77),(106,78),(107,78),(108,78),(109,79),(110,79),(111,79),(112,80),(113,81),(114,82),(115,82),(116,82),(117,83),(118,84),(119,85),(120,85),(121,85),(122,86),(123,87),(124,88),(125,88),(126,88),(127,89),(128,90),(129,91),(130,91),(131,91),(132,92),(133,93),(134,94),(135,94),(136,94),(137,95),(138,95),(139,95),(140,96),(141,97),(142,98),(143,98),(144,98),(145,99),(146,100),(147,101),(148,101),(149,101),(150,102),(151,103),(152,104),(153,104),(154,104),(155,105),(156,106),(157,107),(158,107),(159,107),(160,108),(161,109),(162,110),(163,110),(164,110),(165,111),(166,112),(167,113),(168,113),(169,113),(170,114),(171,115),(172,116),(173,116),(174,116),(175,117),(176,118),(177,119),(178,119),(179,119),(180,120),(181,121),(182,122),(183,122),(184,122),(185,123),(186,124),(187,125),(188,125),(189,125),(190,126),(191,126),(192,126),(193,127),(194,128),(195,128),(196,128),(197,129),(198,130),(199,131),(200,131),(201,131),(202,132),(203,133),(204,134),(205,134),(206,134),(207,135),(208,136),(209,137),(210,137),(211,137),(212,138),(213,139),(214,140),(215,140),(216,140),(217,141),(218,142),(219,142),(220,142),(221,143),(222,144),(223,144),(224,144),(225,145),(226,146),(227,147),(228,147),(229,147),(230,148),(231,149),(232,150),(233,150),(234,150),(235,151),(236,152),(237,153),(238,153),(239,153),(240,154),(241,155),(242,156),(243,156),(244,156),(245,157),(246,158),(247,158),(248,158),(249,159),(250,159),(251,159),(252,160),(253,161),(254,162),(255,162),(256,162),(257,163),(258,164),(259,165),(260,165),(261,165),(262,166),(263,167),(264,168),(265,168),(266,168),(267,169),(268,170),(269,171),(270,171),(271,171),(272,172),(273,173),(274,174),(275,174),(276,174),(277,175),(278,175),(279,175),(280,176),(281,177),(282,178),(283,178),(284,178),(285,179),(286,180),(287,181),(288,181),(289,181),(290,182),(291,183),(292,184),(293,184),(294,184),(295,185),(296,186),(297,187),(298,187),(299,187),(300,188),(301,189),(302,190),(303,190),(304,190),(305,191),(306,192),(307,192),(308,192),(309,193),(310,194),(311,195),(312,195),(313,195),(314,196),(315,197),(316,198),(317,198),(318,198),(319,199),(320,200),(321,201),(322,201),(323,201),(324,202),(325,203),(326,204),(327,204),(328,204),(329,205),(330,206),(331,206),(332,206),(333,207),(334,208),(335,209),(336,209),(337,209),(338,210),(339,211),(340,212),(341,212),(342,212),(343,213),(344,214),(345,215),(346,215),(347,215),(348,216),(349,217),(350,218),(351,218),(352,218),(353,219),(354,220),(355,221),(356,221),(357,221),(358,222),(359,222),(360,222),(361,223),(362,224),(363,224),(364,224),(365,225),(366,226),(367,227),(368,227),(369,227),(370,228),(371,229),(372,230),(373,230),(374,230),(375,231),(376,232),(377,233),(378,233),(379,233),(380,234),(381,235),(382,236),(383,236),(384,236),(385,237),(386,238),(387,238),(388,238),(389,239),(390,239),(391,239),(392,240),(393,241),(394,242),(395,242),(396,242),(397,243),(398,244),(399,245),(400,245),(401,245),(402,246),(403,247),(404,248),(405,248),(406,248),(407,249),(408,250),(409,251),(410,251),(411,251),(412,252),(413,253),(414,254),(415,254),(416,254),(417,255),(418,256),(419,257),(420,257),(421,257),(422,258),(423,259),(424,260),(425,260),(426,260),(427,261),(428,262),(429,263),(430,263),(431,263),(432,264),(433,265),(434,266),(435,266),(436,266),(437,267),(438,268),(439,269),(440,269),(441,269),(442,270),(443,270),(444,270),(445,271),(446,271),(447,271),(448,272),(449,273),(450,274),(451,274),(452,274),(453,275),(454,276),(455,277),(456,277),(457,277),(458,278),(459,279),(460,280),(461,280),(462,280),(463,281),(464,282),(465,283),(466,283),(467,283),(468,284),(469,285),(470,286),(471,286),(472,286),(473,287),(474,287),(475,287),(476,288),(477,289),(478,290),(479,290),(480,290),(481,291),(482,292),(483,293),(484,293),(485,293),(486,294),(487,295),(488,296),(489,296),(490,296),(491,297),(492,298),(493,299),(494,299),(495,299),(496,300),(497,301),(498,302),(499,302),(500,302),(501,303),(502,304),(503,304),(504,304),(505,305),(506,306),(507,307),(508,307),(509,307),(510,308),(511,309),(512,310),(513,310),(514,310),(515,311),(516,312),(517,313),(518,313),(519,313),(520,314),(521,315),(522,316),(523,316),(524,316),(525,317),(526,318),(527,318),(528,318),(529,319),(530,320),(531,320),(532,320),(533,321),(534,322),(535,323),(536,323),(537,323),(538,324),(539,325),(540,326),(541,326),(542,326),(543,327),(544,328),(545,329),(546,329),(547,329),(548,330),(549,331),(550,332),(551,332),(552,332),(553,333),(554,334),(555,334),(556,334),(557,335),(558,336),(559,337),(560,337),(561,337),(562,338),(563,339),(564,340),(565,340),(566,340),(567,341),(568,342),(569,343),(570,343),(571,343),(572,344),(573,345),(574,346),(575,346),(576,346),(577,347),(578,348),(579,349),(580,349),(581,349),(582,350),(583,350),(584,350),(585,351),(586,352),(587,353),(588,353),(589,353),(590,354),(591,355),(592,356),(593,356),(594,356),(595,357),(596,358),(597,359),(598,359),(599,359),(600,360),(601,361),(602,362),(603,362),(604,362),(605,363),(606,364),(607,365),(608,365),(609,365),(610,366),(611,366),(612,366),(613,367),(614,367),(615,367),(616,368),(617,369),(618,370),(619,370),(620,370),(621,371),(622,372),(623,373),(624,373),(625,373),(626,374),(627,375),(628,376),(629,376),(630,376),(631,377),(632,378),(633,379),(634,379),(635,379),(636,380),(637,381),(638,382),(639,382),(640,382),(641,383),(642,383),(643,383),(644,384),(645,385),(646,386),(647,386),(648,386),(649,387),(650,388),(651,389),(652,389),(653,389),(654,390),(655,391),(656,392),(657,392),(658,392),(659,393),(660,394),(661,395),(662,395),(663,395),(664,396),(665,397),(666,398),(667,398),(668,398),(669,399),(670,399),(671,399),(672,400),(673,401),(674,402),(675,402),(676,402),(677,403),(678,404),(679,405),(680,405),(681,405),(682,406),(683,407),(684,408),(685,408),(686,408),(687,409),(688,410),(689,411),(690,411),(691,411),(692,412),(693,413),(694,414),(695,414),(696,414),(697,415),(698,416),(699,417),(700,417),(701,417),(702,418),(703,419),(704,420),(705,420),(706,420),(707,421),(708,422),(709,423),(710,423),(711,423),(712,424),(713,425),(714,426),(715,426),(716,426),(717,427),(718,428),(719,429),(720,429),(721,429),(722,430),(723,430),(724,430),(725,431),(726,432),(727,432),(728,433),(729,434),(730,435),(731,435),(732,436),(733,437),(734,438),(735,438),(736,439),(737,440),(738,441),(739,441),(740,442),(741,443),(742,444),(743,444),(744,445),(745,446),(746,446),(747,447),(748,448),(749,448),(750,449),(751,450),(752,451),(753,451),(754,452),(755,453),(756,454),(757,454),(758,455),(759,456),(760,457),(761,457),(762,458),(763,459),(764,460),(765,460),(766,461),(767,462),(768,462),(769,463),(770,464),(771,464),(772,464),(773,465),(774,466),(775,467),(776,467),(777,467),(778,468),(779,469),(780,470),(781,470),(782,470),(783,471),(784,472),(785,473),(786,473),(787,473),(788,474),(789,475),(790,476),(791,476),(792,476),(793,477),(794,478),(795,478),(796,478),(797,479),(798,480),(799,480),(800,481),(801,482),(802,483),(803,483),(804,484),(805,485),(806,486),(807,486),(808,487),(809,488),(810,489),(811,489),(812,490),(813,491),(814,492),(815,492),(816,493),(817,494),(818,494),(819,495),(820,496),(821,497),(822,497),(823,497),(824,498),(825,499),(826,500),(827,500),(828,500),(829,501),(830,502),(831,503),(832,503),(833,503),(834,504),(835,505),(836,506),(837,506),(838,506),(839,507),(840,508),(841,509),(842,509),(843,509),(844,510),(845,510),(846,510),(847,511),(848,511),(849,511),(850,512),(851,513),(852,514),(853,514),(854,514),(855,515),(856,516),(857,517),(858,517),(859,517),(860,518),(861,519),(862,520),(863,520),(864,520),(865,521),(866,522),(867,523),(868,523),(869,523),(870,524),(871,525),(872,526),(873,526),(874,527),(875,527),(876,527),(877,528),(878,529),(879,530),(880,530),(881,530),(882,531),(883,532),(884,533),(885,533),(886,533),(887,534),(888,535),(889,536),(890,536),(891,536),(892,537),(893,538),(894,539),(895,539),(896,539),(897,540),(898,541),(899,542),(900,542),(901,542),(902,543),(903,544),(904,544),(905,545),(906,546),(907,547),(908,547),(909,548),(910,549),(911,550),(912,550),(913,551),(914,552),(915,553),(916,553),(917,554),(918,555),(919,556),(920,556),(921,557),(922,558),(923,558),(924,559),(925,560),(926,561),(927,561),(928,561),(929,562),(930,563),(931,564),(932,564),(933,564),(934,565),(935,566),(936,567),(937,567),(938,567),(939,568),(940,569),(941,570),(942,570),(943,570),(944,571),(945,572),(946,573),(947,573),(948,573),(949,574),(950,574),(951,574),(952,575),(953,576),(954,576),(955,576),(956,577),(957,578),(958,579),(959,579),(960,579),(961,580),(962,581),(963,582),(964,582),(965,582),(966,583),(967,584),(968,585),(969,585),(970,585),(971,586),(972,587),(973,588),(974,588),(975,588),(976,589),(977,590),(978,590),(979,590),(980,591),(981,592),(982,592),(983,592),(984,593),(985,594),(986,595),(987,595),(988,595),(989,596),(990,597),(991,598),(992,598),(993,598),(994,599),(995,600),(996,601),(997,601),(998,601),(999,602),(1000,603),(1001,604),(1002,604),(1003,604),(1004,605),(1005,606),(1006,606),(1007,606),(1008,607),(1009,607),(1010,608),(1011,609),(1012,610),(1013,610),(1014,611),(1015,612),(1016,613),(1017,613),(1018,614),(1019,615),(1020,616),(1021,616),(1022,617),(1023,618),(1024,619),(1025,619),(1026,620),(1027,621),(1028,622),(1029,622),(1030,623),(1031,624),(1032,625),(1033,625),(1034,625),(1035,626),(1036,627),(1037,628),(1038,628),(1039,628),(1040,629),(1041,630),(1042,631),(1043,631),(1044,631),(1045,632),(1046,633),(1047,634),(1048,634),(1049,634),(1050,635),(1051,636),(1052,637),(1053,637),(1054,637),(1055,638),(1056,638),(1057,638),(1058,639),(1059,640),(1060,641),(1061,641),(1062,641),(1063,641),(1064,642),(1065,643),(1066,644),(1067,644),(1068,644),(1069,644),(1070,645),(1071,646),(1072,647),(1073,647),(1074,647),(1075,647),(1076,648),(1077,649),(1078,650),(1079,650),(1080,650),(1081,650),(1082,651),(1083,652),(1084,653),(1085,653),(1086,653),(1087,653),(1088,654),(1089,654),(1090,654),(1091,654),(1092,655),(1093,656),(1094,657),(1095,658),(1096,659),(1097,660),(1098,661),(1099,662),(1100,663),(1101,664),(1102,665),(1103,666),(1104,667),(1105,668),(1106,669),(1107,670),(1108,671),(1109,671),(1110,671),(1111,672),(1112,672),(1113,672),(1114,673),(1115,673),(1116,673),(1117,674),(1118,674),(1119,674),(1120,675),(1121,675),(1122,675),(1123,676),(1124,676),(1125,676),(1126,677),(1127,677),(1128,678),(1129,678),(1130,679),(1131,679),(1132,680),(1133,680),(1134,681),(1135,681),(1136,682),(1137,682),(1138,683),(1139,683),(1140,684),(1141,684),(1142,685),(1143,685),(1144,686),(1145,686),(1146,687),(1147,687),(1148,688),(1149,688),(1150,689),(1151,689),(1152,690),(1153,690),(1154,691),(1155,691),(1156,692),(1157,692),(1158,693),(1159,693),(1160,694),(1161,694),(1162,695),(1163,695),(1164,695),(1165,696),(1166,696),(1167,696),(1168,697),(1169,697),(1170,697),(1171,698),(1172,698),(1173,698),(1174,699),(1175,699),(1176,699),(1177,700),(1178,700),(1179,700),(1180,701),(1181,701),(1182,701),(1183,702),(1184,702),(1185,702),(1186,703),(1187,703),(1188,703),(1189,704),(1190,704),(1191,704),(1192,705),(1193,705),(1194,705),(1195,706),(1196,706),(1197,706),(1198,707),(1199,707),(1200,708),(1201,708),(1202,709),(1203,709),(1204,710),(1205,710),(1206,711),(1207,711),(1208,712),(1209,712),(1210,713),(1211,713),(1212,714),(1213,714),(1214,715),(1215,715),(1216,716),(1217,716),(1218,717),(1219,717),(1220,718),(1221,718),(1222,719),(1223,719),(1224,720),(1225,720),(1226,721),(1227,721),(1228,722),(1229,722),(1230,723),(1231,723),(1232,724),(1233,724),(1234,725),(1235,726),(1236,726),(1237,727),(1238,728),(1239,729),(1240,729),(1241,730),(1242,731),(1243,732),(1244,732),(1245,733),(1246,734),(1247,735),(1248,735),(1249,736),(1250,737),(1251,737),(1252,738),(1253,739),(1254,739),(1255,740),(1256,741),(1257,742),(1258,742),(1259,743),(1260,744),(1261,745),(1262,745),(1263,746),(1264,747),(1265,748),(1266,748),(1267,749),(1268,750),(1269,750),(1270,751),(1271,752),(1272,753),(1273,754),(1274,755),(1275,756),(1276,757),(1277,758),(1278,759),(1279,760),(1280,761),(1281,762),(1282,763),(1283,763),(1284,763),(1285,764),(1286,765),(1287,765),(1288,766),(1289,767),(1290,768),(1291,768),(1292,769),(1293,770),(1294,771),(1295,771),(1296,772),(1297,773),(1298,774),(1299,774),(1300,775),(1301,776),(1302,776),(1303,777),(1304,778),(1305,778),(1306,778),(1307,779),(1308,780),(1309,781),(1310,781),(1311,781),(1312,782),(1313,783),(1314,784),(1315,784),(1316,784),(1317,785),(1318,786),(1319,787),(1320,787),(1321,787),(1322,788),(1323,789),(1324,789),(1325,789),(1326,790),(1327,790),(1328,790),(1329,791),(1330,792),(1331,793),(1332,793),(1333,793),(1334,794),(1335,795),(1336,796),(1337,796),(1338,796),(1339,797),(1340,798),(1341,799),(1342,799),(1343,799),(1344,800),(1345,801),(1346,802),(1347,802),(1348,802),(1349,803),(1350,804),(1351,804),(1352,804),(1353,804),(1354,804),(1355,805),(1356,806),(1357,807),(1358,807),(1359,807),(1360,807),(1361,807),(1362,808),(1363,809),(1364,810),(1365,810),(1366,810),(1367,810),(1368,810),(1369,811),(1370,812),(1371,813),(1372,813),(1373,813),(1374,813),(1375,813),(1376,814),(1377,815),(1378,815),(1379,815),(1380,815),(1381,815),(1382,816),(1383,817),(1384,817),(1385,817),(1386,818),(1387,819),(1388,820),(1389,820),(1390,820),(1391,821),(1392,822),(1393,823),(1394,823),(1395,823),(1396,824),(1397,825),(1398,826),(1399,826),(1400,826),(1401,827),(1402,828),(1403,828),(1404,828),(1405,829),(1406,830),(1407,830),(1408,830),(1409,831),(1410,832),(1411,833),(1412,833),(1413,833),(1414,834),(1415,835),(1416,836),(1417,836),(1418,836),(1419,837),(1420,838),(1421,839),(1422,839),(1423,839),(1424,840),(1425,841),(1426,841),(1427,841),(1428,842),(1429,842),(1430,842),(1431,843),(1432,844),(1433,845),(1434,845),(1435,845),(1436,846),(1437,847),(1438,848),(1439,848),(1440,848),(1441,849),(1442,850),(1443,851),(1444,851),(1445,851),(1446,852),(1447,853),(1448,854),(1449,854),(1450,854),(1451,855),(1452,856),(1453,856),(1454,856),(1455,857),(1456,858),(1457,859),(1458,859),(1459,859),(1460,860),(1461,861),(1462,862),(1463,862),(1464,862),(1465,863),(1466,864),(1467,865),(1468,865),(1469,865),(1470,866),(1471,867),(1472,867),(1473,867),(1474,868),(1475,868),(1476,869),(1477,870),(1478,871),(1479,871),(1480,872),(1481,873),(1482,874),(1483,874),(1484,875),(1485,876),(1486,877),(1487,877),(1488,878),(1489,879),(1490,880),(1491,880),(1492,881),(1493,882),(1494,882),(1495,883),(1496,884),(1497,885),(1498,885),(1499,886),(1500,887),(1501,888),(1502,888),(1503,889),(1504,890),(1505,891),(1506,891),(1507,892),(1508,893),(1509,893),(1510,894),(1511,894),(1512,894),(1513,895),(1514,895),(1515,895),(1516,896),(1517,896),(1518,896),(1519,897),(1520,897),(1521,897),(1522,898),(1523,898),(1524,898),(1525,899),(1526,900),(1527,900),(1528,900),(1529,901),(1530,902),(1531,903),(1532,903),(1533,903),(1534,904),(1535,905),(1536,906),(1537,906),(1538,906),(1539,907),(1540,908),(1541,909),(1542,909),(1543,909),(1544,910),(1545,911),(1546,911),(1547,911),(1548,912),(1549,912),(1550,913),(1551,914),(1552,915),(1553,915),(1554,916),(1555,917),(1556,918),(1557,918),(1558,919),(1559,920),(1560,921),(1561,921),(1562,922),(1563,923),(1564,924),(1565,924),(1566,925),(1567,926),(1568,927),(1569,927),(1570,927),(1571,928),(1572,929),(1573,930),(1574,930),(1575,930),(1576,931),(1577,932),(1578,933),(1579,933),(1580,933),(1581,934),(1582,935),(1583,936),(1584,936),(1585,936),(1586,937),(1587,937),(1588,937),(1589,938),(1590,939),(1591,939),(1592,939),(1593,940),(1594,941),(1595,942),(1596,942),(1597,942),(1598,943),(1599,944),(1600,945),(1601,945),(1602,945),(1603,946),(1604,947),(1605,948),(1606,948),(1607,948),(1608,949),(1609,950),(1610,950),(1611,950),(1612,951),(1613,951),(1614,951),(1615,952),(1616,953),(1617,954),(1618,954),(1619,954),(1620,955),(1621,956),(1622,957),(1623,957),(1624,957),(1625,958),(1626,959),(1627,960),(1628,960),(1629,960),(1630,961),(1631,962),(1632,963),(1633,963),(1634,963),(1635,964),(1636,964),(1637,965),(1638,966),(1639,967),(1640,967),(1641,968),(1642,969),(1643,970),(1644,970),(1645,971),(1646,972),(1647,973),(1648,973),(1649,974),(1650,975),(1651,976),(1652,976),(1653,977),(1654,978),(1655,978),(1656,978),(1657,979),(1658,980),(1659,981),(1660,981),(1661,981),(1662,982),(1663,983),(1664,984),(1665,984),(1666,984),(1667,985),(1668,986),(1669,987),(1670,987),(1671,987),(1672,988),(1673,989),(1674,989),(1675,989),(1676,990),(1677,990),(1678,990),(1679,991),(1680,992),(1681,993),(1682,993),(1683,993),(1684,994),(1685,995),(1686,996),(1687,996),(1688,996),(1689,997),(1690,998),(1691,999),(1692,999),(1693,999),(1694,1000),(1695,1001),(1696,1002),(1697,1002),(1698,1002),(1699,1003),(1700,1004),(1701,1004),(1702,1005),(1703,1006),(1704,1007),(1705,1007),(1706,1008),(1707,1009),(1708,1010),(1709,1010),(1710,1011),(1711,1012),(1712,1013),(1713,1013),(1714,1014),(1715,1015),(1716,1015),(1717,1016),(1718,1017),(1719,1018),(1720,1018),(1721,1019),(1722,1020),(1723,1021),(1724,1021),(1725,1022),(1726,1023),(1727,1024),(1728,1024),(1729,1025),(1730,1026),(1731,1027),(1732,1027),(1733,1028),(1734,1028),(1735,1029),(1736,1029),(1737,1029),(1738,1030),(1739,1031),(1740,1032),(1741,1032),(1742,1032),(1743,1033),(1744,1034),(1745,1035),(1746,1035),(1747,1035),(1748,1036),(1749,1037),(1750,1038),(1751,1038),(1752,1038),(1753,1039),(1754,1040),(1755,1041),(1756,1041),(1757,1041),(1758,1042),(1759,1043),(1760,1044),(1761,1044),(1762,1044),(1763,1045),(1764,1045),(1765,1045),(1766,1046),(1767,1047),(1768,1048),(1769,1048),(1770,1048),(1771,1049),(1772,1050),(1773,1051),(1774,1051),(1775,1051),(1776,1052),(1777,1053),(1778,1054),(1779,1054),(1780,1054),(1781,1055),(1782,1056),(1783,1057),(1784,1057),(1785,1057),(1786,1058),(1787,1059),(1788,1060),(1789,1060),(1790,1060),(1791,1061),(1792,1062),(1793,1063),(1794,1063),(1795,1063),(1796,1064),(1797,1065),(1798,1066),(1799,1066),(1800,1066),(1801,1067),(1802,1068),(1803,1069),(1804,1069),(1805,1069),(1806,1070),(1807,1071),(1808,1072),(1809,1072),(1810,1072),(1811,1073),(1812,1074),(1813,1075),(1814,1075),(1815,1075),(1816,1076),(1817,1076),(1818,1076),(1819,1077),(1820,1077),(1821,1077),(1822,1078),(1823,1079),(1824,1080),(1825,1080),(1826,1080),(1827,1081),(1828,1082),(1829,1083),(1830,1083),(1831,1083),(1832,1084),(1833,1085),(1834,1086),(1835,1086),(1836,1086),(1837,1087),(1838,1088),(1839,1089),(1840,1089),(1841,1089),(1842,1090),(1843,1091),(1844,1092),(1845,1092),(1846,1092),(1847,1093),(1848,1094),(1849,1095),(1850,1095),(1851,1096),(1852,1097),(1853,1098),(1854,1098),(1855,1099),(1856,1100),(1857,1101),(1858,1101),(1859,1102),(1860,1103),(1861,1104),(1862,1104),(1863,1105),(1864,1106),(1865,1107),(1866,1107),(1867,1108),(1868,1108),(1869,1109),(1870,1109),(1871,1109),(1872,1110),(1873,1110),(1874,1110),(1875,1111),(1876,1111),(1877,1111),(1878,1112),(1879,1112),(1880,1112),(1881,1113),(1882,1113),(1883,1113),(1884,1114),(1885,1114),(1886,1114),(1887,1115),(1888,1115),(1889,1115),(1890,1116),(1891,1117),(1892,1118),(1893,1118),(1894,1118),(1895,1119),(1896,1120),(1897,1121),(1898,1121),(1899,1121),(1900,1122),(1901,1123),(1902,1124),(1903,1124),(1904,1124),(1905,1125),(1906,1126),(1907,1127),(1908,1127),(1909,1127),(1910,1128),(1911,1129),(1912,1130),(1913,1130),(1914,1130),(1915,1131),(1916,1132),(1917,1133),(1918,1133),(1919,1133),(1920,1133),(1921,1134),(1922,1135),(1923,1136),(1924,1136),(1925,1136),(1926,1136),(1927,1137),(1928,1138),(1929,1139),(1930,1139),(1931,1139),(1932,1139),(1933,1140),(1934,1141),(1935,1142),(1936,1142),(1937,1142),(1938,1142),(1939,1143),(1940,1144),(1941,1145),(1942,1145),(1943,1145),(1944,1145),(1945,1146),(1946,1146),(1947,1146),(1948,1146),(1949,1147),(1950,1148),(1951,1148),(1952,1148),(1953,1149),(1954,1150),(1955,1151),(1956,1151),(1957,1151),(1958,1152),(1959,1153),(1960,1154),(1961,1154),(1962,1154),(1963,1155),(1964,1156),(1965,1157),(1966,1157),(1967,1157),(1968,1158),(1969,1159),(1970,1160),(1971,1160),(1972,1160),(1973,1161),(1974,1162),(1975,1162),(1976,1162),(1977,1163),(1978,1164),(1979,1164),(1980,1164),(1981,1165),(1982,1166),(1983,1167),(1984,1167),(1985,1167),(1986,1168),(1987,1169),(1988,1170),(1989,1170),(1990,1170),(1991,1171),(1992,1172),(1993,1173),(1994,1173),(1995,1173),(1996,1174),(1997,1175),(1998,1176),(1999,1176),(2000,1176),(2001,1177),(2002,1178),(2003,1178),(2004,1178),(2005,1179),(2006,1179),(2007,1180),(2008,1181),(2009,1182),(2010,1182),(2011,1183),(2012,1184),(2013,1185),(2014,1185),(2015,1186),(2016,1187),(2017,1188),(2018,1188),(2019,1189),(2020,1190),(2021,1191),(2022,1191),(2023,1192),(2024,1193),(2025,1194),(2026,1194),(2027,1195),(2028,1195),(2029,1196),(2030,1197),(2031,1198),(2032,1198),(2033,1199),(2034,1200),(2035,1201),(2036,1201),(2037,1202),(2038,1203),(2039,1204),(2040,1204),(2041,1205),(2042,1206),(2043,1207),(2044,1207),(2045,1208),(2046,1209),(2047,1210),(2048,1210),(2049,1211),(2050,1212),(2051,1212),(2052,1212),(2053,1213),(2054,1214),(2055,1215),(2056,1215),(2057,1215),(2058,1216),(2059,1217),(2060,1218),(2061,1218),(2062,1218),(2063,1219),(2064,1220),(2065,1220),(2066,1220),(2067,1221),(2068,1222),(2069,1223),(2070,1223),(2071,1223),(2072,1224),(2073,1225),(2074,1226),(2075,1226),(2076,1226),(2077,1227),(2078,1228),(2079,1229),(2080,1229),(2081,1229),(2082,1230),(2083,1231),(2084,1232),(2085,1232),(2086,1232),(2087,1233),(2088,1234),(2089,1235),(2090,1235),(2091,1235),(2092,1236),(2093,1236),(2094,1236),(2095,1237),(2096,1238),(2097,1239),(2098,1239),(2099,1239),(2100,1240),(2101,1241),(2102,1242),(2103,1242),(2104,1242),(2105,1243),(2106,1244),(2107,1245),(2108,1245),(2109,1245),(2110,1246),(2111,1247),(2112,1248),(2113,1248),(2114,1248),(2115,1249),(2116,1250),(2117,1251),(2118,1251),(2119,1251),(2120,1252),(2121,1252),(2122,1252),(2123,1253),(2124,1254),(2125,1255),(2126,1255),(2127,1255),(2128,1255),(2129,1256),(2130,1257),(2131,1258),(2132,1258),(2133,1258),(2134,1258),(2135,1259),(2136,1260),(2137,1261),(2138,1261),(2139,1261),(2140,1261),(2141,1262),(2142,1263),(2143,1264),(2144,1264),(2145,1264),(2146,1264),(2147,1265),(2148,1266),(2149,1267),(2150,1267),(2151,1267),(2152,1267),(2153,1268),(2154,1268),(2155,1268),(2156,1268),(2157,1269),(2158,1269),(2159,1269),(2160,1270),(2161,1271),(2162,1272),(2163,1272),(2164,1272),(2165,1273),(2166,1274),(2167,1275),(2168,1275),(2169,1275),(2170,1276),(2171,1277),(2172,1278),(2173,1278),(2174,1278),(2175,1279),(2176,1280),(2177,1281),(2178,1281),(2179,1281),(2180,1282),(2181,1283),(2182,1284),(2183,1284),(2184,1284),(2185,1285),(2186,1286),(2187,1286),(2188,1286),(2189,1287),(2190,1288),(2191,1289),(2192,1289),(2193,1289),(2194,1290),(2195,1291),(2196,1292),(2197,1292),(2198,1292),(2199,1293),(2200,1294),(2201,1295),(2202,1295),(2203,1295),(2204,1296),(2205,1297),(2206,1298),(2207,1298),(2208,1298),(2209,1299),(2210,1300),(2211,1300),(2212,1300),(2213,1301),(2214,1301),(2215,1301),(2216,1301),(2217,1302),(2218,1303),(2219,1304),(2220,1304),(2221,1304),(2222,1304),(2223,1305),(2224,1306),(2225,1307),(2226,1307),(2227,1307),(2228,1307),(2229,1308),(2230,1309),(2231,1310),(2232,1310),(2233,1310),(2234,1310),(2235,1311),(2236,1312),(2237,1313),(2238,1313),(2239,1313),(2240,1313),(2241,1314),(2242,1315),(2243,1316),(2244,1316),(2245,1316),(2246,1316),(2247,1317),(2248,1318),(2249,1319),(2250,1319),(2251,1319),(2252,1320),(2253,1321),(2254,1322),(2255,1322),(2256,1322),(2257,1323),(2258,1324),(2259,1325),(2260,1325),(2261,1325),(2262,1326),(2263,1327),(2264,1328),(2265,1328),(2266,1328),(2267,1329),(2268,1330),(2269,1331),(2270,1331),(2271,1331),(2272,1332),(2273,1332),(2274,1332),(2275,1333),(2276,1334),(2277,1335),(2278,1335),(2279,1335),(2280,1336),(2281,1337),(2282,1338),(2283,1338),(2284,1338),(2285,1339),(2286,1340),(2287,1341),(2288,1341),(2289,1341),(2290,1342),(2291,1343),(2292,1344),(2293,1344),(2294,1344),(2295,1345),(2296,1346),(2297,1347),(2298,1347),(2299,1347),(2300,1348),(2301,1348),(2302,1348),(2303,1349),(2304,1350),(2305,1350),(2306,1350),(2307,1351),(2308,1352),(2309,1353),(2310,1353),(2311,1353),(2312,1354),(2313,1355),(2314,1356),(2315,1356),(2316,1356),(2317,1357),(2318,1358),(2319,1359),(2320,1359),(2321,1359),(2322,1360),(2323,1361),(2324,1362),(2325,1362),(2326,1362),(2327,1363),(2328,1364),(2329,1364),(2330,1364),(2331,1365),(2332,1366),(2333,1367),(2334,1367),(2335,1367),(2336,1368),(2337,1369),(2338,1370),(2339,1370),(2340,1370),(2341,1371),(2342,1372),(2343,1373),(2344,1373),(2345,1373),(2346,1374),(2347,1375),(2348,1376),(2349,1376),(2350,1376),(2351,1377),(2352,1378),(2353,1379),(2354,1379),(2355,1379),(2356,1380),(2357,1380),(2358,1380),(2359,1381),(2360,1382),(2361,1382),(2362,1382),(2363,1383),(2364,1384),(2365,1385),(2366,1385),(2367,1385),(2368,1386),(2369,1387),(2370,1388),(2371,1388),(2372,1388),(2373,1389),(2374,1390),(2375,1391),(2376,1391),(2377,1391),(2378,1392),(2379,1393),(2380,1394),(2381,1394),(2382,1394),(2383,1395),(2384,1396),(2385,1396),(2386,1396),(2387,1397),(2388,1398),(2389,1398),(2390,1399),(2391,1400),(2392,1401),(2393,1401),(2394,1402),(2395,1403),(2396,1404),(2397,1404),(2398,1405),(2399,1406),(2400,1407),(2401,1407),(2402,1408),(2403,1409),(2404,1410),(2405,1410),(2406,1411),(2407,1412),(2408,1412),(2409,1413),(2410,1414),(2411,1415),(2412,1415),(2413,1415),(2414,1416),(2415,1417),(2416,1418),(2417,1418),(2418,1418),(2419,1419),(2420,1420),(2421,1421),(2422,1421),(2423,1421),(2424,1422),(2425,1423),(2426,1424),(2427,1424),(2428,1424),(2429,1425),(2430,1426),(2431,1427),(2432,1427),(2433,1427),(2434,1428),(2435,1428),(2436,1428),(2437,1429),(2438,1430),(2439,1430),(2440,1431),(2441,1432),(2442,1433),(2443,1433),(2444,1434),(2445,1435),(2446,1436),(2447,1436),(2448,1437),(2449,1438),(2450,1439),(2451,1439),(2452,1440),(2453,1441),(2454,1442),(2455,1442),(2456,1443),(2457,1444),(2458,1444),(2459,1445),(2460,1446),(2461,1446),(2462,1447),(2463,1448),(2464,1449),(2465,1449),(2466,1450),(2467,1451),(2468,1452),(2469,1452),(2470,1453),(2471,1454),(2472,1455),(2473,1455),(2474,1456),(2475,1457),(2476,1458),(2477,1458),(2478,1459),(2479,1460),(2480,1460),(2481,1461),(2482,1461),(2483,1461),(2484,1462),(2485,1463),(2486,1464),(2487,1464),(2488,1464),(2489,1465),(2490,1466),(2491,1467),(2492,1467),(2493,1467),(2494,1468),(2495,1469),(2496,1470),(2497,1470),(2498,1470),(2499,1471),(2500,1472),(2501,1473),(2502,1473),(2503,1473),(2504,1474),(2505,1475),(2506,1476),(2507,1476),(2508,1476),(2509,1477),(2510,1478),(2511,1478),(2512,1479),(2513,1480),(2514,1481),(2515,1481),(2516,1482),(2517,1483),(2518,1484),(2519,1484),(2520,1485),(2521,1486),(2522,1487),(2523,1487),(2524,1488),(2525,1489),(2526,1490),(2527,1490),(2528,1491),(2529,1492),(2530,1492),(2531,1493),(2532,1493),(2533,1494),(2534,1495),(2535,1496),(2536,1496),(2537,1497),(2538,1498),(2539,1499),(2540,1499),(2541,1500),(2542,1501),(2543,1502),(2544,1502),(2545,1503),(2546,1504),(2547,1505),(2548,1505),(2549,1506),(2550,1507),(2551,1508),(2552,1508),(2553,1509),(2554,1510),(2555,1510),(2556,1511),(2557,1512),(2558,1513),(2559,1513),(2560,1514),(2561,1515),(2562,1516),(2563,1516),(2564,1517),(2565,1518),(2566,1519),(2567,1519),(2568,1520),(2569,1521),(2570,1522),(2571,1522),(2572,1523),(2573,1524),(2574,1524),(2575,1525),(2576,1526),(2577,1527),(2578,1527),(2579,1528),(2580,1529),(2581,1530),(2582,1530),(2583,1531),(2584,1532),(2585,1533),(2586,1533),(2587,1534),(2588,1535),(2589,1536),(2590,1536),(2591,1537),(2592,1538),(2593,1539),(2594,1539),(2595,1540),(2596,1540),(2597,1541),(2598,1542),(2599,1542),(2600,1543),(2601,1544),(2602,1545),(2603,1545),(2604,1546),(2605,1547),(2606,1548),(2607,1548),(2608,1549),(2609,1550),(2610,1551),(2611,1551),(2612,1552),(2613,1553),(2614,1554),(2615,1554),(2616,1555),(2617,1556),(2618,1556),(2619,1557),(2620,1557),(2621,1558),(2622,1559),(2623,1560),(2624,1560),(2625,1561),(2626,1562),(2627,1563),(2628,1563),(2629,1564),(2630,1565),(2631,1566),(2632,1566),(2633,1567),(2634,1568),(2635,1569),(2636,1569),(2637,1570),(2638,1571),(2639,1572),(2640,1572),(2641,1573),(2642,1573),(2643,1573),(2644,1574),(2645,1575),(2646,1576),(2647,1576),(2648,1576),(2649,1577),(2650,1578),(2651,1579),(2652,1579),(2653,1579),(2654,1580),(2655,1581),(2656,1582),(2657,1582),(2658,1582),(2659,1583),(2660,1584),(2661,1585),(2662,1585),(2663,1585),(2664,1586),(2665,1587),(2666,1588),(2667,1588),(2668,1588),(2669,1589),(2670,1589),(2671,1590),(2672,1590),(2673,1590),(2674,1591),(2675,1592),(2676,1592),(2677,1593),(2678,1593),(2679,1593),(2680,1594),(2681,1595),(2682,1595),(2683,1596),(2684,1596),(2685,1596),(2686,1597),(2687,1598),(2688,1598),(2689,1599),(2690,1599),(2691,1599),(2692,1600),(2693,1601),(2694,1601),(2695,1602),(2696,1602),(2697,1602),(2698,1603),(2699,1604),(2700,1604),(2701,1604),(2702,1605),(2703,1605),(2704,1605),(2705,1606),(2706,1607),(2707,1608),(2708,1608),(2709,1608),(2710,1609),(2711,1610),(2712,1611),(2713,1611),(2714,1611),(2715,1612),(2716,1613),(2717,1614),(2718,1614),(2719,1614),(2720,1615),(2721,1616),(2722,1617),(2723,1617),(2724,1617),(2725,1618),(2726,1619),(2727,1620),(2728,1620),(2729,1620),(2730,1621),(2731,1621),(2732,1621),(2733,1622),(2734,1623),(2735,1624),(2736,1624),(2737,1624),(2738,1625),(2739,1626),(2740,1627),(2741,1627),(2742,1627),(2743,1628),(2744,1629),(2745,1630),(2746,1630),(2747,1630),(2748,1631),(2749,1632),(2750,1633),(2751,1633),(2752,1633),(2753,1634),(2754,1635),(2755,1636),(2756,1636),(2757,1636),(2758,1637),(2759,1637),(2760,1637),(2761,1637),(2762,1638),(2763,1639),(2764,1640),(2765,1640),(2766,1640),(2767,1640),(2768,1641),(2769,1642),(2770,1643),(2771,1643),(2772,1643),(2773,1643),(2774,1644),(2775,1645),(2776,1646),(2777,1646),(2778,1646),(2779,1646),(2780,1647),(2781,1648),(2782,1649),(2783,1649),(2784,1649),(2785,1649),(2786,1650),(2787,1651),(2788,1652),(2789,1652),(2790,1652),(2791,1652),(2792,1653),(2793,1653),(2794,1654),(2795,1655),(2796,1656),(2797,1656),(2798,1657),(2799,1658),(2800,1659),(2801,1659),(2802,1660),(2803,1661),(2804,1662),(2805,1662),(2806,1663),(2807,1664),(2808,1665),(2809,1665),(2810,1666),(2811,1667),(2812,1668),(2813,1668),(2814,1669),(2815,1670),(2816,1670),(2817,1671),(2818,1672),(2819,1673),(2820,1673),(2821,1674),(2822,1675),(2823,1676),(2824,1676),(2825,1677),(2826,1678),(2827,1679),(2828,1679),(2829,1680),(2830,1681),(2831,1682),(2832,1682),(2833,1683),(2834,1684),(2835,1684),(2836,1685),(2837,1686),(2838,1686),(2839,1687),(2840,1688),(2841,1689),(2842,1689),(2843,1690),(2844,1691),(2845,1692),(2846,1692),(2847,1693),(2848,1694),(2849,1695),(2850,1695),(2851,1696),(2852,1697),(2853,1698),(2854,1698),(2855,1699),(2856,1700),(2857,1700),(2858,1701),(2859,1702),(2860,1703),(2861,1703),(2862,1703),(2863,1704),(2864,1705),(2865,1706),(2866,1706),(2867,1706),(2868,1707),(2869,1708),(2870,1709),(2871,1709),(2872,1709),(2873,1710),(2874,1711),(2875,1712),(2876,1712),(2877,1712),(2878,1713),(2879,1714),(2880,1715),(2881,1715),(2882,1715),(2883,1716),(2884,1716),(2885,1716),(2886,1717),(2887,1717),(2888,1718),(2889,1719),(2890,1720),(2891,1720),(2892,1721),(2893,1722),(2894,1723),(2895,1723),(2896,1724),(2897,1725),(2898,1726),(2899,1726),(2900,1727),(2901,1728),(2902,1729),(2903,1729),(2904,1730),(2905,1731),(2906,1732),(2907,1732),(2908,1733),(2909,1734),(2910,1734),(2911,1734),(2912,1735),(2913,1736),(2914,1737),(2915,1737),(2916,1737),(2917,1738),(2918,1739),(2919,1740),(2920,1740),(2921,1740),(2922,1741),(2923,1742),(2924,1743),(2925,1743),(2926,1743),(2927,1744),(2928,1745),(2929,1746),(2930,1746),(2931,1746),(2932,1747),(2933,1748),(2934,1748),(2935,1748),(2936,1749),(2937,1749),(2938,1750),(2939,1751),(2940,1752),(2941,1752),(2942,1753),(2943,1754),(2944,1755),(2945,1755),(2946,1756),(2947,1757),(2948,1758),(2949,1758),(2950,1759),(2951,1760),(2952,1761),(2953,1761),(2954,1762),(2955,1763),(2956,1764),(2957,1764),(2958,1765),(2959,1765),(2960,1765),(2961,1766),(2962,1767),(2963,1768),(2964,1768),(2965,1768),(2966,1769),(2967,1770),(2968,1771),(2969,1771),(2970,1771),(2971,1772),(2972,1773),(2973,1774),(2974,1774),(2975,1774),(2976,1775),(2977,1776),(2978,1777),(2979,1777),(2980,1777),(2981,1778),(2982,1779),(2983,1780),(2984,1780),(2985,1780),(2986,1781),(2987,1781),(2988,1781),(2989,1782),(2990,1783),(2991,1784),(2992,1784),(2993,1784),(2994,1785),(2995,1786),(2996,1787),(2997,1787),(2998,1787),(2999,1788),(3000,1789),(3001,1790),(3002,1790),(3003,1790),(3004,1791),(3005,1792),(3006,1793),(3007,1793),(3008,1793),(3009,1794),(3010,1795),(3011,1796),(3012,1796),(3013,1796),(3014,1797),(3015,1798),(3016,1798),(3017,1799),(3018,1800),(3019,1801),(3020,1801),(3021,1802),(3022,1803),(3023,1804),(3024,1804),(3025,1805),(3026,1806),(3027,1807),(3028,1807),(3029,1808),(3030,1809),(3031,1810),(3032,1810),(3033,1811),(3034,1812),(3035,1812),(3036,1813),(3037,1814),(3038,1814),(3039,1815),(3040,1816),(3041,1817),(3042,1817),(3043,1818),(3044,1819),(3045,1819),(3046,1820),(3047,1820),(3048,1821),(3049,1822),(3050,1823),(3051,1823),(3052,1824),(3053,1825),(3054,1826),(3055,1826),(3056,1827),(3057,1828),(3058,1828),(3059,1828),(3060,1829),(3061,1830),(3062,1831),(3063,1831),(3064,1831),(3065,1832),(3066,1833),(3067,1833),(3068,1833),(3069,1834),(3070,1835),(3071,1835),(3072,1835),(3073,1835),(3074,1836),(3075,1837),(3076,1838),(3077,1838),(3078,1838),(3079,1838),(3080,1839),(3081,1840),(3082,1840),(3083,1840),(3084,1840),(3085,1841),(3086,1842),(3087,1842),(3088,1842),(3089,1843),(3090,1844),(3091,1845),(3092,1845),(3093,1845),(3094,1846),(3095,1847),(3096,1847),(3097,1847),(3098,1848),(3099,1848),(3100,1848),(3101,1848),(3102,1849),(3103,1850),(3104,1851),(3105,1851),(3106,1851),(3107,1851),(3108,1852),(3109,1853),(3110,1854),(3111,1854),(3112,1854),(3113,1854),(3114,1855),(3115,1855),(3116,1855),(3117,1856),(3118,1857),(3119,1858),(3120,1858),(3121,1858),(3122,1859),(3123,1860),(3124,1861),(3125,1861),(3126,1861),(3127,1862),(3128,1862),(3129,1863),(3130,1864),(3131,1865),(3132,1865),(3133,1866),(3134,1867),(3135,1868),(3136,1868),(3137,1869),(3138,1869),(3139,1869),(3140,1869),(3141,1870),(3142,1871),(3143,1872),(3144,1872),(3145,1872),(3146,1872),(3147,1873),(3148,1874),(3149,1875),(3150,1875),(3151,1875),(3152,1875),(3153,1876),(3154,1877),(3155,1877),(3156,1877),(3157,1878),(3158,1879),(3159,1880),(3160,1880),(3161,1880),(3162,1881),(3163,1882),(3164,1882),(3165,1882),(3166,1883),(3167,1884),(3168,1884),(3169,1885),(3170,1886),(3171,1887),(3172,1887),(3173,1888),(3174,1889),(3175,1889),(3176,1890),(3177,1891),(3178,1891),(3179,1892),(3180,1893),(3181,1894),(3182,1894),(3183,1895),(3184,1896),(3185,1896),(3186,1897),(3187,1898),(3188,1899),(3189,1899),(3190,1900),(3191,1901),(3192,1902),(3193,1902),(3194,1903),(3195,1903),(3196,1904),(3197,1904),(3198,1905),(3199,1906),(3200,1907),(3201,1907),(3202,1908),(3203,1909),(3204,1910),(3205,1910),(3206,1911),(3207,1912),(3208,1913),(3209,1913),(3210,1914),(3211,1915),(3212,1916),(3213,1916),(3214,1917),(3215,1918),(3216,1919),(3217,1919),(3218,1920),(3219,1920),(3220,1921),(3221,1922),(3222,1923),(3223,1923),(3224,1924),(3225,1925),(3226,1926),(3227,1926),(3228,1927),(3229,1928),(3230,1929),(3231,1929),(3232,1930),(3233,1931),(3234,1932),(3235,1932),(3236,1933),(3237,1934),(3238,1935),(3239,1935),(3240,1936),(3241,1937),(3242,1937),(3243,1937),(3244,1938),(3245,1939),(3246,1940),(3247,1940),(3248,1940),(3249,1941),(3250,1942),(3251,1943),(3252,1943),(3253,1943),(3254,1944),(3255,1945),(3256,1946),(3257,1946),(3258,1946),(3259,1947),(3260,1948),(3261,1949),(3262,1949),(3263,1949),(3264,1950),(3265,1951),(3266,1951),(3267,1951),(3268,1952),(3269,1952),(3270,1952),(3271,1953),(3272,1954),(3273,1955),(3274,1955),(3275,1955),(3276,1956),(3277,1957),(3278,1958),(3279,1958),(3280,1958),(3281,1959),(3282,1960),(3283,1961),(3284,1961),(3285,1961),(3286,1962),(3287,1963),(3288,1964),(3289,1964),(3290,1964),(3291,1965),(3292,1966),(3293,1967),(3294,1967),(3295,1967),(3296,1968),(3297,1968),(3298,1969),(3299,1970),(3300,1971),(3301,1971),(3302,1972),(3303,1973),(3304,1974),(3305,1974),(3306,1975),(3307,1976),(3308,1977),(3309,1977),(3310,1978),(3311,1979),(3312,1980),(3313,1980),(3314,1981),(3315,1982),(3316,1983),(3317,1983),(3318,1984),(3319,1984),(3320,1984),(3321,1985),(3322,1986),(3323,1987),(3324,1987),(3325,1987),(3326,1988),(3327,1989),(3328,1990),(3329,1990),(3330,1990),(3331,1991),(3332,1991),(3333,1992),(3334,1993),(3335,1994),(3336,1994),(3337,1995),(3338,1996),(3339,1997),(3340,1997),(3341,1998),(3342,1998),(3343,1999),(3344,1999),(3345,2000),(3346,2000),(3347,2001),(3348,2001),(3349,2002),(3350,2002),(3351,2003),(3352,2003),(3353,2004),(3354,2004),(3355,2004),(3356,2005),(3357,2006),(3358,2007),(3359,2007),(3360,2007),(3361,2008),(3362,2009),(3363,2010),(3364,2010),(3365,2010),(3366,2011),(3367,2011),(3368,2011),(3369,2012),(3370,2013),(3371,2014),(3372,2014),(3373,2014),(3374,2015),(3375,2016),(3376,2017),(3377,2017),(3378,2017),(3379,2018),(3380,2018),(3381,2019),(3382,2020),(3383,2021),(3384,2021),(3385,2022),(3386,2023),(3387,2024),(3388,2024),(3389,2025),(3390,2025),(3391,2025),(3392,2026),(3393,2027),(3394,2028),(3395,2028),(3396,2028),(3397,2029),(3398,2030),(3399,2031),(3400,2031),(3401,2031),(3402,2032),(3403,2033),(3404,2034),(3405,2034),(3406,2034),(3407,2035),(3408,2036),(3409,2037),(3410,2037),(3411,2037),(3412,2038),(3413,2039),(3414,2040),(3415,2040),(3416,2040);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_to_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_media_gallery_value_video`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_media_gallery_value_video`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_video` (
  `value_id` int unsigned NOT NULL COMMENT 'Media Entity ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `provider` varchar(32) DEFAULT NULL COMMENT 'Video provider ID',
  `url` text COMMENT 'Video URL',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text COMMENT 'Page Meta Description',
  `metadata` text COMMENT 'Video meta data',
  PRIMARY KEY (`value_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_A0FC129B4BF5F257FAA2BEFCD8CD532C` FOREIGN KEY (`value_id`) REFERENCES `[[dbprefix]]catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Video Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_media_gallery_value_video`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_media_gallery_value_video` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_video` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_media_gallery_value_video` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` mediumtext COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_TEXT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_TEXT_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2800 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_text`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_text` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_text` VALUES (1,75,0,1,'<p>The sporty Joust Duffle Bag can\'t be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it\'s ideal for athletes with places to go.<p>\n<ul>\n<li>Dual top handles.</li>\n<li>Adjustable shoulder strap.</li>\n<li>Full-length zipper.</li>\n<li>L 29\" x W 13\" x H 11\".</li>\n</ul>'),(2,135,0,2,'11,21,23,18'),(3,75,0,2,'<p>Convenience is next to nothing when your day is crammed with action. So whether you\'re heading to class, gym, or the unbeaten path, make sure you\'ve got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.</p>\n<ul>\n<li>Zippered main compartment.</li>\n<li>Front zippered pocket.</li>\n<li>Side mesh pocket.</li>\n<li>Cell phone pocket on strap.</li>\n<li>Adjustable shoulder strap and top carry handle.</li>\n</ul>'),(4,139,0,2,'72,74,75,78'),(5,137,0,2,'32,33,36,38'),(6,138,0,2,'61,62,65,66,67'),(7,136,0,2,'27,29,30'),(8,135,0,3,'11,18,19,20,21,22,23'),(9,75,0,3,'<p>The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.</p>\n<ul>\n<li>Top handle.</li>\n<li>Grommet holes.</li>\n<li>Two-way zippers.</li>\n<li>H 20\" x W 14\" x D 12\".</li>\n<li>Weight: 2 lbs, 8 oz. Volume: 29 L.</li>\n<ul>'),(10,139,0,3,'72,74,75,77,78'),(11,137,0,3,'37,38'),(12,138,0,3,'61,64,65'),(13,136,0,3,'24'),(14,135,0,4,'11,19,22'),(15,75,0,4,'<p>Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.</p>\n<ul>\n<li>Multiple internal zip pockets.</li>\n<li>Made of durable nylon.</li>\n</ul>'),(16,139,0,4,'74,75,77,78,79'),(17,137,0,4,'37,38'),(18,138,0,4,'61,63,64,65,66'),(19,136,0,4,'27,28'),(20,135,0,5,'22,23'),(21,75,0,5,'<p>The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.</p>\n<ul>\n<li>Leather construction.</li>\n<li>Adjustable fabric carry strap.</li>\n<li>Dimensions: 18\" x 10\" x 4\".</li>\n</ul>'),(22,139,0,5,'73,75,78'),(23,137,0,5,'35,37,41'),(24,138,0,5,'61,62,66,67'),(25,136,0,5,'27,28,29'),(26,135,0,6,'18,20,8'),(27,75,0,6,'<p>With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That\'s partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.</p>\n<ul>\n<li>Durable nylon construction.</li>\n<li>2 main zippered compartments.</li>\n<li>1 exterior zippered pocket.</li>\n<li>Mesh side pouches.</li>\n<li>Padded, adjustable straps.</li>\n<li>Top carry handle.</li>\n<li>Dimensions: 18\" x 10\" x 6\".</li>\n</ul>'),(28,139,0,6,'71,72,74,75'),(29,137,0,6,'31,37,38'),(30,138,0,6,'61,64,65'),(31,136,0,6,'24,28'),(32,135,0,7,'11,19,22'),(33,75,0,7,'<p>Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you\'ll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.</p>\n<ul>\n<li>Wheeled.</li>\n<li>Dual carry handles.</li>\n<li>Retractable top handle.</li>\n<li>W 14\" x H 26\" x D 11\".</li>\n</ul>'),(34,139,0,7,'70,76,79'),(35,137,0,7,'37,38'),(36,138,0,7,'61,64,68'),(37,136,0,7,'25,26'),(38,135,0,8,'11,8'),(39,75,0,8,'<p>Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.</p>\n<ul>\n<li>Slip pocket on front.</li>\n<li>Contrast piping.</li>\n<li>Durable nylon construction.</li>\n</ul>'),(40,139,0,8,'74,77,79'),(41,137,0,8,'37,38'),(42,138,0,8,'64,66'),(43,136,0,8,'29,30'),(44,135,0,9,'11,20,8'),(45,75,0,9,'<p>The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.<p>\n<ul>\n<li>Two-way zippers.</li>\n<li>Contrast detailing.</li>\n<li>W 22.0\" x H 17\" x D 10\".</li>\n</ul>'),(46,139,0,9,'74,75,77'),(47,137,0,9,'37,38,39'),(48,138,0,9,'61,64,66'),(49,136,0,9,'29,30'),(50,135,0,10,'11,8'),(51,75,0,10,'<p>Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.</p>\n<ul>\n<li>Water-resistant shell.</li>\n<li>Water bottle pocket.</li>\n<li>Padded, articulating shoulder strap.</li>\n<li>Dimensions: W 21\" x H 15\" x D 10\".</li>\n</ul>'),(52,139,0,10,'72,75'),(53,138,0,10,'61,62,66,67'),(54,136,0,10,'29,30'),(55,135,0,11,'11,18,20,23'),(56,75,0,11,'<p>With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day\'s worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.</p>\n<ul>\n<li>Foam-padded adjustable shoulder straps.</li>\n<li>900D polyester.</li>\n<li>Oversized zippers.</li>\n<li>Locker loop.</li>\n</ul>'),(57,139,0,11,'72,75,77,78,79'),(58,137,0,11,'36,37,38'),(59,138,0,11,'61,64,65'),(60,136,0,11,'24,28'),(61,135,0,12,'11,20,8'),(62,75,0,12,'<p>School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it\'s outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.</p>\n<ul>\n<li>Large main and small zip compartments.</li>\n<li>Adjustable, padded straps.</li>\n<li>Interior foam pockets.</li>\n<li>Exterior zip compartment.</li>\n<li>Left sport bottle pocket.</li>\n<li>Survival gear sold separately.</li>\n</ul>'),(63,139,0,12,'71,72,75,78'),(64,137,0,12,'36,37,38'),(65,138,0,12,'61,64,65'),(66,136,0,12,'24,28,29'),(67,135,0,13,'19,22'),(68,75,0,13,'<p>For long weekends away, camping outings and business trips, the Overnight Duffle can\'t be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it\'s the perfect travel companion.</p>\n<ul>\n<li>Dual top handles.</li>\n<li>W 15\" x H 15\" x D 9\".</li>\n</ul>'),(69,139,0,13,'74,79'),(70,137,0,13,'35,37,38'),(71,138,0,13,'64'),(72,136,0,13,'26'),(73,135,0,14,'20,23,8'),(74,75,0,14,'<p>The name says so, but the Push It Messenger Bag is much more than a busy commuter\'s tote. It\'s a closet away from home when you\'re pedaling from class or work to gym and back or home again. It\'s the perfect size and shape for laptop, folded clothes, even extra shoes.</p>\n<ul>\n<li>Adjustable crossbody strap.</li>\n<li>Top handle.</li>\n<li>Zippered interior pocket.</li>\n<li>Secure clip closures.</li>\n<li>Durable fabric construction.</li>\n</ul>'),(75,139,0,14,'74,75,78,79'),(76,137,0,14,'37,38'),(77,138,0,14,'61,62,63,65,66,67'),(78,136,0,14,'27,28'),(79,75,0,15,'<p>You\'ll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you\'re drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.</p>\n<ul>\n<li>Made of plastic.</li>\n<li>Grooved sides for an easy grip.</li>\n</ul>'),(80,137,0,15,'44'),(81,135,0,16,'16,17,11'),(82,141,0,16,'85,87'),(83,75,0,16,'<p>Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.</p>\n<ul>\n<li>Durable plastic shell with sand fill.\n<li>Two handles.\n<li>15 lbs.\n</ul>'),(84,140,0,16,'80,81,84'),(85,137,0,16,'44'),(86,135,0,17,'11'),(87,141,0,17,'85,87'),(88,75,0,17,'<p>One of the world\'s simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.</p>\n<ul>\n<li> Contoured foam handles.\n<li> Adjustable length.\n</ul>'),(89,140,0,17,'80,81,84'),(90,137,0,17,'35,44'),(91,135,0,18,'11'),(92,141,0,18,'85,87'),(93,75,0,18,'<p>Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex&trade; Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.</p>\n<ul>\n<li>Home and/or gym use.</li>\n<li>Ergonomic handles.</li>\n</ul>'),(94,140,0,18,'80,81,84'),(95,137,0,18,'45,46'),(96,135,0,19,'16,11'),(97,141,0,19,'87'),(98,75,0,19,'<p>The Go-Get\'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.</p>\n<ul>\n<li>Durable foam grips.</li>\n<li>Supportive base.</li>\n</ul>'),(99,140,0,19,'80,81,84'),(100,137,0,19,'44,45'),(101,135,0,20,'11'),(102,141,0,20,'85,87'),(103,75,0,20,'<p>From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You\'ll love the extra comfort of its grippy handles and adjustable design.</p>\n<ul>\n<li>Adjusts from 30\" to 55\".\n<li>Grippy comfort handles.\n<li>Stretchy rubber construction.\n</ul>'),(104,140,0,20,'80,81,84'),(105,137,0,20,'35,44,45'),(106,135,0,21,'8,9,17,11'),(107,141,0,21,'87'),(108,75,0,21,'<p>Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.</p>\n<ul>\n<li>Standard Large Size: 4\" x 6\" x 9\".\n<li>Beveled edges for ideal contour grip.\n<li>Durable and soft, scratch-proof foam.\n<li>Individually wrapped.\n<li>Ten color choices.\n</ul> '),(109,140,0,21,'80,81,84'),(110,137,0,21,'42'),(111,135,0,22,'8,11'),(112,141,0,22,'87'),(113,75,0,22,'<p>It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise. </p>\n<ul>\n<li>6\'\' wide by 12\'\' long.</li>\n<li>Safe for myofascial release.</li>\n<li>EPP or PE foam options.</li>\n<li>Solid, dense, closed-cell foam.</li>\n</ul>'),(114,140,0,22,'80,81,84'),(115,137,0,22,'42'),(116,135,0,23,'11'),(117,141,0,23,'87'),(118,75,0,23,'<p>Forget fancy machines and costly memberships - the Harmony Lumaflex&trade; Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.</p>\n<ul>\n<li>Three flex bands.</li>\n<li>Textured, ergonomic grips.</li>\n<li>Adjustable lengths.</li>\n<li>Mesh carry bag included.</li>\n</ul>'),(119,140,0,23,'80,81,84'),(120,137,0,23,'35,44,45'),(121,141,0,24,'87'),(122,75,0,24,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(123,137,0,24,'44'),(124,135,0,25,'8,11'),(125,141,0,25,'87'),(126,75,0,25,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(127,140,0,25,'80,81,82,83,84'),(128,137,0,25,'44'),(129,135,0,26,'8,11'),(130,141,0,26,'87'),(131,75,0,26,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(132,140,0,26,'80,81,82,83,84'),(133,137,0,26,'44'),(134,135,0,27,'8,11'),(135,141,0,27,'87'),(136,75,0,27,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>65 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(137,140,0,27,'80,81,82,83,84'),(138,137,0,27,'44'),(139,135,0,28,'8,11'),(140,141,0,28,'87'),(141,75,0,28,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>65 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(142,140,0,28,'80,81,82,83,84'),(143,137,0,28,'44'),(144,135,0,29,'8,11'),(145,141,0,29,'87'),(146,75,0,29,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>65 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(147,140,0,29,'80,81,82,83,84'),(148,137,0,29,'44'),(149,135,0,30,'8,11'),(150,141,0,30,'87'),(151,75,0,30,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>75 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(152,140,0,30,'80,81,82,83,84'),(153,137,0,30,'44'),(154,135,0,31,'8,11'),(155,141,0,31,'87'),(156,75,0,31,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>75 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(157,140,0,31,'80,81,82,83,84'),(158,137,0,31,'44'),(159,135,0,32,'8,11'),(160,141,0,32,'87'),(161,75,0,32,'<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it\'s a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\n<ul>\n<li>75 cm plastic shell.</li>\n<li>Durable, burst-resistant design.</li>\n<li>Hand pump included.</li>\n</ul>'),(162,140,0,32,'80,81,82,83,84'),(163,137,0,32,'44'),(164,135,0,33,'8'),(165,141,0,33,'87'),(166,75,0,33,'<p>The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap\'s 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.</p>\n<ul>\n<li>100% soft and durable cotton.\n<li>Plastic cinch buckle is easy to use.\n<li>Three natural colors made from phthalate and heavy metal free dyes.\n</ul>'),(167,135,0,34,'8'),(168,141,0,34,'87'),(169,75,0,34,'<p>The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap\'s 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.</p>\n<ul>\n<li>8\' long x 1.0\" wide.\n<li>100% soft and durable cotton.\n<li>Plastic cinch buckle is easy to use.\n<li>Three natural colors made from phthalate and heavy metal free dyes.\n</ul>'),(170,140,0,34,'80,81,84'),(171,137,0,34,'32,44'),(172,135,0,35,'8'),(173,141,0,35,'87'),(174,75,0,35,'<p>The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap\'s 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.</p>\n<ul>\n<li>10\' long x 1.0\" wide.\n<li>100% soft and durable cotton.\n<li>Plastic cinch buckle is easy to use.\n<li>Three natural colors made from phthalate and heavy metal free dyes.\n</ul>'),(175,140,0,35,'80,81,84'),(176,137,0,35,'32,44'),(177,135,0,36,'9,17,5,11'),(178,141,0,36,'86,87,90'),(179,75,0,36,'<p>Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.</p>\n<ul>\n<li>Japanese quartz movement.</li>\n<li>Strap fits 7\" to 8.0\".</li>\n</ul>'),(180,140,0,36,'80'),(181,137,0,36,'44,45'),(182,135,0,37,'9,16'),(183,141,0,37,'86,87,90'),(184,75,0,37,'<p>It\'s easy to track and monitor your training progress with the Endurance Watch. You\'ll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.</p>\n<ul>\n<li>Digital display.</li>\n<li>LED backlight.</li>\n<li>Strap fits 7\" to 10\".</li>\n<li>1-year limited warranty.</li>\n<li>Comes with polished metal case.</li>\n</ul>'),(185,140,0,37,'80'),(186,137,0,37,'43,45,48'),(187,135,0,38,'9,16,17,5,11'),(188,141,0,38,'86,87,90'),(189,75,0,38,'<p>Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.</p>\n<ul>\n<li>Brushed metal case.</li>\n<li>Water resistant (100 meters).</li>\n<li>Buckle clasp.</li>\n<li>Strap fits 7\" - 10\".</li>\n<li>1-year limited warranty.</li>\n</ul>'),(190,140,0,38,'80,81,84'),(191,137,0,38,'43,44,48'),(192,135,0,39,'9'),(193,141,0,39,'86,88,90'),(194,75,0,39,'<p>Whether you\'re traveling or wish you were, you\'ll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.</p>\n<ul>\n<li>Two dials.</li>\n<li>Stainless steel case.</li>\n<li>Adjustable leather band.</li>\n</ul>'),(195,140,0,39,'80'),(196,137,0,39,'35,44'),(197,135,0,40,'16,17,5,11'),(198,141,0,40,'86,87,90'),(199,75,0,40,'<p>The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.</p>\n<ul>\n<li>Digital display.</li>\n<li>LED backlight.</li>\n<li>Rubber strap with buckle clasp.</li>\n<li>1-year limited warranty.</li>'),(200,140,0,40,'80'),(201,137,0,40,'45'),(202,135,0,41,'9'),(203,141,0,41,'86,88,90'),(204,75,0,41,'<p>Designed to stand up to your active lifestyle, this women\'s Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.</p>\n<ul>\n<li>Precision Miyota&reg; three-hand movement.</li>\n</ul>'),(205,140,0,41,'81'),(206,137,0,41,'47'),(207,135,0,42,'9,17'),(208,141,0,42,'86,87,90'),(209,75,0,42,'<p>The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.</p>\n<ul>\n<li>Displays time, day and date.</li>\n<li>Two-tone design.</li>\n<li>12/24 hour formats.</li>\n<li>Nickel-free buckle on band.</li>\n<li>Battery included.</li>\n</ul>'),(210,140,0,42,'81'),(211,137,0,42,'48'),(212,135,0,43,'9,16,5,11'),(213,141,0,43,'86,87,90'),(214,75,0,43,'<p>Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.</p>\n<ul>\n<li>Japanese quartz movement.</li>\n<li>Strap fits 5\" to 6.0\".</li>\n</ul>'),(215,140,0,43,'81'),(216,137,0,43,'44,45,48'),(217,135,0,44,'16,11'),(218,141,0,44,'86,87,90'),(219,75,0,44,'<p>The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.</p>\n<ul>\n<li>Digital display.</li>\n<li>LED backlight.</li>\n<li>Rubber strap with buckle clasp.</li>\n<li>1-year limited warranty.</li>\n</ul>'),(220,140,0,44,'81'),(221,137,0,44,'43,45,48'),(222,135,0,45,'8,11'),(223,141,0,45,'87'),(224,75,0,45,'<p>A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:</p>\n<ul>\n<li> Sprite Statis Ball\n<li> Sprite Foam Yoga Brick\n<li> Sprite Yoga Strap\n<li> Sprite Foam Roller\n</ul>'),(225,140,0,45,'80,81,84'),(226,135,0,46,'8'),(227,141,0,46,'87'),(228,75,0,46,'<p>Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6\', 8\' and 10\'.</p>\n<ul>\n<li> 100% soft and durable cotton.\n<li> Plastic cinch buckle is easy to use.\n<li> Choice of three natural colors made from phthalate and heavy metal free dyes.\n</ul>'),(229,140,0,46,'80,81,84'),(230,137,0,46,'32,44'),(231,75,0,47,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(232,75,0,48,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(233,75,0,49,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(234,75,0,50,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(235,75,0,51,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(236,75,0,52,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(237,75,0,53,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(238,75,0,54,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(239,75,0,55,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(240,75,0,56,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(241,75,0,57,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(242,75,0,58,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(243,75,0,59,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(244,75,0,60,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(245,75,0,61,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(246,75,0,62,'<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>'),(247,137,0,62,'158'),(248,154,0,62,'194'),(249,155,0,62,'201,203,204,207,209'),(250,75,0,63,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(251,75,0,64,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(252,75,0,65,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(253,75,0,66,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(254,75,0,67,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(255,75,0,68,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(256,75,0,69,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(257,75,0,70,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(258,75,0,71,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(259,75,0,72,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(260,75,0,73,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(261,75,0,74,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(262,75,0,75,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(263,75,0,76,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(264,75,0,77,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(265,75,0,78,'<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.</p>\n<p>&bull; Black pullover hoodie.<br />&bull; Soft, brushed interior. <br />&bull; Front hand pockets. <br />&bull; Machine wash/dry.</p>'),(266,137,0,78,'158,144,37'),(267,154,0,78,'196'),(268,155,0,78,'201,203,204,207,209'),(269,75,0,79,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(270,75,0,80,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(271,75,0,81,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(272,75,0,82,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(273,75,0,83,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(274,75,0,84,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(275,75,0,85,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(276,75,0,86,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(277,75,0,87,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(278,75,0,88,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(279,75,0,89,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(280,75,0,90,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(281,75,0,91,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(282,75,0,92,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(283,75,0,93,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(284,75,0,94,'<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.</p>\n<p>&bull; Full zip black hoodie pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Kangaroo pocket. <br />&bull; Machine wash/dry.</p>'),(285,137,0,94,'153'),(286,154,0,94,'196'),(287,155,0,94,'201,203,204,207,209'),(288,75,0,95,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(289,75,0,96,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(290,75,0,97,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(291,75,0,98,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(292,75,0,99,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(293,75,0,100,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(294,75,0,101,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(295,75,0,102,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(296,75,0,103,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(297,75,0,104,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(298,75,0,105,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(299,75,0,106,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(300,75,0,107,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(301,75,0,108,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(302,75,0,109,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(303,75,0,110,'<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.</p>\n<p>&bull; Light green crewneck sweatshirt.<br />&bull; Hand pockets.<br />&bull; Relaxed fit.<br />&bull; Machine wash/dry.</p>'),(304,137,0,110,'153'),(305,154,0,110,'196'),(306,155,0,110,'201,203,204,207,209'),(307,75,0,111,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(308,75,0,112,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(309,75,0,113,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(310,75,0,114,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(311,75,0,115,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(312,75,0,116,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(313,75,0,117,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(314,75,0,118,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(315,75,0,119,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(316,75,0,120,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(317,75,0,121,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(318,75,0,122,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(319,75,0,123,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(320,75,0,124,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(321,75,0,125,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(322,75,0,126,'<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.</p>\n<p>&bull; Cream crewneck sweatshirt with navy sleeves/trim.<br />&bull; Relaxed fit. <br />&bull; Ribbed cuffs and hem. <br />&bull; Machine wash/dry.</p>'),(323,137,0,126,'158,38,37'),(324,154,0,126,'194'),(325,155,0,126,'203'),(326,75,0,127,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(327,75,0,128,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(328,75,0,129,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(329,75,0,130,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(330,75,0,131,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(331,75,0,132,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(332,75,0,133,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(333,75,0,134,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(334,75,0,135,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(335,75,0,136,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(336,75,0,137,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(337,75,0,138,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(338,75,0,139,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(339,75,0,140,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(340,75,0,141,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(341,75,0,142,'<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.</p>\n<p>&bull; Navy specked full zip hoodie.<br />&bull; Ribbed cuffs, banded waist.<br />&bull; Side pockets. <br />&bull; Machine wash/dry.</p>'),(342,137,0,142,'158,38,37'),(343,154,0,142,'196'),(344,155,0,142,'201,203,204,207'),(345,75,0,143,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(346,75,0,144,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(347,75,0,145,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(348,75,0,146,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(349,75,0,147,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(350,75,0,148,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(351,75,0,149,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(352,75,0,150,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(353,75,0,151,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(354,75,0,152,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(355,75,0,153,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(356,75,0,154,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(357,75,0,155,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(358,75,0,156,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(359,75,0,157,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(360,75,0,158,'<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.</p>\n<p>&bull; Full-zip gray and black hoodie.<br />&bull; Ribbed hem.<br />&bull; Standard fit.<br />&bull; Drawcord hood cinch.<br />&bull; Water-resistant coating.</p>'),(361,137,0,158,'144,145,38'),(362,154,0,158,'194'),(363,155,0,158,'207'),(364,75,0,159,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(365,75,0,160,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(366,75,0,161,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(367,75,0,162,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(368,75,0,163,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(369,75,0,164,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(370,75,0,165,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(371,75,0,166,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(372,75,0,167,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(373,75,0,168,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(374,75,0,169,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(375,75,0,170,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(376,75,0,171,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(377,75,0,172,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(378,75,0,173,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(379,75,0,174,'<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.</p>\n<p>&bull; Brown hoodie with black detail.<br />&bull; Pullover. <br />&bull; Adjustable drawstring hood. <br />&bull; Ribbed cuffs/waistband. <br />&bull; Machine wash/dry.</p>'),(380,137,0,174,'153,38,37'),(381,154,0,174,'196'),(382,155,0,174,'209,203'),(383,75,0,175,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(384,75,0,176,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(385,75,0,177,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(386,75,0,178,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(387,75,0,179,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(388,75,0,180,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(389,75,0,181,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(390,75,0,182,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(391,75,0,183,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(392,75,0,184,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(393,75,0,185,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(394,75,0,186,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(395,75,0,187,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(396,75,0,188,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(397,75,0,189,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(398,75,0,190,'<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.</p>\n<p>&bull; Blue heather hoodie.<br />&bull; Relaxed fit. <br />&bull; Moisture-wicking. <br />&bull; Machine wash/dry.</p>'),(399,137,0,190,'155,158,37'),(400,154,0,190,'196'),(401,155,0,190,'207,209'),(402,75,0,191,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(403,75,0,192,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(404,75,0,193,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(405,75,0,194,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(406,75,0,195,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(407,75,0,196,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(408,75,0,197,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(409,75,0,198,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(410,75,0,199,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(411,75,0,200,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(412,75,0,201,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(413,75,0,202,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(414,75,0,203,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(415,75,0,204,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(416,75,0,205,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(417,75,0,206,'<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle</p>\n<p>&bull; Navy heather crewneck sweatshirt.<br />&bull; LumaTech&trade; moisture-wicking fabric.<br />&bull; Antimicrobial, odor-resistant.<br />&bull; Zip hand pockets.<br />&bull; Chafe-resistant flatlock seams.<br />&bull; Rib-knit cuffs and hem.</p>'),(418,137,0,206,'158,147'),(419,154,0,206,'196'),(420,155,0,206,'201,203,204,207'),(421,75,0,207,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(422,75,0,208,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(423,75,0,209,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(424,75,0,210,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(425,75,0,211,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(426,75,0,212,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(427,75,0,213,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(428,75,0,214,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(429,75,0,215,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(430,75,0,216,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(431,75,0,217,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(432,75,0,218,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(433,75,0,219,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(434,75,0,220,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(435,75,0,221,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(436,75,0,222,'<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.</p>\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>'),(437,137,0,222,'144,153'),(438,154,0,222,'194'),(439,155,0,222,'201,203,204,207,209'),(440,75,0,223,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(441,75,0,224,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(442,75,0,225,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(443,75,0,226,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(444,75,0,227,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(445,75,0,228,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(446,75,0,229,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(447,75,0,230,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(448,75,0,231,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(449,75,0,232,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(450,75,0,233,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(451,75,0,234,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(452,75,0,235,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(453,75,0,236,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(454,75,0,237,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(455,75,0,238,'<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>'),(456,137,0,238,'144,38'),(457,154,0,238,'198'),(458,155,0,238,'201,203,204,207,209'),(459,75,0,239,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(460,75,0,240,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(461,75,0,241,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(462,75,0,242,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(463,75,0,243,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(464,75,0,244,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(465,75,0,245,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(466,75,0,246,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(467,75,0,247,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(468,75,0,248,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(469,75,0,249,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(470,75,0,250,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(471,75,0,251,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(472,75,0,252,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(473,75,0,253,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(474,75,0,254,'<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>'),(475,137,0,254,'142,144'),(476,154,0,254,'196'),(477,155,0,254,'201,203,204,207,209'),(478,75,0,255,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(479,75,0,256,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(480,75,0,257,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(481,75,0,258,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(482,75,0,259,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(483,75,0,260,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(484,75,0,261,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(485,75,0,262,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(486,75,0,263,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(487,75,0,264,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(488,75,0,265,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(489,75,0,266,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(490,75,0,267,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(491,75,0,268,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(492,75,0,269,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(493,75,0,270,'<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.</p>\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>'),(494,151,0,270,'119,120,122,123,125,127,129'),(495,137,0,270,'144,147,38'),(496,154,0,270,'196'),(497,155,0,270,'203,206,207,209'),(498,75,0,271,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(499,75,0,272,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(500,75,0,273,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(501,75,0,274,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(502,75,0,275,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(503,75,0,276,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(504,75,0,277,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(505,75,0,278,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(506,75,0,279,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(507,75,0,280,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(508,75,0,281,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(509,75,0,282,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(510,75,0,283,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(511,75,0,284,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(512,75,0,285,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(513,75,0,286,'<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.</p>\n<p>&bull; Lime 1/4 zip pullover.<br />&bull; Split pocket. <br />&bull; Thumb holes. <br />&bull; Machine wash/hang to dry.</p>'),(514,151,0,286,'116,122,123,125,127'),(515,137,0,286,'144,147,38'),(516,154,0,286,'196'),(517,155,0,286,'203,206,207,209'),(518,75,0,287,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(519,75,0,288,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(520,75,0,289,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(521,75,0,290,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(522,75,0,291,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(523,75,0,292,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(524,75,0,293,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(525,75,0,294,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(526,75,0,295,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(527,75,0,296,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(528,75,0,297,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(529,75,0,298,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(530,75,0,299,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(531,75,0,300,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(532,75,0,301,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(533,75,0,302,'<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.</p>\n<p>&bull; Black 1/4 zip pullover with royal zipper. <br />&bull; Adjustable hood and sleeve cuffs. <br />&bull; Machine wash/air dry.</p>'),(534,151,0,302,'116,124,127'),(535,137,0,302,'33,144,37'),(536,154,0,302,'196'),(537,155,0,302,'202,203,207,209,210'),(538,75,0,303,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(539,75,0,304,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(540,75,0,305,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(541,75,0,306,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(542,75,0,307,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(543,75,0,308,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(544,75,0,309,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(545,75,0,310,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(546,75,0,311,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(547,75,0,312,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(548,75,0,313,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(549,75,0,314,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(550,75,0,315,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(551,75,0,316,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(552,75,0,317,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(553,75,0,318,'<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.</p>\n<p>&bull; Red full zip fleece with gray insets.<br />&bull; Double-knit construction.<br />&bull; Full athletic cut.<br />&bull; Set in sleeves.<br />&bull; Front pouch pocket.</p>'),(554,151,0,318,'119,120,122,124,128'),(555,137,0,318,'38'),(556,154,0,318,'196'),(557,155,0,318,'201,203,206,207,209'),(558,75,0,319,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(559,75,0,320,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(560,75,0,321,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(561,75,0,322,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(562,75,0,323,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(563,75,0,324,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(564,75,0,325,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(565,75,0,326,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(566,75,0,327,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(567,75,0,328,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(568,75,0,329,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(569,75,0,330,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(570,75,0,331,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(571,75,0,332,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(572,75,0,333,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(573,75,0,334,'<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.</p>\n<p>&bull; Gray polyester/spandex full zip jacket with orange lining. <br />&bull; Right pocket device storage.<br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(574,151,0,334,'124,127,128'),(575,137,0,334,'150,38'),(576,154,0,334,'196'),(577,155,0,334,'202,203,209,210'),(578,75,0,335,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(579,75,0,336,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(580,75,0,337,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(581,75,0,338,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(582,75,0,339,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(583,75,0,340,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(584,75,0,341,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(585,75,0,342,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(586,75,0,343,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(587,75,0,344,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(588,75,0,345,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(589,75,0,346,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(590,75,0,347,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(591,75,0,348,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(592,75,0,349,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(593,75,0,350,'<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.</p>\n<p>&bull; Yellow 1/4 zip pullover. <br />&bull; Two chest pockets.<br />&bull; Standard fit. <br />&bull; Waterproof, breathable, seam sealed. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(594,151,0,350,'117,119,122,125,127'),(595,137,0,350,'142,148,38'),(596,154,0,350,'196'),(597,155,0,350,'203,205,206,207,209'),(598,75,0,351,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(599,75,0,352,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(600,75,0,353,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(601,75,0,354,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(602,75,0,355,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(603,75,0,356,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(604,75,0,357,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(605,75,0,358,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(606,75,0,359,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(607,75,0,360,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(608,75,0,361,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(609,75,0,362,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(610,75,0,363,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(611,75,0,364,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(612,75,0,365,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(613,75,0,366,'<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.</p>\n<p>&bull; Red 1/4 zip pullover.<br />&bull; Adjustable VELCRO&reg; sleeve cuffs. <br />&bull; Two hand pockets. <br />&bull; Napoleon pocket. <br />&bull; Machine wash/dry</p>'),(614,151,0,366,'119,122,123,125,127'),(615,137,0,366,'37,38'),(616,154,0,366,'196'),(617,155,0,366,'201,203,205,206,207,209'),(618,75,0,367,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(619,75,0,368,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(620,75,0,369,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(621,75,0,370,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(622,75,0,371,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(623,75,0,372,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(624,75,0,373,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(625,75,0,374,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(626,75,0,375,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(627,75,0,376,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(628,75,0,377,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(629,75,0,378,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(630,75,0,379,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(631,75,0,380,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(632,75,0,381,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(633,75,0,382,'<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.</p>\n<p>&bull; Black full-zip flight jacket.<br />&bull; Cocona&reg; wicking fiber.<br />&bull; Machine wash/dry.</p>'),(634,151,0,382,'116,121,123,125,128'),(635,137,0,382,'142,37,38'),(636,154,0,382,'196'),(637,155,0,382,'201,207,209,210'),(638,75,0,383,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(639,75,0,384,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(640,75,0,385,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(641,75,0,386,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(642,75,0,387,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(643,75,0,388,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(644,75,0,389,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(645,75,0,390,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(646,75,0,391,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(647,75,0,392,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(648,75,0,393,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(649,75,0,394,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(650,75,0,395,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(651,75,0,396,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(652,75,0,397,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(653,75,0,398,'<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>'),(654,151,0,398,'116,119,124,128'),(655,137,0,398,'144,145,37'),(656,154,0,398,'196'),(657,155,0,398,'201,204,205,207,208'),(658,75,0,399,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(659,75,0,400,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(660,75,0,401,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(661,75,0,402,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(662,75,0,403,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(663,75,0,404,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(664,75,0,405,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(665,75,0,406,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(666,75,0,407,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(667,75,0,408,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(668,75,0,409,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(669,75,0,410,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(670,75,0,411,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(671,75,0,412,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(672,75,0,413,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(673,75,0,414,'<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>'),(674,151,0,414,'119,120,123,125,128'),(675,137,0,414,'37,38'),(676,154,0,414,'196'),(677,155,0,414,'203,205,207,209'),(678,75,0,415,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(679,75,0,416,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(680,75,0,417,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(681,75,0,418,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(682,75,0,419,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(683,75,0,420,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(684,75,0,421,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(685,75,0,422,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(686,75,0,423,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(687,75,0,424,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(688,75,0,425,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(689,75,0,426,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(690,75,0,427,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(691,75,0,428,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(692,75,0,429,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(693,75,0,430,'<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.</p>\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>'),(694,151,0,430,'116,121,124,127'),(695,137,0,430,'158,144,38'),(696,154,0,430,'196'),(697,155,0,430,'201,203,204,207'),(698,75,0,431,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(699,75,0,432,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(700,75,0,433,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(701,75,0,434,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(702,75,0,435,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(703,75,0,436,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(704,75,0,437,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(705,75,0,438,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(706,75,0,439,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(707,75,0,440,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(708,75,0,441,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(709,75,0,442,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(710,75,0,443,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(711,75,0,444,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(712,75,0,445,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(713,75,0,446,'<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.</p>\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(714,151,0,446,'135'),(715,137,0,446,'33,151,38'),(716,154,0,446,'196'),(717,155,0,446,'201,204,208'),(718,75,0,447,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(719,75,0,448,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(720,75,0,449,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(721,75,0,450,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(722,75,0,451,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(723,75,0,452,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(724,75,0,453,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(725,75,0,454,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(726,75,0,455,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(727,75,0,456,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(728,75,0,457,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(729,75,0,458,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(730,75,0,459,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(731,75,0,460,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(732,75,0,461,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(733,75,0,462,'<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(734,151,0,462,'135'),(735,137,0,462,'152,148,153'),(736,154,0,462,'196'),(737,155,0,462,'201,204,208'),(738,75,0,463,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(739,75,0,464,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(740,75,0,465,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(741,75,0,466,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(742,75,0,467,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(743,75,0,468,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(744,75,0,469,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(745,75,0,470,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(746,75,0,471,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(747,75,0,472,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(748,75,0,473,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(749,75,0,474,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(750,75,0,475,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(751,75,0,476,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(752,75,0,477,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(753,75,0,478,'<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(754,151,0,478,'135'),(755,137,0,478,'147,38'),(756,154,0,478,'196'),(757,155,0,478,'201,204,208'),(758,75,0,479,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(759,75,0,480,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(760,75,0,481,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(761,75,0,482,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(762,75,0,483,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(763,75,0,484,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(764,75,0,485,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(765,75,0,486,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(766,75,0,487,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(767,75,0,488,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(768,75,0,489,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(769,75,0,490,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(770,75,0,491,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(771,75,0,492,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(772,75,0,493,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(773,75,0,494,'<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.</p>\n<p>&bull; Lime heathered v-neck tee. <br />&bull; Ultra-lightweight.<br />&bull; Moisture-wicking Cocona&reg; fabric.<br />&bull; Machine wash/dry.</p>'),(774,151,0,494,'135'),(775,137,0,494,'142,153,38'),(776,154,0,494,'196'),(777,155,0,494,'201,204,208'),(778,75,0,495,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(779,75,0,496,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(780,75,0,497,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(781,75,0,498,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(782,75,0,499,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(783,75,0,500,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(784,75,0,501,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(785,75,0,502,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(786,75,0,503,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(787,75,0,504,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(788,75,0,505,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(789,75,0,506,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(790,75,0,507,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(791,75,0,508,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(792,75,0,509,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(793,75,0,510,'<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.</p>\n<p>&bull; Red polyester tee.<br />&bull; Crew neckline. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(794,151,0,510,'135'),(795,137,0,510,'142,153,38'),(796,154,0,510,'196'),(797,155,0,510,'201,204,208'),(798,75,0,511,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(799,75,0,512,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(800,75,0,513,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(801,75,0,514,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(802,75,0,515,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(803,75,0,516,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(804,75,0,517,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(805,75,0,518,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(806,75,0,519,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(807,75,0,520,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(808,75,0,521,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(809,75,0,522,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(810,75,0,523,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(811,75,0,524,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(812,75,0,525,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(813,75,0,526,'<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.</p>\n<p>&bull; Crew neckline. <br />&bull; Semi-fitted. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(814,151,0,526,'135'),(815,137,0,526,'142,38'),(816,154,0,526,'196'),(817,155,0,526,'201,204,208'),(818,75,0,527,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(819,75,0,528,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(820,75,0,529,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(821,75,0,530,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(822,75,0,531,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(823,75,0,532,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(824,75,0,533,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(825,75,0,534,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(826,75,0,535,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(827,75,0,536,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(828,75,0,537,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(829,75,0,538,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(830,75,0,539,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(831,75,0,540,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(832,75,0,541,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(833,75,0,542,'<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.</p>\n<p>&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>'),(834,151,0,542,'135'),(835,137,0,542,'153,38'),(836,154,0,542,'196'),(837,155,0,542,'201,204,208'),(838,75,0,543,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(839,75,0,544,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(840,75,0,545,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(841,75,0,546,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(842,75,0,547,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(843,75,0,548,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(844,75,0,549,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(845,75,0,550,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(846,75,0,551,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(847,75,0,552,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(848,75,0,553,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(849,75,0,554,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(850,75,0,555,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(851,75,0,556,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(852,75,0,557,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(853,75,0,558,'<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.</p>\n<p>Relaxed fit. <br />Short-Sleeve. <br />Machine wash/dry.</p>'),(854,151,0,558,'135'),(855,137,0,558,'38'),(856,154,0,558,'196'),(857,155,0,558,'201,204,208'),(858,75,0,559,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(859,75,0,560,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(860,75,0,561,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(861,75,0,562,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(862,75,0,563,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(863,75,0,564,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(864,75,0,565,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(865,75,0,566,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(866,75,0,567,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(867,75,0,568,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(868,75,0,569,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(869,75,0,570,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(870,75,0,571,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(871,75,0,572,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(872,75,0,573,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(873,75,0,574,'<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.</p>\n<p>&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>'),(874,151,0,574,'135'),(875,137,0,574,'147,33,39'),(876,154,0,574,'196'),(877,155,0,574,'201,204,208'),(878,75,0,575,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(879,75,0,576,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(880,75,0,577,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(881,75,0,578,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(882,75,0,579,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(883,75,0,580,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(884,75,0,581,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(885,75,0,582,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(886,75,0,583,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(887,75,0,584,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(888,75,0,585,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(889,75,0,586,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(890,75,0,587,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(891,75,0,588,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(892,75,0,589,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(893,75,0,590,'<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>'),(894,151,0,590,'135'),(895,137,0,590,'33,151'),(896,154,0,590,'196'),(897,155,0,590,'201,204,208'),(898,75,0,591,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(899,75,0,592,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(900,75,0,593,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(901,75,0,594,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(902,75,0,595,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(903,75,0,596,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(904,75,0,597,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(905,75,0,598,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(906,75,0,599,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(907,75,0,600,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(908,75,0,601,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(909,75,0,602,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(910,75,0,603,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(911,75,0,604,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(912,75,0,605,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(913,75,0,606,'<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>'),(914,151,0,606,'135'),(915,137,0,606,'142,152,153'),(916,154,0,606,'196'),(917,155,0,606,'201,203,204,208'),(918,75,0,607,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(919,75,0,608,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(920,75,0,609,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(921,75,0,610,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(922,75,0,611,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(923,75,0,612,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(924,75,0,613,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(925,75,0,614,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(926,75,0,615,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(927,75,0,616,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(928,75,0,617,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(929,75,0,618,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(930,75,0,619,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(931,75,0,620,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(932,75,0,621,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(933,75,0,622,'<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>'),(934,151,0,622,'135'),(935,137,0,622,'153,38'),(936,154,0,622,'196'),(937,155,0,622,'201,203,204,208'),(938,75,0,623,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(939,75,0,624,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(940,75,0,625,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(941,75,0,626,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(942,75,0,627,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(943,75,0,628,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(944,75,0,629,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(945,75,0,630,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(946,75,0,631,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(947,75,0,632,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(948,75,0,633,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(949,75,0,634,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(950,75,0,635,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(951,75,0,636,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(952,75,0,637,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(953,75,0,638,'<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>'),(954,151,0,638,'134'),(955,137,0,638,'33,151,38'),(956,154,0,638,'196'),(957,155,0,638,'201,204,208'),(958,75,0,639,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(959,75,0,640,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(960,75,0,641,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(961,75,0,642,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(962,75,0,643,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(963,75,0,644,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(964,75,0,645,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(965,75,0,646,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(966,75,0,647,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(967,75,0,648,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(968,75,0,649,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(969,75,0,650,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(970,75,0,651,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(971,75,0,652,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(972,75,0,653,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(973,75,0,654,'<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.</p>\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>'),(974,151,0,654,'134'),(975,137,0,654,'152,148,153'),(976,154,0,654,'196'),(977,155,0,654,'201,204,208'),(978,75,0,655,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(979,75,0,656,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(980,75,0,657,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(981,75,0,658,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(982,75,0,659,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(983,75,0,660,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(984,75,0,661,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(985,75,0,662,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(986,75,0,663,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(987,75,0,664,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(988,75,0,665,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(989,75,0,666,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(990,75,0,667,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(991,75,0,668,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(992,75,0,669,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(993,75,0,670,'<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.</p>\n<p>&bull; Red heather tank with gray pocket.<br />&bull; Chafe-resistant flatlock seams. <br />&bull; Relaxed fit. <br />&bull; Contrast topstitching.<br />&bull; Machine wash/dry.</p>'),(994,151,0,670,'134'),(995,137,0,670,'147,38'),(996,154,0,670,'196'),(997,155,0,670,'201,204,208'),(998,75,0,671,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(999,75,0,672,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(1000,75,0,673,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(1001,75,0,674,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(1002,75,0,675,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(1003,75,0,676,'<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.</p>\n<p>&bull; Blue heather tank with gray pocket.<br />&bull; Contrast sides and back inserts.<br />&bull; Self-fabric binding at neck and armholes. <br />&bull; Machine wash/dry.</p>'),(1004,151,0,676,'134'),(1005,137,0,676,'142,153,38'),(1006,154,0,676,'196'),(1007,155,0,676,'201,204,208'),(1008,75,0,677,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1009,75,0,678,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1010,75,0,679,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1011,75,0,680,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1012,75,0,681,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1013,75,0,682,'<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.</p>\n<p>&bull; Light blue heather gray tank.<br />&bull; Quick-drying, moisture-wicking.<br />&bull; 4-way stretch construction.<br />&bull; Flatlock seams prevent chafing.<br />&bull; Mesh at back for breathability.<br />&bull; 100% Polyester.<br />&bull; UPF 50 protection.</p>'),(1014,151,0,682,'134'),(1015,137,0,682,'142,153,38'),(1016,154,0,682,'196'),(1017,155,0,682,'201,204,208'),(1018,75,0,683,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1019,75,0,684,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1020,75,0,685,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1021,75,0,686,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1022,75,0,687,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1023,75,0,688,'<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.</p>\n<p>&bull; Black polyester spandex tank.<br />&bull; 100% polyester.<br />&bull; Freedom of movement.<br />&bull; No-chafe seams.</p>'),(1024,151,0,688,'134'),(1025,137,0,688,'142,38'),(1026,154,0,688,'196'),(1027,155,0,688,'201,204,208'),(1028,75,0,689,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1029,75,0,690,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1030,75,0,691,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1031,75,0,692,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1032,75,0,693,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1033,75,0,694,'<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.</p>\n<p>&bull; Dark gray polyester spandex tank.<br />&bull; Reflective details for nighttime visibility. <br />&bull; Stash pocket.<br />&bull; Anti-chafe flatlock seams.</p>'),(1034,151,0,694,'134'),(1035,137,0,694,'153,38'),(1036,154,0,694,'196'),(1037,155,0,694,'201,204,208'),(1038,75,0,695,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1039,75,0,696,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1040,75,0,697,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1041,75,0,698,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1042,75,0,699,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1043,75,0,700,'<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.</p>\n<p>&bull; Green polyester tank.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.<br />&bull; Close-to-body athletic fit.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1044,151,0,700,'134'),(1045,137,0,700,'38'),(1046,154,0,700,'196'),(1047,155,0,700,'201,204,208'),(1048,75,0,701,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1049,75,0,702,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1050,75,0,703,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1051,75,0,704,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1052,75,0,705,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1053,75,0,706,'<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.</p>\n<p>&bull; Teal polyester tank.<br />&bull; Premium fit tank top.<br />&bull; Ultra lightweight.<br />&bull; Naturally odor-resistant.</p>'),(1054,151,0,706,'134'),(1055,137,0,706,'38'),(1056,154,0,706,'196'),(1057,155,0,706,'201,204,208'),(1058,75,0,707,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1059,75,0,708,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1060,75,0,709,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1061,75,0,710,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1062,75,0,711,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1063,75,0,712,'<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.</p>\n<p>&bull; Yellow scoop neck cotton tank.<br />&bull; Comfortable, relaxed fit.<br />&bull; 55% Hemp / 45% Organic Cotton.<br />&bull; Pesticide- and herbicide-free hemp.</p>'),(1064,151,0,712,'134'),(1065,137,0,712,'142,152,153'),(1066,154,0,712,'196'),(1067,155,0,712,'201,204,208'),(1068,75,0,713,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1069,75,0,714,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1070,75,0,715,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1071,75,0,716,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1072,75,0,717,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1073,75,0,718,'<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.</p>\n<p>&bull; Teal scoop neck cotton tank.<br />&bull; Triblend, soft fabric.<br />&bull; Relaxed fit.</p>'),(1074,151,0,718,'134'),(1075,137,0,718,'153,38'),(1076,154,0,718,'196'),(1077,155,0,718,'201,204,208'),(1078,75,0,719,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1079,75,0,720,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1080,75,0,721,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1081,75,0,722,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1082,75,0,723,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1083,75,0,724,'<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.</p>\n<p>&bull; Royal crewneck cotton tank.<br />&bull; Contrast stitching.<br />&bull; Self fabric binding at neckline.<br />&bull; Slim fit.<br />&bull; 96% Merino / 4% LYCRA&reg;.</p>'),(1084,151,0,724,'134'),(1085,137,0,724,'147,38'),(1086,154,0,724,'196'),(1087,155,0,724,'201,204,208'),(1088,75,0,725,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1089,75,0,726,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1090,75,0,727,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1091,75,0,728,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1092,75,0,729,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1093,75,0,730,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1094,75,0,731,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1095,75,0,732,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1096,75,0,733,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1097,75,0,734,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1098,75,0,735,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1099,75,0,736,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1100,75,0,737,'<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.</p>\n<p>&bull; Light gray heather knit straight leg pants.<br />&bull; Relaxed fit. <br />&bull; Inseam: 32\". <br />&bull; Machine wash/dry.<br />&bull; CoolTech&trade; wicking fabric.</p>'),(1101,150,0,737,'115,112,114'),(1102,137,0,737,'155,144,145,158'),(1103,154,0,737,'196'),(1104,155,0,737,'203,207'),(1105,75,0,738,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1106,75,0,739,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1107,75,0,740,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1108,75,0,741,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1109,75,0,742,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1110,75,0,743,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1111,75,0,744,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1112,75,0,745,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1113,75,0,746,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1114,75,0,747,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1115,75,0,748,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1116,75,0,749,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1117,75,0,750,'<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.</p>\n<p>&bull; Dark gray polyester/spandex straight leg pants.<br />&bull; Elastic waistband and internal drawstring.<br />&bull; Relaxed fit. <br />&bull; Machine wash/dry.</p>'),(1118,150,0,750,'115,114'),(1119,137,0,750,'147,38,150'),(1120,154,0,750,'196'),(1121,155,0,750,'202,203,210'),(1122,75,0,751,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1123,75,0,752,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1124,75,0,753,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1125,75,0,754,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1126,75,0,755,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1127,75,0,756,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1128,75,0,757,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1129,75,0,758,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1130,75,0,759,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1131,75,0,760,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1132,75,0,761,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1133,75,0,762,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1134,75,0,763,'<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.</p>\n<p>&bull; Black polyester spandex pants with zipper pockets.<br />&bull; Reflective safety accents. <br />&bull; Loose fit.<br />&bull; On-seam pockets. <br />&bull; 8\" leg zips. 32\" inseam. <br />&bull; Machine wash/dry.</p>'),(1135,150,0,763,'115,112,114'),(1136,137,0,763,'155,38,39,150,158'),(1137,154,0,763,'196'),(1138,155,0,763,'201,203,204,209,210'),(1139,75,0,764,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1140,75,0,765,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1141,75,0,766,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1142,75,0,767,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1143,75,0,768,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1144,75,0,769,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1145,75,0,770,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1146,75,0,771,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1147,75,0,772,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1148,75,0,773,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1149,75,0,774,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1150,75,0,775,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1151,75,0,776,'<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.</p>\n<p>&bull; Dark heather gray straight leg cotton pants.<br />&bull; Relaxed fit. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(1152,150,0,776,'115,112,114'),(1153,137,0,776,'147,150,158'),(1154,154,0,776,'196'),(1155,155,0,776,'201,202,203,207,209,210'),(1156,75,0,777,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1157,75,0,778,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1158,75,0,779,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1159,75,0,780,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1160,75,0,781,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1161,75,0,782,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1162,75,0,783,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1163,75,0,784,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1164,75,0,785,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1165,75,0,786,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1166,75,0,787,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1167,75,0,788,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1168,75,0,789,'<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>'),(1169,150,0,789,'115,104'),(1170,137,0,789,'153,38,39'),(1171,154,0,789,'196'),(1172,155,0,789,'207,209,210'),(1173,75,0,790,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1174,75,0,791,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1175,75,0,792,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1176,75,0,793,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1177,75,0,794,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1178,75,0,795,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1179,75,0,796,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1180,75,0,797,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1181,75,0,798,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1182,75,0,799,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1183,75,0,800,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1184,75,0,801,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1185,75,0,802,'<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.</p>\n<p>&bull; Ankle zips.<br />&bull; Elasticized waistband with draw cord.<br />&bull; Dual hand pockets.<br />&bull; Reflective elements for low-light safety.</p>'),(1186,150,0,802,'115,112'),(1187,137,0,802,'144,145,153,38,158'),(1188,154,0,802,'196'),(1189,155,0,802,'201,202,203,205,209,210'),(1190,75,0,803,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1191,75,0,804,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1192,75,0,805,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1193,75,0,806,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1194,75,0,807,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1195,75,0,808,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1196,75,0,809,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1197,75,0,810,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1198,75,0,811,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1199,75,0,812,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1200,75,0,813,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1201,75,0,814,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1202,75,0,815,'<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.</p>\n<p>&bull; Moisture transfer properties. <br />&bull; 7% stretch.<br />&bull; Reflective safety trim.<br />&bull; Elastic drawcord waist.</p>'),(1203,150,0,815,'115,112,114'),(1204,137,0,815,'142,38,39,158'),(1205,154,0,815,'196'),(1206,155,0,815,'201,202,203,207,210'),(1207,75,0,816,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1208,75,0,817,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1209,75,0,818,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1210,75,0,819,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1211,75,0,820,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1212,75,0,821,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1213,75,0,822,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1214,75,0,823,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1215,75,0,824,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1216,75,0,825,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1217,75,0,826,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1218,75,0,827,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1219,75,0,828,'<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.</p>\n<p>&bull; Smooth exterior for easy over-layering.<br />&bull; Brushed fleece interior insulates and wicks. <br />&bull; No-roll elastic waistband with inner drawstring.<br />&bull; Chafe-resistant flatlock seams.</p>'),(1220,150,0,828,'115,112,104,114,108'),(1221,137,0,828,'144,147,150,158'),(1222,154,0,828,'196'),(1223,155,0,828,'201,203,207,209,210'),(1224,75,0,829,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1225,75,0,830,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1226,75,0,831,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1227,75,0,832,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1228,75,0,833,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1229,75,0,834,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1230,75,0,835,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1231,75,0,836,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1232,75,0,837,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1233,75,0,838,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1234,75,0,839,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1235,75,0,840,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1236,75,0,841,'<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.</p>\n<p>&bull; Breathable stretch organic cotton/spandex.<br />&bull; Compression fit<br />&bull; Hidden key pocket<br />&bull; Elastic waist with internal drawcord.</p>'),(1237,150,0,841,'112,104,107,114,108'),(1238,137,0,841,'155,144,38,39'),(1239,154,0,841,'196'),(1240,155,0,841,'201,202,203,209,210'),(1241,75,0,842,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1242,75,0,843,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1243,75,0,844,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1244,75,0,845,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1245,75,0,846,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1246,75,0,847,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1247,75,0,848,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1248,75,0,849,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1249,75,0,850,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1250,75,0,851,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1251,75,0,852,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1252,75,0,853,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1253,75,0,854,'<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.</p>\n<p>&bull; A yoga essential.<br />&bull; Breathable stretch organic cotton/spandex.<br />&bull; Standard Fit.</p>'),(1254,150,0,854,'115,114,108'),(1255,137,0,854,'37,153,150'),(1256,154,0,854,'196'),(1257,155,0,854,'203,204,205,209,210'),(1258,75,0,855,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1259,75,0,856,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1260,75,0,857,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1261,75,0,858,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1262,75,0,859,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1263,75,0,860,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1264,75,0,861,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1265,75,0,862,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1266,75,0,863,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1267,75,0,864,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1268,75,0,865,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1269,75,0,866,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1270,75,0,867,'<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.</p>\n<p>&bull; Pants/shorts convertible.<br />&bull; Lightweight moisture wicking. <br />&bull; Water repellent.<br />&bull; Belted waist.</p>'),(1271,150,0,867,'115,112,114'),(1272,137,0,867,'142,150,158'),(1273,154,0,867,'196'),(1274,155,0,867,'201,202,203,204,205,206,207,209'),(1275,75,0,868,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1276,75,0,869,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1277,75,0,870,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1278,75,0,871,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1279,75,0,872,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1280,75,0,873,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1281,75,0,874,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1282,75,0,875,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1283,75,0,876,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1284,75,0,877,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1285,75,0,878,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1286,75,0,879,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1287,75,0,880,'<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.</p>\n<p>&bull; Drawstring waist.<br />&bull; Loose, straight-leg fit.<br />&bull; Lightweight cotton-recycled blend.<br />&bull; Front pockets with stitching detail.<br />&bull; Elastic ankle.</p>'),(1288,150,0,880,'115,114,108'),(1289,137,0,880,'38,33,150'),(1290,154,0,880,'196'),(1291,155,0,880,'203,204,205,207,209,210'),(1292,75,0,881,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1293,75,0,882,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1294,75,0,883,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1295,75,0,884,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1296,75,0,885,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1297,75,0,886,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1298,75,0,887,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1299,75,0,888,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1300,75,0,889,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1301,75,0,890,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1302,75,0,891,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1303,75,0,892,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1304,75,0,893,'<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.</p>\n<p>&bull; Light blue nylon shorts.<br />&bull; Relaxed fit. <br />&bull; 5\" inseam. <br />&bull; Machine wash/dry.</p>'),(1305,150,0,893,'115,104'),(1306,137,0,893,'155,37,38,158'),(1307,154,0,893,'196'),(1308,155,0,893,'201,204,211'),(1309,75,0,894,'<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.</p>\n<p>&bull; Black shorts with green accents.<br />&bull; Side pockets. <br />&bull; 4\" inseam. <br />&bull; Machine wash/dry.</p>'),(1310,75,0,895,'<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.</p>\n<p>&bull; Black shorts with green accents.<br />&bull; Side pockets. <br />&bull; 4\" inseam. <br />&bull; Machine wash/dry.</p>'),(1311,75,0,896,'<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.</p>\n<p>&bull; Black shorts with green accents.<br />&bull; Side pockets. <br />&bull; 4\" inseam. <br />&bull; Machine wash/dry.</p>'),(1312,75,0,897,'<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.</p>\n<p>&bull; Black shorts with green accents.<br />&bull; Side pockets. <br />&bull; 4\" inseam. <br />&bull; Machine wash/dry.</p>'),(1313,75,0,898,'<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.</p>\n<p>&bull; Black shorts with green accents.<br />&bull; Side pockets. <br />&bull; 4\" inseam. <br />&bull; Machine wash/dry.</p>'),(1314,150,0,898,'115,104'),(1315,137,0,898,'38,39'),(1316,154,0,898,'196'),(1317,155,0,898,'201,204,208'),(1318,75,0,899,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1319,75,0,900,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1320,75,0,901,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1321,75,0,902,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1322,75,0,903,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1323,75,0,904,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1324,75,0,905,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1325,75,0,906,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1326,75,0,907,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1327,75,0,908,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1328,75,0,909,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1329,75,0,910,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1330,75,0,911,'<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.</p>\n<p>&bull; Royal blue shorts with light blue accents.<br />&bull; Interior drawstring waistband. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1331,150,0,911,'115,104'),(1332,137,0,911,'142,38'),(1333,154,0,911,'196'),(1334,155,0,911,'201,207,208'),(1335,75,0,912,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1336,75,0,913,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1337,75,0,914,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1338,75,0,915,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1339,75,0,916,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1340,75,0,917,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1341,75,0,918,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1342,75,0,919,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1343,75,0,920,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1344,75,0,921,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1345,75,0,922,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1346,75,0,923,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1347,75,0,924,'<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.</p>\n<p>&bull; Light gray shorts.<br />&bull; Fitted design. <br />&bull; Elastic waistband. <br />&bull; Flat-seam construction. <br />&bull; 7\" inseam. <br />&bull; Machine wash/dry.</p>'),(1348,150,0,924,'115,104'),(1349,137,0,924,'155,37,38'),(1350,154,0,924,'196'),(1351,155,0,924,'204,211,205,207,208'),(1352,75,0,925,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1353,75,0,926,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1354,75,0,927,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1355,75,0,928,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1356,75,0,929,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1357,75,0,930,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1358,75,0,931,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1359,75,0,932,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1360,75,0,933,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1361,75,0,934,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1362,75,0,935,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1363,75,0,936,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1364,75,0,937,'<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.</p>\n<p>&bull; Dark gray shorts with red accents.<br />&bull; 92% Organic Cotton 8% Spandex.<br />&bull; Breathable stretch organic cotton.<br />&bull; Medium=8.0\" (21.0cm) inseam.</p>'),(1365,150,0,937,'115,104'),(1366,137,0,937,'155,157,38,39,158'),(1367,154,0,937,'196,198'),(1368,155,0,937,'204,207,208'),(1369,75,0,938,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1370,75,0,939,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1371,75,0,940,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1372,75,0,941,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1373,75,0,942,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1374,75,0,943,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1375,75,0,944,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1376,75,0,945,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1377,75,0,946,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1378,75,0,947,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1379,75,0,948,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1380,75,0,949,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1381,75,0,950,'<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.</p>\n<p>&bull; Dark gray shorts with mesh accents.<br />&bull; Ultra flexible four-way stretch.<br />&bull; Flatlock seams and waistband.<br />&bull; Two pockets, phony fly.<br />&bull; Nylon/Lycra outer, Polyester/Lycra inner.</p>'),(1382,150,0,950,'115,104,107'),(1383,137,0,950,'37,38,39'),(1384,154,0,950,'196'),(1385,155,0,950,'201,204,211,208'),(1386,75,0,951,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1387,75,0,952,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1388,75,0,953,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1389,75,0,954,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1390,75,0,955,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1391,75,0,956,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1392,75,0,957,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1393,75,0,958,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1394,75,0,959,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1395,75,0,960,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1396,75,0,961,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1397,75,0,962,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1398,75,0,963,'<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.</p>\n<p>&bull; Black shorts with royal accents.<br />&bull; Compression liner. <br />&bull; Inseam: 8\". <br />&bull; Machine wash/dry.</p>'),(1399,150,0,963,'115,104,107'),(1400,137,0,963,'155,36,38,39'),(1401,154,0,963,'196,198'),(1402,155,0,963,'204,207,208'),(1403,75,0,964,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1404,75,0,965,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1405,75,0,966,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1406,75,0,967,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1407,75,0,968,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1408,75,0,969,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1409,75,0,970,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1410,75,0,971,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1411,75,0,972,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1412,75,0,973,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1413,75,0,974,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1414,75,0,975,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1415,75,0,976,'<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.</p>\n<p>&bull; Black shorts with dark gray accents.<br />&bull; Elasticized waistband with interior drawstring.<br />&bull; Ventilating mesh detailing.<br />&bull; 100% polyester and recycled polyester.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1416,150,0,976,'115,104'),(1417,137,0,976,'147,38'),(1418,154,0,976,'196'),(1419,155,0,976,'201,204,211'),(1420,75,0,977,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1421,75,0,978,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1422,75,0,979,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1423,75,0,980,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1424,75,0,981,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1425,75,0,982,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1426,75,0,983,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1427,75,0,984,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1428,75,0,985,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1429,75,0,986,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1430,75,0,987,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1431,75,0,988,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1432,75,0,989,'<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.</p>\n<p>&bull; Navy polyester pinstripe shorts.<br />&bull; Woven fabric with moderate stretch.<br />&bull; 62% cotton/34% nylon/4% spandex.<br />&bull; LumaTech&trade; lining.</p>'),(1433,150,0,989,'115,104'),(1434,137,0,989,'33,37,147,150'),(1435,154,0,989,'196'),(1436,155,0,989,'204,211,208'),(1437,75,0,990,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1438,75,0,991,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1439,75,0,992,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1440,75,0,993,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1441,75,0,994,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1442,75,0,995,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1443,75,0,996,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1444,75,0,997,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1445,75,0,998,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1446,75,0,999,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1447,75,0,1000,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1448,75,0,1001,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1449,75,0,1002,'<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>'),(1450,150,0,1002,'115,104'),(1451,137,0,1002,'148,150'),(1452,154,0,1002,'196'),(1453,155,0,1002,'204,211,208'),(1454,75,0,1003,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1455,75,0,1004,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1456,75,0,1005,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1457,75,0,1006,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1458,75,0,1007,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1459,75,0,1008,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1460,75,0,1009,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1461,75,0,1010,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1462,75,0,1011,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1463,75,0,1012,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1464,75,0,1013,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1465,75,0,1014,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1466,75,0,1015,'<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.</p>\n<p>&bull; Royal blue cotton shorts.<br />&bull; Built-in mesh brief. <br />&bull; 87% Spandex 13% Lycra.<br />&bull; Adjustable drawstring.</p>'),(1467,150,0,1015,'115,104,107'),(1468,137,0,1015,'148,150'),(1469,154,0,1015,'196'),(1470,155,0,1015,'201,204,211,207,208'),(1471,75,0,1016,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1472,75,0,1017,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1473,75,0,1018,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1474,75,0,1019,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1475,75,0,1020,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1476,75,0,1021,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1477,75,0,1022,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1478,75,0,1023,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1479,75,0,1024,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1480,75,0,1025,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1481,75,0,1026,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1482,75,0,1027,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1483,75,0,1028,'<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.</p>\n<p>&bull; Dark red cotton shorts. <br />&bull; 87% Supplex, 13% Lycra.<br />&bull; Adjustable drawstring waistband.<br />&bull; Built-in mesh brief.<br />&bull; Machine wash cold, tumble dry low.</p>'),(1484,150,0,1028,'115,104,107,113'),(1485,137,0,1028,'147,36,150'),(1486,154,0,1028,'196'),(1487,155,0,1028,'204,211,208'),(1488,75,0,1029,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1489,75,0,1030,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1490,75,0,1031,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1491,75,0,1032,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1492,75,0,1033,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1493,75,0,1034,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1494,75,0,1035,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1495,75,0,1036,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1496,75,0,1037,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1497,75,0,1038,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1498,75,0,1039,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1499,75,0,1040,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1500,75,0,1041,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1501,75,0,1042,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1502,75,0,1043,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1503,75,0,1044,'Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br /> <br /> &bull; Light green heathered hoodie. <br /> &bull; Long-Sleeve, pullover.<br /> &bull; Long elliptical hem for extra coverage.<br /> &bull; Deep button placket for layering.<br /> &bull; Double rib design.<br /> &bull; Mid layer, mid weight.<br /> &bull; 98% Merino Wool / 2% Spandex'),(1504,151,0,1044,'137,136'),(1505,137,0,1044,'158,150'),(1506,154,0,1044,'196'),(1507,155,0,1044,'201,203,205,207'),(1508,75,0,1045,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1509,75,0,1046,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1510,75,0,1047,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1511,75,0,1048,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1512,75,0,1049,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1513,75,0,1050,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1514,75,0,1051,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1515,75,0,1052,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1516,75,0,1053,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1517,75,0,1054,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1518,75,0,1055,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1519,75,0,1056,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1520,75,0,1057,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1521,75,0,1058,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1522,75,0,1059,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1523,75,0,1060,'<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.</p>\n<p>&bull; Teal with purple stiching.<br />&bull; Hoodie pullover.<br />&bull; Snug fit.</p>'),(1524,151,0,1060,'137,136'),(1525,137,0,1060,'158,37'),(1526,154,0,1060,'196'),(1527,155,0,1060,'201,203,205,207'),(1528,75,0,1061,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1529,75,0,1062,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1530,75,0,1063,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1531,75,0,1064,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1532,75,0,1065,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1533,75,0,1066,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1534,75,0,1067,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1535,75,0,1068,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1536,75,0,1069,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1537,75,0,1070,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1538,75,0,1071,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1539,75,0,1072,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1540,75,0,1073,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1541,75,0,1074,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1542,75,0,1075,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1543,75,0,1076,'<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.</p>\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br />&bull; Relaxed fit. <br />&bull; Short-Sleeves. <br />&bull; Machine wash/dry.</p>'),(1544,151,0,1076,'136,132'),(1545,137,0,1076,'144,33,38'),(1546,154,0,1076,'196'),(1547,155,0,1076,'204,205,207'),(1548,75,0,1077,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1549,75,0,1078,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1550,75,0,1079,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1551,75,0,1080,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1552,75,0,1081,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1553,75,0,1082,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1554,75,0,1083,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1555,75,0,1084,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1556,75,0,1085,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1557,75,0,1086,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1558,75,0,1087,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1559,75,0,1088,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1560,75,0,1089,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1561,75,0,1090,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1562,75,0,1091,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1563,75,0,1092,'<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.</p>\n<p>&bull; Teal two-tone hoodie.<br />&bull; Low scoop neckline.<br />&bull; Adjustable hood drawstrings.<br />&bull; Longer rounded hemline for extra back coverage.<br />&bull; Long-Sleeve style.</p>'),(1564,151,0,1092,'136,132'),(1565,137,0,1092,'146,150'),(1566,154,0,1092,'196'),(1567,155,0,1092,'201,203,207'),(1568,75,0,1093,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1569,75,0,1094,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1570,75,0,1095,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1571,75,0,1096,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1572,75,0,1097,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1573,75,0,1098,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1574,75,0,1099,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1575,75,0,1100,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1576,75,0,1101,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1577,75,0,1102,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1578,75,0,1103,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1579,75,0,1104,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1580,75,0,1105,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1581,75,0,1106,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1582,75,0,1107,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1583,75,0,1108,'<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.</p>\n<p>&bull; Ivory heather full zip 3/4 sleeve hoodie.<br />&bull; Zip pocket at arm for convenient storage.<br />&bull; 24.0\" body length.<br />&bull; 89% Polyester / 11% Spandex.</p>'),(1584,151,0,1108,'137,128'),(1585,137,0,1108,'38,150'),(1586,154,0,1108,'196'),(1587,155,0,1108,'204,205,207'),(1588,75,0,1109,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1589,75,0,1110,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1590,75,0,1111,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1591,75,0,1112,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1592,75,0,1113,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1593,75,0,1114,'<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.</p>\n<p>&bull; Purple full zip hoodie with pink accents. <br />&bull; Heather texture.<br />&bull; 4-way stretch.<br />&bull; Pre-shrunk.<br />&bull; Hood lined in vegan Sherpa for added warmth.<br />&bull; Ribbed hem on hood and front pouch pocket.<br />&bull; 60% Cotton / 40% Polyester.</p>'),(1594,151,0,1114,'137,128'),(1595,137,0,1114,'33,38'),(1596,154,0,1114,'196'),(1597,155,0,1114,'201,202,203,207,209,210'),(1598,75,0,1115,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1599,75,0,1116,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1600,75,0,1117,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1601,75,0,1118,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1602,75,0,1119,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1603,75,0,1120,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1604,75,0,1121,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1605,75,0,1122,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1606,75,0,1123,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1607,75,0,1124,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1608,75,0,1125,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1609,75,0,1126,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1610,75,0,1127,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1611,75,0,1128,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1612,75,0,1129,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1613,75,0,1130,'<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.</p>\n<p>&bull; Gray full zip hoodie with yellow detail.<br />&bull; Hand-warmer pockets. <br />&bull; Zip MP3 pocket with outlet for earphones wire. <br />&bull; Polyester/cotton. <br />&bull; Washable.</p>'),(1614,151,0,1130,'137,132,128'),(1615,137,0,1130,'33,38'),(1616,154,0,1130,'196'),(1617,155,0,1130,'203,204,205'),(1618,75,0,1131,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1619,75,0,1132,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1620,75,0,1133,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1621,75,0,1134,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1622,75,0,1135,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1623,75,0,1136,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1624,75,0,1137,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1625,75,0,1138,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1626,75,0,1139,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1627,75,0,1140,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1628,75,0,1141,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1629,75,0,1142,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1630,75,0,1143,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1631,75,0,1144,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1632,75,0,1145,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1633,75,0,1146,'<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.</p>\n<p>&bull; White full zip hoodie with gray detail.<br />&bull; 65% Cotton/28% Nylon/7% Spandex.<br />&bull; Front slash pockets.<br />&bull; Tagless label at back neck.</p>'),(1634,151,0,1146,'137,128'),(1635,137,0,1146,'37,33,150'),(1636,154,0,1146,'196'),(1637,155,0,1146,'201,203,204,205,207'),(1638,75,0,1147,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1639,75,0,1148,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1640,75,0,1149,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1641,75,0,1150,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1642,75,0,1151,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1643,75,0,1152,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1644,75,0,1153,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1645,75,0,1154,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1646,75,0,1155,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1647,75,0,1156,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1648,75,0,1157,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1649,75,0,1158,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1650,75,0,1159,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1651,75,0,1160,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1652,75,0,1161,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1653,75,0,1162,'<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.</p>\n<p>&bull; Purple two-tone lightweight hoodie. <br />&bull; 100% cotton.<br />&bull; Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.<br />&bull; Casual, comfy piece for running errands or weekend activities.</p>'),(1654,151,0,1162,'137,136'),(1655,137,0,1162,'33'),(1656,154,0,1162,'194'),(1657,155,0,1162,'204,205,207,208'),(1658,75,0,1163,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1659,75,0,1164,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1660,75,0,1165,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1661,75,0,1166,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1662,75,0,1167,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1663,75,0,1168,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1664,75,0,1169,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1665,75,0,1170,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1666,75,0,1171,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1667,75,0,1172,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1668,75,0,1173,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1669,75,0,1174,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1670,75,0,1175,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1671,75,0,1176,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1672,75,0,1177,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1673,75,0,1178,'<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.</p>\n<p>Full zip. <br />Banded cuffs and waist. <br />Front pockets. <br />Machine wash/dry.</p>'),(1674,151,0,1178,'137,128'),(1675,137,0,1178,'33,38,150'),(1676,154,0,1178,'196'),(1677,155,0,1178,'203,207'),(1678,75,0,1179,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1679,75,0,1180,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1680,75,0,1181,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1681,75,0,1182,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1682,75,0,1183,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1683,75,0,1184,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1684,75,0,1185,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1685,75,0,1186,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1686,75,0,1187,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1687,75,0,1188,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1688,75,0,1189,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1689,75,0,1190,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1690,75,0,1191,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1691,75,0,1192,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1692,75,0,1193,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1693,75,0,1194,'<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.</p>\n<p>Semi-fitted. <br />Long-Sleeve. <br />Machine wash/line dry.</p>'),(1694,151,0,1194,'136,132'),(1695,137,0,1194,'144,38,150'),(1696,154,0,1194,'196'),(1697,155,0,1194,'203,204,205'),(1698,75,0,1195,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1699,75,0,1196,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1700,75,0,1197,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1701,75,0,1198,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1702,75,0,1199,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1703,75,0,1200,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1704,75,0,1201,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1705,75,0,1202,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1706,75,0,1203,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1707,75,0,1204,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1708,75,0,1205,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1709,75,0,1206,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1710,75,0,1207,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1711,75,0,1208,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1712,75,0,1209,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1713,75,0,1210,'<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.</p>\n<p>Full-zip front. <br />Three-panel hood. <br />Flatlock seams throughout. <br />Welt hand pockets. <br />Machine wash/dry.</p>'),(1714,151,0,1210,'137,132,128'),(1715,137,0,1210,'144,155'),(1716,154,0,1210,'196'),(1717,155,0,1210,'202,203,210'),(1718,75,0,1211,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1719,75,0,1212,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1720,75,0,1213,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1721,75,0,1214,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1722,75,0,1215,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1723,75,0,1216,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1724,75,0,1217,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1725,75,0,1218,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1726,75,0,1219,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1727,75,0,1220,'<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.</p>\n<p>&bull; Loose fit. <br />&bull; Reflectivity. <br />&bull; Flat seams. <br />&bull; Machine wash/dry.<br />&bull; Deep pink jacket with front panel rouching</p>'),(1728,151,0,1220,'117,120,124,128'),(1729,137,0,1220,'142,158,144'),(1730,154,0,1220,'196'),(1731,155,0,1220,'201,205,207,209'),(1732,75,0,1221,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1733,75,0,1222,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1734,75,0,1223,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1735,75,0,1224,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1736,75,0,1225,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1737,75,0,1226,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1738,75,0,1227,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1739,75,0,1228,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1740,75,0,1229,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1741,75,0,1230,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1742,75,0,1231,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1743,75,0,1232,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1744,75,0,1233,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1745,75,0,1234,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1746,75,0,1235,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1747,75,0,1236,'<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.</p>\n<p>&bull; Slate rouched neck pullover.<br />&bull; Moisture-wicking fabric.<br />&bull; Hidden zipper.<br />&bull; Mesh armpit venting.<br />&bull; Dropped rear hem.</p>'),(1748,151,0,1236,'117,136,119,124'),(1749,137,0,1236,'38,150,155'),(1750,154,0,1236,'196'),(1751,155,0,1236,'204,205,207'),(1752,75,0,1237,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1753,75,0,1238,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1754,75,0,1239,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1755,75,0,1240,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1756,75,0,1241,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1757,75,0,1242,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1758,75,0,1243,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1759,75,0,1244,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1760,75,0,1245,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1761,75,0,1246,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1762,75,0,1247,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1763,75,0,1248,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1764,75,0,1249,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1765,75,0,1250,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1766,75,0,1251,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1767,75,0,1252,'<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.</p>\n<p>&bull; Pink half-zip pullover. <br />&bull; Front pouch pockets. <br />&bull; Fold-down collar.</p>'),(1768,151,0,1252,'117,136,124,125,127'),(1769,137,0,1252,'144,38'),(1770,154,0,1252,'196'),(1771,155,0,1252,'201,203,204,205,207'),(1772,75,0,1253,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1773,75,0,1254,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1774,75,0,1255,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1775,75,0,1256,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1776,75,0,1257,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1777,75,0,1258,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1778,75,0,1259,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1779,75,0,1260,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1780,75,0,1261,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1781,75,0,1262,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1782,75,0,1263,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1783,75,0,1264,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1784,75,0,1265,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1785,75,0,1266,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1786,75,0,1267,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1787,75,0,1268,'<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br />&bull; Slim fit. <br />&bull; Moisture-wicking fabric. <br />&bull; Two side pockets. <br />&bull; Zippered pocket at back waist. <br />&bull; Machine wash/dry.<br />&bull; Ivory specked full zip</p>'),(1788,151,0,1268,'117,119,128'),(1789,137,0,1268,'37,38,155'),(1790,154,0,1268,'196'),(1791,155,0,1268,'203,207,209,210'),(1792,75,0,1269,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1793,75,0,1270,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1794,75,0,1271,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1795,75,0,1272,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1796,75,0,1273,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1797,75,0,1274,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1798,75,0,1275,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1799,75,0,1276,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1800,75,0,1277,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1801,75,0,1278,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1802,75,0,1279,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1803,75,0,1280,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1804,75,0,1281,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1805,75,0,1282,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1806,75,0,1283,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1807,75,0,1284,'<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.</p>\n<p>&bull; Brown heather full zip rouched jacket.<br />&bull; Side hand pockets for extra storage.<br />&bull; High collar.<br />&bull; Thick cuffs for extra coverage.<br />&bull; Durable, shape retention material to longer wear.</p>'),(1808,151,0,1284,'116,117,120,124,125,128'),(1809,137,0,1284,'158,147,148'),(1810,154,0,1284,'196'),(1811,155,0,1284,'202,203,207,210'),(1812,75,0,1285,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1813,75,0,1286,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1814,75,0,1287,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1815,75,0,1288,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1816,75,0,1289,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1817,75,0,1290,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1818,75,0,1291,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1819,75,0,1292,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1820,75,0,1293,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1821,75,0,1294,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1822,75,0,1295,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1823,75,0,1296,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1824,75,0,1297,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1825,75,0,1298,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1826,75,0,1299,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1827,75,0,1300,'<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.</p>\n<p>&bull; Purple heather inset full zip jacket.<br />&bull; Full zip hoodie.<br />&bull; Contrast binding along the zipper, hood and sleeves.<br />&bull; Inseam pockets for storage.<br />&bull; Thumbholes for comfortable fit.</p>'),(1828,151,0,1300,'116,117,120,124,128'),(1829,137,0,1300,'37,38,150,155'),(1830,154,0,1300,'194'),(1831,155,0,1300,'203,205,206,207,209'),(1832,75,0,1301,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1833,75,0,1302,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1834,75,0,1303,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1835,75,0,1304,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1836,75,0,1305,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1837,75,0,1306,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1838,75,0,1307,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1839,75,0,1308,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1840,75,0,1309,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1841,75,0,1310,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1842,75,0,1311,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1843,75,0,1312,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1844,75,0,1313,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1845,75,0,1314,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1846,75,0,1315,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1847,75,0,1316,'<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.</p>\n<p>&bull; gray 1/4 zip pullover.<br />&bull; Comfortable, relaxed fit.<br />&bull; Front zip for venting.<br />&bull; Spacious, kangaroo pockets.<br />&bull; 27\" body length.<br />&bull; 95% Organic Cotton / 5% Spandex.</p>'),(1848,151,0,1316,'117,119,122,123,125,127'),(1849,137,0,1316,'33,150'),(1850,154,0,1316,'196'),(1851,155,0,1316,'201,203,205,207,210'),(1852,75,0,1317,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1853,75,0,1318,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1854,75,0,1319,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1855,75,0,1320,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1856,75,0,1321,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1857,75,0,1322,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1858,75,0,1323,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1859,75,0,1324,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1860,75,0,1325,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1861,75,0,1326,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1862,75,0,1327,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1863,75,0,1328,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1864,75,0,1329,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1865,75,0,1330,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1866,75,0,1331,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1867,75,0,1332,'<p><br />If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.</p>\n<p>&bull; Seafoam 1/4 zip pullover with purple stitching.<br />&bull; Lightweight, quick-drying, water-resistant construction.<br />&bull; Shirred details at front and back for a feminine look.<br />&bull; Hood collapses into collar.<br />&bull; Mesh liner for breathability.<br />&bull; Front zip pockets.<br />&bull; Hem cinches at sideseam.<br />&bull; 100% Polyester.</p>'),(1868,151,0,1332,'117,119,120,124,127'),(1869,137,0,1332,'38'),(1870,154,0,1332,'196'),(1871,155,0,1332,'203,205,207,209'),(1872,75,0,1333,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1873,75,0,1334,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1874,75,0,1335,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1875,75,0,1336,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1876,75,0,1337,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1877,75,0,1338,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1878,75,0,1339,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1879,75,0,1340,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1880,75,0,1341,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1881,75,0,1342,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1882,75,0,1343,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1883,75,0,1344,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1884,75,0,1345,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1885,75,0,1346,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1886,75,0,1347,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1887,75,0,1348,'<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.</p>\n<p>&bull; Zippered front. <br />&bull; Zippered side pockets. <br />&bull; Drawstring-adjustable waist and hood. <br />&bull; Machine wash/line dry.<br />&bull; Light blue 1/4 zip pullover.</p>'),(1888,151,0,1348,'116,117,122,123,125,128'),(1889,137,0,1348,'37,38,155'),(1890,154,0,1348,'196'),(1891,155,0,1348,'203,205,206,207,209'),(1892,75,0,1349,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1893,75,0,1350,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1894,75,0,1351,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1895,75,0,1352,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1896,75,0,1353,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1897,75,0,1354,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1898,75,0,1355,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1899,75,0,1356,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1900,75,0,1357,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1901,75,0,1358,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1902,75,0,1359,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1903,75,0,1360,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1904,75,0,1361,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1905,75,0,1362,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1906,75,0,1363,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1907,75,0,1364,'<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.</p>\n<p>&bull; Bright blue 1/4 zip pullover.<br />&bull; CoolTech&trade; liner is sweat-wicking.<br />&bull; Sleeve thumbholes.<br />&bull; Zipper garage to protect your chin.<br />&bull; Stretchy collar drawcords.</p>'),(1908,151,0,1364,'117,136,120,119,124,127,129'),(1909,137,0,1364,'148,36,37,155'),(1910,154,0,1364,'196'),(1911,155,0,1364,'204,205,207'),(1912,75,0,1365,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1913,75,0,1366,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1914,75,0,1367,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1915,75,0,1368,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1916,75,0,1369,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1917,75,0,1370,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1918,75,0,1371,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1919,75,0,1372,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1920,75,0,1373,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1921,75,0,1374,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1922,75,0,1375,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1923,75,0,1376,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1924,75,0,1377,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1925,75,0,1378,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1926,75,0,1379,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1927,75,0,1380,'<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.</p>\n<p>&bull; Adjustable hood.</br>&bull; Fleece-lined, zippered hand pockets.</br>&bull; Thumbhole cuffs.</br>&bull; Full zip.</br>&bull; Mock-neck collar.</br>&bull; Machine wash/dry.</p>'),(1928,151,0,1380,'116,117,121,123,128,129'),(1929,137,0,1380,'142,144'),(1930,154,0,1380,'196'),(1931,155,0,1380,'202,203,207,209,210'),(1932,75,0,1381,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1933,75,0,1382,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1934,75,0,1383,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1935,75,0,1384,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1936,75,0,1385,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1937,75,0,1386,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1938,75,0,1387,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1939,75,0,1388,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1940,75,0,1389,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1941,75,0,1390,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1942,75,0,1391,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1943,75,0,1392,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1944,75,0,1393,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1945,75,0,1394,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1946,75,0,1395,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1947,75,0,1396,'<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.</p>\n<p>&bull; Loose fit.</br>&bull; Reflectivity.</br>&bull; Flat seams.</br>&bull; Machine wash/dry.</p>'),(1948,151,0,1396,'117,136,119,124,127'),(1949,137,0,1396,'142,37,33'),(1950,154,0,1396,'196'),(1951,155,0,1396,'207,208,209'),(1952,75,0,1397,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1953,75,0,1398,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1954,75,0,1399,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1955,75,0,1400,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1956,75,0,1401,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1957,75,0,1402,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1958,75,0,1403,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1959,75,0,1404,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1960,75,0,1405,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1961,75,0,1406,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1962,75,0,1407,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1963,75,0,1408,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1964,75,0,1409,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1965,75,0,1410,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1966,75,0,1411,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1967,75,0,1412,'<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.</p>\n<p>&bull; Lime green v-neck tee.<br />&bull; Slimming, flattering fit.<br />&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br />&bull; Longer curved hem provides additional coverage.<br />&bull; 55% Hemp / 45% Organic Cotton.</p>'),(1968,151,0,1412,'135'),(1969,137,0,1412,'33,145'),(1970,154,0,1412,'196'),(1971,155,0,1412,'204,208'),(1972,75,0,1413,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1973,75,0,1414,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1974,75,0,1415,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1975,75,0,1416,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1976,75,0,1417,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1977,75,0,1418,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1978,75,0,1419,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1979,75,0,1420,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1980,75,0,1421,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1981,75,0,1422,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1982,75,0,1423,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1983,75,0,1424,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1984,75,0,1425,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1985,75,0,1426,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1986,75,0,1427,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1987,75,0,1428,'<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.</p>\n<p>&bull; Pink heather rouched v-neck.<br />&bull; Scoop neckline.<br />&bull; Angled flat seams.<br />&bull; Moisture wicking.<br />&bull; Body skimming.<br />&bull; 83% Polyester / 11% TENCEL&reg; Lyocell / 6% Lycra&reg; Spandex.</p>'),(1988,151,0,1428,'135'),(1989,137,0,1428,'148,38,150,154'),(1990,154,0,1428,'196'),(1991,155,0,1428,'204,208'),(1992,75,0,1429,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1993,75,0,1430,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1994,75,0,1431,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1995,75,0,1432,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1996,75,0,1433,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1997,75,0,1434,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1998,75,0,1435,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(1999,75,0,1436,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2000,75,0,1437,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2001,75,0,1438,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2002,75,0,1439,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2003,75,0,1440,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2004,75,0,1441,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2005,75,0,1442,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2006,75,0,1443,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2007,75,0,1444,'<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.</p>\n<p>&bull; Teal tee.<br />&bull; Long back hem.<br />&bull; Dropped shoulders.</p>'),(2008,151,0,1444,'135'),(2009,137,0,1444,'33'),(2010,154,0,1444,'196'),(2011,155,0,1444,'204,208'),(2012,75,0,1445,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2013,75,0,1446,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2014,75,0,1447,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2015,75,0,1448,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2016,75,0,1449,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2017,75,0,1450,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2018,75,0,1451,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2019,75,0,1452,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2020,75,0,1453,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2021,75,0,1454,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2022,75,0,1455,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2023,75,0,1456,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2024,75,0,1457,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2025,75,0,1458,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2026,75,0,1459,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2027,75,0,1460,'<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.</p>\n<p>&bull; Purple heather v-neck tee.<br />&bull; Short-Sleeves.<br />&bull; Luma EverCool&trade; fabric. <br />&bull; Machine wash/line dry.</p>'),(2028,151,0,1460,'135'),(2029,137,0,1460,'152,153'),(2030,154,0,1460,'196'),(2031,155,0,1460,'204,208'),(2032,75,0,1461,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2033,75,0,1462,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2034,75,0,1463,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2035,75,0,1464,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2036,75,0,1465,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2037,75,0,1466,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2038,75,0,1467,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2039,75,0,1468,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2040,75,0,1469,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2041,75,0,1470,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2042,75,0,1471,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2043,75,0,1472,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2044,75,0,1473,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2045,75,0,1474,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2046,75,0,1475,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2047,75,0,1476,'<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.</p>\n<p>&bull; Black scoop neck tee.<br />&bull; Side rouching.<br />&bull; Relaxed fit.</p>'),(2048,151,0,1476,'135'),(2049,137,0,1476,'142,38'),(2050,154,0,1476,'196'),(2051,155,0,1476,'204,208'),(2052,75,0,1477,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2053,75,0,1478,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2054,75,0,1479,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2055,75,0,1480,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2056,75,0,1481,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2057,75,0,1482,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2058,75,0,1483,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2059,75,0,1484,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2060,75,0,1485,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2061,75,0,1486,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2062,75,0,1487,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2063,75,0,1488,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2064,75,0,1489,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2065,75,0,1490,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2066,75,0,1491,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2067,75,0,1492,'<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.</p>\n<p>&bull; Navy blue heather soft v-neck tee.<br />&bull; Flatlock seams for chafe-free comfort.<br />&bull; Relaxed cut.<br />&bull; Ultra-lightweight fabric.<br />&bull; Machine wash/dry.</p>'),(2068,151,0,1492,'135'),(2069,137,0,1492,'33,148'),(2070,154,0,1492,'196'),(2071,155,0,1492,'204,208'),(2072,75,0,1493,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2073,75,0,1494,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2074,75,0,1495,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2075,75,0,1496,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2076,75,0,1497,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2077,75,0,1498,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2078,75,0,1499,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2079,75,0,1500,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2080,75,0,1501,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2081,75,0,1502,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2082,75,0,1503,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2083,75,0,1504,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2084,75,0,1505,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2085,75,0,1506,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2086,75,0,1507,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2087,75,0,1508,'<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.</p>\n<p>&bull; Teal soft scoop neck tee.<br />&bull; Contrast stitching pattern. <br />&bull; Machine wash/dry.</p>'),(2088,151,0,1508,'135'),(2089,137,0,1508,'153'),(2090,154,0,1508,'196'),(2091,155,0,1508,'204,208'),(2092,75,0,1509,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2093,75,0,1510,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2094,75,0,1511,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2095,75,0,1512,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2096,75,0,1513,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2097,75,0,1514,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2098,75,0,1515,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2099,75,0,1516,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2100,75,0,1517,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2101,75,0,1518,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2102,75,0,1519,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2103,75,0,1520,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2104,75,0,1521,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2105,75,0,1522,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2106,75,0,1523,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2107,75,0,1524,'<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.</p>\n<p>&bull; Pink heather soft v-neck tee. <br />&bull; Luma signature micro sleeves.<br />&bull; Semi-fitted. <br />&bull; Machine wash/dry.</p>'),(2108,151,0,1524,'135'),(2109,137,0,1524,'33,152'),(2110,154,0,1524,'196'),(2111,155,0,1524,'204,208'),(2112,75,0,1525,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2113,75,0,1526,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2114,75,0,1527,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2115,75,0,1528,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2116,75,0,1529,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2117,75,0,1530,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2118,75,0,1531,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2119,75,0,1532,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2120,75,0,1533,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2121,75,0,1534,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2122,75,0,1535,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2123,75,0,1536,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2124,75,0,1537,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2125,75,0,1538,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2126,75,0,1539,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2127,75,0,1540,'<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.</p>\n<p>&bull; Bright yellow v-neck tee.<br />&bull; Moisture-wicking fabric. <br />&bull; Long-Sleeves. <br />&bull; Machine wash/line dry.</p>'),(2128,151,0,1540,'135'),(2129,137,0,1540,'142,38'),(2130,154,0,1540,'196'),(2131,155,0,1540,'204,208'),(2132,75,0,1541,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2133,75,0,1542,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2134,75,0,1543,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2135,75,0,1544,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2136,75,0,1545,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2137,75,0,1546,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2138,75,0,1547,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2139,75,0,1548,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2140,75,0,1549,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2141,75,0,1550,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2142,75,0,1551,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2143,75,0,1552,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2144,75,0,1553,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2145,75,0,1554,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2146,75,0,1555,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2147,75,0,1556,'<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.</p>\n<p>&bull; Salmon soft scoop neck tee.<br />&bull; Athletic, semi-form fit.<br />&bull; Flat seams prevent chafing.<br />&bull; 67% Organic Cotton / 28% Hemp / 5% Spandex.</p>'),(2148,151,0,1556,'135'),(2149,137,0,1556,'145,153,150'),(2150,154,0,1556,'196'),(2151,155,0,1556,'204,208'),(2152,75,0,1557,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2153,75,0,1558,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2154,75,0,1559,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2155,75,0,1560,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2156,75,0,1561,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2157,75,0,1562,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2158,75,0,1563,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2159,75,0,1564,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2160,75,0,1565,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2161,75,0,1566,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2162,75,0,1567,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2163,75,0,1568,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2164,75,0,1569,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2165,75,0,1570,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2166,75,0,1571,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2167,75,0,1572,'<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Machine wash/line dry.</p>'),(2168,151,0,1572,'135'),(2169,137,0,1572,'151,38'),(2170,154,0,1572,'196'),(2171,155,0,1572,'204,208'),(2172,75,0,1573,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2173,75,0,1574,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2174,75,0,1575,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2175,75,0,1576,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2176,75,0,1577,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2177,75,0,1578,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2178,75,0,1579,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2179,75,0,1580,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2180,75,0,1581,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2181,75,0,1582,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2182,75,0,1583,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2183,75,0,1584,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2184,75,0,1585,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2185,75,0,1586,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2186,75,0,1587,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2187,75,0,1588,'<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.</p>\n<p>&bull; Short-Sleeves.<br />&bull; Performance fabric.<br />&bull; Machine wash/line dry.</p>'),(2188,151,0,1588,'135'),(2189,137,0,1588,'151,38'),(2190,154,0,1588,'196'),(2191,155,0,1588,'204,208'),(2192,75,0,1589,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2193,75,0,1590,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2194,75,0,1591,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2195,75,0,1592,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2196,75,0,1593,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2197,75,0,1594,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2198,75,0,1595,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2199,75,0,1596,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2200,75,0,1597,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2201,75,0,1598,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2202,75,0,1599,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2203,75,0,1600,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2204,75,0,1601,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2205,75,0,1602,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2206,75,0,1603,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2207,75,0,1604,'<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.</p>\n<p>&bull; Gray rouched bra top.<br />&bull; Attractive back straps feature contrasting motif fabric.<br />&bull; Interior bra top is lined with breathable mesh.<br />&bull; Elastic underband for superior support.<br />&bull; Removable cup inserts.<br />&bull; Chafe-free flat lock seams provide added comfort.</p>'),(2208,151,0,1604,'130'),(2209,137,0,1604,'152,153,38'),(2210,154,0,1604,'196'),(2211,155,0,1604,'204,208'),(2212,75,0,1605,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2213,75,0,1606,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2214,75,0,1607,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2215,75,0,1608,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2216,75,0,1609,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2217,75,0,1610,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2218,75,0,1611,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2219,75,0,1612,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2220,75,0,1613,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2221,75,0,1614,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2222,75,0,1615,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2223,75,0,1616,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2224,75,0,1617,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2225,75,0,1618,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2226,75,0,1619,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2227,75,0,1620,'<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.</p>\n<p>&bull; Honeycomb light blue bra top.<br />&bull; Elastic hem.<br />&bull; Reinforced binding. <br />&bull; Machine wash/dry.</p>'),(2228,151,0,1620,'130'),(2229,137,0,1620,'152,148'),(2230,154,0,1620,'196'),(2231,155,0,1620,'204,208'),(2232,75,0,1621,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2233,75,0,1622,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2234,75,0,1623,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2235,75,0,1624,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2236,75,0,1625,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2237,75,0,1626,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2238,75,0,1627,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2239,75,0,1628,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2240,75,0,1629,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2241,75,0,1630,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2242,75,0,1631,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2243,75,0,1632,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2244,75,0,1633,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2245,75,0,1634,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2246,75,0,1635,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2247,75,0,1636,'<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.</p>\n<p>&bull; Mint bra top. <br />&bull; Seam-free interior molded cups<br />&bull; Odor control. <br />&bull; UV protection. <br />&bull; Machine wash/dry.</p>'),(2248,151,0,1636,'130'),(2249,137,0,1636,'142,153'),(2250,154,0,1636,'196'),(2251,155,0,1636,'204,208'),(2252,75,0,1637,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2253,75,0,1638,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2254,75,0,1639,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2255,75,0,1640,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2256,75,0,1641,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2257,75,0,1642,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2258,75,0,1643,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2259,75,0,1644,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2260,75,0,1645,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2261,75,0,1646,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2262,75,0,1647,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2263,75,0,1648,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2264,75,0,1649,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2265,75,0,1650,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2266,75,0,1651,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2267,75,0,1652,'<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br />`<br />&bull; Colorblocked details.<br />&bull; Machine wash/line dry.</p>'),(2268,151,0,1652,'130'),(2269,137,0,1652,'152,153,150'),(2270,154,0,1652,'196'),(2271,155,0,1652,'204,208'),(2272,75,0,1653,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2273,75,0,1654,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2274,75,0,1655,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2275,75,0,1656,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2276,75,0,1657,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2277,75,0,1658,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2278,75,0,1659,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2279,75,0,1660,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2280,75,0,1661,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2281,75,0,1662,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2282,75,0,1663,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2283,75,0,1664,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2284,75,0,1665,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2285,75,0,1666,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2286,75,0,1667,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2287,75,0,1668,'<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.</p>\n<p>&bull; Black/white bra top. <br />&bull; Criss-cross back design. <br />&bull; Machine wash/dry.</p>'),(2288,151,0,1668,'130'),(2289,137,0,1668,'149,37,38'),(2290,154,0,1668,'193'),(2291,155,0,1668,'204,208'),(2292,75,0,1669,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2293,75,0,1670,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2294,75,0,1671,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2295,75,0,1672,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2296,75,0,1673,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2297,75,0,1674,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2298,75,0,1675,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2299,75,0,1676,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2300,75,0,1677,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2301,75,0,1678,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2302,75,0,1679,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2303,75,0,1680,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2304,75,0,1681,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2305,75,0,1682,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2306,75,0,1683,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2307,75,0,1684,'<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.</p>\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2308,151,0,1684,'134'),(2309,137,0,1684,'153'),(2310,154,0,1684,'196'),(2311,155,0,1684,'204,208'),(2312,75,0,1685,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2313,75,0,1686,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2314,75,0,1687,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2315,75,0,1688,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2316,75,0,1689,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2317,75,0,1690,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2318,75,0,1691,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2319,75,0,1692,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2320,75,0,1693,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2321,75,0,1694,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2322,75,0,1695,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2323,75,0,1696,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2324,75,0,1697,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2325,75,0,1698,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2326,75,0,1699,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2327,75,0,1700,'<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\n<p>&bull; Salmon heather tank top.<br />&bull; 1\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>'),(2328,151,0,1700,'134'),(2329,137,0,1700,'142,33'),(2330,154,0,1700,'196'),(2331,155,0,1700,'204,208'),(2332,75,0,1701,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2333,75,0,1702,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2334,75,0,1703,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2335,75,0,1704,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2336,75,0,1705,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2337,75,0,1706,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2338,75,0,1707,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2339,75,0,1708,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2340,75,0,1709,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2341,75,0,1710,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2342,75,0,1711,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2343,75,0,1712,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2344,75,0,1713,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2345,75,0,1714,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2346,75,0,1715,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2347,75,0,1716,'<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>'),(2348,151,0,1716,'134'),(2349,137,0,1716,'148,153'),(2350,154,0,1716,'196'),(2351,155,0,1716,'204,208'),(2352,75,0,1717,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2353,75,0,1718,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2354,75,0,1719,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2355,75,0,1720,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2356,75,0,1721,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2357,75,0,1722,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2358,75,0,1723,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2359,75,0,1724,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2360,75,0,1725,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2361,75,0,1726,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2362,75,0,1727,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2363,75,0,1728,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2364,75,0,1729,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2365,75,0,1730,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2366,75,0,1731,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2367,75,0,1732,'<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.</p>\n<p>&bull; Blue/white striped mesh tank.<br />&bull; Relaxed fit. <br />&bull; Chafe-resistant trim around armholes and collar. <br />&bull; Machine wash/dry.</p>'),(2368,151,0,1732,'134'),(2369,137,0,1732,'33,150'),(2370,154,0,1732,'198'),(2371,155,0,1732,'204,208'),(2372,75,0,1733,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2373,75,0,1734,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2374,75,0,1735,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2375,75,0,1736,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2376,75,0,1737,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2377,75,0,1738,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2378,75,0,1739,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2379,75,0,1740,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2380,75,0,1741,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2381,75,0,1742,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2382,75,0,1743,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2383,75,0,1744,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2384,75,0,1745,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2385,75,0,1746,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2386,75,0,1747,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2387,75,0,1748,'<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.</p>\n<p>&bull; Blue heather rouched tank top.<br />&bull; Camisole tank top.<br />&bull; Banding and shirring details.<br />&bull; Body hugging fit.<br />&bull; Contrast topstitch.<br />&bull; Interior shelf bra with shapewear technology.<br />&bull; 65% Polyester 35% Cotton.</p>'),(2388,151,0,1748,'134,141'),(2389,137,0,1748,'33,38'),(2390,154,0,1748,'196'),(2391,155,0,1748,'204,208'),(2392,75,0,1749,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2393,75,0,1750,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2394,75,0,1751,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2395,75,0,1752,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2396,75,0,1753,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2397,75,0,1754,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2398,75,0,1755,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2399,75,0,1756,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2400,75,0,1757,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2401,75,0,1758,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2402,75,0,1759,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2403,75,0,1760,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2404,75,0,1761,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2405,75,0,1762,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2406,75,0,1763,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2407,75,0,1764,'<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.</p>\n<p>&bull; Royal blue tank top - nylon/spandex.<br />&bull; Flatlock stitching.<br />&bull; Moisture-wicking fabric. <br />&bull; Ergonomic seaming. <br />&bull; Machine wash/dry.</p>'),(2408,151,0,1764,'134'),(2409,137,0,1764,'36,37,38'),(2410,154,0,1764,'196'),(2411,155,0,1764,'204,208'),(2412,75,0,1765,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2413,75,0,1766,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2414,75,0,1767,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2415,75,0,1768,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2416,75,0,1769,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2417,75,0,1770,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2418,75,0,1771,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2419,75,0,1772,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2420,75,0,1773,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2421,75,0,1774,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2422,75,0,1775,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2423,75,0,1776,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2424,75,0,1777,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2425,75,0,1778,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2426,75,0,1779,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2427,75,0,1780,'<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.</p>\n<p>&bull; Mint green heather tunic-style tank. <br />&bull; Wrapped back with cut out detail.<br />&bull; Drawcord detail at end.<br />&bull; Abutted seams.</p>'),(2428,151,0,1780,'134'),(2429,137,0,1780,'142,153'),(2430,154,0,1780,'196'),(2431,155,0,1780,'204,208'),(2432,75,0,1781,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2433,75,0,1782,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2434,75,0,1783,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2435,75,0,1784,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2436,75,0,1785,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2437,75,0,1786,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2438,75,0,1787,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2439,75,0,1788,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2440,75,0,1789,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2441,75,0,1790,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2442,75,0,1791,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2443,75,0,1792,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2444,75,0,1793,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2445,75,0,1794,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2446,75,0,1795,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2447,75,0,1796,'<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.</p>\n<p>&bull; Machine wash.<br />&bull; Line dry.</p>'),(2448,151,0,1796,'134'),(2449,137,0,1796,'151,37,38'),(2450,154,0,1796,'196'),(2451,155,0,1796,'204,208'),(2452,75,0,1797,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2453,75,0,1798,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2454,75,0,1799,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2455,75,0,1800,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2456,75,0,1801,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2457,75,0,1802,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2458,75,0,1803,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2459,75,0,1804,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2460,75,0,1805,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2461,75,0,1806,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2462,75,0,1807,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2463,75,0,1808,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2464,75,0,1809,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2465,75,0,1810,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2466,75,0,1811,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2467,75,0,1812,'<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.</p>\n<p>&bull; Machine wash/dry.<br />&bull; Cocona&reg; fabric.</p>'),(2468,151,0,1812,'134'),(2469,137,0,1812,'142,33'),(2470,154,0,1812,'196'),(2471,155,0,1812,'204,208'),(2472,75,0,1813,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2473,75,0,1814,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2474,75,0,1815,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2475,75,0,1816,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2476,75,0,1817,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2477,75,0,1818,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2478,75,0,1819,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2479,150,0,1819,'112'),(2480,137,0,1819,'155,153'),(2481,154,0,1819,'196'),(2482,155,0,1819,'204,205'),(2483,75,0,1820,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2484,75,0,1821,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2485,75,0,1822,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2486,75,0,1823,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2487,75,0,1824,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2488,75,0,1825,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2489,75,0,1826,'<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.</p>\n<p>&bull; Light blue heather yoga pants. <br />&bull; Body hugging fit.<br />&bull; Low rise fit.</p>'),(2490,150,0,1826,'112'),(2491,137,0,1826,'142,153'),(2492,154,0,1826,'196'),(2493,155,0,1826,'203,204,205,207'),(2494,75,0,1827,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2495,75,0,1828,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2496,75,0,1829,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2497,75,0,1830,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2498,75,0,1831,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2499,75,0,1832,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2500,75,0,1833,'<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.</p>\n<p>&bull; Royal blue parachute pants.<br />&bull; Contrast stripe.<br />&bull; Relaxed fit. <br />&bull; Drawstring closure.<br />&bull; Machine wash/dry.</p>'),(2501,150,0,1833,'109,114'),(2502,137,0,1833,'147,37,150'),(2503,154,0,1833,'194'),(2504,155,0,1833,'204,211,205,207,208'),(2505,75,0,1834,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2506,75,0,1835,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2507,75,0,1836,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2508,75,0,1837,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2509,75,0,1838,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2510,75,0,1839,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2511,75,0,1840,'<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.</p>\n<p>&bull; Light blue parachute pants.<br />&bull; Power mesh internal waistband for support.<br />&bull; Internal waistband pocket.<br />&bull; Antimicrobial finish.</p>'),(2512,150,0,1840,'109,114'),(2513,137,0,1840,'147,37,150'),(2514,154,0,1840,'196'),(2515,155,0,1840,'204,211,205,207,208'),(2516,75,0,1841,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2517,75,0,1842,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2518,75,0,1843,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2519,75,0,1844,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2520,75,0,1845,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2521,75,0,1846,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2522,75,0,1847,'<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.</p>\n<p>&bull; Pinstripe legging with rouched ankles.<br />&bull; Secret pocket at waistband.<br />&bull; Flat seams for comfort.<br />&bull; Shaped fit with low rise.<br />&bull; 4-way stretch, moisture-wicking material.</p>'),(2523,150,0,1847,'108,112,114'),(2524,137,0,1847,'147,153'),(2525,154,0,1847,'196'),(2526,155,0,1847,'203,204,207'),(2527,75,0,1848,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2528,75,0,1849,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2529,75,0,1850,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2530,75,0,1851,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2531,75,0,1852,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2532,75,0,1853,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2533,75,0,1854,'<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.</p>\n<p>&bull; Black legging with slate details.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Secret interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2534,150,0,1854,'106,108'),(2535,137,0,1854,'149,38,150'),(2536,154,0,1854,'196'),(2537,155,0,1854,'201,203,204,205,207,208'),(2538,75,0,1855,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2539,75,0,1856,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2540,75,0,1857,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2541,75,0,1858,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2542,75,0,1859,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2543,75,0,1860,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2544,75,0,1861,'<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.</p>\n<p>&bull; Black capris with teal accents.<br />&bull; Thick, 3\" flattering waistband.<br />&bull; Media pocket on inner waistband.<br />&bull; Dry wick finish for ultimate comfort and dryness.</p>'),(2545,150,0,1861,'106'),(2546,137,0,1861,'155,149,153'),(2547,154,0,1861,'194'),(2548,155,0,1861,'204,211,205'),(2549,75,0,1862,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2550,75,0,1863,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2551,75,0,1864,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2552,75,0,1865,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2553,75,0,1866,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2554,75,0,1867,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2555,75,0,1868,'<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.</p>\n<p>&bull; Black capris with pink waistband.<br />&bull; Cropped leggings.<br />&bull; Waistband drawcord. <br />&bull; Flat, thin and flattering.<br />&bull; Made with organic fabric.</p>'),(2556,150,0,1868,'106,108'),(2557,137,0,1868,'149,39,150'),(2558,154,0,1868,'194'),(2559,155,0,1868,'204,211,205,208'),(2560,75,0,1869,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2561,75,0,1870,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2562,75,0,1871,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2563,75,0,1872,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2564,75,0,1873,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2565,75,0,1874,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2566,75,0,1875,'<p>Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.</p>\n<p>&bull; Black capris with rouching detail.<br />&bull; 93% cotton, 7% spandex.<br />&bull; Elasticized waistband.<br />&bull; Reinforced seams with exposed topstitching.<br />&bull; Soft, medium-weight jersey with added stretch.</p>'),(2567,150,0,1875,'106,107,108'),(2568,137,0,1875,'33,150'),(2569,154,0,1875,'196'),(2570,155,0,1875,'201,204,205,207,208'),(2571,75,0,1876,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2572,75,0,1877,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2573,75,0,1878,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2574,75,0,1879,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2575,75,0,1880,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2576,75,0,1881,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2577,75,0,1882,'<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>'),(2578,150,0,1882,'106'),(2579,137,0,1882,'153,150'),(2580,154,0,1882,'194'),(2581,155,0,1882,'201,204,205,207,208'),(2582,75,0,1883,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2583,75,0,1884,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2584,75,0,1885,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2585,75,0,1886,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2586,75,0,1887,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2587,75,0,1888,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2588,75,0,1889,'<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>'),(2589,150,0,1889,'106'),(2590,137,0,1889,'148,153,38'),(2591,154,0,1889,'198'),(2592,155,0,1889,'204'),(2593,75,0,1890,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2594,75,0,1891,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2595,75,0,1892,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2596,75,0,1893,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2597,75,0,1894,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2598,75,0,1895,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2599,75,0,1896,'<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>'),(2600,150,0,1896,'106'),(2601,137,0,1896,'142,153,39'),(2602,154,0,1896,'194'),(2603,155,0,1896,'204,211,205'),(2604,75,0,1897,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2605,75,0,1898,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2606,75,0,1899,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2607,75,0,1900,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2608,75,0,1901,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2609,75,0,1902,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2610,75,0,1903,'<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.</p>\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>'),(2611,150,0,1903,'106'),(2612,137,0,1903,'153'),(2613,154,0,1903,'196'),(2614,155,0,1903,'204,211,205'),(2615,75,0,1904,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2616,75,0,1905,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2617,75,0,1906,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2618,75,0,1907,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2619,75,0,1908,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2620,75,0,1909,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2621,75,0,1910,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2622,75,0,1911,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2623,75,0,1912,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2624,75,0,1913,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2625,75,0,1914,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2626,75,0,1915,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2627,75,0,1916,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2628,75,0,1917,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2629,75,0,1918,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2630,75,0,1919,'<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>'),(2631,150,0,1919,'105,104'),(2632,137,0,1919,'153,150'),(2633,154,0,1919,'196'),(2634,155,0,1919,'204,211,205,208'),(2635,75,0,1920,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2636,75,0,1921,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2637,75,0,1922,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2638,75,0,1923,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2639,75,0,1924,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2640,75,0,1925,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2641,75,0,1926,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2642,75,0,1927,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2643,75,0,1928,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2644,75,0,1929,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2645,75,0,1930,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2646,75,0,1931,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2647,75,0,1932,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2648,75,0,1933,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2649,75,0,1934,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2650,75,0,1935,'<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.</p>\n<p>&bull; Light gray run shorts <br />- cotton polyester. <br />&bull; Contrast binding. <br />&bull; 3\" inseam. <br />&bull; Machine wash/dry.</p>'),(2651,150,0,1935,'105'),(2652,137,0,1935,'33,38'),(2653,154,0,1935,'196'),(2654,155,0,1935,'204,211,205,208'),(2655,75,0,1936,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2656,75,0,1937,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2657,75,0,1938,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2658,75,0,1939,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2659,75,0,1940,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2660,75,0,1941,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2661,75,0,1942,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2662,75,0,1943,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2663,75,0,1944,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2664,75,0,1945,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2665,75,0,1946,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2666,75,0,1947,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2667,75,0,1948,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2668,75,0,1949,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2669,75,0,1950,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2670,75,0,1951,'<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.</p>\n<p>&bull; Dark heather gray rouched bike shorts.<br />&bull; Fitted. Inseam: 2\". <br />&bull; Machine wash/dry.</p>'),(2671,150,0,1951,'105,111,104'),(2672,137,0,1951,'147,153'),(2673,154,0,1951,'196'),(2674,155,0,1951,'201,204,211'),(2675,75,0,1952,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2676,75,0,1953,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2677,75,0,1954,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2678,75,0,1955,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2679,75,0,1956,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2680,75,0,1957,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2681,75,0,1958,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2682,75,0,1959,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2683,75,0,1960,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2684,75,0,1961,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2685,75,0,1962,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2686,75,0,1963,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2687,75,0,1964,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2688,75,0,1965,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2689,75,0,1966,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2690,75,0,1967,'<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.</p>\n<p>&bull; Black rouched shorts with mint waist. <br />&bull; Soft, lightweight construction.<br />&bull; LumaTech&trade; wicking technology.<br />&bull; Semi-fitted.</p>'),(2691,150,0,1967,'105'),(2692,137,0,1967,'150,158'),(2693,154,0,1967,'197'),(2694,155,0,1967,'201,204,211,205,208'),(2695,75,0,1968,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2696,75,0,1969,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2697,75,0,1970,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2698,75,0,1971,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2699,75,0,1972,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2700,75,0,1973,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2701,75,0,1974,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2702,75,0,1975,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2703,75,0,1976,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2704,75,0,1977,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2705,75,0,1978,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2706,75,0,1979,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2707,75,0,1980,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2708,75,0,1981,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2709,75,0,1982,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2710,75,0,1983,'<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.</p>\n<p>&bull; Navy cotton shorts with light bue waist detail.<br />&bull; Front shirred waistband.<br />&bull; Flat-lock, chafe-free side seams.<br />&bull; Vented gusset.<br />&bull; Hidden interior pocket.<br />&bull; Sustainable and recycled fabric.</p>'),(2711,150,0,1983,'105'),(2712,137,0,1983,'33,155,36'),(2713,154,0,1983,'197'),(2714,155,0,1983,'201,211,208'),(2715,75,0,1984,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2716,75,0,1985,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2717,75,0,1986,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2718,75,0,1987,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2719,75,0,1988,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2720,75,0,1989,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2721,75,0,1990,'<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.</p>\n<p>&bull; Dark heather gray running shorts.<br />&bull; Snug fit. <br />&bull; Elastic waistband. <br />&bull; Cocona&reg; performance fabric. <br />&bull; Machine wash/dry.</p>'),(2722,150,0,1990,'105,111'),(2723,137,0,1990,'142,36,38'),(2724,154,0,1990,'196'),(2725,155,0,1990,'201,204,211'),(2726,75,0,1991,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2727,75,0,1992,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2728,75,0,1993,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2729,75,0,1994,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2730,75,0,1995,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2731,75,0,1996,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2732,75,0,1997,'<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.</p>\n<p>&bull; Black compression shorts.<br />&bull; High-waisted cut.<br />&bull; Compression fit.<br />&bull; Inseam: 1.0\". <br />&bull; Machine wash/dry.</p>'),(2733,150,0,1997,'111,104,107'),(2734,137,0,1997,'148,150,158'),(2735,154,0,1997,'196'),(2736,155,0,1997,'201,204,211,205,208'),(2737,75,0,1998,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2738,75,0,1999,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2739,75,0,2000,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2740,75,0,2001,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2741,75,0,2002,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2742,75,0,2003,'<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\" inseam. Machine wash/line dry.</p>'),(2743,150,0,2003,'105'),(2744,137,0,2003,'142,33,36'),(2745,154,0,2003,'197'),(2746,155,0,2003,'204,211'),(2747,75,0,2004,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2748,75,0,2005,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2749,75,0,2006,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2750,75,0,2007,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2751,75,0,2008,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2752,75,0,2009,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2753,75,0,2010,'<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\" inseam.<br />&bull; Reflective trim for visibility.</p>'),(2754,150,0,2010,'105'),(2755,137,0,2010,'37,153,38'),(2756,154,0,2010,'197'),(2757,155,0,2010,'205,208'),(2758,75,0,2011,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2759,75,0,2012,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2760,75,0,2013,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2761,75,0,2014,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2762,75,0,2015,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2763,75,0,2016,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2764,75,0,2017,'<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>'),(2765,150,0,2017,'105'),(2766,137,0,2017,'155,153,38'),(2767,154,0,2017,'197'),(2768,155,0,2017,'201,208'),(2769,75,0,2018,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2770,75,0,2019,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2771,75,0,2020,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2772,75,0,2021,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2773,75,0,2022,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2774,75,0,2023,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2775,75,0,2024,'<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>'),(2776,150,0,2024,'111,104,107'),(2777,137,0,2024,'147,150'),(2778,154,0,2024,'196'),(2779,155,0,2024,'201,211,208'),(2780,75,0,2025,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2781,75,0,2026,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2782,75,0,2027,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2783,75,0,2028,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2784,75,0,2029,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2785,75,0,2030,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2786,75,0,2031,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2787,75,0,2032,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2788,75,0,2033,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2789,75,0,2034,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2790,75,0,2035,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2791,75,0,2036,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2792,75,0,2037,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2793,75,0,2038,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2794,75,0,2039,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2795,75,0,2040,'<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4\'\' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>'),(2796,150,0,2040,'105,111'),(2797,137,0,2040,'153,38,150'),(2798,154,0,2040,'195'),(2799,155,0,2040,'211,205,208');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_tier_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_tier_price` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `all_groups` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Applicable To All Customer Groups',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'QTY',
  `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `percentage_value` decimal(5,2) DEFAULT NULL COMMENT 'Percentage value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `UNQ_6D3040166530765494A77D7288801D79` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_7D8856808D646B3A5189328AC72A266D` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_TIER_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Tier Price Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_tier_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_tier_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_tier_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_VCHR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_VCHR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_VCHR_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14296 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_varchar`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_varchar` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_varchar` VALUES (1,73,0,1,'Joust Duffle Bag'),(2,121,0,1,'joust-duffle-bag'),(3,87,0,1,'/m/b/mb01-blue-0.jpg'),(4,88,0,1,'/m/b/mb01-blue-0.jpg'),(5,89,0,1,'/m/b/mb01-blue-0.jpg'),(6,124,0,2,'0'),(7,73,0,2,'Strive Shoulder Pack'),(8,106,0,2,'container2'),(9,121,0,2,'strive-shoulder-pack'),(10,87,0,2,'/m/b/mb04-black-0.jpg'),(11,88,0,2,'/m/b/mb04-black-0.jpg'),(12,89,0,2,'/m/b/mb04-black-0.jpg'),(13,124,0,3,'0'),(14,73,0,3,'Crown Summit Backpack'),(15,106,0,3,'container2'),(16,121,0,3,'crown-summit-backpack'),(17,87,0,3,'/m/b/mb03-black-0.jpg'),(18,88,0,3,'/m/b/mb03-black-0.jpg'),(19,89,0,3,'/m/b/mb03-black-0.jpg'),(20,124,0,4,'0'),(21,73,0,4,'Wayfarer Messenger Bag'),(22,106,0,4,'container2'),(23,121,0,4,'wayfarer-messenger-bag'),(24,87,0,4,'/m/b/mb05-black-0.jpg'),(25,88,0,4,'/m/b/mb05-black-0.jpg'),(26,89,0,4,'/m/b/mb05-black-0.jpg'),(27,124,0,5,'0'),(28,73,0,5,'Rival Field Messenger'),(29,106,0,5,'container2'),(30,121,0,5,'rival-field-messenger'),(31,87,0,5,'/m/b/mb06-gray-0.jpg'),(32,88,0,5,'/m/b/mb06-gray-0.jpg'),(33,89,0,5,'/m/b/mb06-gray-0.jpg'),(34,124,0,6,'0'),(35,73,0,6,'Fusion Backpack'),(36,106,0,6,'container2'),(37,121,0,6,'fusion-backpack'),(38,87,0,6,'/m/b/mb02-gray-0.jpg'),(39,88,0,6,'/m/b/mb02-gray-0.jpg'),(40,89,0,6,'/m/b/mb02-gray-0.jpg'),(41,124,0,7,'0'),(42,73,0,7,'Impulse Duffle'),(43,106,0,7,'container2'),(44,121,0,7,'impulse-duffle'),(45,87,0,7,'/u/b/ub02-black-0.jpg'),(46,88,0,7,'/u/b/ub02-black-0.jpg'),(47,89,0,7,'/u/b/ub02-black-0.jpg'),(48,124,0,8,'0'),(49,73,0,8,'Voyage Yoga Bag'),(50,106,0,8,'container2'),(51,121,0,8,'voyage-yoga-bag'),(52,87,0,8,'/w/b/wb01-black-0.jpg'),(53,88,0,8,'/w/b/wb01-black-0.jpg'),(54,89,0,8,'/w/b/wb01-black-0.jpg'),(55,124,0,9,'0'),(56,73,0,9,'Compete Track Tote'),(57,106,0,9,'container2'),(58,121,0,9,'compete-track-tote'),(59,87,0,9,'/w/b/wb02-green-0.jpg'),(60,88,0,9,'/w/b/wb02-green-0.jpg'),(61,89,0,9,'/w/b/wb02-green-0.jpg'),(62,124,0,10,'0'),(63,73,0,10,'Savvy Shoulder Tote'),(64,106,0,10,'container2'),(65,121,0,10,'savvy-shoulder-tote'),(66,87,0,10,'/w/b/wb05-red-0.jpg'),(67,88,0,10,'/w/b/wb05-red-0.jpg'),(68,89,0,10,'/w/b/wb05-red-0.jpg'),(69,124,0,11,'0'),(70,73,0,11,'Endeavor Daytrip Backpack'),(71,106,0,11,'container2'),(72,121,0,11,'endeavor-daytrip-backpack'),(73,87,0,11,'/w/b/wb06-red-0.jpg'),(74,88,0,11,'/w/b/wb06-red-0.jpg'),(75,89,0,11,'/w/b/wb06-red-0.jpg'),(76,124,0,12,'0'),(77,73,0,12,'Driven Backpack'),(78,106,0,12,'container2'),(79,121,0,12,'driven-backpack'),(80,87,0,12,'/w/b/wb03-purple-0.jpg'),(81,88,0,12,'/w/b/wb03-purple-0.jpg'),(82,89,0,12,'/w/b/wb03-purple-0.jpg'),(83,124,0,13,'0'),(84,73,0,13,'Overnight Duffle'),(85,106,0,13,'container2'),(86,121,0,13,'overnight-duffle'),(87,87,0,13,'/w/b/wb07-brown-0.jpg'),(88,88,0,13,'/w/b/wb07-brown-0.jpg'),(89,89,0,13,'/w/b/wb07-brown-0.jpg'),(90,124,0,14,'0'),(91,73,0,14,'Push It Messenger Bag'),(92,106,0,14,'container2'),(93,121,0,14,'push-it-messenger-bag'),(94,87,0,14,'/w/b/wb04-blue-0.jpg'),(95,88,0,14,'/w/b/wb04-blue-0.jpg'),(96,89,0,14,'/w/b/wb04-blue-0.jpg'),(97,73,0,15,'Affirm Water Bottle '),(98,121,0,15,'affirm-water-bottle'),(99,87,0,15,'/u/g/ug06-lb-0.jpg'),(100,88,0,15,'/u/g/ug06-lb-0.jpg'),(101,89,0,15,'/u/g/ug06-lb-0.jpg'),(102,124,0,16,'0'),(103,73,0,16,'Dual Handle Cardio Ball'),(104,106,0,16,'container2'),(105,121,0,16,'dual-handle-cardio-ball'),(106,87,0,16,'/u/g/ug07-bk-0.jpg'),(107,88,0,16,'/u/g/ug07-bk-0.jpg'),(108,89,0,16,'/u/g/ug07-bk-0.jpg'),(109,124,0,17,'0'),(110,73,0,17,'Zing Jump Rope'),(111,106,0,17,'container2'),(112,121,0,17,'zing-jump-rope'),(113,87,0,17,'/u/g/ug04-bk-0.jpg'),(114,88,0,17,'/u/g/ug04-bk-0.jpg'),(115,89,0,17,'/u/g/ug04-bk-0.jpg'),(116,124,0,18,'0'),(117,73,0,18,'Pursuit Lumaflex&trade; Tone Band'),(118,106,0,18,'container2'),(119,121,0,18,'pursuit-lumaflex-trade-tone-band'),(120,87,0,18,'/u/g/ug02-bk-0.jpg'),(121,88,0,18,'/u/g/ug02-bk-0.jpg'),(122,89,0,18,'/u/g/ug02-bk-0.jpg'),(123,124,0,19,'0'),(124,73,0,19,'Go-Get\'r Pushup Grips'),(125,106,0,19,'container2'),(126,121,0,19,'go-get-r-pushup-grips'),(127,87,0,19,'/u/g/ug05-gr-0.jpg'),(128,88,0,19,'/u/g/ug05-gr-0.jpg'),(129,89,0,19,'/u/g/ug05-gr-0.jpg'),(130,124,0,20,'0'),(131,73,0,20,'Quest Lumaflex&trade; Band'),(132,106,0,20,'container2'),(133,121,0,20,'quest-lumaflex-trade-band'),(134,87,0,20,'/u/g/ug01-bk-0.jpg'),(135,88,0,20,'/u/g/ug01-bk-0.jpg'),(136,89,0,20,'/u/g/ug01-bk-0.jpg'),(137,124,0,21,'0'),(138,73,0,21,'Sprite Foam Yoga Brick'),(139,106,0,21,'container2'),(140,121,0,21,'sprite-foam-yoga-brick'),(141,87,0,21,'/l/u/luma-yoga-brick.jpg'),(142,88,0,21,'/l/u/luma-yoga-brick.jpg'),(143,89,0,21,'/l/u/luma-yoga-brick.jpg'),(144,124,0,22,'0'),(145,73,0,22,'Sprite Foam Roller'),(146,106,0,22,'container2'),(147,121,0,22,'sprite-foam-roller'),(148,87,0,22,'/l/u/luma-foam-roller.jpg'),(149,88,0,22,'/l/u/luma-foam-roller.jpg'),(150,89,0,22,'/l/u/luma-foam-roller.jpg'),(151,124,0,23,'0'),(152,73,0,23,'Harmony Lumaflex&trade; Strength Band Kit '),(153,106,0,23,'container2'),(154,121,0,23,'harmony-lumaflex-trade-strength-band-kit'),(155,87,0,23,'/u/g/ug03-bk-0.jpg'),(156,88,0,23,'/u/g/ug03-bk-0.jpg'),(157,89,0,23,'/u/g/ug03-bk-0.jpg'),(158,73,0,24,'Sprite Stasis Ball 55 cm'),(159,121,0,24,'sprite-stasis-ball-55-cm-gray'),(160,87,0,24,'/l/u/luma-stability-ball-gray.jpg'),(161,88,0,24,'/l/u/luma-stability-ball-gray.jpg'),(162,89,0,24,'/l/u/luma-stability-ball-gray.jpg'),(163,124,0,25,'0'),(164,73,0,25,'Sprite Stasis Ball 55 cm'),(165,106,0,25,'container2'),(166,121,0,25,'sprite-stasis-ball-55-cm-pink'),(167,87,0,25,'/l/u/luma-stability-ball-pink.jpg'),(168,88,0,25,'/l/u/luma-stability-ball-pink.jpg'),(169,89,0,25,'/l/u/luma-stability-ball-pink.jpg'),(170,124,0,26,'0'),(171,73,0,26,'Sprite Stasis Ball 55 cm'),(172,106,0,26,'container2'),(173,121,0,26,'sprite-stasis-ball-55-cm-blue'),(174,87,0,26,'/l/u/luma-stability-ball.jpg'),(175,88,0,26,'/l/u/luma-stability-ball.jpg'),(176,89,0,26,'/l/u/luma-stability-ball.jpg'),(177,124,0,27,'0'),(178,73,0,27,'Sprite Stasis Ball 65 cm'),(179,106,0,27,'container2'),(180,121,0,27,'sprite-stasis-ball-65-cm-gray'),(181,87,0,27,'/l/u/luma-stability-ball-gray.jpg'),(182,88,0,27,'/l/u/luma-stability-ball-gray.jpg'),(183,89,0,27,'/l/u/luma-stability-ball-gray.jpg'),(184,124,0,28,'0'),(185,73,0,28,'Sprite Stasis Ball 65 cm'),(186,106,0,28,'container2'),(187,121,0,28,'sprite-stasis-ball-65-cm-pink'),(188,87,0,28,'/l/u/luma-stability-ball-pink.jpg'),(189,88,0,28,'/l/u/luma-stability-ball-pink.jpg'),(190,89,0,28,'/l/u/luma-stability-ball-pink.jpg'),(191,124,0,29,'0'),(192,73,0,29,'Sprite Stasis Ball 65 cm'),(193,106,0,29,'container2'),(194,121,0,29,'sprite-stasis-ball-65-cm-blue'),(195,87,0,29,'/l/u/luma-stability-ball.jpg'),(196,88,0,29,'/l/u/luma-stability-ball.jpg'),(197,89,0,29,'/l/u/luma-stability-ball.jpg'),(198,124,0,30,'0'),(199,73,0,30,'Sprite Stasis Ball 75 cm'),(200,106,0,30,'container2'),(201,121,0,30,'sprite-stasis-ball-75-cm-gray'),(202,87,0,30,'/l/u/luma-stability-ball-gray.jpg'),(203,88,0,30,'/l/u/luma-stability-ball-gray.jpg'),(204,89,0,30,'/l/u/luma-stability-ball-gray.jpg'),(205,124,0,31,'0'),(206,73,0,31,'Sprite Stasis Ball 75 cm'),(207,106,0,31,'container2'),(208,121,0,31,'sprite-stasis-ball-75-cm-pink'),(209,87,0,31,'/l/u/luma-stability-ball-pink.jpg'),(210,88,0,31,'/l/u/luma-stability-ball-pink.jpg'),(211,89,0,31,'/l/u/luma-stability-ball-pink.jpg'),(212,124,0,32,'0'),(213,73,0,32,'Sprite Stasis Ball 75 cm'),(214,106,0,32,'container2'),(215,121,0,32,'sprite-stasis-ball-75-cm-blue'),(216,87,0,32,'/l/u/luma-stability-ball.jpg'),(217,88,0,32,'/l/u/luma-stability-ball.jpg'),(218,89,0,32,'/l/u/luma-stability-ball.jpg'),(219,73,0,33,'Sprite Yoga Strap 6 foot'),(220,121,0,33,'sprite-yoga-strap-6-foot'),(221,87,0,33,'/l/u/luma-yoga-strap.jpg'),(222,88,0,33,'/l/u/luma-yoga-strap.jpg'),(223,89,0,33,'/l/u/luma-yoga-strap.jpg'),(224,124,0,34,'0'),(225,73,0,34,'Sprite Yoga Strap 8 foot'),(226,106,0,34,'container2'),(227,121,0,34,'sprite-yoga-strap-8-foot'),(228,87,0,34,'/l/u/luma-yoga-strap.jpg'),(229,88,0,34,'/l/u/luma-yoga-strap.jpg'),(230,89,0,34,'/l/u/luma-yoga-strap.jpg'),(231,124,0,35,'0'),(232,73,0,35,'Sprite Yoga Strap 10 foot'),(233,106,0,35,'container2'),(234,121,0,35,'sprite-yoga-strap-10-foot'),(235,87,0,35,'/l/u/luma-yoga-strap.jpg'),(236,88,0,35,'/l/u/luma-yoga-strap.jpg'),(237,89,0,35,'/l/u/luma-yoga-strap.jpg'),(238,124,0,36,'0'),(239,73,0,36,'Aim Analog Watch'),(240,106,0,36,'container2'),(241,121,0,36,'aim-analog-watch'),(242,87,0,36,'/m/g/mg04-bk-0.jpg'),(243,88,0,36,'/m/g/mg04-bk-0.jpg'),(244,89,0,36,'/m/g/mg04-bk-0.jpg'),(245,124,0,37,'0'),(246,73,0,37,'Endurance Watch'),(247,106,0,37,'container2'),(248,121,0,37,'endurance-watch'),(249,87,0,37,'/m/g/mg01-bk-0.jpg'),(250,88,0,37,'/m/g/mg01-bk-0.jpg'),(251,89,0,37,'/m/g/mg01-bk-0.jpg'),(252,124,0,38,'0'),(253,73,0,38,'Summit Watch'),(254,106,0,38,'container2'),(255,121,0,38,'summit-watch'),(256,87,0,38,'/m/g/mg03-br-0.jpg'),(257,88,0,38,'/m/g/mg03-br-0.jpg'),(258,89,0,38,'/m/g/mg03-br-0.jpg'),(259,124,0,39,'0'),(260,73,0,39,'Cruise Dual Analog Watch'),(261,106,0,39,'container2'),(262,121,0,39,'cruise-dual-analog-watch'),(263,87,0,39,'/m/g/mg05-br-0.jpg'),(264,88,0,39,'/m/g/mg05-br-0.jpg'),(265,89,0,39,'/m/g/mg05-br-0.jpg'),(266,124,0,40,'0'),(267,73,0,40,'Dash Digital Watch'),(268,106,0,40,'container2'),(269,121,0,40,'dash-digital-watch'),(270,87,0,40,'/m/g/mg02-bk-0.jpg'),(271,88,0,40,'/m/g/mg02-bk-0.jpg'),(272,89,0,40,'/m/g/mg02-bk-0.jpg'),(273,124,0,41,'0'),(274,73,0,41,'Luma Analog Watch'),(275,106,0,41,'container2'),(276,121,0,41,'luma-analog-watch'),(277,87,0,41,'/w/g/wg09-gr-0.jpg'),(278,88,0,41,'/w/g/wg09-gr-0.jpg'),(279,89,0,41,'/w/g/wg09-gr-0.jpg'),(280,124,0,42,'0'),(281,73,0,42,'Bolo Sport Watch'),(282,106,0,42,'container2'),(283,121,0,42,'bolo-sport-watch'),(284,87,0,42,'/w/g/wg01-bk-0.jpg'),(285,88,0,42,'/w/g/wg01-bk-0.jpg'),(286,89,0,42,'/w/g/wg01-bk-0.jpg'),(287,124,0,43,'0'),(288,73,0,43,'Clamber Watch'),(289,106,0,43,'container2'),(290,121,0,43,'clamber-watch'),(291,87,0,43,'/w/g/wg03-gr-0.jpg'),(292,88,0,43,'/w/g/wg03-gr-0.jpg'),(293,89,0,43,'/w/g/wg03-gr-0.jpg'),(294,124,0,44,'0'),(295,73,0,44,'Didi Sport Watch'),(296,106,0,44,'container2'),(297,121,0,44,'didi-sport-watch'),(298,87,0,44,'/w/g/wg02-bk-0.jpg'),(299,88,0,44,'/w/g/wg02-bk-0.jpg'),(300,89,0,44,'/w/g/wg02-bk-0.jpg'),(301,124,0,45,'0'),(302,73,0,45,'Sprite Yoga Companion Kit'),(303,106,0,45,'container2'),(304,121,0,45,'sprite-yoga-companion-kit'),(305,87,0,45,'/l/u/luma-yoga-kit-2.jpg'),(306,88,0,45,'/l/u/luma-yoga-kit-2.jpg'),(307,89,0,45,'/l/u/luma-yoga-kit-2.jpg'),(308,73,0,46,'Set of Sprite Yoga Straps'),(309,106,0,46,'container2'),(310,121,0,46,'set-of-sprite-yoga-straps'),(311,87,0,46,'/l/u/luma-yoga-strap-set.jpg'),(312,88,0,46,'/l/u/luma-yoga-strap-set.jpg'),(313,89,0,46,'/l/u/luma-yoga-strap-set.jpg'),(314,106,0,47,'container2'),(315,124,0,47,'0'),(316,121,0,47,'chaz-kangeroo-hoodie-xs-black'),(317,87,0,47,'/m/h/mh01-black_main_1.jpg'),(318,88,0,47,'/m/h/mh01-black_main_1.jpg'),(319,89,0,47,'/m/h/mh01-black_main_1.jpg'),(320,73,0,47,'Chaz Kangeroo Hoodie-XS-Black'),(321,106,0,48,'container2'),(322,124,0,48,'0'),(323,121,0,48,'chaz-kangeroo-hoodie-xs-gray'),(324,87,0,48,'/m/h/mh01-gray_main_1.jpg'),(325,88,0,48,'/m/h/mh01-gray_main_1.jpg'),(326,89,0,48,'/m/h/mh01-gray_main_1.jpg'),(327,73,0,48,'Chaz Kangeroo Hoodie-XS-Gray'),(328,106,0,49,'container2'),(329,124,0,49,'0'),(330,121,0,49,'chaz-kangeroo-hoodie-xs-orange'),(331,87,0,49,'/m/h/mh01-orange_main_1.jpg'),(332,88,0,49,'/m/h/mh01-orange_main_1.jpg'),(333,89,0,49,'/m/h/mh01-orange_main_1.jpg'),(334,73,0,49,'Chaz Kangeroo Hoodie-XS-Orange'),(335,106,0,50,'container2'),(336,124,0,50,'0'),(337,121,0,50,'chaz-kangeroo-hoodie-s-black'),(338,87,0,50,'/m/h/mh01-black_main_1.jpg'),(339,88,0,50,'/m/h/mh01-black_main_1.jpg'),(340,89,0,50,'/m/h/mh01-black_main_1.jpg'),(341,73,0,50,'Chaz Kangeroo Hoodie-S-Black'),(342,106,0,51,'container2'),(343,124,0,51,'0'),(344,121,0,51,'chaz-kangeroo-hoodie-s-gray'),(345,87,0,51,'/m/h/mh01-gray_main_1.jpg'),(346,88,0,51,'/m/h/mh01-gray_main_1.jpg'),(347,89,0,51,'/m/h/mh01-gray_main_1.jpg'),(348,73,0,51,'Chaz Kangeroo Hoodie-S-Gray'),(349,106,0,52,'container2'),(350,124,0,52,'0'),(351,121,0,52,'chaz-kangeroo-hoodie-s-orange'),(352,87,0,52,'/m/h/mh01-orange_main_1.jpg'),(353,88,0,52,'/m/h/mh01-orange_main_1.jpg'),(354,89,0,52,'/m/h/mh01-orange_main_1.jpg'),(355,73,0,52,'Chaz Kangeroo Hoodie-S-Orange'),(356,106,0,53,'container2'),(357,124,0,53,'0'),(358,121,0,53,'chaz-kangeroo-hoodie-m-black'),(359,87,0,53,'/m/h/mh01-black_main_1.jpg'),(360,88,0,53,'/m/h/mh01-black_main_1.jpg'),(361,89,0,53,'/m/h/mh01-black_main_1.jpg'),(362,73,0,53,'Chaz Kangeroo Hoodie-M-Black'),(363,106,0,54,'container2'),(364,124,0,54,'0'),(365,121,0,54,'chaz-kangeroo-hoodie-m-gray'),(366,87,0,54,'/m/h/mh01-gray_main_1.jpg'),(367,88,0,54,'/m/h/mh01-gray_main_1.jpg'),(368,89,0,54,'/m/h/mh01-gray_main_1.jpg'),(369,73,0,54,'Chaz Kangeroo Hoodie-M-Gray'),(370,106,0,55,'container2'),(371,124,0,55,'0'),(372,121,0,55,'chaz-kangeroo-hoodie-m-orange'),(373,87,0,55,'/m/h/mh01-orange_main_1.jpg'),(374,88,0,55,'/m/h/mh01-orange_main_1.jpg'),(375,89,0,55,'/m/h/mh01-orange_main_1.jpg'),(376,73,0,55,'Chaz Kangeroo Hoodie-M-Orange'),(377,106,0,56,'container2'),(378,124,0,56,'0'),(379,121,0,56,'chaz-kangeroo-hoodie-l-black'),(380,87,0,56,'/m/h/mh01-black_main_1.jpg'),(381,88,0,56,'/m/h/mh01-black_main_1.jpg'),(382,89,0,56,'/m/h/mh01-black_main_1.jpg'),(383,73,0,56,'Chaz Kangeroo Hoodie-L-Black'),(384,106,0,57,'container2'),(385,124,0,57,'0'),(386,121,0,57,'chaz-kangeroo-hoodie-l-gray'),(387,87,0,57,'/m/h/mh01-gray_main_1.jpg'),(388,88,0,57,'/m/h/mh01-gray_main_1.jpg'),(389,89,0,57,'/m/h/mh01-gray_main_1.jpg'),(390,73,0,57,'Chaz Kangeroo Hoodie-L-Gray'),(391,106,0,58,'container2'),(392,124,0,58,'0'),(393,121,0,58,'chaz-kangeroo-hoodie-l-orange'),(394,87,0,58,'/m/h/mh01-orange_main_1.jpg'),(395,88,0,58,'/m/h/mh01-orange_main_1.jpg'),(396,89,0,58,'/m/h/mh01-orange_main_1.jpg'),(397,73,0,58,'Chaz Kangeroo Hoodie-L-Orange'),(398,106,0,59,'container2'),(399,124,0,59,'0'),(400,121,0,59,'chaz-kangeroo-hoodie-xl-black'),(401,87,0,59,'/m/h/mh01-black_main_1.jpg'),(402,88,0,59,'/m/h/mh01-black_main_1.jpg'),(403,89,0,59,'/m/h/mh01-black_main_1.jpg'),(404,73,0,59,'Chaz Kangeroo Hoodie-XL-Black'),(405,106,0,60,'container2'),(406,124,0,60,'0'),(407,121,0,60,'chaz-kangeroo-hoodie-xl-gray'),(408,87,0,60,'/m/h/mh01-gray_main_1.jpg'),(409,88,0,60,'/m/h/mh01-gray_main_1.jpg'),(410,89,0,60,'/m/h/mh01-gray_main_1.jpg'),(411,73,0,60,'Chaz Kangeroo Hoodie-XL-Gray'),(412,106,0,61,'container2'),(413,124,0,61,'0'),(414,121,0,61,'chaz-kangeroo-hoodie-xl-orange'),(415,87,0,61,'/m/h/mh01-orange_main_1.jpg'),(416,88,0,61,'/m/h/mh01-orange_main_1.jpg'),(417,89,0,61,'/m/h/mh01-orange_main_1.jpg'),(418,73,0,61,'Chaz Kangeroo Hoodie-XL-Orange'),(419,106,0,62,'container2'),(420,124,0,62,'0'),(421,121,0,62,'chaz-kangeroo-hoodie'),(422,87,0,62,'/m/h/mh01-gray_main_1.jpg'),(423,88,0,62,'/m/h/mh01-gray_main_1.jpg'),(424,89,0,62,'/m/h/mh01-gray_main_1.jpg'),(425,73,0,62,'Chaz Kangeroo Hoodie'),(426,106,0,63,'container2'),(427,124,0,63,'0'),(428,121,0,63,'teton-pullover-hoodie-xs-black'),(429,87,0,63,'/m/h/mh02-black_main_1.jpg'),(430,88,0,63,'/m/h/mh02-black_main_1.jpg'),(431,89,0,63,'/m/h/mh02-black_main_1.jpg'),(432,73,0,63,'Teton Pullover Hoodie-XS-Black'),(433,106,0,64,'container2'),(434,124,0,64,'0'),(435,121,0,64,'teton-pullover-hoodie-xs-purple'),(436,87,0,64,'/m/h/mh02-purple_main_1.jpg'),(437,88,0,64,'/m/h/mh02-purple_main_1.jpg'),(438,89,0,64,'/m/h/mh02-purple_main_1.jpg'),(439,73,0,64,'Teton Pullover Hoodie-XS-Purple'),(440,106,0,65,'container2'),(441,124,0,65,'0'),(442,121,0,65,'teton-pullover-hoodie-xs-red'),(443,87,0,65,'/m/h/mh02-red_main_1.jpg'),(444,88,0,65,'/m/h/mh02-red_main_1.jpg'),(445,89,0,65,'/m/h/mh02-red_main_1.jpg'),(446,73,0,65,'Teton Pullover Hoodie-XS-Red'),(447,106,0,66,'container2'),(448,124,0,66,'0'),(449,121,0,66,'teton-pullover-hoodie-s-black'),(450,87,0,66,'/m/h/mh02-black_main_1.jpg'),(451,88,0,66,'/m/h/mh02-black_main_1.jpg'),(452,89,0,66,'/m/h/mh02-black_main_1.jpg'),(453,73,0,66,'Teton Pullover Hoodie-S-Black'),(454,106,0,67,'container2'),(455,124,0,67,'0'),(456,121,0,67,'teton-pullover-hoodie-s-purple'),(457,87,0,67,'/m/h/mh02-purple_main_1.jpg'),(458,88,0,67,'/m/h/mh02-purple_main_1.jpg'),(459,89,0,67,'/m/h/mh02-purple_main_1.jpg'),(460,73,0,67,'Teton Pullover Hoodie-S-Purple'),(461,106,0,68,'container2'),(462,124,0,68,'0'),(463,121,0,68,'teton-pullover-hoodie-s-red'),(464,87,0,68,'/m/h/mh02-red_main_1.jpg'),(465,88,0,68,'/m/h/mh02-red_main_1.jpg'),(466,89,0,68,'/m/h/mh02-red_main_1.jpg'),(467,73,0,68,'Teton Pullover Hoodie-S-Red'),(468,106,0,69,'container2'),(469,124,0,69,'0'),(470,121,0,69,'teton-pullover-hoodie-m-black'),(471,87,0,69,'/m/h/mh02-black_main_1.jpg'),(472,88,0,69,'/m/h/mh02-black_main_1.jpg'),(473,89,0,69,'/m/h/mh02-black_main_1.jpg'),(474,73,0,69,'Teton Pullover Hoodie-M-Black'),(475,106,0,70,'container2'),(476,124,0,70,'0'),(477,121,0,70,'teton-pullover-hoodie-m-purple'),(478,87,0,70,'/m/h/mh02-purple_main_1.jpg'),(479,88,0,70,'/m/h/mh02-purple_main_1.jpg'),(480,89,0,70,'/m/h/mh02-purple_main_1.jpg'),(481,73,0,70,'Teton Pullover Hoodie-M-Purple'),(482,106,0,71,'container2'),(483,124,0,71,'0'),(484,121,0,71,'teton-pullover-hoodie-m-red'),(485,87,0,71,'/m/h/mh02-red_main_1.jpg'),(486,88,0,71,'/m/h/mh02-red_main_1.jpg'),(487,89,0,71,'/m/h/mh02-red_main_1.jpg'),(488,73,0,71,'Teton Pullover Hoodie-M-Red'),(489,106,0,72,'container2'),(490,124,0,72,'0'),(491,121,0,72,'teton-pullover-hoodie-l-black'),(492,87,0,72,'/m/h/mh02-black_main_1.jpg'),(493,88,0,72,'/m/h/mh02-black_main_1.jpg'),(494,89,0,72,'/m/h/mh02-black_main_1.jpg'),(495,73,0,72,'Teton Pullover Hoodie-L-Black'),(496,106,0,73,'container2'),(497,124,0,73,'0'),(498,121,0,73,'teton-pullover-hoodie-l-purple'),(499,87,0,73,'/m/h/mh02-purple_main_1.jpg'),(500,88,0,73,'/m/h/mh02-purple_main_1.jpg'),(501,89,0,73,'/m/h/mh02-purple_main_1.jpg'),(502,73,0,73,'Teton Pullover Hoodie-L-Purple'),(503,106,0,74,'container2'),(504,124,0,74,'0'),(505,121,0,74,'teton-pullover-hoodie-l-red'),(506,87,0,74,'/m/h/mh02-red_main_1.jpg'),(507,88,0,74,'/m/h/mh02-red_main_1.jpg'),(508,89,0,74,'/m/h/mh02-red_main_1.jpg'),(509,73,0,74,'Teton Pullover Hoodie-L-Red'),(510,106,0,75,'container2'),(511,124,0,75,'0'),(512,121,0,75,'teton-pullover-hoodie-xl-black'),(513,87,0,75,'/m/h/mh02-black_main_1.jpg'),(514,88,0,75,'/m/h/mh02-black_main_1.jpg'),(515,89,0,75,'/m/h/mh02-black_main_1.jpg'),(516,73,0,75,'Teton Pullover Hoodie-XL-Black'),(517,106,0,76,'container2'),(518,124,0,76,'0'),(519,121,0,76,'teton-pullover-hoodie-xl-purple'),(520,87,0,76,'/m/h/mh02-purple_main_1.jpg'),(521,88,0,76,'/m/h/mh02-purple_main_1.jpg'),(522,89,0,76,'/m/h/mh02-purple_main_1.jpg'),(523,73,0,76,'Teton Pullover Hoodie-XL-Purple'),(524,106,0,77,'container2'),(525,124,0,77,'0'),(526,121,0,77,'teton-pullover-hoodie-xl-red'),(527,87,0,77,'/m/h/mh02-red_main_1.jpg'),(528,88,0,77,'/m/h/mh02-red_main_1.jpg'),(529,89,0,77,'/m/h/mh02-red_main_1.jpg'),(530,73,0,77,'Teton Pullover Hoodie-XL-Red'),(531,106,0,78,'container2'),(532,124,0,78,'0'),(533,121,0,78,'teton-pullover-hoodie'),(534,87,0,78,'/m/h/mh02-black_main_1.jpg'),(535,88,0,78,'/m/h/mh02-black_main_1.jpg'),(536,89,0,78,'/m/h/mh02-black_main_1.jpg'),(537,73,0,78,'Teton Pullover Hoodie'),(538,106,0,79,'container2'),(539,124,0,79,'0'),(540,121,0,79,'bruno-compete-hoodie-xs-black'),(541,87,0,79,'/m/h/mh03-black_main_1.jpg'),(542,88,0,79,'/m/h/mh03-black_main_1.jpg'),(543,89,0,79,'/m/h/mh03-black_main_1.jpg'),(544,73,0,79,'Bruno Compete Hoodie-XS-Black'),(545,106,0,80,'container2'),(546,124,0,80,'0'),(547,121,0,80,'bruno-compete-hoodie-xs-blue'),(548,87,0,80,'/m/h/mh03-blue_main_1.jpg'),(549,88,0,80,'/m/h/mh03-blue_main_1.jpg'),(550,89,0,80,'/m/h/mh03-blue_main_1.jpg'),(551,73,0,80,'Bruno Compete Hoodie-XS-Blue'),(552,106,0,81,'container2'),(553,124,0,81,'0'),(554,121,0,81,'bruno-compete-hoodie-xs-green'),(555,87,0,81,'/m/h/mh03-green_main_1.jpg'),(556,88,0,81,'/m/h/mh03-green_main_1.jpg'),(557,89,0,81,'/m/h/mh03-green_main_1.jpg'),(558,73,0,81,'Bruno Compete Hoodie-XS-Green'),(559,106,0,82,'container2'),(560,124,0,82,'0'),(561,121,0,82,'bruno-compete-hoodie-s-black'),(562,87,0,82,'/m/h/mh03-black_main_1.jpg'),(563,88,0,82,'/m/h/mh03-black_main_1.jpg'),(564,89,0,82,'/m/h/mh03-black_main_1.jpg'),(565,73,0,82,'Bruno Compete Hoodie-S-Black'),(566,106,0,83,'container2'),(567,124,0,83,'0'),(568,121,0,83,'bruno-compete-hoodie-s-blue'),(569,87,0,83,'/m/h/mh03-blue_main_1.jpg'),(570,88,0,83,'/m/h/mh03-blue_main_1.jpg'),(571,89,0,83,'/m/h/mh03-blue_main_1.jpg'),(572,73,0,83,'Bruno Compete Hoodie-S-Blue'),(573,106,0,84,'container2'),(574,124,0,84,'0'),(575,121,0,84,'bruno-compete-hoodie-s-green'),(576,87,0,84,'/m/h/mh03-green_main_1.jpg'),(577,88,0,84,'/m/h/mh03-green_main_1.jpg'),(578,89,0,84,'/m/h/mh03-green_main_1.jpg'),(579,73,0,84,'Bruno Compete Hoodie-S-Green'),(580,106,0,85,'container2'),(581,124,0,85,'0'),(582,121,0,85,'bruno-compete-hoodie-m-black'),(583,87,0,85,'/m/h/mh03-black_main_1.jpg'),(584,88,0,85,'/m/h/mh03-black_main_1.jpg'),(585,89,0,85,'/m/h/mh03-black_main_1.jpg'),(586,73,0,85,'Bruno Compete Hoodie-M-Black'),(587,106,0,86,'container2'),(588,124,0,86,'0'),(589,121,0,86,'bruno-compete-hoodie-m-blue'),(590,87,0,86,'/m/h/mh03-blue_main_1.jpg'),(591,88,0,86,'/m/h/mh03-blue_main_1.jpg'),(592,89,0,86,'/m/h/mh03-blue_main_1.jpg'),(593,73,0,86,'Bruno Compete Hoodie-M-Blue'),(594,106,0,87,'container2'),(595,124,0,87,'0'),(596,121,0,87,'bruno-compete-hoodie-m-green'),(597,87,0,87,'/m/h/mh03-green_main_1.jpg'),(598,88,0,87,'/m/h/mh03-green_main_1.jpg'),(599,89,0,87,'/m/h/mh03-green_main_1.jpg'),(600,73,0,87,'Bruno Compete Hoodie-M-Green'),(601,106,0,88,'container2'),(602,124,0,88,'0'),(603,121,0,88,'bruno-compete-hoodie-l-black'),(604,87,0,88,'/m/h/mh03-black_main_1.jpg'),(605,88,0,88,'/m/h/mh03-black_main_1.jpg'),(606,89,0,88,'/m/h/mh03-black_main_1.jpg'),(607,73,0,88,'Bruno Compete Hoodie-L-Black'),(608,106,0,89,'container2'),(609,124,0,89,'0'),(610,121,0,89,'bruno-compete-hoodie-l-blue'),(611,87,0,89,'/m/h/mh03-blue_main_1.jpg'),(612,88,0,89,'/m/h/mh03-blue_main_1.jpg'),(613,89,0,89,'/m/h/mh03-blue_main_1.jpg'),(614,73,0,89,'Bruno Compete Hoodie-L-Blue'),(615,106,0,90,'container2'),(616,124,0,90,'0'),(617,121,0,90,'bruno-compete-hoodie-l-green'),(618,87,0,90,'/m/h/mh03-green_main_1.jpg'),(619,88,0,90,'/m/h/mh03-green_main_1.jpg'),(620,89,0,90,'/m/h/mh03-green_main_1.jpg'),(621,73,0,90,'Bruno Compete Hoodie-L-Green'),(622,106,0,91,'container2'),(623,124,0,91,'0'),(624,121,0,91,'bruno-compete-hoodie-xl-black'),(625,87,0,91,'/m/h/mh03-black_main_1.jpg'),(626,88,0,91,'/m/h/mh03-black_main_1.jpg'),(627,89,0,91,'/m/h/mh03-black_main_1.jpg'),(628,73,0,91,'Bruno Compete Hoodie-XL-Black'),(629,106,0,92,'container2'),(630,124,0,92,'0'),(631,121,0,92,'bruno-compete-hoodie-xl-blue'),(632,87,0,92,'/m/h/mh03-blue_main_1.jpg'),(633,88,0,92,'/m/h/mh03-blue_main_1.jpg'),(634,89,0,92,'/m/h/mh03-blue_main_1.jpg'),(635,73,0,92,'Bruno Compete Hoodie-XL-Blue'),(636,106,0,93,'container2'),(637,124,0,93,'0'),(638,121,0,93,'bruno-compete-hoodie-xl-green'),(639,87,0,93,'/m/h/mh03-green_main_1.jpg'),(640,88,0,93,'/m/h/mh03-green_main_1.jpg'),(641,89,0,93,'/m/h/mh03-green_main_1.jpg'),(642,73,0,93,'Bruno Compete Hoodie-XL-Green'),(643,106,0,94,'container2'),(644,124,0,94,'0'),(645,121,0,94,'bruno-compete-hoodie'),(646,87,0,94,'/m/h/mh03-black_main_1.jpg'),(647,88,0,94,'/m/h/mh03-black_main_1.jpg'),(648,89,0,94,'/m/h/mh03-black_main_1.jpg'),(649,73,0,94,'Bruno Compete Hoodie'),(650,106,0,95,'container2'),(651,124,0,95,'0'),(652,121,0,95,'frankie-sweatshirt-xs-green'),(653,87,0,95,'/m/h/mh04-green_main_1.jpg'),(654,88,0,95,'/m/h/mh04-green_main_1.jpg'),(655,89,0,95,'/m/h/mh04-green_main_1.jpg'),(656,73,0,95,'Frankie  Sweatshirt-XS-Green'),(657,106,0,96,'container2'),(658,124,0,96,'0'),(659,121,0,96,'frankie-sweatshirt-xs-white'),(660,87,0,96,'/m/h/mh04-white_main_1.jpg'),(661,88,0,96,'/m/h/mh04-white_main_1.jpg'),(662,89,0,96,'/m/h/mh04-white_main_1.jpg'),(663,73,0,96,'Frankie  Sweatshirt-XS-White'),(664,106,0,97,'container2'),(665,124,0,97,'0'),(666,121,0,97,'frankie-sweatshirt-xs-yellow'),(667,87,0,97,'/m/h/mh04-yellow_main_1.jpg'),(668,88,0,97,'/m/h/mh04-yellow_main_1.jpg'),(669,89,0,97,'/m/h/mh04-yellow_main_1.jpg'),(670,73,0,97,'Frankie  Sweatshirt-XS-Yellow'),(671,106,0,98,'container2'),(672,124,0,98,'0'),(673,121,0,98,'frankie-sweatshirt-s-green'),(674,87,0,98,'/m/h/mh04-green_main_1.jpg'),(675,88,0,98,'/m/h/mh04-green_main_1.jpg'),(676,89,0,98,'/m/h/mh04-green_main_1.jpg'),(677,73,0,98,'Frankie  Sweatshirt-S-Green'),(678,106,0,99,'container2'),(679,124,0,99,'0'),(680,121,0,99,'frankie-sweatshirt-s-white'),(681,87,0,99,'/m/h/mh04-white_main_1.jpg'),(682,88,0,99,'/m/h/mh04-white_main_1.jpg'),(683,89,0,99,'/m/h/mh04-white_main_1.jpg'),(684,73,0,99,'Frankie  Sweatshirt-S-White'),(685,106,0,100,'container2'),(686,124,0,100,'0'),(687,121,0,100,'frankie-sweatshirt-s-yellow'),(688,87,0,100,'/m/h/mh04-yellow_main_1.jpg'),(689,88,0,100,'/m/h/mh04-yellow_main_1.jpg'),(690,89,0,100,'/m/h/mh04-yellow_main_1.jpg'),(691,73,0,100,'Frankie  Sweatshirt-S-Yellow'),(692,106,0,101,'container2'),(693,124,0,101,'0'),(694,121,0,101,'frankie-sweatshirt-m-green'),(695,87,0,101,'/m/h/mh04-green_main_1.jpg'),(696,88,0,101,'/m/h/mh04-green_main_1.jpg'),(697,89,0,101,'/m/h/mh04-green_main_1.jpg'),(698,73,0,101,'Frankie  Sweatshirt-M-Green'),(699,106,0,102,'container2'),(700,124,0,102,'0'),(701,121,0,102,'frankie-sweatshirt-m-white'),(702,87,0,102,'/m/h/mh04-white_main_1.jpg'),(703,88,0,102,'/m/h/mh04-white_main_1.jpg'),(704,89,0,102,'/m/h/mh04-white_main_1.jpg'),(705,73,0,102,'Frankie  Sweatshirt-M-White'),(706,106,0,103,'container2'),(707,124,0,103,'0'),(708,121,0,103,'frankie-sweatshirt-m-yellow'),(709,87,0,103,'/m/h/mh04-yellow_main_1.jpg'),(710,88,0,103,'/m/h/mh04-yellow_main_1.jpg'),(711,89,0,103,'/m/h/mh04-yellow_main_1.jpg'),(712,73,0,103,'Frankie  Sweatshirt-M-Yellow'),(713,106,0,104,'container2'),(714,124,0,104,'0'),(715,121,0,104,'frankie-sweatshirt-l-green'),(716,87,0,104,'/m/h/mh04-green_main_1.jpg'),(717,88,0,104,'/m/h/mh04-green_main_1.jpg'),(718,89,0,104,'/m/h/mh04-green_main_1.jpg'),(719,73,0,104,'Frankie  Sweatshirt-L-Green'),(720,106,0,105,'container2'),(721,124,0,105,'0'),(722,121,0,105,'frankie-sweatshirt-l-white'),(723,87,0,105,'/m/h/mh04-white_main_1.jpg'),(724,88,0,105,'/m/h/mh04-white_main_1.jpg'),(725,89,0,105,'/m/h/mh04-white_main_1.jpg'),(726,73,0,105,'Frankie  Sweatshirt-L-White'),(727,106,0,106,'container2'),(728,124,0,106,'0'),(729,121,0,106,'frankie-sweatshirt-l-yellow'),(730,87,0,106,'/m/h/mh04-yellow_main_1.jpg'),(731,88,0,106,'/m/h/mh04-yellow_main_1.jpg'),(732,89,0,106,'/m/h/mh04-yellow_main_1.jpg'),(733,73,0,106,'Frankie  Sweatshirt-L-Yellow'),(734,106,0,107,'container2'),(735,124,0,107,'0'),(736,121,0,107,'frankie-sweatshirt-xl-green'),(737,87,0,107,'/m/h/mh04-green_main_1.jpg'),(738,88,0,107,'/m/h/mh04-green_main_1.jpg'),(739,89,0,107,'/m/h/mh04-green_main_1.jpg'),(740,73,0,107,'Frankie  Sweatshirt-XL-Green'),(741,106,0,108,'container2'),(742,124,0,108,'0'),(743,121,0,108,'frankie-sweatshirt-xl-white'),(744,87,0,108,'/m/h/mh04-white_main_1.jpg'),(745,88,0,108,'/m/h/mh04-white_main_1.jpg'),(746,89,0,108,'/m/h/mh04-white_main_1.jpg'),(747,73,0,108,'Frankie  Sweatshirt-XL-White'),(748,106,0,109,'container2'),(749,124,0,109,'0'),(750,121,0,109,'frankie-sweatshirt-xl-yellow'),(751,87,0,109,'/m/h/mh04-yellow_main_1.jpg'),(752,88,0,109,'/m/h/mh04-yellow_main_1.jpg'),(753,89,0,109,'/m/h/mh04-yellow_main_1.jpg'),(754,73,0,109,'Frankie  Sweatshirt-XL-Yellow'),(755,106,0,110,'container2'),(756,124,0,110,'0'),(757,121,0,110,'frankie-sweatshirt'),(758,87,0,110,'/m/h/mh04-green_main_1.jpg'),(759,88,0,110,'/m/h/mh04-green_main_1.jpg'),(760,89,0,110,'/m/h/mh04-green_main_1.jpg'),(761,73,0,110,'Frankie  Sweatshirt'),(762,106,0,111,'container2'),(763,124,0,111,'0'),(764,121,0,111,'hollister-backyard-sweatshirt-xs-green'),(765,87,0,111,'/m/h/mh05-green_main_1.jpg'),(766,88,0,111,'/m/h/mh05-green_main_1.jpg'),(767,89,0,111,'/m/h/mh05-green_main_1.jpg'),(768,73,0,111,'Hollister Backyard Sweatshirt-XS-Green'),(769,106,0,112,'container2'),(770,124,0,112,'0'),(771,121,0,112,'hollister-backyard-sweatshirt-xs-red'),(772,87,0,112,'/m/h/mh05-red_main_1.jpg'),(773,88,0,112,'/m/h/mh05-red_main_1.jpg'),(774,89,0,112,'/m/h/mh05-red_main_1.jpg'),(775,73,0,112,'Hollister Backyard Sweatshirt-XS-Red'),(776,106,0,113,'container2'),(777,124,0,113,'0'),(778,121,0,113,'hollister-backyard-sweatshirt-xs-white'),(779,87,0,113,'/m/h/mh05-white_main_1.jpg'),(780,88,0,113,'/m/h/mh05-white_main_1.jpg'),(781,89,0,113,'/m/h/mh05-white_main_1.jpg'),(782,73,0,113,'Hollister Backyard Sweatshirt-XS-White'),(783,106,0,114,'container2'),(784,124,0,114,'0'),(785,121,0,114,'hollister-backyard-sweatshirt-s-green'),(786,87,0,114,'/m/h/mh05-green_main_1.jpg'),(787,88,0,114,'/m/h/mh05-green_main_1.jpg'),(788,89,0,114,'/m/h/mh05-green_main_1.jpg'),(789,73,0,114,'Hollister Backyard Sweatshirt-S-Green'),(790,106,0,115,'container2'),(791,124,0,115,'0'),(792,121,0,115,'hollister-backyard-sweatshirt-s-red'),(793,87,0,115,'/m/h/mh05-red_main_1.jpg'),(794,88,0,115,'/m/h/mh05-red_main_1.jpg'),(795,89,0,115,'/m/h/mh05-red_main_1.jpg'),(796,73,0,115,'Hollister Backyard Sweatshirt-S-Red'),(797,106,0,116,'container2'),(798,124,0,116,'0'),(799,121,0,116,'hollister-backyard-sweatshirt-s-white'),(800,87,0,116,'/m/h/mh05-white_main_1.jpg'),(801,88,0,116,'/m/h/mh05-white_main_1.jpg'),(802,89,0,116,'/m/h/mh05-white_main_1.jpg'),(803,73,0,116,'Hollister Backyard Sweatshirt-S-White'),(804,106,0,117,'container2'),(805,124,0,117,'0'),(806,121,0,117,'hollister-backyard-sweatshirt-m-green'),(807,87,0,117,'/m/h/mh05-green_main_1.jpg'),(808,88,0,117,'/m/h/mh05-green_main_1.jpg'),(809,89,0,117,'/m/h/mh05-green_main_1.jpg'),(810,73,0,117,'Hollister Backyard Sweatshirt-M-Green'),(811,106,0,118,'container2'),(812,124,0,118,'0'),(813,121,0,118,'hollister-backyard-sweatshirt-m-red'),(814,87,0,118,'/m/h/mh05-red_main_1.jpg'),(815,88,0,118,'/m/h/mh05-red_main_1.jpg'),(816,89,0,118,'/m/h/mh05-red_main_1.jpg'),(817,73,0,118,'Hollister Backyard Sweatshirt-M-Red'),(818,106,0,119,'container2'),(819,124,0,119,'0'),(820,121,0,119,'hollister-backyard-sweatshirt-m-white'),(821,87,0,119,'/m/h/mh05-white_main_1.jpg'),(822,88,0,119,'/m/h/mh05-white_main_1.jpg'),(823,89,0,119,'/m/h/mh05-white_main_1.jpg'),(824,73,0,119,'Hollister Backyard Sweatshirt-M-White'),(825,106,0,120,'container2'),(826,124,0,120,'0'),(827,121,0,120,'hollister-backyard-sweatshirt-l-green'),(828,87,0,120,'/m/h/mh05-green_main_1.jpg'),(829,88,0,120,'/m/h/mh05-green_main_1.jpg'),(830,89,0,120,'/m/h/mh05-green_main_1.jpg'),(831,73,0,120,'Hollister Backyard Sweatshirt-L-Green'),(832,106,0,121,'container2'),(833,124,0,121,'0'),(834,121,0,121,'hollister-backyard-sweatshirt-l-red'),(835,87,0,121,'/m/h/mh05-red_main_1.jpg'),(836,88,0,121,'/m/h/mh05-red_main_1.jpg'),(837,89,0,121,'/m/h/mh05-red_main_1.jpg'),(838,73,0,121,'Hollister Backyard Sweatshirt-L-Red'),(839,106,0,122,'container2'),(840,124,0,122,'0'),(841,121,0,122,'hollister-backyard-sweatshirt-l-white'),(842,87,0,122,'/m/h/mh05-white_main_1.jpg'),(843,88,0,122,'/m/h/mh05-white_main_1.jpg'),(844,89,0,122,'/m/h/mh05-white_main_1.jpg'),(845,73,0,122,'Hollister Backyard Sweatshirt-L-White'),(846,106,0,123,'container2'),(847,124,0,123,'0'),(848,121,0,123,'hollister-backyard-sweatshirt-xl-green'),(849,87,0,123,'/m/h/mh05-green_main_1.jpg'),(850,88,0,123,'/m/h/mh05-green_main_1.jpg'),(851,89,0,123,'/m/h/mh05-green_main_1.jpg'),(852,73,0,123,'Hollister Backyard Sweatshirt-XL-Green'),(853,106,0,124,'container2'),(854,124,0,124,'0'),(855,121,0,124,'hollister-backyard-sweatshirt-xl-red'),(856,87,0,124,'/m/h/mh05-red_main_1.jpg'),(857,88,0,124,'/m/h/mh05-red_main_1.jpg'),(858,89,0,124,'/m/h/mh05-red_main_1.jpg'),(859,73,0,124,'Hollister Backyard Sweatshirt-XL-Red'),(860,106,0,125,'container2'),(861,124,0,125,'0'),(862,121,0,125,'hollister-backyard-sweatshirt-xl-white'),(863,87,0,125,'/m/h/mh05-white_main_1.jpg'),(864,88,0,125,'/m/h/mh05-white_main_1.jpg'),(865,89,0,125,'/m/h/mh05-white_main_1.jpg'),(866,73,0,125,'Hollister Backyard Sweatshirt-XL-White'),(867,106,0,126,'container2'),(868,124,0,126,'0'),(869,121,0,126,'hollister-backyard-sweatshirt'),(870,87,0,126,'/m/h/mh05-white_main_1.jpg'),(871,88,0,126,'/m/h/mh05-white_main_1.jpg'),(872,89,0,126,'/m/h/mh05-white_main_1.jpg'),(873,73,0,126,'Hollister Backyard Sweatshirt'),(874,106,0,127,'container2'),(875,124,0,127,'0'),(876,121,0,127,'stark-fundamental-hoodie-xs-black'),(877,87,0,127,'/m/h/mh06-black_main_1.jpg'),(878,88,0,127,'/m/h/mh06-black_main_1.jpg'),(879,89,0,127,'/m/h/mh06-black_main_1.jpg'),(880,73,0,127,'Stark Fundamental Hoodie-XS-Black'),(881,106,0,128,'container2'),(882,124,0,128,'0'),(883,121,0,128,'stark-fundamental-hoodie-xs-blue'),(884,87,0,128,'/m/h/mh06-blue_main_1.jpg'),(885,88,0,128,'/m/h/mh06-blue_main_1.jpg'),(886,89,0,128,'/m/h/mh06-blue_main_1.jpg'),(887,73,0,128,'Stark Fundamental Hoodie-XS-Blue'),(888,106,0,129,'container2'),(889,124,0,129,'0'),(890,121,0,129,'stark-fundamental-hoodie-xs-purple'),(891,87,0,129,'/m/h/mh06-purple_main_1.jpg'),(892,88,0,129,'/m/h/mh06-purple_main_1.jpg'),(893,89,0,129,'/m/h/mh06-purple_main_1.jpg'),(894,73,0,129,'Stark Fundamental Hoodie-XS-Purple'),(895,106,0,130,'container2'),(896,124,0,130,'0'),(897,121,0,130,'stark-fundamental-hoodie-s-black'),(898,87,0,130,'/m/h/mh06-black_main_1.jpg'),(899,88,0,130,'/m/h/mh06-black_main_1.jpg'),(900,89,0,130,'/m/h/mh06-black_main_1.jpg'),(901,73,0,130,'Stark Fundamental Hoodie-S-Black'),(902,106,0,131,'container2'),(903,124,0,131,'0'),(904,121,0,131,'stark-fundamental-hoodie-s-blue'),(905,87,0,131,'/m/h/mh06-blue_main_1.jpg'),(906,88,0,131,'/m/h/mh06-blue_main_1.jpg'),(907,89,0,131,'/m/h/mh06-blue_main_1.jpg'),(908,73,0,131,'Stark Fundamental Hoodie-S-Blue'),(909,106,0,132,'container2'),(910,124,0,132,'0'),(911,121,0,132,'stark-fundamental-hoodie-s-purple'),(912,87,0,132,'/m/h/mh06-purple_main_1.jpg'),(913,88,0,132,'/m/h/mh06-purple_main_1.jpg'),(914,89,0,132,'/m/h/mh06-purple_main_1.jpg'),(915,73,0,132,'Stark Fundamental Hoodie-S-Purple'),(916,106,0,133,'container2'),(917,124,0,133,'0'),(918,121,0,133,'stark-fundamental-hoodie-m-black'),(919,87,0,133,'/m/h/mh06-black_main_1.jpg'),(920,88,0,133,'/m/h/mh06-black_main_1.jpg'),(921,89,0,133,'/m/h/mh06-black_main_1.jpg'),(922,73,0,133,'Stark Fundamental Hoodie-M-Black'),(923,106,0,134,'container2'),(924,124,0,134,'0'),(925,121,0,134,'stark-fundamental-hoodie-m-blue'),(926,87,0,134,'/m/h/mh06-blue_main_1.jpg'),(927,88,0,134,'/m/h/mh06-blue_main_1.jpg'),(928,89,0,134,'/m/h/mh06-blue_main_1.jpg'),(929,73,0,134,'Stark Fundamental Hoodie-M-Blue'),(930,106,0,135,'container2'),(931,124,0,135,'0'),(932,121,0,135,'stark-fundamental-hoodie-m-purple'),(933,87,0,135,'/m/h/mh06-purple_main_1.jpg'),(934,88,0,135,'/m/h/mh06-purple_main_1.jpg'),(935,89,0,135,'/m/h/mh06-purple_main_1.jpg'),(936,73,0,135,'Stark Fundamental Hoodie-M-Purple'),(937,106,0,136,'container2'),(938,124,0,136,'0'),(939,121,0,136,'stark-fundamental-hoodie-l-black'),(940,87,0,136,'/m/h/mh06-black_main_1.jpg'),(941,88,0,136,'/m/h/mh06-black_main_1.jpg'),(942,89,0,136,'/m/h/mh06-black_main_1.jpg'),(943,73,0,136,'Stark Fundamental Hoodie-L-Black'),(944,106,0,137,'container2'),(945,124,0,137,'0'),(946,121,0,137,'stark-fundamental-hoodie-l-blue'),(947,87,0,137,'/m/h/mh06-blue_main_1.jpg'),(948,88,0,137,'/m/h/mh06-blue_main_1.jpg'),(949,89,0,137,'/m/h/mh06-blue_main_1.jpg'),(950,73,0,137,'Stark Fundamental Hoodie-L-Blue'),(951,106,0,138,'container2'),(952,124,0,138,'0'),(953,121,0,138,'stark-fundamental-hoodie-l-purple'),(954,87,0,138,'/m/h/mh06-purple_main_1.jpg'),(955,88,0,138,'/m/h/mh06-purple_main_1.jpg'),(956,89,0,138,'/m/h/mh06-purple_main_1.jpg'),(957,73,0,138,'Stark Fundamental Hoodie-L-Purple'),(958,106,0,139,'container2'),(959,124,0,139,'0'),(960,121,0,139,'stark-fundamental-hoodie-xl-black'),(961,87,0,139,'/m/h/mh06-black_main_1.jpg'),(962,88,0,139,'/m/h/mh06-black_main_1.jpg'),(963,89,0,139,'/m/h/mh06-black_main_1.jpg'),(964,73,0,139,'Stark Fundamental Hoodie-XL-Black'),(965,106,0,140,'container2'),(966,124,0,140,'0'),(967,121,0,140,'stark-fundamental-hoodie-xl-blue'),(968,87,0,140,'/m/h/mh06-blue_main_1.jpg'),(969,88,0,140,'/m/h/mh06-blue_main_1.jpg'),(970,89,0,140,'/m/h/mh06-blue_main_1.jpg'),(971,73,0,140,'Stark Fundamental Hoodie-XL-Blue'),(972,106,0,141,'container2'),(973,124,0,141,'0'),(974,121,0,141,'stark-fundamental-hoodie-xl-purple'),(975,87,0,141,'/m/h/mh06-purple_main_1.jpg'),(976,88,0,141,'/m/h/mh06-purple_main_1.jpg'),(977,89,0,141,'/m/h/mh06-purple_main_1.jpg'),(978,73,0,141,'Stark Fundamental Hoodie-XL-Purple'),(979,106,0,142,'container2'),(980,124,0,142,'0'),(981,121,0,142,'stark-fundamental-hoodie'),(982,87,0,142,'/m/h/mh06-blue_main_1.jpg'),(983,88,0,142,'/m/h/mh06-blue_main_1.jpg'),(984,89,0,142,'/m/h/mh06-blue_main_1.jpg'),(985,73,0,142,'Stark Fundamental Hoodie'),(986,106,0,143,'container2'),(987,124,0,143,'0'),(988,121,0,143,'hero-hoodie-xs-black'),(989,87,0,143,'/m/h/mh07-black_main_1.jpg'),(990,88,0,143,'/m/h/mh07-black_main_1.jpg'),(991,89,0,143,'/m/h/mh07-black_main_1.jpg'),(992,73,0,143,'Hero Hoodie-XS-Black'),(993,106,0,144,'container2'),(994,124,0,144,'0'),(995,121,0,144,'hero-hoodie-xs-gray'),(996,87,0,144,'/m/h/mh07-gray_main_1.jpg'),(997,88,0,144,'/m/h/mh07-gray_main_1.jpg'),(998,89,0,144,'/m/h/mh07-gray_main_1.jpg'),(999,73,0,144,'Hero Hoodie-XS-Gray'),(1000,106,0,145,'container2'),(1001,124,0,145,'0'),(1002,121,0,145,'hero-hoodie-xs-green'),(1003,87,0,145,'/m/h/mh07-green_main_1.jpg'),(1004,88,0,145,'/m/h/mh07-green_main_1.jpg'),(1005,89,0,145,'/m/h/mh07-green_main_1.jpg'),(1006,73,0,145,'Hero Hoodie-XS-Green'),(1007,106,0,146,'container2'),(1008,124,0,146,'0'),(1009,121,0,146,'hero-hoodie-s-black'),(1010,87,0,146,'/m/h/mh07-black_main_1.jpg'),(1011,88,0,146,'/m/h/mh07-black_main_1.jpg'),(1012,89,0,146,'/m/h/mh07-black_main_1.jpg'),(1013,73,0,146,'Hero Hoodie-S-Black'),(1014,106,0,147,'container2'),(1015,124,0,147,'0'),(1016,121,0,147,'hero-hoodie-s-gray'),(1017,87,0,147,'/m/h/mh07-gray_main_2.jpg'),(1018,88,0,147,'/m/h/mh07-gray_main_2.jpg'),(1019,89,0,147,'/m/h/mh07-gray_main_2.jpg'),(1020,73,0,147,'Hero Hoodie-S-Gray'),(1021,106,0,148,'container2'),(1022,124,0,148,'0'),(1023,121,0,148,'hero-hoodie-s-green'),(1024,87,0,148,'/m/h/mh07-green_main_2.jpg'),(1025,88,0,148,'/m/h/mh07-green_main_2.jpg'),(1026,89,0,148,'/m/h/mh07-green_main_2.jpg'),(1027,73,0,148,'Hero Hoodie-S-Green'),(1028,106,0,149,'container2'),(1029,124,0,149,'0'),(1030,121,0,149,'hero-hoodie-m-black'),(1031,87,0,149,'/m/h/mh07-black_main_2.jpg'),(1032,88,0,149,'/m/h/mh07-black_main_2.jpg'),(1033,89,0,149,'/m/h/mh07-black_main_2.jpg'),(1034,73,0,149,'Hero Hoodie-M-Black'),(1035,106,0,150,'container2'),(1036,124,0,150,'0'),(1037,121,0,150,'hero-hoodie-m-gray'),(1038,87,0,150,'/m/h/mh07-gray_main_2.jpg'),(1039,88,0,150,'/m/h/mh07-gray_main_2.jpg'),(1040,89,0,150,'/m/h/mh07-gray_main_2.jpg'),(1041,73,0,150,'Hero Hoodie-M-Gray'),(1042,106,0,151,'container2'),(1043,124,0,151,'0'),(1044,121,0,151,'hero-hoodie-m-green'),(1045,87,0,151,'/m/h/mh07-green_main_2.jpg'),(1046,88,0,151,'/m/h/mh07-green_main_2.jpg'),(1047,89,0,151,'/m/h/mh07-green_main_2.jpg'),(1048,73,0,151,'Hero Hoodie-M-Green'),(1049,106,0,152,'container2'),(1050,124,0,152,'0'),(1051,121,0,152,'hero-hoodie-l-black'),(1052,87,0,152,'/m/h/mh07-black_main_2.jpg'),(1053,88,0,152,'/m/h/mh07-black_main_2.jpg'),(1054,89,0,152,'/m/h/mh07-black_main_2.jpg'),(1055,73,0,152,'Hero Hoodie-L-Black'),(1056,106,0,153,'container2'),(1057,124,0,153,'0'),(1058,121,0,153,'hero-hoodie-l-gray'),(1059,87,0,153,'/m/h/mh07-gray_main_2.jpg'),(1060,88,0,153,'/m/h/mh07-gray_main_2.jpg'),(1061,89,0,153,'/m/h/mh07-gray_main_2.jpg'),(1062,73,0,153,'Hero Hoodie-L-Gray'),(1063,106,0,154,'container2'),(1064,124,0,154,'0'),(1065,121,0,154,'hero-hoodie-l-green'),(1066,87,0,154,'/m/h/mh07-green_main_2.jpg'),(1067,88,0,154,'/m/h/mh07-green_main_2.jpg'),(1068,89,0,154,'/m/h/mh07-green_main_2.jpg'),(1069,73,0,154,'Hero Hoodie-L-Green'),(1070,106,0,155,'container2'),(1071,124,0,155,'0'),(1072,121,0,155,'hero-hoodie-xl-black'),(1073,87,0,155,'/m/h/mh07-black_main_2.jpg'),(1074,88,0,155,'/m/h/mh07-black_main_2.jpg'),(1075,89,0,155,'/m/h/mh07-black_main_2.jpg'),(1076,73,0,155,'Hero Hoodie-XL-Black'),(1077,106,0,156,'container2'),(1078,124,0,156,'0'),(1079,121,0,156,'hero-hoodie-xl-gray'),(1080,87,0,156,'/m/h/mh07-gray_main_2.jpg'),(1081,88,0,156,'/m/h/mh07-gray_main_2.jpg'),(1082,89,0,156,'/m/h/mh07-gray_main_2.jpg'),(1083,73,0,156,'Hero Hoodie-XL-Gray'),(1084,106,0,157,'container2'),(1085,124,0,157,'0'),(1086,121,0,157,'hero-hoodie-xl-green'),(1087,87,0,157,'/m/h/mh07-green_main_2.jpg'),(1088,88,0,157,'/m/h/mh07-green_main_2.jpg'),(1089,89,0,157,'/m/h/mh07-green_main_2.jpg'),(1090,73,0,157,'Hero Hoodie-XL-Green'),(1091,106,0,158,'container2'),(1092,124,0,158,'0'),(1093,121,0,158,'hero-hoodie'),(1094,87,0,158,'/m/h/mh07-gray_main_2.jpg'),(1095,88,0,158,'/m/h/mh07-gray_main_2.jpg'),(1096,89,0,158,'/m/h/mh07-gray_main_2.jpg'),(1097,73,0,158,'Hero Hoodie'),(1098,106,0,159,'container2'),(1099,124,0,159,'0'),(1100,121,0,159,'oslo-trek-hoodie-xs-brown'),(1101,87,0,159,'/m/h/mh08-brown_main_1.jpg'),(1102,88,0,159,'/m/h/mh08-brown_main_1.jpg'),(1103,89,0,159,'/m/h/mh08-brown_main_1.jpg'),(1104,73,0,159,'Oslo Trek Hoodie-XS-Brown'),(1105,106,0,160,'container2'),(1106,124,0,160,'0'),(1107,121,0,160,'oslo-trek-hoodie-xs-purple'),(1108,87,0,160,'/m/h/mh08-purple_main_1.jpg'),(1109,88,0,160,'/m/h/mh08-purple_main_1.jpg'),(1110,89,0,160,'/m/h/mh08-purple_main_1.jpg'),(1111,73,0,160,'Oslo Trek Hoodie-XS-Purple'),(1112,106,0,161,'container2'),(1113,124,0,161,'0'),(1114,121,0,161,'oslo-trek-hoodie-xs-red'),(1115,87,0,161,'/m/h/mh08-red_main_1.jpg'),(1116,88,0,161,'/m/h/mh08-red_main_1.jpg'),(1117,89,0,161,'/m/h/mh08-red_main_1.jpg'),(1118,73,0,161,'Oslo Trek Hoodie-XS-Red'),(1119,106,0,162,'container2'),(1120,124,0,162,'0'),(1121,121,0,162,'oslo-trek-hoodie-s-brown'),(1122,87,0,162,'/m/h/mh08-brown_main_1.jpg'),(1123,88,0,162,'/m/h/mh08-brown_main_1.jpg'),(1124,89,0,162,'/m/h/mh08-brown_main_1.jpg'),(1125,73,0,162,'Oslo Trek Hoodie-S-Brown'),(1126,106,0,163,'container2'),(1127,124,0,163,'0'),(1128,121,0,163,'oslo-trek-hoodie-s-purple'),(1129,87,0,163,'/m/h/mh08-purple_main_1.jpg'),(1130,88,0,163,'/m/h/mh08-purple_main_1.jpg'),(1131,89,0,163,'/m/h/mh08-purple_main_1.jpg'),(1132,73,0,163,'Oslo Trek Hoodie-S-Purple'),(1133,106,0,164,'container2'),(1134,124,0,164,'0'),(1135,121,0,164,'oslo-trek-hoodie-s-red'),(1136,87,0,164,'/m/h/mh08-red_main_1.jpg'),(1137,88,0,164,'/m/h/mh08-red_main_1.jpg'),(1138,89,0,164,'/m/h/mh08-red_main_1.jpg'),(1139,73,0,164,'Oslo Trek Hoodie-S-Red'),(1140,106,0,165,'container2'),(1141,124,0,165,'0'),(1142,121,0,165,'oslo-trek-hoodie-m-brown'),(1143,87,0,165,'/m/h/mh08-brown_main_1.jpg'),(1144,88,0,165,'/m/h/mh08-brown_main_1.jpg'),(1145,89,0,165,'/m/h/mh08-brown_main_1.jpg'),(1146,73,0,165,'Oslo Trek Hoodie-M-Brown'),(1147,106,0,166,'container2'),(1148,124,0,166,'0'),(1149,121,0,166,'oslo-trek-hoodie-m-purple'),(1150,87,0,166,'/m/h/mh08-purple_main_1.jpg'),(1151,88,0,166,'/m/h/mh08-purple_main_1.jpg'),(1152,89,0,166,'/m/h/mh08-purple_main_1.jpg'),(1153,73,0,166,'Oslo Trek Hoodie-M-Purple'),(1154,106,0,167,'container2'),(1155,124,0,167,'0'),(1156,121,0,167,'oslo-trek-hoodie-m-red'),(1157,87,0,167,'/m/h/mh08-red_main_1.jpg'),(1158,88,0,167,'/m/h/mh08-red_main_1.jpg'),(1159,89,0,167,'/m/h/mh08-red_main_1.jpg'),(1160,73,0,167,'Oslo Trek Hoodie-M-Red'),(1161,106,0,168,'container2'),(1162,124,0,168,'0'),(1163,121,0,168,'oslo-trek-hoodie-l-brown'),(1164,87,0,168,'/m/h/mh08-brown_main_1.jpg'),(1165,88,0,168,'/m/h/mh08-brown_main_1.jpg'),(1166,89,0,168,'/m/h/mh08-brown_main_1.jpg'),(1167,73,0,168,'Oslo Trek Hoodie-L-Brown'),(1168,106,0,169,'container2'),(1169,124,0,169,'0'),(1170,121,0,169,'oslo-trek-hoodie-l-purple'),(1171,87,0,169,'/m/h/mh08-purple_main_1.jpg'),(1172,88,0,169,'/m/h/mh08-purple_main_1.jpg'),(1173,89,0,169,'/m/h/mh08-purple_main_1.jpg'),(1174,73,0,169,'Oslo Trek Hoodie-L-Purple'),(1175,106,0,170,'container2'),(1176,124,0,170,'0'),(1177,121,0,170,'oslo-trek-hoodie-l-red'),(1178,87,0,170,'/m/h/mh08-red_main_1.jpg'),(1179,88,0,170,'/m/h/mh08-red_main_1.jpg'),(1180,89,0,170,'/m/h/mh08-red_main_1.jpg'),(1181,73,0,170,'Oslo Trek Hoodie-L-Red'),(1182,106,0,171,'container2'),(1183,124,0,171,'0'),(1184,121,0,171,'oslo-trek-hoodie-xl-brown'),(1185,87,0,171,'/m/h/mh08-brown_main_1.jpg'),(1186,88,0,171,'/m/h/mh08-brown_main_1.jpg'),(1187,89,0,171,'/m/h/mh08-brown_main_1.jpg'),(1188,73,0,171,'Oslo Trek Hoodie-XL-Brown'),(1189,106,0,172,'container2'),(1190,124,0,172,'0'),(1191,121,0,172,'oslo-trek-hoodie-xl-purple'),(1192,87,0,172,'/m/h/mh08-purple_main_1.jpg'),(1193,88,0,172,'/m/h/mh08-purple_main_1.jpg'),(1194,89,0,172,'/m/h/mh08-purple_main_1.jpg'),(1195,73,0,172,'Oslo Trek Hoodie-XL-Purple'),(1196,106,0,173,'container2'),(1197,124,0,173,'0'),(1198,121,0,173,'oslo-trek-hoodie-xl-red'),(1199,87,0,173,'/m/h/mh08-red_main_1.jpg'),(1200,88,0,173,'/m/h/mh08-red_main_1.jpg'),(1201,89,0,173,'/m/h/mh08-red_main_1.jpg'),(1202,73,0,173,'Oslo Trek Hoodie-XL-Red'),(1203,106,0,174,'container2'),(1204,124,0,174,'0'),(1205,121,0,174,'oslo-trek-hoodie'),(1206,87,0,174,'/m/h/mh08-brown_main_1.jpg'),(1207,88,0,174,'/m/h/mh08-brown_main_1.jpg'),(1208,89,0,174,'/m/h/mh08-brown_main_1.jpg'),(1209,73,0,174,'Oslo Trek Hoodie'),(1210,106,0,175,'container2'),(1211,124,0,175,'0'),(1212,121,0,175,'abominable-hoodie-xs-blue'),(1213,87,0,175,'/m/h/mh09-blue_main_1.jpg'),(1214,88,0,175,'/m/h/mh09-blue_main_1.jpg'),(1215,89,0,175,'/m/h/mh09-blue_main_1.jpg'),(1216,73,0,175,'Abominable Hoodie-XS-Blue'),(1217,106,0,176,'container2'),(1218,124,0,176,'0'),(1219,121,0,176,'abominable-hoodie-xs-green'),(1220,87,0,176,'/m/h/mh09-green_main_1.jpg'),(1221,88,0,176,'/m/h/mh09-green_main_1.jpg'),(1222,89,0,176,'/m/h/mh09-green_main_1.jpg'),(1223,73,0,176,'Abominable Hoodie-XS-Green'),(1224,106,0,177,'container2'),(1225,124,0,177,'0'),(1226,121,0,177,'abominable-hoodie-xs-red'),(1227,87,0,177,'/m/h/mh09-red_main_1.jpg'),(1228,88,0,177,'/m/h/mh09-red_main_1.jpg'),(1229,89,0,177,'/m/h/mh09-red_main_1.jpg'),(1230,73,0,177,'Abominable Hoodie-XS-Red'),(1231,106,0,178,'container2'),(1232,124,0,178,'0'),(1233,121,0,178,'abominable-hoodie-s-blue'),(1234,87,0,178,'/m/h/mh09-blue_main_1.jpg'),(1235,88,0,178,'/m/h/mh09-blue_main_1.jpg'),(1236,89,0,178,'/m/h/mh09-blue_main_1.jpg'),(1237,73,0,178,'Abominable Hoodie-S-Blue'),(1238,106,0,179,'container2'),(1239,124,0,179,'0'),(1240,121,0,179,'abominable-hoodie-s-green'),(1241,87,0,179,'/m/h/mh09-green_main_1.jpg'),(1242,88,0,179,'/m/h/mh09-green_main_1.jpg'),(1243,89,0,179,'/m/h/mh09-green_main_1.jpg'),(1244,73,0,179,'Abominable Hoodie-S-Green'),(1245,106,0,180,'container2'),(1246,124,0,180,'0'),(1247,121,0,180,'abominable-hoodie-s-red'),(1248,87,0,180,'/m/h/mh09-red_main_1.jpg'),(1249,88,0,180,'/m/h/mh09-red_main_1.jpg'),(1250,89,0,180,'/m/h/mh09-red_main_1.jpg'),(1251,73,0,180,'Abominable Hoodie-S-Red'),(1252,106,0,181,'container2'),(1253,124,0,181,'0'),(1254,121,0,181,'abominable-hoodie-m-blue'),(1255,87,0,181,'/m/h/mh09-blue_main_1.jpg'),(1256,88,0,181,'/m/h/mh09-blue_main_1.jpg'),(1257,89,0,181,'/m/h/mh09-blue_main_1.jpg'),(1258,73,0,181,'Abominable Hoodie-M-Blue'),(1259,106,0,182,'container2'),(1260,124,0,182,'0'),(1261,121,0,182,'abominable-hoodie-m-green'),(1262,87,0,182,'/m/h/mh09-green_main_1.jpg'),(1263,88,0,182,'/m/h/mh09-green_main_1.jpg'),(1264,89,0,182,'/m/h/mh09-green_main_1.jpg'),(1265,73,0,182,'Abominable Hoodie-M-Green'),(1266,106,0,183,'container2'),(1267,124,0,183,'0'),(1268,121,0,183,'abominable-hoodie-m-red'),(1269,87,0,183,'/m/h/mh09-red_main_1.jpg'),(1270,88,0,183,'/m/h/mh09-red_main_1.jpg'),(1271,89,0,183,'/m/h/mh09-red_main_1.jpg'),(1272,73,0,183,'Abominable Hoodie-M-Red'),(1273,106,0,184,'container2'),(1274,124,0,184,'0'),(1275,121,0,184,'abominable-hoodie-l-blue'),(1276,87,0,184,'/m/h/mh09-blue_main_1.jpg'),(1277,88,0,184,'/m/h/mh09-blue_main_1.jpg'),(1278,89,0,184,'/m/h/mh09-blue_main_1.jpg'),(1279,73,0,184,'Abominable Hoodie-L-Blue'),(1280,106,0,185,'container2'),(1281,124,0,185,'0'),(1282,121,0,185,'abominable-hoodie-l-green'),(1283,87,0,185,'/m/h/mh09-green_main_1.jpg'),(1284,88,0,185,'/m/h/mh09-green_main_1.jpg'),(1285,89,0,185,'/m/h/mh09-green_main_1.jpg'),(1286,73,0,185,'Abominable Hoodie-L-Green'),(1287,106,0,186,'container2'),(1288,124,0,186,'0'),(1289,121,0,186,'abominable-hoodie-l-red'),(1290,87,0,186,'/m/h/mh09-red_main_1.jpg'),(1291,88,0,186,'/m/h/mh09-red_main_1.jpg'),(1292,89,0,186,'/m/h/mh09-red_main_1.jpg'),(1293,73,0,186,'Abominable Hoodie-L-Red'),(1294,106,0,187,'container2'),(1295,124,0,187,'0'),(1296,121,0,187,'abominable-hoodie-xl-blue'),(1297,87,0,187,'/m/h/mh09-blue_main_1.jpg'),(1298,88,0,187,'/m/h/mh09-blue_main_1.jpg'),(1299,89,0,187,'/m/h/mh09-blue_main_1.jpg'),(1300,73,0,187,'Abominable Hoodie-XL-Blue'),(1301,106,0,188,'container2'),(1302,124,0,188,'0'),(1303,121,0,188,'abominable-hoodie-xl-green'),(1304,87,0,188,'/m/h/mh09-green_main_1.jpg'),(1305,88,0,188,'/m/h/mh09-green_main_1.jpg'),(1306,89,0,188,'/m/h/mh09-green_main_1.jpg'),(1307,73,0,188,'Abominable Hoodie-XL-Green'),(1308,106,0,189,'container2'),(1309,124,0,189,'0'),(1310,121,0,189,'abominable-hoodie-xl-red'),(1311,87,0,189,'/m/h/mh09-red_main_1.jpg'),(1312,88,0,189,'/m/h/mh09-red_main_1.jpg'),(1313,89,0,189,'/m/h/mh09-red_main_1.jpg'),(1314,73,0,189,'Abominable Hoodie-XL-Red'),(1315,106,0,190,'container2'),(1316,124,0,190,'0'),(1317,121,0,190,'abominable-hoodie'),(1318,87,0,190,'/m/h/mh09-blue_main_1.jpg'),(1319,88,0,190,'/m/h/mh09-blue_main_1.jpg'),(1320,89,0,190,'/m/h/mh09-blue_main_1.jpg'),(1321,73,0,190,'Abominable Hoodie'),(1322,106,0,191,'container2'),(1323,124,0,191,'0'),(1324,121,0,191,'mach-street-sweatshirt-xs-black'),(1325,87,0,191,'/m/h/mh10-black_main_1.jpg'),(1326,88,0,191,'/m/h/mh10-black_main_1.jpg'),(1327,89,0,191,'/m/h/mh10-black_main_1.jpg'),(1328,73,0,191,'Mach Street Sweatshirt -XS-Black'),(1329,106,0,192,'container2'),(1330,124,0,192,'0'),(1331,121,0,192,'mach-street-sweatshirt-xs-blue'),(1332,87,0,192,'/m/h/mh10-blue_main_1.jpg'),(1333,88,0,192,'/m/h/mh10-blue_main_1.jpg'),(1334,89,0,192,'/m/h/mh10-blue_main_1.jpg'),(1335,73,0,192,'Mach Street Sweatshirt -XS-Blue'),(1336,106,0,193,'container2'),(1337,124,0,193,'0'),(1338,121,0,193,'mach-street-sweatshirt-xs-red'),(1339,87,0,193,'/m/h/mh10-red_main_1.jpg'),(1340,88,0,193,'/m/h/mh10-red_main_1.jpg'),(1341,89,0,193,'/m/h/mh10-red_main_1.jpg'),(1342,73,0,193,'Mach Street Sweatshirt -XS-Red'),(1343,106,0,194,'container2'),(1344,124,0,194,'0'),(1345,121,0,194,'mach-street-sweatshirt-s-black'),(1346,87,0,194,'/m/h/mh10-black_main_1.jpg'),(1347,88,0,194,'/m/h/mh10-black_main_1.jpg'),(1348,89,0,194,'/m/h/mh10-black_main_1.jpg'),(1349,73,0,194,'Mach Street Sweatshirt -S-Black'),(1350,106,0,195,'container2'),(1351,124,0,195,'0'),(1352,121,0,195,'mach-street-sweatshirt-s-blue'),(1353,87,0,195,'/m/h/mh10-blue_main_1.jpg'),(1354,88,0,195,'/m/h/mh10-blue_main_1.jpg'),(1355,89,0,195,'/m/h/mh10-blue_main_1.jpg'),(1356,73,0,195,'Mach Street Sweatshirt -S-Blue'),(1357,106,0,196,'container2'),(1358,124,0,196,'0'),(1359,121,0,196,'mach-street-sweatshirt-s-red'),(1360,87,0,196,'/m/h/mh10-red_main_1.jpg'),(1361,88,0,196,'/m/h/mh10-red_main_1.jpg'),(1362,89,0,196,'/m/h/mh10-red_main_1.jpg'),(1363,73,0,196,'Mach Street Sweatshirt -S-Red'),(1364,106,0,197,'container2'),(1365,124,0,197,'0'),(1366,121,0,197,'mach-street-sweatshirt-m-black'),(1367,87,0,197,'/m/h/mh10-black_main_1.jpg'),(1368,88,0,197,'/m/h/mh10-black_main_1.jpg'),(1369,89,0,197,'/m/h/mh10-black_main_1.jpg'),(1370,73,0,197,'Mach Street Sweatshirt -M-Black'),(1371,106,0,198,'container2'),(1372,124,0,198,'0'),(1373,121,0,198,'mach-street-sweatshirt-m-blue'),(1374,87,0,198,'/m/h/mh10-blue_main_1.jpg'),(1375,88,0,198,'/m/h/mh10-blue_main_1.jpg'),(1376,89,0,198,'/m/h/mh10-blue_main_1.jpg'),(1377,73,0,198,'Mach Street Sweatshirt -M-Blue'),(1378,106,0,199,'container2'),(1379,124,0,199,'0'),(1380,121,0,199,'mach-street-sweatshirt-m-red'),(1381,87,0,199,'/m/h/mh10-red_main_1.jpg'),(1382,88,0,199,'/m/h/mh10-red_main_1.jpg'),(1383,89,0,199,'/m/h/mh10-red_main_1.jpg'),(1384,73,0,199,'Mach Street Sweatshirt -M-Red'),(1385,106,0,200,'container2'),(1386,124,0,200,'0'),(1387,121,0,200,'mach-street-sweatshirt-l-black'),(1388,87,0,200,'/m/h/mh10-black_main_1.jpg'),(1389,88,0,200,'/m/h/mh10-black_main_1.jpg'),(1390,89,0,200,'/m/h/mh10-black_main_1.jpg'),(1391,73,0,200,'Mach Street Sweatshirt -L-Black'),(1392,106,0,201,'container2'),(1393,124,0,201,'0'),(1394,121,0,201,'mach-street-sweatshirt-l-blue'),(1395,87,0,201,'/m/h/mh10-blue_main_1.jpg'),(1396,88,0,201,'/m/h/mh10-blue_main_1.jpg'),(1397,89,0,201,'/m/h/mh10-blue_main_1.jpg'),(1398,73,0,201,'Mach Street Sweatshirt -L-Blue'),(1399,106,0,202,'container2'),(1400,124,0,202,'0'),(1401,121,0,202,'mach-street-sweatshirt-l-red'),(1402,87,0,202,'/m/h/mh10-red_main_1.jpg'),(1403,88,0,202,'/m/h/mh10-red_main_1.jpg'),(1404,89,0,202,'/m/h/mh10-red_main_1.jpg'),(1405,73,0,202,'Mach Street Sweatshirt -L-Red'),(1406,106,0,203,'container2'),(1407,124,0,203,'0'),(1408,121,0,203,'mach-street-sweatshirt-xl-black'),(1409,87,0,203,'/m/h/mh10-black_main_1.jpg'),(1410,88,0,203,'/m/h/mh10-black_main_1.jpg'),(1411,89,0,203,'/m/h/mh10-black_main_1.jpg'),(1412,73,0,203,'Mach Street Sweatshirt -XL-Black'),(1413,106,0,204,'container2'),(1414,124,0,204,'0'),(1415,121,0,204,'mach-street-sweatshirt-xl-blue'),(1416,87,0,204,'/m/h/mh10-blue_main_1.jpg'),(1417,88,0,204,'/m/h/mh10-blue_main_1.jpg'),(1418,89,0,204,'/m/h/mh10-blue_main_1.jpg'),(1419,73,0,204,'Mach Street Sweatshirt -XL-Blue'),(1420,106,0,205,'container2'),(1421,124,0,205,'0'),(1422,121,0,205,'mach-street-sweatshirt-xl-red'),(1423,87,0,205,'/m/h/mh10-red_main_1.jpg'),(1424,88,0,205,'/m/h/mh10-red_main_1.jpg'),(1425,89,0,205,'/m/h/mh10-red_main_1.jpg'),(1426,73,0,205,'Mach Street Sweatshirt -XL-Red'),(1427,106,0,206,'container2'),(1428,124,0,206,'0'),(1429,121,0,206,'mach-street-sweatshirt'),(1430,87,0,206,'/m/h/mh10-blue_main_1.jpg'),(1431,88,0,206,'/m/h/mh10-blue_main_1.jpg'),(1432,89,0,206,'/m/h/mh10-blue_main_1.jpg'),(1433,73,0,206,'Mach Street Sweatshirt '),(1434,106,0,207,'container2'),(1435,124,0,207,'0'),(1436,121,0,207,'grayson-crewneck-sweatshirt-xs-orange'),(1437,87,0,207,'/m/h/mh11-orange_main_1.jpg'),(1438,88,0,207,'/m/h/mh11-orange_main_1.jpg'),(1439,89,0,207,'/m/h/mh11-orange_main_1.jpg'),(1440,73,0,207,'Grayson Crewneck Sweatshirt -XS-Orange'),(1441,106,0,208,'container2'),(1442,124,0,208,'0'),(1443,121,0,208,'grayson-crewneck-sweatshirt-xs-red'),(1444,87,0,208,'/m/h/mh11-red_main_1.jpg'),(1445,88,0,208,'/m/h/mh11-red_main_1.jpg'),(1446,89,0,208,'/m/h/mh11-red_main_1.jpg'),(1447,73,0,208,'Grayson Crewneck Sweatshirt -XS-Red'),(1448,106,0,209,'container2'),(1449,124,0,209,'0'),(1450,121,0,209,'grayson-crewneck-sweatshirt-xs-white'),(1451,87,0,209,'/m/h/mh11-white_main_1.jpg'),(1452,88,0,209,'/m/h/mh11-white_main_1.jpg'),(1453,89,0,209,'/m/h/mh11-white_main_1.jpg'),(1454,73,0,209,'Grayson Crewneck Sweatshirt -XS-White'),(1455,106,0,210,'container2'),(1456,124,0,210,'0'),(1457,121,0,210,'grayson-crewneck-sweatshirt-s-orange'),(1458,87,0,210,'/m/h/mh11-orange_main_1.jpg'),(1459,88,0,210,'/m/h/mh11-orange_main_1.jpg'),(1460,89,0,210,'/m/h/mh11-orange_main_1.jpg'),(1461,73,0,210,'Grayson Crewneck Sweatshirt -S-Orange'),(1462,106,0,211,'container2'),(1463,124,0,211,'0'),(1464,121,0,211,'grayson-crewneck-sweatshirt-s-red'),(1465,87,0,211,'/m/h/mh11-red_main_1.jpg'),(1466,88,0,211,'/m/h/mh11-red_main_1.jpg'),(1467,89,0,211,'/m/h/mh11-red_main_1.jpg'),(1468,73,0,211,'Grayson Crewneck Sweatshirt -S-Red'),(1469,106,0,212,'container2'),(1470,124,0,212,'0'),(1471,121,0,212,'grayson-crewneck-sweatshirt-s-white'),(1472,87,0,212,'/m/h/mh11-white_main_1.jpg'),(1473,88,0,212,'/m/h/mh11-white_main_1.jpg'),(1474,89,0,212,'/m/h/mh11-white_main_1.jpg'),(1475,73,0,212,'Grayson Crewneck Sweatshirt -S-White'),(1476,106,0,213,'container2'),(1477,124,0,213,'0'),(1478,121,0,213,'grayson-crewneck-sweatshirt-m-orange'),(1479,87,0,213,'/m/h/mh11-orange_main_1.jpg'),(1480,88,0,213,'/m/h/mh11-orange_main_1.jpg'),(1481,89,0,213,'/m/h/mh11-orange_main_1.jpg'),(1482,73,0,213,'Grayson Crewneck Sweatshirt -M-Orange'),(1483,106,0,214,'container2'),(1484,124,0,214,'0'),(1485,121,0,214,'grayson-crewneck-sweatshirt-m-red'),(1486,87,0,214,'/m/h/mh11-red_main_1.jpg'),(1487,88,0,214,'/m/h/mh11-red_main_1.jpg'),(1488,89,0,214,'/m/h/mh11-red_main_1.jpg'),(1489,73,0,214,'Grayson Crewneck Sweatshirt -M-Red'),(1490,106,0,215,'container2'),(1491,124,0,215,'0'),(1492,121,0,215,'grayson-crewneck-sweatshirt-m-white'),(1493,87,0,215,'/m/h/mh11-white_main_1.jpg'),(1494,88,0,215,'/m/h/mh11-white_main_1.jpg'),(1495,89,0,215,'/m/h/mh11-white_main_1.jpg'),(1496,73,0,215,'Grayson Crewneck Sweatshirt -M-White'),(1497,106,0,216,'container2'),(1498,124,0,216,'0'),(1499,121,0,216,'grayson-crewneck-sweatshirt-l-orange'),(1500,87,0,216,'/m/h/mh11-orange_main_1.jpg'),(1501,88,0,216,'/m/h/mh11-orange_main_1.jpg'),(1502,89,0,216,'/m/h/mh11-orange_main_1.jpg'),(1503,73,0,216,'Grayson Crewneck Sweatshirt -L-Orange'),(1504,106,0,217,'container2'),(1505,124,0,217,'0'),(1506,121,0,217,'grayson-crewneck-sweatshirt-l-red'),(1507,87,0,217,'/m/h/mh11-red_main_1.jpg'),(1508,88,0,217,'/m/h/mh11-red_main_1.jpg'),(1509,89,0,217,'/m/h/mh11-red_main_1.jpg'),(1510,73,0,217,'Grayson Crewneck Sweatshirt -L-Red'),(1511,106,0,218,'container2'),(1512,124,0,218,'0'),(1513,121,0,218,'grayson-crewneck-sweatshirt-l-white'),(1514,87,0,218,'/m/h/mh11-white_main_1.jpg'),(1515,88,0,218,'/m/h/mh11-white_main_1.jpg'),(1516,89,0,218,'/m/h/mh11-white_main_1.jpg'),(1517,73,0,218,'Grayson Crewneck Sweatshirt -L-White'),(1518,106,0,219,'container2'),(1519,124,0,219,'0'),(1520,121,0,219,'grayson-crewneck-sweatshirt-xl-orange'),(1521,87,0,219,'/m/h/mh11-orange_main_1.jpg'),(1522,88,0,219,'/m/h/mh11-orange_main_1.jpg'),(1523,89,0,219,'/m/h/mh11-orange_main_1.jpg'),(1524,73,0,219,'Grayson Crewneck Sweatshirt -XL-Orange'),(1525,106,0,220,'container2'),(1526,124,0,220,'0'),(1527,121,0,220,'grayson-crewneck-sweatshirt-xl-red'),(1528,87,0,220,'/m/h/mh11-red_main_1.jpg'),(1529,88,0,220,'/m/h/mh11-red_main_1.jpg'),(1530,89,0,220,'/m/h/mh11-red_main_1.jpg'),(1531,73,0,220,'Grayson Crewneck Sweatshirt -XL-Red'),(1532,106,0,221,'container2'),(1533,124,0,221,'0'),(1534,121,0,221,'grayson-crewneck-sweatshirt-xl-white'),(1535,87,0,221,'/m/h/mh11-white_main_1.jpg'),(1536,88,0,221,'/m/h/mh11-white_main_1.jpg'),(1537,89,0,221,'/m/h/mh11-white_main_1.jpg'),(1538,73,0,221,'Grayson Crewneck Sweatshirt -XL-White'),(1539,106,0,222,'container2'),(1540,124,0,222,'0'),(1541,121,0,222,'grayson-crewneck-sweatshirt'),(1542,87,0,222,'/m/h/mh11-white_main_1.jpg'),(1543,88,0,222,'/m/h/mh11-white_main_1.jpg'),(1544,89,0,222,'/m/h/mh11-white_main_1.jpg'),(1545,73,0,222,'Grayson Crewneck Sweatshirt '),(1546,106,0,223,'container2'),(1547,124,0,223,'0'),(1548,121,0,223,'ajax-full-zip-sweatshirt-xs-blue'),(1549,87,0,223,'/m/h/mh12-blue_main_1.jpg'),(1550,88,0,223,'/m/h/mh12-blue_main_1.jpg'),(1551,89,0,223,'/m/h/mh12-blue_main_1.jpg'),(1552,73,0,223,'Ajax Full-Zip Sweatshirt -XS-Blue'),(1553,106,0,224,'container2'),(1554,124,0,224,'0'),(1555,121,0,224,'ajax-full-zip-sweatshirt-xs-green'),(1556,87,0,224,'/m/h/mh12-green_main_1.jpg'),(1557,88,0,224,'/m/h/mh12-green_main_1.jpg'),(1558,89,0,224,'/m/h/mh12-green_main_1.jpg'),(1559,73,0,224,'Ajax Full-Zip Sweatshirt -XS-Green'),(1560,106,0,225,'container2'),(1561,124,0,225,'0'),(1562,121,0,225,'ajax-full-zip-sweatshirt-xs-red'),(1563,87,0,225,'/m/h/mh12-red_main_1.jpg'),(1564,88,0,225,'/m/h/mh12-red_main_1.jpg'),(1565,89,0,225,'/m/h/mh12-red_main_1.jpg'),(1566,73,0,225,'Ajax Full-Zip Sweatshirt -XS-Red'),(1567,106,0,226,'container2'),(1568,124,0,226,'0'),(1569,121,0,226,'ajax-full-zip-sweatshirt-s-blue'),(1570,87,0,226,'/m/h/mh12-blue_main_1.jpg'),(1571,88,0,226,'/m/h/mh12-blue_main_1.jpg'),(1572,89,0,226,'/m/h/mh12-blue_main_1.jpg'),(1573,73,0,226,'Ajax Full-Zip Sweatshirt -S-Blue'),(1574,106,0,227,'container2'),(1575,124,0,227,'0'),(1576,121,0,227,'ajax-full-zip-sweatshirt-s-green'),(1577,87,0,227,'/m/h/mh12-green_main_1.jpg'),(1578,88,0,227,'/m/h/mh12-green_main_1.jpg'),(1579,89,0,227,'/m/h/mh12-green_main_1.jpg'),(1580,73,0,227,'Ajax Full-Zip Sweatshirt -S-Green'),(1581,106,0,228,'container2'),(1582,124,0,228,'0'),(1583,121,0,228,'ajax-full-zip-sweatshirt-s-red'),(1584,87,0,228,'/m/h/mh12-red_main_1.jpg'),(1585,88,0,228,'/m/h/mh12-red_main_1.jpg'),(1586,89,0,228,'/m/h/mh12-red_main_1.jpg'),(1587,73,0,228,'Ajax Full-Zip Sweatshirt -S-Red'),(1588,106,0,229,'container2'),(1589,124,0,229,'0'),(1590,121,0,229,'ajax-full-zip-sweatshirt-m-blue'),(1591,87,0,229,'/m/h/mh12-blue_main_1.jpg'),(1592,88,0,229,'/m/h/mh12-blue_main_1.jpg'),(1593,89,0,229,'/m/h/mh12-blue_main_1.jpg'),(1594,73,0,229,'Ajax Full-Zip Sweatshirt -M-Blue'),(1595,106,0,230,'container2'),(1596,124,0,230,'0'),(1597,121,0,230,'ajax-full-zip-sweatshirt-m-green'),(1598,87,0,230,'/m/h/mh12-green_main_1.jpg'),(1599,88,0,230,'/m/h/mh12-green_main_1.jpg'),(1600,89,0,230,'/m/h/mh12-green_main_1.jpg'),(1601,73,0,230,'Ajax Full-Zip Sweatshirt -M-Green'),(1602,106,0,231,'container2'),(1603,124,0,231,'0'),(1604,121,0,231,'ajax-full-zip-sweatshirt-m-red'),(1605,87,0,231,'/m/h/mh12-red_main_1.jpg'),(1606,88,0,231,'/m/h/mh12-red_main_1.jpg'),(1607,89,0,231,'/m/h/mh12-red_main_1.jpg'),(1608,73,0,231,'Ajax Full-Zip Sweatshirt -M-Red'),(1609,106,0,232,'container2'),(1610,124,0,232,'0'),(1611,121,0,232,'ajax-full-zip-sweatshirt-l-blue'),(1612,87,0,232,'/m/h/mh12-blue_main_1.jpg'),(1613,88,0,232,'/m/h/mh12-blue_main_1.jpg'),(1614,89,0,232,'/m/h/mh12-blue_main_1.jpg'),(1615,73,0,232,'Ajax Full-Zip Sweatshirt -L-Blue'),(1616,106,0,233,'container2'),(1617,124,0,233,'0'),(1618,121,0,233,'ajax-full-zip-sweatshirt-l-green'),(1619,87,0,233,'/m/h/mh12-green_main_1.jpg'),(1620,88,0,233,'/m/h/mh12-green_main_1.jpg'),(1621,89,0,233,'/m/h/mh12-green_main_1.jpg'),(1622,73,0,233,'Ajax Full-Zip Sweatshirt -L-Green'),(1623,106,0,234,'container2'),(1624,124,0,234,'0'),(1625,121,0,234,'ajax-full-zip-sweatshirt-l-red'),(1626,87,0,234,'/m/h/mh12-red_main_1.jpg'),(1627,88,0,234,'/m/h/mh12-red_main_1.jpg'),(1628,89,0,234,'/m/h/mh12-red_main_1.jpg'),(1629,73,0,234,'Ajax Full-Zip Sweatshirt -L-Red'),(1630,106,0,235,'container2'),(1631,124,0,235,'0'),(1632,121,0,235,'ajax-full-zip-sweatshirt-xl-blue'),(1633,87,0,235,'/m/h/mh12-blue_main_1.jpg'),(1634,88,0,235,'/m/h/mh12-blue_main_1.jpg'),(1635,89,0,235,'/m/h/mh12-blue_main_1.jpg'),(1636,73,0,235,'Ajax Full-Zip Sweatshirt -XL-Blue'),(1637,106,0,236,'container2'),(1638,124,0,236,'0'),(1639,121,0,236,'ajax-full-zip-sweatshirt-xl-green'),(1640,87,0,236,'/m/h/mh12-green_main_1.jpg'),(1641,88,0,236,'/m/h/mh12-green_main_1.jpg'),(1642,89,0,236,'/m/h/mh12-green_main_1.jpg'),(1643,73,0,236,'Ajax Full-Zip Sweatshirt -XL-Green'),(1644,106,0,237,'container2'),(1645,124,0,237,'0'),(1646,121,0,237,'ajax-full-zip-sweatshirt-xl-red'),(1647,87,0,237,'/m/h/mh12-red_main_1.jpg'),(1648,88,0,237,'/m/h/mh12-red_main_1.jpg'),(1649,89,0,237,'/m/h/mh12-red_main_1.jpg'),(1650,73,0,237,'Ajax Full-Zip Sweatshirt -XL-Red'),(1651,106,0,238,'container2'),(1652,124,0,238,'0'),(1653,121,0,238,'ajax-full-zip-sweatshirt'),(1654,87,0,238,'/m/h/mh12-green_main_1.jpg'),(1655,88,0,238,'/m/h/mh12-green_main_1.jpg'),(1656,89,0,238,'/m/h/mh12-green_main_1.jpg'),(1657,73,0,238,'Ajax Full-Zip Sweatshirt '),(1658,106,0,239,'container2'),(1659,124,0,239,'0'),(1660,121,0,239,'marco-lightweight-active-hoodie-xs-blue'),(1661,87,0,239,'/m/h/mh13-blue_main_1.jpg'),(1662,88,0,239,'/m/h/mh13-blue_main_1.jpg'),(1663,89,0,239,'/m/h/mh13-blue_main_1.jpg'),(1664,73,0,239,'Marco Lightweight Active Hoodie-XS-Blue'),(1665,106,0,240,'container2'),(1666,124,0,240,'0'),(1667,121,0,240,'marco-lightweight-active-hoodie-xs-green'),(1668,87,0,240,'/m/h/mh13-green_main_1.jpg'),(1669,88,0,240,'/m/h/mh13-green_main_1.jpg'),(1670,89,0,240,'/m/h/mh13-green_main_1.jpg'),(1671,73,0,240,'Marco Lightweight Active Hoodie-XS-Green'),(1672,106,0,241,'container2'),(1673,124,0,241,'0'),(1674,121,0,241,'marco-lightweight-active-hoodie-xs-lavender'),(1675,87,0,241,'/m/h/mh13-lavender_main_1.jpg'),(1676,88,0,241,'/m/h/mh13-lavender_main_1.jpg'),(1677,89,0,241,'/m/h/mh13-lavender_main_1.jpg'),(1678,73,0,241,'Marco Lightweight Active Hoodie-XS-Lavender'),(1679,106,0,242,'container2'),(1680,124,0,242,'0'),(1681,121,0,242,'marco-lightweight-active-hoodie-s-blue'),(1682,87,0,242,'/m/h/mh13-blue_main_1.jpg'),(1683,88,0,242,'/m/h/mh13-blue_main_1.jpg'),(1684,89,0,242,'/m/h/mh13-blue_main_1.jpg'),(1685,73,0,242,'Marco Lightweight Active Hoodie-S-Blue'),(1686,106,0,243,'container2'),(1687,124,0,243,'0'),(1688,121,0,243,'marco-lightweight-active-hoodie-s-green'),(1689,87,0,243,'/m/h/mh13-green_main_1.jpg'),(1690,88,0,243,'/m/h/mh13-green_main_1.jpg'),(1691,89,0,243,'/m/h/mh13-green_main_1.jpg'),(1692,73,0,243,'Marco Lightweight Active Hoodie-S-Green'),(1693,106,0,244,'container2'),(1694,124,0,244,'0'),(1695,121,0,244,'marco-lightweight-active-hoodie-s-lavender'),(1696,87,0,244,'/m/h/mh13-lavender_main_1.jpg'),(1697,88,0,244,'/m/h/mh13-lavender_main_1.jpg'),(1698,89,0,244,'/m/h/mh13-lavender_main_1.jpg'),(1699,73,0,244,'Marco Lightweight Active Hoodie-S-Lavender'),(1700,106,0,245,'container2'),(1701,124,0,245,'0'),(1702,121,0,245,'marco-lightweight-active-hoodie-m-blue'),(1703,87,0,245,'/m/h/mh13-blue_main_1.jpg'),(1704,88,0,245,'/m/h/mh13-blue_main_1.jpg'),(1705,89,0,245,'/m/h/mh13-blue_main_1.jpg'),(1706,73,0,245,'Marco Lightweight Active Hoodie-M-Blue'),(1707,106,0,246,'container2'),(1708,124,0,246,'0'),(1709,121,0,246,'marco-lightweight-active-hoodie-m-green'),(1710,87,0,246,'/m/h/mh13-green_main_1.jpg'),(1711,88,0,246,'/m/h/mh13-green_main_1.jpg'),(1712,89,0,246,'/m/h/mh13-green_main_1.jpg'),(1713,73,0,246,'Marco Lightweight Active Hoodie-M-Green'),(1714,106,0,247,'container2'),(1715,124,0,247,'0'),(1716,121,0,247,'marco-lightweight-active-hoodie-m-lavender'),(1717,87,0,247,'/m/h/mh13-lavender_main_2.jpg'),(1718,88,0,247,'/m/h/mh13-lavender_main_2.jpg'),(1719,89,0,247,'/m/h/mh13-lavender_main_2.jpg'),(1720,73,0,247,'Marco Lightweight Active Hoodie-M-Lavender'),(1721,106,0,248,'container2'),(1722,124,0,248,'0'),(1723,121,0,248,'marco-lightweight-active-hoodie-l-blue'),(1724,87,0,248,'/m/h/mh13-blue_main_2.jpg'),(1725,88,0,248,'/m/h/mh13-blue_main_2.jpg'),(1726,89,0,248,'/m/h/mh13-blue_main_2.jpg'),(1727,73,0,248,'Marco Lightweight Active Hoodie-L-Blue'),(1728,106,0,249,'container2'),(1729,124,0,249,'0'),(1730,121,0,249,'marco-lightweight-active-hoodie-l-green'),(1731,87,0,249,'/m/h/mh13-green_main_2.jpg'),(1732,88,0,249,'/m/h/mh13-green_main_2.jpg'),(1733,89,0,249,'/m/h/mh13-green_main_2.jpg'),(1734,73,0,249,'Marco Lightweight Active Hoodie-L-Green'),(1735,106,0,250,'container2'),(1736,124,0,250,'0'),(1737,121,0,250,'marco-lightweight-active-hoodie-l-lavender'),(1738,87,0,250,'/m/h/mh13-lavender_main_2.jpg'),(1739,88,0,250,'/m/h/mh13-lavender_main_2.jpg'),(1740,89,0,250,'/m/h/mh13-lavender_main_2.jpg'),(1741,73,0,250,'Marco Lightweight Active Hoodie-L-Lavender'),(1742,106,0,251,'container2'),(1743,124,0,251,'0'),(1744,121,0,251,'marco-lightweight-active-hoodie-xl-blue'),(1745,87,0,251,'/m/h/mh13-blue_main_2.jpg'),(1746,88,0,251,'/m/h/mh13-blue_main_2.jpg'),(1747,89,0,251,'/m/h/mh13-blue_main_2.jpg'),(1748,73,0,251,'Marco Lightweight Active Hoodie-XL-Blue'),(1749,106,0,252,'container2'),(1750,124,0,252,'0'),(1751,121,0,252,'marco-lightweight-active-hoodie-xl-green'),(1752,87,0,252,'/m/h/mh13-green_main_2.jpg'),(1753,88,0,252,'/m/h/mh13-green_main_2.jpg'),(1754,89,0,252,'/m/h/mh13-green_main_2.jpg'),(1755,73,0,252,'Marco Lightweight Active Hoodie-XL-Green'),(1756,106,0,253,'container2'),(1757,124,0,253,'0'),(1758,121,0,253,'marco-lightweight-active-hoodie-xl-lavender'),(1759,87,0,253,'/m/h/mh13-lavender_main_2.jpg'),(1760,88,0,253,'/m/h/mh13-lavender_main_2.jpg'),(1761,89,0,253,'/m/h/mh13-lavender_main_2.jpg'),(1762,73,0,253,'Marco Lightweight Active Hoodie-XL-Lavender'),(1763,106,0,254,'container2'),(1764,124,0,254,'0'),(1765,121,0,254,'marco-lightweight-active-hoodie'),(1766,87,0,254,'/m/h/mh13-blue_main_2.jpg'),(1767,88,0,254,'/m/h/mh13-blue_main_2.jpg'),(1768,89,0,254,'/m/h/mh13-blue_main_2.jpg'),(1769,73,0,254,'Marco Lightweight Active Hoodie'),(1770,106,0,255,'container2'),(1771,124,0,255,'0'),(1772,121,0,255,'beaumont-summit-kit-xs-orange'),(1773,87,0,255,'/m/j/mj01-orange_main_1.jpg'),(1774,88,0,255,'/m/j/mj01-orange_main_1.jpg'),(1775,89,0,255,'/m/j/mj01-orange_main_1.jpg'),(1776,73,0,255,'Beaumont Summit Kit-XS-Orange'),(1777,106,0,256,'container2'),(1778,124,0,256,'0'),(1779,121,0,256,'beaumont-summit-kit-xs-red'),(1780,87,0,256,'/m/j/mj01-red_main_1.jpg'),(1781,88,0,256,'/m/j/mj01-red_main_1.jpg'),(1782,89,0,256,'/m/j/mj01-red_main_1.jpg'),(1783,73,0,256,'Beaumont Summit Kit-XS-Red'),(1784,106,0,257,'container2'),(1785,124,0,257,'0'),(1786,121,0,257,'beaumont-summit-kit-xs-yellow'),(1787,87,0,257,'/m/j/mj01-yellow_main_1.jpg'),(1788,88,0,257,'/m/j/mj01-yellow_main_1.jpg'),(1789,89,0,257,'/m/j/mj01-yellow_main_1.jpg'),(1790,73,0,257,'Beaumont Summit Kit-XS-Yellow'),(1791,106,0,258,'container2'),(1792,124,0,258,'0'),(1793,121,0,258,'beaumont-summit-kit-s-orange'),(1794,87,0,258,'/m/j/mj01-orange_main_1.jpg'),(1795,88,0,258,'/m/j/mj01-orange_main_1.jpg'),(1796,89,0,258,'/m/j/mj01-orange_main_1.jpg'),(1797,73,0,258,'Beaumont Summit Kit-S-Orange'),(1798,106,0,259,'container2'),(1799,124,0,259,'0'),(1800,121,0,259,'beaumont-summit-kit-s-red'),(1801,87,0,259,'/m/j/mj01-red_main_1.jpg'),(1802,88,0,259,'/m/j/mj01-red_main_1.jpg'),(1803,89,0,259,'/m/j/mj01-red_main_1.jpg'),(1804,73,0,259,'Beaumont Summit Kit-S-Red'),(1805,106,0,260,'container2'),(1806,124,0,260,'0'),(1807,121,0,260,'beaumont-summit-kit-s-yellow'),(1808,87,0,260,'/m/j/mj01-yellow_main_1.jpg'),(1809,88,0,260,'/m/j/mj01-yellow_main_1.jpg'),(1810,89,0,260,'/m/j/mj01-yellow_main_1.jpg'),(1811,73,0,260,'Beaumont Summit Kit-S-Yellow'),(1812,106,0,261,'container2'),(1813,124,0,261,'0'),(1814,121,0,261,'beaumont-summit-kit-m-orange'),(1815,87,0,261,'/m/j/mj01-orange_main_1.jpg'),(1816,88,0,261,'/m/j/mj01-orange_main_1.jpg'),(1817,89,0,261,'/m/j/mj01-orange_main_1.jpg'),(1818,73,0,261,'Beaumont Summit Kit-M-Orange'),(1819,106,0,262,'container2'),(1820,124,0,262,'0'),(1821,121,0,262,'beaumont-summit-kit-m-red'),(1822,87,0,262,'/m/j/mj01-red_main_1.jpg'),(1823,88,0,262,'/m/j/mj01-red_main_1.jpg'),(1824,89,0,262,'/m/j/mj01-red_main_1.jpg'),(1825,73,0,262,'Beaumont Summit Kit-M-Red'),(1826,106,0,263,'container2'),(1827,124,0,263,'0'),(1828,121,0,263,'beaumont-summit-kit-m-yellow'),(1829,87,0,263,'/m/j/mj01-yellow_main_1.jpg'),(1830,88,0,263,'/m/j/mj01-yellow_main_1.jpg'),(1831,89,0,263,'/m/j/mj01-yellow_main_1.jpg'),(1832,73,0,263,'Beaumont Summit Kit-M-Yellow'),(1833,106,0,264,'container2'),(1834,124,0,264,'0'),(1835,121,0,264,'beaumont-summit-kit-l-orange'),(1836,87,0,264,'/m/j/mj01-orange_main_1.jpg'),(1837,88,0,264,'/m/j/mj01-orange_main_1.jpg'),(1838,89,0,264,'/m/j/mj01-orange_main_1.jpg'),(1839,73,0,264,'Beaumont Summit Kit-L-Orange'),(1840,106,0,265,'container2'),(1841,124,0,265,'0'),(1842,121,0,265,'beaumont-summit-kit-l-red'),(1843,87,0,265,'/m/j/mj01-red_main_1.jpg'),(1844,88,0,265,'/m/j/mj01-red_main_1.jpg'),(1845,89,0,265,'/m/j/mj01-red_main_1.jpg'),(1846,73,0,265,'Beaumont Summit Kit-L-Red'),(1847,106,0,266,'container2'),(1848,124,0,266,'0'),(1849,121,0,266,'beaumont-summit-kit-l-yellow'),(1850,87,0,266,'/m/j/mj01-yellow_main_1.jpg'),(1851,88,0,266,'/m/j/mj01-yellow_main_1.jpg'),(1852,89,0,266,'/m/j/mj01-yellow_main_1.jpg'),(1853,73,0,266,'Beaumont Summit Kit-L-Yellow'),(1854,106,0,267,'container2'),(1855,124,0,267,'0'),(1856,121,0,267,'beaumont-summit-kit-xl-orange'),(1857,87,0,267,'/m/j/mj01-orange_main_1.jpg'),(1858,88,0,267,'/m/j/mj01-orange_main_1.jpg'),(1859,89,0,267,'/m/j/mj01-orange_main_1.jpg'),(1860,73,0,267,'Beaumont Summit Kit-XL-Orange'),(1861,106,0,268,'container2'),(1862,124,0,268,'0'),(1863,121,0,268,'beaumont-summit-kit-xl-red'),(1864,87,0,268,'/m/j/mj01-red_main_1.jpg'),(1865,88,0,268,'/m/j/mj01-red_main_1.jpg'),(1866,89,0,268,'/m/j/mj01-red_main_1.jpg'),(1867,73,0,268,'Beaumont Summit Kit-XL-Red'),(1868,106,0,269,'container2'),(1869,124,0,269,'0'),(1870,121,0,269,'beaumont-summit-kit-xl-yellow'),(1871,87,0,269,'/m/j/mj01-yellow_main_1.jpg'),(1872,88,0,269,'/m/j/mj01-yellow_main_1.jpg'),(1873,89,0,269,'/m/j/mj01-yellow_main_1.jpg'),(1874,73,0,269,'Beaumont Summit Kit-XL-Yellow'),(1875,106,0,270,'container2'),(1876,124,0,270,'0'),(1877,121,0,270,'beaumont-summit-kit'),(1878,87,0,270,'/m/j/mj01-yellow_main_1.jpg'),(1879,88,0,270,'/m/j/mj01-yellow_main_1.jpg'),(1880,89,0,270,'/m/j/mj01-yellow_main_1.jpg'),(1881,73,0,270,'Beaumont Summit Kit'),(1882,106,0,271,'container2'),(1883,124,0,271,'0'),(1884,121,0,271,'hyperion-elements-jacket-xs-green'),(1885,87,0,271,'/m/j/mj02-green_main_1.jpg'),(1886,88,0,271,'/m/j/mj02-green_main_1.jpg'),(1887,89,0,271,'/m/j/mj02-green_main_1.jpg'),(1888,73,0,271,'Hyperion Elements Jacket-XS-Green'),(1889,106,0,272,'container2'),(1890,124,0,272,'0'),(1891,121,0,272,'hyperion-elements-jacket-xs-orange'),(1892,87,0,272,'/m/j/mj02-orange_main_1.jpg'),(1893,88,0,272,'/m/j/mj02-orange_main_1.jpg'),(1894,89,0,272,'/m/j/mj02-orange_main_1.jpg'),(1895,73,0,272,'Hyperion Elements Jacket-XS-Orange'),(1896,106,0,273,'container2'),(1897,124,0,273,'0'),(1898,121,0,273,'hyperion-elements-jacket-xs-red'),(1899,87,0,273,'/m/j/mj02-red_main_1.jpg'),(1900,88,0,273,'/m/j/mj02-red_main_1.jpg'),(1901,89,0,273,'/m/j/mj02-red_main_1.jpg'),(1902,73,0,273,'Hyperion Elements Jacket-XS-Red'),(1903,106,0,274,'container2'),(1904,124,0,274,'0'),(1905,121,0,274,'hyperion-elements-jacket-s-green'),(1906,87,0,274,'/m/j/mj02-green_main_1.jpg'),(1907,88,0,274,'/m/j/mj02-green_main_1.jpg'),(1908,89,0,274,'/m/j/mj02-green_main_1.jpg'),(1909,73,0,274,'Hyperion Elements Jacket-S-Green'),(1910,106,0,275,'container2'),(1911,124,0,275,'0'),(1912,121,0,275,'hyperion-elements-jacket-s-orange'),(1913,87,0,275,'/m/j/mj02-orange_main_1.jpg'),(1914,88,0,275,'/m/j/mj02-orange_main_1.jpg'),(1915,89,0,275,'/m/j/mj02-orange_main_1.jpg'),(1916,73,0,275,'Hyperion Elements Jacket-S-Orange'),(1917,106,0,276,'container2'),(1918,124,0,276,'0'),(1919,121,0,276,'hyperion-elements-jacket-s-red'),(1920,87,0,276,'/m/j/mj02-red_main_1.jpg'),(1921,88,0,276,'/m/j/mj02-red_main_1.jpg'),(1922,89,0,276,'/m/j/mj02-red_main_1.jpg'),(1923,73,0,276,'Hyperion Elements Jacket-S-Red'),(1924,106,0,277,'container2'),(1925,124,0,277,'0'),(1926,121,0,277,'hyperion-elements-jacket-m-green'),(1927,87,0,277,'/m/j/mj02-green_main_1.jpg'),(1928,88,0,277,'/m/j/mj02-green_main_1.jpg'),(1929,89,0,277,'/m/j/mj02-green_main_1.jpg'),(1930,73,0,277,'Hyperion Elements Jacket-M-Green'),(1931,106,0,278,'container2'),(1932,124,0,278,'0'),(1933,121,0,278,'hyperion-elements-jacket-m-orange'),(1934,87,0,278,'/m/j/mj02-orange_main_1.jpg'),(1935,88,0,278,'/m/j/mj02-orange_main_1.jpg'),(1936,89,0,278,'/m/j/mj02-orange_main_1.jpg'),(1937,73,0,278,'Hyperion Elements Jacket-M-Orange'),(1938,106,0,279,'container2'),(1939,124,0,279,'0'),(1940,121,0,279,'hyperion-elements-jacket-m-red'),(1941,87,0,279,'/m/j/mj02-red_main_1.jpg'),(1942,88,0,279,'/m/j/mj02-red_main_1.jpg'),(1943,89,0,279,'/m/j/mj02-red_main_1.jpg'),(1944,73,0,279,'Hyperion Elements Jacket-M-Red'),(1945,106,0,280,'container2'),(1946,124,0,280,'0'),(1947,121,0,280,'hyperion-elements-jacket-l-green'),(1948,87,0,280,'/m/j/mj02-green_main_1.jpg'),(1949,88,0,280,'/m/j/mj02-green_main_1.jpg'),(1950,89,0,280,'/m/j/mj02-green_main_1.jpg'),(1951,73,0,280,'Hyperion Elements Jacket-L-Green'),(1952,106,0,281,'container2'),(1953,124,0,281,'0'),(1954,121,0,281,'hyperion-elements-jacket-l-orange'),(1955,87,0,281,'/m/j/mj02-orange_main_1.jpg'),(1956,88,0,281,'/m/j/mj02-orange_main_1.jpg'),(1957,89,0,281,'/m/j/mj02-orange_main_1.jpg'),(1958,73,0,281,'Hyperion Elements Jacket-L-Orange'),(1959,106,0,282,'container2'),(1960,124,0,282,'0'),(1961,121,0,282,'hyperion-elements-jacket-l-red'),(1962,87,0,282,'/m/j/mj02-red_main_1.jpg'),(1963,88,0,282,'/m/j/mj02-red_main_1.jpg'),(1964,89,0,282,'/m/j/mj02-red_main_1.jpg'),(1965,73,0,282,'Hyperion Elements Jacket-L-Red'),(1966,106,0,283,'container2'),(1967,124,0,283,'0'),(1968,121,0,283,'hyperion-elements-jacket-xl-green'),(1969,87,0,283,'/m/j/mj02-green_main_1.jpg'),(1970,88,0,283,'/m/j/mj02-green_main_1.jpg'),(1971,89,0,283,'/m/j/mj02-green_main_1.jpg'),(1972,73,0,283,'Hyperion Elements Jacket-XL-Green'),(1973,106,0,284,'container2'),(1974,124,0,284,'0'),(1975,121,0,284,'hyperion-elements-jacket-xl-orange'),(1976,87,0,284,'/m/j/mj02-orange_main_1.jpg'),(1977,88,0,284,'/m/j/mj02-orange_main_1.jpg'),(1978,89,0,284,'/m/j/mj02-orange_main_1.jpg'),(1979,73,0,284,'Hyperion Elements Jacket-XL-Orange'),(1980,106,0,285,'container2'),(1981,124,0,285,'0'),(1982,121,0,285,'hyperion-elements-jacket-xl-red'),(1983,87,0,285,'/m/j/mj02-red_main_1.jpg'),(1984,88,0,285,'/m/j/mj02-red_main_1.jpg'),(1985,89,0,285,'/m/j/mj02-red_main_1.jpg'),(1986,73,0,285,'Hyperion Elements Jacket-XL-Red'),(1987,106,0,286,'container2'),(1988,124,0,286,'0'),(1989,121,0,286,'hyperion-elements-jacket'),(1990,87,0,286,'/m/j/mj02-green_main_1.jpg'),(1991,88,0,286,'/m/j/mj02-green_main_1.jpg'),(1992,89,0,286,'/m/j/mj02-green_main_1.jpg'),(1993,73,0,286,'Hyperion Elements Jacket'),(1994,106,0,287,'container2'),(1995,124,0,287,'0'),(1996,121,0,287,'kenobi-trail-jacket-xs-black'),(1997,87,0,287,'/m/j/mj04-black_main_1.jpg'),(1998,88,0,287,'/m/j/mj04-black_main_1.jpg'),(1999,89,0,287,'/m/j/mj04-black_main_1.jpg'),(2000,73,0,287,'Kenobi Trail Jacket-XS-Black'),(2001,106,0,288,'container2'),(2002,124,0,288,'0'),(2003,121,0,288,'kenobi-trail-jacket-xs-blue'),(2004,87,0,288,'/m/j/mj04-blue_main_1.jpg'),(2005,88,0,288,'/m/j/mj04-blue_main_1.jpg'),(2006,89,0,288,'/m/j/mj04-blue_main_1.jpg'),(2007,73,0,288,'Kenobi Trail Jacket-XS-Blue'),(2008,106,0,289,'container2'),(2009,124,0,289,'0'),(2010,121,0,289,'kenobi-trail-jacket-xs-purple'),(2011,87,0,289,'/m/j/mj04-purple_main_1.jpg'),(2012,88,0,289,'/m/j/mj04-purple_main_1.jpg'),(2013,89,0,289,'/m/j/mj04-purple_main_1.jpg'),(2014,73,0,289,'Kenobi Trail Jacket-XS-Purple'),(2015,106,0,290,'container2'),(2016,124,0,290,'0'),(2017,121,0,290,'kenobi-trail-jacket-s-black'),(2018,87,0,290,'/m/j/mj04-black_main_1.jpg'),(2019,88,0,290,'/m/j/mj04-black_main_1.jpg'),(2020,89,0,290,'/m/j/mj04-black_main_1.jpg'),(2021,73,0,290,'Kenobi Trail Jacket-S-Black'),(2022,106,0,291,'container2'),(2023,124,0,291,'0'),(2024,121,0,291,'kenobi-trail-jacket-s-blue'),(2025,87,0,291,'/m/j/mj04-blue_main_1.jpg'),(2026,88,0,291,'/m/j/mj04-blue_main_1.jpg'),(2027,89,0,291,'/m/j/mj04-blue_main_1.jpg'),(2028,73,0,291,'Kenobi Trail Jacket-S-Blue'),(2029,106,0,292,'container2'),(2030,124,0,292,'0'),(2031,121,0,292,'kenobi-trail-jacket-s-purple'),(2032,87,0,292,'/m/j/mj04-purple_main_1.jpg'),(2033,88,0,292,'/m/j/mj04-purple_main_1.jpg'),(2034,89,0,292,'/m/j/mj04-purple_main_1.jpg'),(2035,73,0,292,'Kenobi Trail Jacket-S-Purple'),(2036,106,0,293,'container2'),(2037,124,0,293,'0'),(2038,121,0,293,'kenobi-trail-jacket-m-black'),(2039,87,0,293,'/m/j/mj04-black_main_1.jpg'),(2040,88,0,293,'/m/j/mj04-black_main_1.jpg'),(2041,89,0,293,'/m/j/mj04-black_main_1.jpg'),(2042,73,0,293,'Kenobi Trail Jacket-M-Black'),(2043,106,0,294,'container2'),(2044,124,0,294,'0'),(2045,121,0,294,'kenobi-trail-jacket-m-blue'),(2046,87,0,294,'/m/j/mj04-blue_main_1.jpg'),(2047,88,0,294,'/m/j/mj04-blue_main_1.jpg'),(2048,89,0,294,'/m/j/mj04-blue_main_1.jpg'),(2049,73,0,294,'Kenobi Trail Jacket-M-Blue'),(2050,106,0,295,'container2'),(2051,124,0,295,'0'),(2052,121,0,295,'kenobi-trail-jacket-m-purple'),(2053,87,0,295,'/m/j/mj04-purple_main_1.jpg'),(2054,88,0,295,'/m/j/mj04-purple_main_1.jpg'),(2055,89,0,295,'/m/j/mj04-purple_main_1.jpg'),(2056,73,0,295,'Kenobi Trail Jacket-M-Purple'),(2057,106,0,296,'container2'),(2058,124,0,296,'0'),(2059,121,0,296,'kenobi-trail-jacket-l-black'),(2060,87,0,296,'/m/j/mj04-black_main_1.jpg'),(2061,88,0,296,'/m/j/mj04-black_main_1.jpg'),(2062,89,0,296,'/m/j/mj04-black_main_1.jpg'),(2063,73,0,296,'Kenobi Trail Jacket-L-Black'),(2064,106,0,297,'container2'),(2065,124,0,297,'0'),(2066,121,0,297,'kenobi-trail-jacket-l-blue'),(2067,87,0,297,'/m/j/mj04-blue_main_1.jpg'),(2068,88,0,297,'/m/j/mj04-blue_main_1.jpg'),(2069,89,0,297,'/m/j/mj04-blue_main_1.jpg'),(2070,73,0,297,'Kenobi Trail Jacket-L-Blue'),(2071,106,0,298,'container2'),(2072,124,0,298,'0'),(2073,121,0,298,'kenobi-trail-jacket-l-purple'),(2074,87,0,298,'/m/j/mj04-purple_main_1.jpg'),(2075,88,0,298,'/m/j/mj04-purple_main_1.jpg'),(2076,89,0,298,'/m/j/mj04-purple_main_1.jpg'),(2077,73,0,298,'Kenobi Trail Jacket-L-Purple'),(2078,106,0,299,'container2'),(2079,124,0,299,'0'),(2080,121,0,299,'kenobi-trail-jacket-xl-black'),(2081,87,0,299,'/m/j/mj04-black_main_1.jpg'),(2082,88,0,299,'/m/j/mj04-black_main_1.jpg'),(2083,89,0,299,'/m/j/mj04-black_main_1.jpg'),(2084,73,0,299,'Kenobi Trail Jacket-XL-Black'),(2085,106,0,300,'container2'),(2086,124,0,300,'0'),(2087,121,0,300,'kenobi-trail-jacket-xl-blue'),(2088,87,0,300,'/m/j/mj04-blue_main_1.jpg'),(2089,88,0,300,'/m/j/mj04-blue_main_1.jpg'),(2090,89,0,300,'/m/j/mj04-blue_main_1.jpg'),(2091,73,0,300,'Kenobi Trail Jacket-XL-Blue'),(2092,106,0,301,'container2'),(2093,124,0,301,'0'),(2094,121,0,301,'kenobi-trail-jacket-xl-purple'),(2095,87,0,301,'/m/j/mj04-purple_main_1.jpg'),(2096,88,0,301,'/m/j/mj04-purple_main_1.jpg'),(2097,89,0,301,'/m/j/mj04-purple_main_1.jpg'),(2098,73,0,301,'Kenobi Trail Jacket-XL-Purple'),(2099,106,0,302,'container2'),(2100,124,0,302,'0'),(2101,121,0,302,'kenobi-trail-jacket'),(2102,87,0,302,'/m/j/mj04-black_main_1.jpg'),(2103,88,0,302,'/m/j/mj04-black_main_1.jpg'),(2104,89,0,302,'/m/j/mj04-black_main_1.jpg'),(2105,73,0,302,'Kenobi Trail Jacket'),(2106,106,0,303,'container2'),(2107,124,0,303,'0'),(2108,121,0,303,'orion-two-tone-fitted-jacket-xs-black'),(2109,87,0,303,'/m/j/mj07-black_main_1.jpg'),(2110,88,0,303,'/m/j/mj07-black_main_1.jpg'),(2111,89,0,303,'/m/j/mj07-black_main_1.jpg'),(2112,73,0,303,'Orion Two-Tone Fitted Jacket-XS-Black'),(2113,106,0,304,'container2'),(2114,124,0,304,'0'),(2115,121,0,304,'orion-two-tone-fitted-jacket-xs-red'),(2116,87,0,304,'/m/j/mj07-red_main_1.jpg'),(2117,88,0,304,'/m/j/mj07-red_main_1.jpg'),(2118,89,0,304,'/m/j/mj07-red_main_1.jpg'),(2119,73,0,304,'Orion Two-Tone Fitted Jacket-XS-Red'),(2120,106,0,305,'container2'),(2121,124,0,305,'0'),(2122,121,0,305,'orion-two-tone-fitted-jacket-xs-yellow'),(2123,87,0,305,'/m/j/mj07-yellow_main_1.jpg'),(2124,88,0,305,'/m/j/mj07-yellow_main_1.jpg'),(2125,89,0,305,'/m/j/mj07-yellow_main_1.jpg'),(2126,73,0,305,'Orion Two-Tone Fitted Jacket-XS-Yellow'),(2127,106,0,306,'container2'),(2128,124,0,306,'0'),(2129,121,0,306,'orion-two-tone-fitted-jacket-s-black'),(2130,87,0,306,'/m/j/mj07-black_main_1.jpg'),(2131,88,0,306,'/m/j/mj07-black_main_1.jpg'),(2132,89,0,306,'/m/j/mj07-black_main_1.jpg'),(2133,73,0,306,'Orion Two-Tone Fitted Jacket-S-Black'),(2134,106,0,307,'container2'),(2135,124,0,307,'0'),(2136,121,0,307,'orion-two-tone-fitted-jacket-s-red'),(2137,87,0,307,'/m/j/mj07-red_main_1.jpg'),(2138,88,0,307,'/m/j/mj07-red_main_1.jpg'),(2139,89,0,307,'/m/j/mj07-red_main_1.jpg'),(2140,73,0,307,'Orion Two-Tone Fitted Jacket-S-Red'),(2141,106,0,308,'container2'),(2142,124,0,308,'0'),(2143,121,0,308,'orion-two-tone-fitted-jacket-s-yellow'),(2144,87,0,308,'/m/j/mj07-yellow_main_1.jpg'),(2145,88,0,308,'/m/j/mj07-yellow_main_1.jpg'),(2146,89,0,308,'/m/j/mj07-yellow_main_1.jpg'),(2147,73,0,308,'Orion Two-Tone Fitted Jacket-S-Yellow'),(2148,106,0,309,'container2'),(2149,124,0,309,'0'),(2150,121,0,309,'orion-two-tone-fitted-jacket-m-black'),(2151,87,0,309,'/m/j/mj07-black_main_1.jpg'),(2152,88,0,309,'/m/j/mj07-black_main_1.jpg'),(2153,89,0,309,'/m/j/mj07-black_main_1.jpg'),(2154,73,0,309,'Orion Two-Tone Fitted Jacket-M-Black'),(2155,106,0,310,'container2'),(2156,124,0,310,'0'),(2157,121,0,310,'orion-two-tone-fitted-jacket-m-red'),(2158,87,0,310,'/m/j/mj07-red_main_1.jpg'),(2159,88,0,310,'/m/j/mj07-red_main_1.jpg'),(2160,89,0,310,'/m/j/mj07-red_main_1.jpg'),(2161,73,0,310,'Orion Two-Tone Fitted Jacket-M-Red'),(2162,106,0,311,'container2'),(2163,124,0,311,'0'),(2164,121,0,311,'orion-two-tone-fitted-jacket-m-yellow'),(2165,87,0,311,'/m/j/mj07-yellow_main_1.jpg'),(2166,88,0,311,'/m/j/mj07-yellow_main_1.jpg'),(2167,89,0,311,'/m/j/mj07-yellow_main_1.jpg'),(2168,73,0,311,'Orion Two-Tone Fitted Jacket-M-Yellow'),(2169,106,0,312,'container2'),(2170,124,0,312,'0'),(2171,121,0,312,'orion-two-tone-fitted-jacket-l-black'),(2172,87,0,312,'/m/j/mj07-black_main_1.jpg'),(2173,88,0,312,'/m/j/mj07-black_main_1.jpg'),(2174,89,0,312,'/m/j/mj07-black_main_1.jpg'),(2175,73,0,312,'Orion Two-Tone Fitted Jacket-L-Black'),(2176,106,0,313,'container2'),(2177,124,0,313,'0'),(2178,121,0,313,'orion-two-tone-fitted-jacket-l-red'),(2179,87,0,313,'/m/j/mj07-red_main_1.jpg'),(2180,88,0,313,'/m/j/mj07-red_main_1.jpg'),(2181,89,0,313,'/m/j/mj07-red_main_1.jpg'),(2182,73,0,313,'Orion Two-Tone Fitted Jacket-L-Red'),(2183,106,0,314,'container2'),(2184,124,0,314,'0'),(2185,121,0,314,'orion-two-tone-fitted-jacket-l-yellow'),(2186,87,0,314,'/m/j/mj07-yellow_main_1.jpg'),(2187,88,0,314,'/m/j/mj07-yellow_main_1.jpg'),(2188,89,0,314,'/m/j/mj07-yellow_main_1.jpg'),(2189,73,0,314,'Orion Two-Tone Fitted Jacket-L-Yellow'),(2190,106,0,315,'container2'),(2191,124,0,315,'0'),(2192,121,0,315,'orion-two-tone-fitted-jacket-xl-black'),(2193,87,0,315,'/m/j/mj07-black_main_1.jpg'),(2194,88,0,315,'/m/j/mj07-black_main_1.jpg'),(2195,89,0,315,'/m/j/mj07-black_main_1.jpg'),(2196,73,0,315,'Orion Two-Tone Fitted Jacket-XL-Black'),(2197,106,0,316,'container2'),(2198,124,0,316,'0'),(2199,121,0,316,'orion-two-tone-fitted-jacket-xl-red'),(2200,87,0,316,'/m/j/mj07-red_main_1.jpg'),(2201,88,0,316,'/m/j/mj07-red_main_1.jpg'),(2202,89,0,316,'/m/j/mj07-red_main_1.jpg'),(2203,73,0,316,'Orion Two-Tone Fitted Jacket-XL-Red'),(2204,106,0,317,'container2'),(2205,124,0,317,'0'),(2206,121,0,317,'orion-two-tone-fitted-jacket-xl-yellow'),(2207,87,0,317,'/m/j/mj07-yellow_main_1.jpg'),(2208,88,0,317,'/m/j/mj07-yellow_main_1.jpg'),(2209,89,0,317,'/m/j/mj07-yellow_main_1.jpg'),(2210,73,0,317,'Orion Two-Tone Fitted Jacket-XL-Yellow'),(2211,106,0,318,'container2'),(2212,124,0,318,'0'),(2213,121,0,318,'orion-two-tone-fitted-jacket'),(2214,87,0,318,'/m/j/mj07-red_main_1.jpg'),(2215,88,0,318,'/m/j/mj07-red_main_1.jpg'),(2216,89,0,318,'/m/j/mj07-red_main_1.jpg'),(2217,73,0,318,'Orion Two-Tone Fitted Jacket'),(2218,106,0,319,'container2'),(2219,124,0,319,'0'),(2220,121,0,319,'lando-gym-jacket-xs-blue'),(2221,87,0,319,'/m/j/mj08-blue_main_1.jpg'),(2222,88,0,319,'/m/j/mj08-blue_main_1.jpg'),(2223,89,0,319,'/m/j/mj08-blue_main_1.jpg'),(2224,73,0,319,'Lando Gym Jacket-XS-Blue'),(2225,106,0,320,'container2'),(2226,124,0,320,'0'),(2227,121,0,320,'lando-gym-jacket-xs-gray'),(2228,87,0,320,'/m/j/mj08-gray_main_1.jpg'),(2229,88,0,320,'/m/j/mj08-gray_main_1.jpg'),(2230,89,0,320,'/m/j/mj08-gray_main_1.jpg'),(2231,73,0,320,'Lando Gym Jacket-XS-Gray'),(2232,106,0,321,'container2'),(2233,124,0,321,'0'),(2234,121,0,321,'lando-gym-jacket-xs-green'),(2235,87,0,321,'/m/j/mj08-green_main_1.jpg'),(2236,88,0,321,'/m/j/mj08-green_main_1.jpg'),(2237,89,0,321,'/m/j/mj08-green_main_1.jpg'),(2238,73,0,321,'Lando Gym Jacket-XS-Green'),(2239,106,0,322,'container2'),(2240,124,0,322,'0'),(2241,121,0,322,'lando-gym-jacket-s-blue'),(2242,87,0,322,'/m/j/mj08-blue_main_1.jpg'),(2243,88,0,322,'/m/j/mj08-blue_main_1.jpg'),(2244,89,0,322,'/m/j/mj08-blue_main_1.jpg'),(2245,73,0,322,'Lando Gym Jacket-S-Blue'),(2246,106,0,323,'container2'),(2247,124,0,323,'0'),(2248,121,0,323,'lando-gym-jacket-s-gray'),(2249,87,0,323,'/m/j/mj08-gray_main_1.jpg'),(2250,88,0,323,'/m/j/mj08-gray_main_1.jpg'),(2251,89,0,323,'/m/j/mj08-gray_main_1.jpg'),(2252,73,0,323,'Lando Gym Jacket-S-Gray'),(2253,106,0,324,'container2'),(2254,124,0,324,'0'),(2255,121,0,324,'lando-gym-jacket-s-green'),(2256,87,0,324,'/m/j/mj08-green_main_1.jpg'),(2257,88,0,324,'/m/j/mj08-green_main_1.jpg'),(2258,89,0,324,'/m/j/mj08-green_main_1.jpg'),(2259,73,0,324,'Lando Gym Jacket-S-Green'),(2260,106,0,325,'container2'),(2261,124,0,325,'0'),(2262,121,0,325,'lando-gym-jacket-m-blue'),(2263,87,0,325,'/m/j/mj08-blue_main_1.jpg'),(2264,88,0,325,'/m/j/mj08-blue_main_1.jpg'),(2265,89,0,325,'/m/j/mj08-blue_main_1.jpg'),(2266,73,0,325,'Lando Gym Jacket-M-Blue'),(2267,106,0,326,'container2'),(2268,124,0,326,'0'),(2269,121,0,326,'lando-gym-jacket-m-gray'),(2270,87,0,326,'/m/j/mj08-gray_main_1.jpg'),(2271,88,0,326,'/m/j/mj08-gray_main_1.jpg'),(2272,89,0,326,'/m/j/mj08-gray_main_1.jpg'),(2273,73,0,326,'Lando Gym Jacket-M-Gray'),(2274,106,0,327,'container2'),(2275,124,0,327,'0'),(2276,121,0,327,'lando-gym-jacket-m-green'),(2277,87,0,327,'/m/j/mj08-green_main_1.jpg'),(2278,88,0,327,'/m/j/mj08-green_main_1.jpg'),(2279,89,0,327,'/m/j/mj08-green_main_1.jpg'),(2280,73,0,327,'Lando Gym Jacket-M-Green'),(2281,106,0,328,'container2'),(2282,124,0,328,'0'),(2283,121,0,328,'lando-gym-jacket-l-blue'),(2284,87,0,328,'/m/j/mj08-blue_main_1.jpg'),(2285,88,0,328,'/m/j/mj08-blue_main_1.jpg'),(2286,89,0,328,'/m/j/mj08-blue_main_1.jpg'),(2287,73,0,328,'Lando Gym Jacket-L-Blue'),(2288,106,0,329,'container2'),(2289,124,0,329,'0'),(2290,121,0,329,'lando-gym-jacket-l-gray'),(2291,87,0,329,'/m/j/mj08-gray_main_1.jpg'),(2292,88,0,329,'/m/j/mj08-gray_main_1.jpg'),(2293,89,0,329,'/m/j/mj08-gray_main_1.jpg'),(2294,73,0,329,'Lando Gym Jacket-L-Gray'),(2295,106,0,330,'container2'),(2296,124,0,330,'0'),(2297,121,0,330,'lando-gym-jacket-l-green'),(2298,87,0,330,'/m/j/mj08-green_main_1.jpg'),(2299,88,0,330,'/m/j/mj08-green_main_1.jpg'),(2300,89,0,330,'/m/j/mj08-green_main_1.jpg'),(2301,73,0,330,'Lando Gym Jacket-L-Green'),(2302,106,0,331,'container2'),(2303,124,0,331,'0'),(2304,121,0,331,'lando-gym-jacket-xl-blue'),(2305,87,0,331,'/m/j/mj08-blue_main_1.jpg'),(2306,88,0,331,'/m/j/mj08-blue_main_1.jpg'),(2307,89,0,331,'/m/j/mj08-blue_main_1.jpg'),(2308,73,0,331,'Lando Gym Jacket-XL-Blue'),(2309,106,0,332,'container2'),(2310,124,0,332,'0'),(2311,121,0,332,'lando-gym-jacket-xl-gray'),(2312,87,0,332,'/m/j/mj08-gray_main_1.jpg'),(2313,88,0,332,'/m/j/mj08-gray_main_1.jpg'),(2314,89,0,332,'/m/j/mj08-gray_main_1.jpg'),(2315,73,0,332,'Lando Gym Jacket-XL-Gray'),(2316,106,0,333,'container2'),(2317,124,0,333,'0'),(2318,121,0,333,'lando-gym-jacket-xl-green'),(2319,87,0,333,'/m/j/mj08-green_main_1.jpg'),(2320,88,0,333,'/m/j/mj08-green_main_1.jpg'),(2321,89,0,333,'/m/j/mj08-green_main_1.jpg'),(2322,73,0,333,'Lando Gym Jacket-XL-Green'),(2323,106,0,334,'container2'),(2324,124,0,334,'0'),(2325,121,0,334,'lando-gym-jacket'),(2326,87,0,334,'/m/j/mj08-gray_main_1.jpg'),(2327,88,0,334,'/m/j/mj08-gray_main_1.jpg'),(2328,89,0,334,'/m/j/mj08-gray_main_1.jpg'),(2329,73,0,334,'Lando Gym Jacket'),(2330,106,0,335,'container2'),(2331,124,0,335,'0'),(2332,121,0,335,'taurus-elements-shell-xs-blue'),(2333,87,0,335,'/m/j/mj09-blue_main_1.jpg'),(2334,88,0,335,'/m/j/mj09-blue_main_1.jpg'),(2335,89,0,335,'/m/j/mj09-blue_main_1.jpg'),(2336,73,0,335,'Taurus Elements Shell-XS-Blue'),(2337,106,0,336,'container2'),(2338,124,0,336,'0'),(2339,121,0,336,'taurus-elements-shell-xs-white'),(2340,87,0,336,'/m/j/mj09-white_main_1.jpg'),(2341,88,0,336,'/m/j/mj09-white_main_1.jpg'),(2342,89,0,336,'/m/j/mj09-white_main_1.jpg'),(2343,73,0,336,'Taurus Elements Shell-XS-White'),(2344,106,0,337,'container2'),(2345,124,0,337,'0'),(2346,121,0,337,'taurus-elements-shell-xs-yellow'),(2347,87,0,337,'/m/j/mj09-yellow_main_1.jpg'),(2348,88,0,337,'/m/j/mj09-yellow_main_1.jpg'),(2349,89,0,337,'/m/j/mj09-yellow_main_1.jpg'),(2350,73,0,337,'Taurus Elements Shell-XS-Yellow'),(2351,106,0,338,'container2'),(2352,124,0,338,'0'),(2353,121,0,338,'taurus-elements-shell-s-blue'),(2354,87,0,338,'/m/j/mj09-blue_main_1.jpg'),(2355,88,0,338,'/m/j/mj09-blue_main_1.jpg'),(2356,89,0,338,'/m/j/mj09-blue_main_1.jpg'),(2357,73,0,338,'Taurus Elements Shell-S-Blue'),(2358,106,0,339,'container2'),(2359,124,0,339,'0'),(2360,121,0,339,'taurus-elements-shell-s-white'),(2361,87,0,339,'/m/j/mj09-white_main_1.jpg'),(2362,88,0,339,'/m/j/mj09-white_main_1.jpg'),(2363,89,0,339,'/m/j/mj09-white_main_1.jpg'),(2364,73,0,339,'Taurus Elements Shell-S-White'),(2365,106,0,340,'container2'),(2366,124,0,340,'0'),(2367,121,0,340,'taurus-elements-shell-s-yellow'),(2368,87,0,340,'/m/j/mj09-yellow_main_1.jpg'),(2369,88,0,340,'/m/j/mj09-yellow_main_1.jpg'),(2370,89,0,340,'/m/j/mj09-yellow_main_1.jpg'),(2371,73,0,340,'Taurus Elements Shell-S-Yellow'),(2372,106,0,341,'container2'),(2373,124,0,341,'0'),(2374,121,0,341,'taurus-elements-shell-m-blue'),(2375,87,0,341,'/m/j/mj09-blue_main_1.jpg'),(2376,88,0,341,'/m/j/mj09-blue_main_1.jpg'),(2377,89,0,341,'/m/j/mj09-blue_main_1.jpg'),(2378,73,0,341,'Taurus Elements Shell-M-Blue'),(2379,106,0,342,'container2'),(2380,124,0,342,'0'),(2381,121,0,342,'taurus-elements-shell-m-white'),(2382,87,0,342,'/m/j/mj09-white_main_1.jpg'),(2383,88,0,342,'/m/j/mj09-white_main_1.jpg'),(2384,89,0,342,'/m/j/mj09-white_main_1.jpg'),(2385,73,0,342,'Taurus Elements Shell-M-White'),(2386,106,0,343,'container2'),(2387,124,0,343,'0'),(2388,121,0,343,'taurus-elements-shell-m-yellow'),(2389,87,0,343,'/m/j/mj09-yellow_main_1.jpg'),(2390,88,0,343,'/m/j/mj09-yellow_main_1.jpg'),(2391,89,0,343,'/m/j/mj09-yellow_main_1.jpg'),(2392,73,0,343,'Taurus Elements Shell-M-Yellow'),(2393,106,0,344,'container2'),(2394,124,0,344,'0'),(2395,121,0,344,'taurus-elements-shell-l-blue'),(2396,87,0,344,'/m/j/mj09-blue_main_1.jpg'),(2397,88,0,344,'/m/j/mj09-blue_main_1.jpg'),(2398,89,0,344,'/m/j/mj09-blue_main_1.jpg'),(2399,73,0,344,'Taurus Elements Shell-L-Blue'),(2400,106,0,345,'container2'),(2401,124,0,345,'0'),(2402,121,0,345,'taurus-elements-shell-l-white'),(2403,87,0,345,'/m/j/mj09-white_main_1.jpg'),(2404,88,0,345,'/m/j/mj09-white_main_1.jpg'),(2405,89,0,345,'/m/j/mj09-white_main_1.jpg'),(2406,73,0,345,'Taurus Elements Shell-L-White'),(2407,106,0,346,'container2'),(2408,124,0,346,'0'),(2409,121,0,346,'taurus-elements-shell-l-yellow'),(2410,87,0,346,'/m/j/mj09-yellow_main_1.jpg'),(2411,88,0,346,'/m/j/mj09-yellow_main_1.jpg'),(2412,89,0,346,'/m/j/mj09-yellow_main_1.jpg'),(2413,73,0,346,'Taurus Elements Shell-L-Yellow'),(2414,106,0,347,'container2'),(2415,124,0,347,'0'),(2416,121,0,347,'taurus-elements-shell-xl-blue'),(2417,87,0,347,'/m/j/mj09-blue_main_2.jpg'),(2418,88,0,347,'/m/j/mj09-blue_main_2.jpg'),(2419,89,0,347,'/m/j/mj09-blue_main_2.jpg'),(2420,73,0,347,'Taurus Elements Shell-XL-Blue'),(2421,106,0,348,'container2'),(2422,124,0,348,'0'),(2423,121,0,348,'taurus-elements-shell-xl-white'),(2424,87,0,348,'/m/j/mj09-white_main_2.jpg'),(2425,88,0,348,'/m/j/mj09-white_main_2.jpg'),(2426,89,0,348,'/m/j/mj09-white_main_2.jpg'),(2427,73,0,348,'Taurus Elements Shell-XL-White'),(2428,106,0,349,'container2'),(2429,124,0,349,'0'),(2430,121,0,349,'taurus-elements-shell-xl-yellow'),(2431,87,0,349,'/m/j/mj09-yellow_main_2.jpg'),(2432,88,0,349,'/m/j/mj09-yellow_main_2.jpg'),(2433,89,0,349,'/m/j/mj09-yellow_main_2.jpg'),(2434,73,0,349,'Taurus Elements Shell-XL-Yellow'),(2435,106,0,350,'container2'),(2436,124,0,350,'0'),(2437,121,0,350,'taurus-elements-shell'),(2438,87,0,350,'/m/j/mj09-yellow_main_2.jpg'),(2439,88,0,350,'/m/j/mj09-yellow_main_2.jpg'),(2440,89,0,350,'/m/j/mj09-yellow_main_2.jpg'),(2441,73,0,350,'Taurus Elements Shell'),(2442,106,0,351,'container2'),(2443,124,0,351,'0'),(2444,121,0,351,'mars-heattech-trade-pullover-xs-black'),(2445,87,0,351,'/m/j/mj10-black_main_1.jpg'),(2446,88,0,351,'/m/j/mj10-black_main_1.jpg'),(2447,89,0,351,'/m/j/mj10-black_main_1.jpg'),(2448,73,0,351,'Mars HeatTech&trade; Pullover-XS-Black'),(2449,106,0,352,'container2'),(2450,124,0,352,'0'),(2451,121,0,352,'mars-heattech-trade-pullover-xs-orange'),(2452,87,0,352,'/m/j/mj10-orange_main_1.jpg'),(2453,88,0,352,'/m/j/mj10-orange_main_1.jpg'),(2454,89,0,352,'/m/j/mj10-orange_main_1.jpg'),(2455,73,0,352,'Mars HeatTech&trade; Pullover-XS-Orange'),(2456,106,0,353,'container2'),(2457,124,0,353,'0'),(2458,121,0,353,'mars-heattech-trade-pullover-xs-red'),(2459,87,0,353,'/m/j/mj10-red_main_1.jpg'),(2460,88,0,353,'/m/j/mj10-red_main_1.jpg'),(2461,89,0,353,'/m/j/mj10-red_main_1.jpg'),(2462,73,0,353,'Mars HeatTech&trade; Pullover-XS-Red'),(2463,106,0,354,'container2'),(2464,124,0,354,'0'),(2465,121,0,354,'mars-heattech-trade-pullover-s-black'),(2466,87,0,354,'/m/j/mj10-black_main_1.jpg'),(2467,88,0,354,'/m/j/mj10-black_main_1.jpg'),(2468,89,0,354,'/m/j/mj10-black_main_1.jpg'),(2469,73,0,354,'Mars HeatTech&trade; Pullover-S-Black'),(2470,106,0,355,'container2'),(2471,124,0,355,'0'),(2472,121,0,355,'mars-heattech-trade-pullover-s-orange'),(2473,87,0,355,'/m/j/mj10-orange_main_1.jpg'),(2474,88,0,355,'/m/j/mj10-orange_main_1.jpg'),(2475,89,0,355,'/m/j/mj10-orange_main_1.jpg'),(2476,73,0,355,'Mars HeatTech&trade; Pullover-S-Orange'),(2477,106,0,356,'container2'),(2478,124,0,356,'0'),(2479,121,0,356,'mars-heattech-trade-pullover-s-red'),(2480,87,0,356,'/m/j/mj10-red_main_1.jpg'),(2481,88,0,356,'/m/j/mj10-red_main_1.jpg'),(2482,89,0,356,'/m/j/mj10-red_main_1.jpg'),(2483,73,0,356,'Mars HeatTech&trade; Pullover-S-Red'),(2484,106,0,357,'container2'),(2485,124,0,357,'0'),(2486,121,0,357,'mars-heattech-trade-pullover-m-black'),(2487,87,0,357,'/m/j/mj10-black_main_1.jpg'),(2488,88,0,357,'/m/j/mj10-black_main_1.jpg'),(2489,89,0,357,'/m/j/mj10-black_main_1.jpg'),(2490,73,0,357,'Mars HeatTech&trade; Pullover-M-Black'),(2491,106,0,358,'container2'),(2492,124,0,358,'0'),(2493,121,0,358,'mars-heattech-trade-pullover-m-orange'),(2494,87,0,358,'/m/j/mj10-orange_main_1.jpg'),(2495,88,0,358,'/m/j/mj10-orange_main_1.jpg'),(2496,89,0,358,'/m/j/mj10-orange_main_1.jpg'),(2497,73,0,358,'Mars HeatTech&trade; Pullover-M-Orange'),(2498,106,0,359,'container2'),(2499,124,0,359,'0'),(2500,121,0,359,'mars-heattech-trade-pullover-m-red'),(2501,87,0,359,'/m/j/mj10-red_main_1.jpg'),(2502,88,0,359,'/m/j/mj10-red_main_1.jpg'),(2503,89,0,359,'/m/j/mj10-red_main_1.jpg'),(2504,73,0,359,'Mars HeatTech&trade; Pullover-M-Red'),(2505,106,0,360,'container2'),(2506,124,0,360,'0'),(2507,121,0,360,'mars-heattech-trade-pullover-l-black'),(2508,87,0,360,'/m/j/mj10-black_main_1.jpg'),(2509,88,0,360,'/m/j/mj10-black_main_1.jpg'),(2510,89,0,360,'/m/j/mj10-black_main_1.jpg'),(2511,73,0,360,'Mars HeatTech&trade; Pullover-L-Black'),(2512,106,0,361,'container2'),(2513,124,0,361,'0'),(2514,121,0,361,'mars-heattech-trade-pullover-l-orange'),(2515,87,0,361,'/m/j/mj10-orange_main_1.jpg'),(2516,88,0,361,'/m/j/mj10-orange_main_1.jpg'),(2517,89,0,361,'/m/j/mj10-orange_main_1.jpg'),(2518,73,0,361,'Mars HeatTech&trade; Pullover-L-Orange'),(2519,106,0,362,'container2'),(2520,124,0,362,'0'),(2521,121,0,362,'mars-heattech-trade-pullover-l-red'),(2522,87,0,362,'/m/j/mj10-red_main_1.jpg'),(2523,88,0,362,'/m/j/mj10-red_main_1.jpg'),(2524,89,0,362,'/m/j/mj10-red_main_1.jpg'),(2525,73,0,362,'Mars HeatTech&trade; Pullover-L-Red'),(2526,106,0,363,'container2'),(2527,124,0,363,'0'),(2528,121,0,363,'mars-heattech-trade-pullover-xl-black'),(2529,87,0,363,'/m/j/mj10-black_main_1.jpg'),(2530,88,0,363,'/m/j/mj10-black_main_1.jpg'),(2531,89,0,363,'/m/j/mj10-black_main_1.jpg'),(2532,73,0,363,'Mars HeatTech&trade; Pullover-XL-Black'),(2533,106,0,364,'container2'),(2534,124,0,364,'0'),(2535,121,0,364,'mars-heattech-trade-pullover-xl-orange'),(2536,87,0,364,'/m/j/mj10-orange_main_1.jpg'),(2537,88,0,364,'/m/j/mj10-orange_main_1.jpg'),(2538,89,0,364,'/m/j/mj10-orange_main_1.jpg'),(2539,73,0,364,'Mars HeatTech&trade; Pullover-XL-Orange'),(2540,106,0,365,'container2'),(2541,124,0,365,'0'),(2542,121,0,365,'mars-heattech-trade-pullover-xl-red'),(2543,87,0,365,'/m/j/mj10-red_main_1.jpg'),(2544,88,0,365,'/m/j/mj10-red_main_1.jpg'),(2545,89,0,365,'/m/j/mj10-red_main_1.jpg'),(2546,73,0,365,'Mars HeatTech&trade; Pullover-XL-Red'),(2547,106,0,366,'container2'),(2548,124,0,366,'0'),(2549,121,0,366,'mars-heattech-trade-pullover'),(2550,87,0,366,'/m/j/mj10-red_main_1.jpg'),(2551,88,0,366,'/m/j/mj10-red_main_1.jpg'),(2552,89,0,366,'/m/j/mj10-red_main_1.jpg'),(2553,73,0,366,'Mars HeatTech&trade; Pullover'),(2554,106,0,367,'container2'),(2555,124,0,367,'0'),(2556,121,0,367,'typhon-performance-fleece-lined-jacket-xs-black'),(2557,87,0,367,'/m/j/mj11-black_main_1.jpg'),(2558,88,0,367,'/m/j/mj11-black_main_1.jpg'),(2559,89,0,367,'/m/j/mj11-black_main_1.jpg'),(2560,73,0,367,'Typhon Performance Fleece-lined Jacket-XS-Black'),(2561,106,0,368,'container2'),(2562,124,0,368,'0'),(2563,121,0,368,'typhon-performance-fleece-lined-jacket-xs-green'),(2564,87,0,368,'/m/j/mj11-green_main_1.jpg'),(2565,88,0,368,'/m/j/mj11-green_main_1.jpg'),(2566,89,0,368,'/m/j/mj11-green_main_1.jpg'),(2567,73,0,368,'Typhon Performance Fleece-lined Jacket-XS-Green'),(2568,106,0,369,'container2'),(2569,124,0,369,'0'),(2570,121,0,369,'typhon-performance-fleece-lined-jacket-xs-red'),(2571,87,0,369,'/m/j/mj11-red_main_1.jpg'),(2572,88,0,369,'/m/j/mj11-red_main_1.jpg'),(2573,89,0,369,'/m/j/mj11-red_main_1.jpg'),(2574,73,0,369,'Typhon Performance Fleece-lined Jacket-XS-Red'),(2575,106,0,370,'container2'),(2576,124,0,370,'0'),(2577,121,0,370,'typhon-performance-fleece-lined-jacket-s-black'),(2578,87,0,370,'/m/j/mj11-black_main_1.jpg'),(2579,88,0,370,'/m/j/mj11-black_main_1.jpg'),(2580,89,0,370,'/m/j/mj11-black_main_1.jpg'),(2581,73,0,370,'Typhon Performance Fleece-lined Jacket-S-Black'),(2582,106,0,371,'container2'),(2583,124,0,371,'0'),(2584,121,0,371,'typhon-performance-fleece-lined-jacket-s-green'),(2585,87,0,371,'/m/j/mj11-green_main_1.jpg'),(2586,88,0,371,'/m/j/mj11-green_main_1.jpg'),(2587,89,0,371,'/m/j/mj11-green_main_1.jpg'),(2588,73,0,371,'Typhon Performance Fleece-lined Jacket-S-Green'),(2589,106,0,372,'container2'),(2590,124,0,372,'0'),(2591,121,0,372,'typhon-performance-fleece-lined-jacket-s-red'),(2592,87,0,372,'/m/j/mj11-red_main_1.jpg'),(2593,88,0,372,'/m/j/mj11-red_main_1.jpg'),(2594,89,0,372,'/m/j/mj11-red_main_1.jpg'),(2595,73,0,372,'Typhon Performance Fleece-lined Jacket-S-Red'),(2596,106,0,373,'container2'),(2597,124,0,373,'0'),(2598,121,0,373,'typhon-performance-fleece-lined-jacket-m-black'),(2599,87,0,373,'/m/j/mj11-black_main_1.jpg'),(2600,88,0,373,'/m/j/mj11-black_main_1.jpg'),(2601,89,0,373,'/m/j/mj11-black_main_1.jpg'),(2602,73,0,373,'Typhon Performance Fleece-lined Jacket-M-Black'),(2603,106,0,374,'container2'),(2604,124,0,374,'0'),(2605,121,0,374,'typhon-performance-fleece-lined-jacket-m-green'),(2606,87,0,374,'/m/j/mj11-green_main_1.jpg'),(2607,88,0,374,'/m/j/mj11-green_main_1.jpg'),(2608,89,0,374,'/m/j/mj11-green_main_1.jpg'),(2609,73,0,374,'Typhon Performance Fleece-lined Jacket-M-Green'),(2610,106,0,375,'container2'),(2611,124,0,375,'0'),(2612,121,0,375,'typhon-performance-fleece-lined-jacket-m-red'),(2613,87,0,375,'/m/j/mj11-red_main_1.jpg'),(2614,88,0,375,'/m/j/mj11-red_main_1.jpg'),(2615,89,0,375,'/m/j/mj11-red_main_1.jpg'),(2616,73,0,375,'Typhon Performance Fleece-lined Jacket-M-Red'),(2617,106,0,376,'container2'),(2618,124,0,376,'0'),(2619,121,0,376,'typhon-performance-fleece-lined-jacket-l-black'),(2620,87,0,376,'/m/j/mj11-black_main_1.jpg'),(2621,88,0,376,'/m/j/mj11-black_main_1.jpg'),(2622,89,0,376,'/m/j/mj11-black_main_1.jpg'),(2623,73,0,376,'Typhon Performance Fleece-lined Jacket-L-Black'),(2624,106,0,377,'container2'),(2625,124,0,377,'0'),(2626,121,0,377,'typhon-performance-fleece-lined-jacket-l-green'),(2627,87,0,377,'/m/j/mj11-green_main_1.jpg'),(2628,88,0,377,'/m/j/mj11-green_main_1.jpg'),(2629,89,0,377,'/m/j/mj11-green_main_1.jpg'),(2630,73,0,377,'Typhon Performance Fleece-lined Jacket-L-Green'),(2631,106,0,378,'container2'),(2632,124,0,378,'0'),(2633,121,0,378,'typhon-performance-fleece-lined-jacket-l-red'),(2634,87,0,378,'/m/j/mj11-red_main_1.jpg'),(2635,88,0,378,'/m/j/mj11-red_main_1.jpg'),(2636,89,0,378,'/m/j/mj11-red_main_1.jpg'),(2637,73,0,378,'Typhon Performance Fleece-lined Jacket-L-Red'),(2638,106,0,379,'container2'),(2639,124,0,379,'0'),(2640,121,0,379,'typhon-performance-fleece-lined-jacket-xl-black'),(2641,87,0,379,'/m/j/mj11-black_main_1.jpg'),(2642,88,0,379,'/m/j/mj11-black_main_1.jpg'),(2643,89,0,379,'/m/j/mj11-black_main_1.jpg'),(2644,73,0,379,'Typhon Performance Fleece-lined Jacket-XL-Black'),(2645,106,0,380,'container2'),(2646,124,0,380,'0'),(2647,121,0,380,'typhon-performance-fleece-lined-jacket-xl-green'),(2648,87,0,380,'/m/j/mj11-green_main_1.jpg'),(2649,88,0,380,'/m/j/mj11-green_main_1.jpg'),(2650,89,0,380,'/m/j/mj11-green_main_1.jpg'),(2651,73,0,380,'Typhon Performance Fleece-lined Jacket-XL-Green'),(2652,106,0,381,'container2'),(2653,124,0,381,'0'),(2654,121,0,381,'typhon-performance-fleece-lined-jacket-xl-red'),(2655,87,0,381,'/m/j/mj11-red_main_1.jpg'),(2656,88,0,381,'/m/j/mj11-red_main_1.jpg'),(2657,89,0,381,'/m/j/mj11-red_main_1.jpg'),(2658,73,0,381,'Typhon Performance Fleece-lined Jacket-XL-Red'),(2659,106,0,382,'container2'),(2660,124,0,382,'0'),(2661,121,0,382,'typhon-performance-fleece-lined-jacket'),(2662,87,0,382,'/m/j/mj11-black_main_1.jpg'),(2663,88,0,382,'/m/j/mj11-black_main_1.jpg'),(2664,89,0,382,'/m/j/mj11-black_main_1.jpg'),(2665,73,0,382,'Typhon Performance Fleece-lined Jacket'),(2666,106,0,383,'container2'),(2667,124,0,383,'0'),(2668,121,0,383,'jupiter-all-weather-trainer-xs-blue'),(2669,87,0,383,'/m/j/mj06-blue_main_1.jpg'),(2670,88,0,383,'/m/j/mj06-blue_main_1.jpg'),(2671,89,0,383,'/m/j/mj06-blue_main_1.jpg'),(2672,73,0,383,'Jupiter All-Weather Trainer -XS-Blue'),(2673,106,0,384,'container2'),(2674,124,0,384,'0'),(2675,121,0,384,'jupiter-all-weather-trainer-xs-green'),(2676,87,0,384,'/m/j/mj06-green_main_1.jpg'),(2677,88,0,384,'/m/j/mj06-green_main_1.jpg'),(2678,89,0,384,'/m/j/mj06-green_main_1.jpg'),(2679,73,0,384,'Jupiter All-Weather Trainer -XS-Green'),(2680,106,0,385,'container2'),(2681,124,0,385,'0'),(2682,121,0,385,'jupiter-all-weather-trainer-xs-purple'),(2683,87,0,385,'/m/j/mj06-purple_main_1.jpg'),(2684,88,0,385,'/m/j/mj06-purple_main_1.jpg'),(2685,89,0,385,'/m/j/mj06-purple_main_1.jpg'),(2686,73,0,385,'Jupiter All-Weather Trainer -XS-Purple'),(2687,106,0,386,'container2'),(2688,124,0,386,'0'),(2689,121,0,386,'jupiter-all-weather-trainer-s-blue'),(2690,87,0,386,'/m/j/mj06-blue_main_1.jpg'),(2691,88,0,386,'/m/j/mj06-blue_main_1.jpg'),(2692,89,0,386,'/m/j/mj06-blue_main_1.jpg'),(2693,73,0,386,'Jupiter All-Weather Trainer -S-Blue'),(2694,106,0,387,'container2'),(2695,124,0,387,'0'),(2696,121,0,387,'jupiter-all-weather-trainer-s-green'),(2697,87,0,387,'/m/j/mj06-green_main_1.jpg'),(2698,88,0,387,'/m/j/mj06-green_main_1.jpg'),(2699,89,0,387,'/m/j/mj06-green_main_1.jpg'),(2700,73,0,387,'Jupiter All-Weather Trainer -S-Green'),(2701,106,0,388,'container2'),(2702,124,0,388,'0'),(2703,121,0,388,'jupiter-all-weather-trainer-s-purple'),(2704,87,0,388,'/m/j/mj06-purple_main_1.jpg'),(2705,88,0,388,'/m/j/mj06-purple_main_1.jpg'),(2706,89,0,388,'/m/j/mj06-purple_main_1.jpg'),(2707,73,0,388,'Jupiter All-Weather Trainer -S-Purple'),(2708,106,0,389,'container2'),(2709,124,0,389,'0'),(2710,121,0,389,'jupiter-all-weather-trainer-m-blue'),(2711,87,0,389,'/m/j/mj06-blue_main_1.jpg'),(2712,88,0,389,'/m/j/mj06-blue_main_1.jpg'),(2713,89,0,389,'/m/j/mj06-blue_main_1.jpg'),(2714,73,0,389,'Jupiter All-Weather Trainer -M-Blue'),(2715,106,0,390,'container2'),(2716,124,0,390,'0'),(2717,121,0,390,'jupiter-all-weather-trainer-m-green'),(2718,87,0,390,'/m/j/mj06-green_main_1.jpg'),(2719,88,0,390,'/m/j/mj06-green_main_1.jpg'),(2720,89,0,390,'/m/j/mj06-green_main_1.jpg'),(2721,73,0,390,'Jupiter All-Weather Trainer -M-Green'),(2722,106,0,391,'container2'),(2723,124,0,391,'0'),(2724,121,0,391,'jupiter-all-weather-trainer-m-purple'),(2725,87,0,391,'/m/j/mj06-purple_main_1.jpg'),(2726,88,0,391,'/m/j/mj06-purple_main_1.jpg'),(2727,89,0,391,'/m/j/mj06-purple_main_1.jpg'),(2728,73,0,391,'Jupiter All-Weather Trainer -M-Purple'),(2729,106,0,392,'container2'),(2730,124,0,392,'0'),(2731,121,0,392,'jupiter-all-weather-trainer-l-blue'),(2732,87,0,392,'/m/j/mj06-blue_main_1.jpg'),(2733,88,0,392,'/m/j/mj06-blue_main_1.jpg'),(2734,89,0,392,'/m/j/mj06-blue_main_1.jpg'),(2735,73,0,392,'Jupiter All-Weather Trainer -L-Blue'),(2736,106,0,393,'container2'),(2737,124,0,393,'0'),(2738,121,0,393,'jupiter-all-weather-trainer-l-green'),(2739,87,0,393,'/m/j/mj06-green_main_1.jpg'),(2740,88,0,393,'/m/j/mj06-green_main_1.jpg'),(2741,89,0,393,'/m/j/mj06-green_main_1.jpg'),(2742,73,0,393,'Jupiter All-Weather Trainer -L-Green'),(2743,106,0,394,'container2'),(2744,124,0,394,'0'),(2745,121,0,394,'jupiter-all-weather-trainer-l-purple'),(2746,87,0,394,'/m/j/mj06-purple_main_1.jpg'),(2747,88,0,394,'/m/j/mj06-purple_main_1.jpg'),(2748,89,0,394,'/m/j/mj06-purple_main_1.jpg'),(2749,73,0,394,'Jupiter All-Weather Trainer -L-Purple'),(2750,106,0,395,'container2'),(2751,124,0,395,'0'),(2752,121,0,395,'jupiter-all-weather-trainer-xl-blue'),(2753,87,0,395,'/m/j/mj06-blue_main_1.jpg'),(2754,88,0,395,'/m/j/mj06-blue_main_1.jpg'),(2755,89,0,395,'/m/j/mj06-blue_main_1.jpg'),(2756,73,0,395,'Jupiter All-Weather Trainer -XL-Blue'),(2757,106,0,396,'container2'),(2758,124,0,396,'0'),(2759,121,0,396,'jupiter-all-weather-trainer-xl-green'),(2760,87,0,396,'/m/j/mj06-green_main_1.jpg'),(2761,88,0,396,'/m/j/mj06-green_main_1.jpg'),(2762,89,0,396,'/m/j/mj06-green_main_1.jpg'),(2763,73,0,396,'Jupiter All-Weather Trainer -XL-Green'),(2764,106,0,397,'container2'),(2765,124,0,397,'0'),(2766,121,0,397,'jupiter-all-weather-trainer-xl-purple'),(2767,87,0,397,'/m/j/mj06-purple_main_1.jpg'),(2768,88,0,397,'/m/j/mj06-purple_main_1.jpg'),(2769,89,0,397,'/m/j/mj06-purple_main_1.jpg'),(2770,73,0,397,'Jupiter All-Weather Trainer -XL-Purple'),(2771,106,0,398,'container2'),(2772,124,0,398,'0'),(2773,121,0,398,'jupiter-all-weather-trainer'),(2774,87,0,398,'/m/j/mj06-blue_main_1.jpg'),(2775,88,0,398,'/m/j/mj06-blue_main_1.jpg'),(2776,89,0,398,'/m/j/mj06-blue_main_1.jpg'),(2777,73,0,398,'Jupiter All-Weather Trainer '),(2778,106,0,399,'container2'),(2779,124,0,399,'0'),(2780,121,0,399,'montana-wind-jacket-xs-black'),(2781,87,0,399,'/m/j/mj03-black_main_1.jpg'),(2782,88,0,399,'/m/j/mj03-black_main_1.jpg'),(2783,89,0,399,'/m/j/mj03-black_main_1.jpg'),(2784,73,0,399,'Montana Wind Jacket-XS-Black'),(2785,106,0,400,'container2'),(2786,124,0,400,'0'),(2787,121,0,400,'montana-wind-jacket-xs-green'),(2788,87,0,400,'/m/j/mj03-green_main_1.jpg'),(2789,88,0,400,'/m/j/mj03-green_main_1.jpg'),(2790,89,0,400,'/m/j/mj03-green_main_1.jpg'),(2791,73,0,400,'Montana Wind Jacket-XS-Green'),(2792,106,0,401,'container2'),(2793,124,0,401,'0'),(2794,121,0,401,'montana-wind-jacket-xs-red'),(2795,87,0,401,'/m/j/mj03-red_main_1.jpg'),(2796,88,0,401,'/m/j/mj03-red_main_1.jpg'),(2797,89,0,401,'/m/j/mj03-red_main_1.jpg'),(2798,73,0,401,'Montana Wind Jacket-XS-Red'),(2799,106,0,402,'container2'),(2800,124,0,402,'0'),(2801,121,0,402,'montana-wind-jacket-s-black'),(2802,87,0,402,'/m/j/mj03-black_main_1.jpg'),(2803,88,0,402,'/m/j/mj03-black_main_1.jpg'),(2804,89,0,402,'/m/j/mj03-black_main_1.jpg'),(2805,73,0,402,'Montana Wind Jacket-S-Black'),(2806,106,0,403,'container2'),(2807,124,0,403,'0'),(2808,121,0,403,'montana-wind-jacket-s-green'),(2809,87,0,403,'/m/j/mj03-green_main_1.jpg'),(2810,88,0,403,'/m/j/mj03-green_main_1.jpg'),(2811,89,0,403,'/m/j/mj03-green_main_1.jpg'),(2812,73,0,403,'Montana Wind Jacket-S-Green'),(2813,106,0,404,'container2'),(2814,124,0,404,'0'),(2815,121,0,404,'montana-wind-jacket-s-red'),(2816,87,0,404,'/m/j/mj03-red_main_1.jpg'),(2817,88,0,404,'/m/j/mj03-red_main_1.jpg'),(2818,89,0,404,'/m/j/mj03-red_main_1.jpg'),(2819,73,0,404,'Montana Wind Jacket-S-Red'),(2820,106,0,405,'container2'),(2821,124,0,405,'0'),(2822,121,0,405,'montana-wind-jacket-m-black'),(2823,87,0,405,'/m/j/mj03-black_main_1.jpg'),(2824,88,0,405,'/m/j/mj03-black_main_1.jpg'),(2825,89,0,405,'/m/j/mj03-black_main_1.jpg'),(2826,73,0,405,'Montana Wind Jacket-M-Black'),(2827,106,0,406,'container2'),(2828,124,0,406,'0'),(2829,121,0,406,'montana-wind-jacket-m-green'),(2830,87,0,406,'/m/j/mj03-green_main_1.jpg'),(2831,88,0,406,'/m/j/mj03-green_main_1.jpg'),(2832,89,0,406,'/m/j/mj03-green_main_1.jpg'),(2833,73,0,406,'Montana Wind Jacket-M-Green'),(2834,106,0,407,'container2'),(2835,124,0,407,'0'),(2836,121,0,407,'montana-wind-jacket-m-red'),(2837,87,0,407,'/m/j/mj03-red_main_1.jpg'),(2838,88,0,407,'/m/j/mj03-red_main_1.jpg'),(2839,89,0,407,'/m/j/mj03-red_main_1.jpg'),(2840,73,0,407,'Montana Wind Jacket-M-Red'),(2841,106,0,408,'container2'),(2842,124,0,408,'0'),(2843,121,0,408,'montana-wind-jacket-l-black'),(2844,87,0,408,'/m/j/mj03-black_main_1.jpg'),(2845,88,0,408,'/m/j/mj03-black_main_1.jpg'),(2846,89,0,408,'/m/j/mj03-black_main_1.jpg'),(2847,73,0,408,'Montana Wind Jacket-L-Black'),(2848,106,0,409,'container2'),(2849,124,0,409,'0'),(2850,121,0,409,'montana-wind-jacket-l-green'),(2851,87,0,409,'/m/j/mj03-green_main_1.jpg'),(2852,88,0,409,'/m/j/mj03-green_main_1.jpg'),(2853,89,0,409,'/m/j/mj03-green_main_1.jpg'),(2854,73,0,409,'Montana Wind Jacket-L-Green'),(2855,106,0,410,'container2'),(2856,124,0,410,'0'),(2857,121,0,410,'montana-wind-jacket-l-red'),(2858,87,0,410,'/m/j/mj03-red_main_1.jpg'),(2859,88,0,410,'/m/j/mj03-red_main_1.jpg'),(2860,89,0,410,'/m/j/mj03-red_main_1.jpg'),(2861,73,0,410,'Montana Wind Jacket-L-Red'),(2862,106,0,411,'container2'),(2863,124,0,411,'0'),(2864,121,0,411,'montana-wind-jacket-xl-black'),(2865,87,0,411,'/m/j/mj03-black_main_1.jpg'),(2866,88,0,411,'/m/j/mj03-black_main_1.jpg'),(2867,89,0,411,'/m/j/mj03-black_main_1.jpg'),(2868,73,0,411,'Montana Wind Jacket-XL-Black'),(2869,106,0,412,'container2'),(2870,124,0,412,'0'),(2871,121,0,412,'montana-wind-jacket-xl-green'),(2872,87,0,412,'/m/j/mj03-green_main_1.jpg'),(2873,88,0,412,'/m/j/mj03-green_main_1.jpg'),(2874,89,0,412,'/m/j/mj03-green_main_1.jpg'),(2875,73,0,412,'Montana Wind Jacket-XL-Green'),(2876,106,0,413,'container2'),(2877,124,0,413,'0'),(2878,121,0,413,'montana-wind-jacket-xl-red'),(2879,87,0,413,'/m/j/mj03-red_main_1.jpg'),(2880,88,0,413,'/m/j/mj03-red_main_1.jpg'),(2881,89,0,413,'/m/j/mj03-red_main_1.jpg'),(2882,73,0,413,'Montana Wind Jacket-XL-Red'),(2883,106,0,414,'container2'),(2884,124,0,414,'0'),(2885,121,0,414,'montana-wind-jacket'),(2886,87,0,414,'/m/j/mj03-black_main_1.jpg'),(2887,88,0,414,'/m/j/mj03-black_main_1.jpg'),(2888,89,0,414,'/m/j/mj03-black_main_1.jpg'),(2889,73,0,414,'Montana Wind Jacket'),(2890,106,0,415,'container2'),(2891,124,0,415,'0'),(2892,121,0,415,'proteus-fitness-jackshirt-xs-black'),(2893,87,0,415,'/m/j/mj12-black_main_1.jpg'),(2894,88,0,415,'/m/j/mj12-black_main_1.jpg'),(2895,89,0,415,'/m/j/mj12-black_main_1.jpg'),(2896,73,0,415,'Proteus Fitness Jackshirt-XS-Black'),(2897,106,0,416,'container2'),(2898,124,0,416,'0'),(2899,121,0,416,'proteus-fitness-jackshirt-xs-blue'),(2900,87,0,416,'/m/j/mj12-blue_main_1.jpg'),(2901,88,0,416,'/m/j/mj12-blue_main_1.jpg'),(2902,89,0,416,'/m/j/mj12-blue_main_1.jpg'),(2903,73,0,416,'Proteus Fitness Jackshirt-XS-Blue'),(2904,106,0,417,'container2'),(2905,124,0,417,'0'),(2906,121,0,417,'proteus-fitness-jackshirt-xs-orange'),(2907,87,0,417,'/m/j/mj12-orange_main_1.jpg'),(2908,88,0,417,'/m/j/mj12-orange_main_1.jpg'),(2909,89,0,417,'/m/j/mj12-orange_main_1.jpg'),(2910,73,0,417,'Proteus Fitness Jackshirt-XS-Orange'),(2911,106,0,418,'container2'),(2912,124,0,418,'0'),(2913,121,0,418,'proteus-fitness-jackshirt-s-black'),(2914,87,0,418,'/m/j/mj12-black_main_1.jpg'),(2915,88,0,418,'/m/j/mj12-black_main_1.jpg'),(2916,89,0,418,'/m/j/mj12-black_main_1.jpg'),(2917,73,0,418,'Proteus Fitness Jackshirt-S-Black'),(2918,106,0,419,'container2'),(2919,124,0,419,'0'),(2920,121,0,419,'proteus-fitness-jackshirt-s-blue'),(2921,87,0,419,'/m/j/mj12-blue_main_1.jpg'),(2922,88,0,419,'/m/j/mj12-blue_main_1.jpg'),(2923,89,0,419,'/m/j/mj12-blue_main_1.jpg'),(2924,73,0,419,'Proteus Fitness Jackshirt-S-Blue'),(2925,106,0,420,'container2'),(2926,124,0,420,'0'),(2927,121,0,420,'proteus-fitness-jackshirt-s-orange'),(2928,87,0,420,'/m/j/mj12-orange_main_1.jpg'),(2929,88,0,420,'/m/j/mj12-orange_main_1.jpg'),(2930,89,0,420,'/m/j/mj12-orange_main_1.jpg'),(2931,73,0,420,'Proteus Fitness Jackshirt-S-Orange'),(2932,106,0,421,'container2'),(2933,124,0,421,'0'),(2934,121,0,421,'proteus-fitness-jackshirt-m-black'),(2935,87,0,421,'/m/j/mj12-black_main_1.jpg'),(2936,88,0,421,'/m/j/mj12-black_main_1.jpg'),(2937,89,0,421,'/m/j/mj12-black_main_1.jpg'),(2938,73,0,421,'Proteus Fitness Jackshirt-M-Black'),(2939,106,0,422,'container2'),(2940,124,0,422,'0'),(2941,121,0,422,'proteus-fitness-jackshirt-m-blue'),(2942,87,0,422,'/m/j/mj12-blue_main_1.jpg'),(2943,88,0,422,'/m/j/mj12-blue_main_1.jpg'),(2944,89,0,422,'/m/j/mj12-blue_main_1.jpg'),(2945,73,0,422,'Proteus Fitness Jackshirt-M-Blue'),(2946,106,0,423,'container2'),(2947,124,0,423,'0'),(2948,121,0,423,'proteus-fitness-jackshirt-m-orange'),(2949,87,0,423,'/m/j/mj12-orange_main_1.jpg'),(2950,88,0,423,'/m/j/mj12-orange_main_1.jpg'),(2951,89,0,423,'/m/j/mj12-orange_main_1.jpg'),(2952,73,0,423,'Proteus Fitness Jackshirt-M-Orange'),(2953,106,0,424,'container2'),(2954,124,0,424,'0'),(2955,121,0,424,'proteus-fitness-jackshirt-l-black'),(2956,87,0,424,'/m/j/mj12-black_main_1.jpg'),(2957,88,0,424,'/m/j/mj12-black_main_1.jpg'),(2958,89,0,424,'/m/j/mj12-black_main_1.jpg'),(2959,73,0,424,'Proteus Fitness Jackshirt-L-Black'),(2960,106,0,425,'container2'),(2961,124,0,425,'0'),(2962,121,0,425,'proteus-fitness-jackshirt-l-blue'),(2963,87,0,425,'/m/j/mj12-blue_main_1.jpg'),(2964,88,0,425,'/m/j/mj12-blue_main_1.jpg'),(2965,89,0,425,'/m/j/mj12-blue_main_1.jpg'),(2966,73,0,425,'Proteus Fitness Jackshirt-L-Blue'),(2967,106,0,426,'container2'),(2968,124,0,426,'0'),(2969,121,0,426,'proteus-fitness-jackshirt-l-orange'),(2970,87,0,426,'/m/j/mj12-orange_main_1.jpg'),(2971,88,0,426,'/m/j/mj12-orange_main_1.jpg'),(2972,89,0,426,'/m/j/mj12-orange_main_1.jpg'),(2973,73,0,426,'Proteus Fitness Jackshirt-L-Orange'),(2974,106,0,427,'container2'),(2975,124,0,427,'0'),(2976,121,0,427,'proteus-fitness-jackshirt-xl-black'),(2977,87,0,427,'/m/j/mj12-black_main_1.jpg'),(2978,88,0,427,'/m/j/mj12-black_main_1.jpg'),(2979,89,0,427,'/m/j/mj12-black_main_1.jpg'),(2980,73,0,427,'Proteus Fitness Jackshirt-XL-Black'),(2981,106,0,428,'container2'),(2982,124,0,428,'0'),(2983,121,0,428,'proteus-fitness-jackshirt-xl-blue'),(2984,87,0,428,'/m/j/mj12-blue_main_1.jpg'),(2985,88,0,428,'/m/j/mj12-blue_main_1.jpg'),(2986,89,0,428,'/m/j/mj12-blue_main_1.jpg'),(2987,73,0,428,'Proteus Fitness Jackshirt-XL-Blue'),(2988,106,0,429,'container2'),(2989,124,0,429,'0'),(2990,121,0,429,'proteus-fitness-jackshirt-xl-orange'),(2991,87,0,429,'/m/j/mj12-orange_main_1.jpg'),(2992,88,0,429,'/m/j/mj12-orange_main_1.jpg'),(2993,89,0,429,'/m/j/mj12-orange_main_1.jpg'),(2994,73,0,429,'Proteus Fitness Jackshirt-XL-Orange'),(2995,106,0,430,'container2'),(2996,124,0,430,'0'),(2997,121,0,430,'proteus-fitness-jackshirt'),(2998,87,0,430,'/m/j/mj12-orange_main_1.jpg'),(2999,88,0,430,'/m/j/mj12-orange_main_1.jpg'),(3000,89,0,430,'/m/j/mj12-orange_main_1.jpg'),(3001,73,0,430,'Proteus Fitness Jackshirt'),(3002,106,0,431,'container2'),(3003,124,0,431,'0'),(3004,121,0,431,'gobi-heattec-reg-tee-xs-black'),(3005,87,0,431,'/m/s/ms04-black_main_1.jpg'),(3006,88,0,431,'/m/s/ms04-black_main_1.jpg'),(3007,89,0,431,'/m/s/ms04-black_main_1.jpg'),(3008,73,0,431,'Gobi HeatTec&reg; Tee-XS-Black'),(3009,106,0,432,'container2'),(3010,124,0,432,'0'),(3011,121,0,432,'gobi-heattec-reg-tee-xs-orange'),(3012,87,0,432,'/m/s/ms04-orange_main_1.jpg'),(3013,88,0,432,'/m/s/ms04-orange_main_1.jpg'),(3014,89,0,432,'/m/s/ms04-orange_main_1.jpg'),(3015,73,0,432,'Gobi HeatTec&reg; Tee-XS-Orange'),(3016,106,0,433,'container2'),(3017,124,0,433,'0'),(3018,121,0,433,'gobi-heattec-reg-tee-xs-red'),(3019,87,0,433,'/m/s/ms04-red_main_1.jpg'),(3020,88,0,433,'/m/s/ms04-red_main_1.jpg'),(3021,89,0,433,'/m/s/ms04-red_main_1.jpg'),(3022,73,0,433,'Gobi HeatTec&reg; Tee-XS-Red'),(3023,106,0,434,'container2'),(3024,124,0,434,'0'),(3025,121,0,434,'gobi-heattec-reg-tee-s-black'),(3026,87,0,434,'/m/s/ms04-black_main_1.jpg'),(3027,88,0,434,'/m/s/ms04-black_main_1.jpg'),(3028,89,0,434,'/m/s/ms04-black_main_1.jpg'),(3029,73,0,434,'Gobi HeatTec&reg; Tee-S-Black'),(3030,106,0,435,'container2'),(3031,124,0,435,'0'),(3032,121,0,435,'gobi-heattec-reg-tee-s-orange'),(3033,87,0,435,'/m/s/ms04-orange_main_1.jpg'),(3034,88,0,435,'/m/s/ms04-orange_main_1.jpg'),(3035,89,0,435,'/m/s/ms04-orange_main_1.jpg'),(3036,73,0,435,'Gobi HeatTec&reg; Tee-S-Orange'),(3037,106,0,436,'container2'),(3038,124,0,436,'0'),(3039,121,0,436,'gobi-heattec-reg-tee-s-red'),(3040,87,0,436,'/m/s/ms04-red_main_1.jpg'),(3041,88,0,436,'/m/s/ms04-red_main_1.jpg'),(3042,89,0,436,'/m/s/ms04-red_main_1.jpg'),(3043,73,0,436,'Gobi HeatTec&reg; Tee-S-Red'),(3044,106,0,437,'container2'),(3045,124,0,437,'0'),(3046,121,0,437,'gobi-heattec-reg-tee-m-black'),(3047,87,0,437,'/m/s/ms04-black_main_1.jpg'),(3048,88,0,437,'/m/s/ms04-black_main_1.jpg'),(3049,89,0,437,'/m/s/ms04-black_main_1.jpg'),(3050,73,0,437,'Gobi HeatTec&reg; Tee-M-Black'),(3051,106,0,438,'container2'),(3052,124,0,438,'0'),(3053,121,0,438,'gobi-heattec-reg-tee-m-orange'),(3054,87,0,438,'/m/s/ms04-orange_main_1.jpg'),(3055,88,0,438,'/m/s/ms04-orange_main_1.jpg'),(3056,89,0,438,'/m/s/ms04-orange_main_1.jpg'),(3057,73,0,438,'Gobi HeatTec&reg; Tee-M-Orange'),(3058,106,0,439,'container2'),(3059,124,0,439,'0'),(3060,121,0,439,'gobi-heattec-reg-tee-m-red'),(3061,87,0,439,'/m/s/ms04-red_main_1.jpg'),(3062,88,0,439,'/m/s/ms04-red_main_1.jpg'),(3063,89,0,439,'/m/s/ms04-red_main_1.jpg'),(3064,73,0,439,'Gobi HeatTec&reg; Tee-M-Red'),(3065,106,0,440,'container2'),(3066,124,0,440,'0'),(3067,121,0,440,'gobi-heattec-reg-tee-l-black'),(3068,87,0,440,'/m/s/ms04-black_main_1.jpg'),(3069,88,0,440,'/m/s/ms04-black_main_1.jpg'),(3070,89,0,440,'/m/s/ms04-black_main_1.jpg'),(3071,73,0,440,'Gobi HeatTec&reg; Tee-L-Black'),(3072,106,0,441,'container2'),(3073,124,0,441,'0'),(3074,121,0,441,'gobi-heattec-reg-tee-l-orange'),(3075,87,0,441,'/m/s/ms04-orange_main_1.jpg'),(3076,88,0,441,'/m/s/ms04-orange_main_1.jpg'),(3077,89,0,441,'/m/s/ms04-orange_main_1.jpg'),(3078,73,0,441,'Gobi HeatTec&reg; Tee-L-Orange'),(3079,106,0,442,'container2'),(3080,124,0,442,'0'),(3081,121,0,442,'gobi-heattec-reg-tee-l-red'),(3082,87,0,442,'/m/s/ms04-red_main_1.jpg'),(3083,88,0,442,'/m/s/ms04-red_main_1.jpg'),(3084,89,0,442,'/m/s/ms04-red_main_1.jpg'),(3085,73,0,442,'Gobi HeatTec&reg; Tee-L-Red'),(3086,106,0,443,'container2'),(3087,124,0,443,'0'),(3088,121,0,443,'gobi-heattec-reg-tee-xl-black'),(3089,87,0,443,'/m/s/ms04-black_main_1.jpg'),(3090,88,0,443,'/m/s/ms04-black_main_1.jpg'),(3091,89,0,443,'/m/s/ms04-black_main_1.jpg'),(3092,73,0,443,'Gobi HeatTec&reg; Tee-XL-Black'),(3093,106,0,444,'container2'),(3094,124,0,444,'0'),(3095,121,0,444,'gobi-heattec-reg-tee-xl-orange'),(3096,87,0,444,'/m/s/ms04-orange_main_1.jpg'),(3097,88,0,444,'/m/s/ms04-orange_main_1.jpg'),(3098,89,0,444,'/m/s/ms04-orange_main_1.jpg'),(3099,73,0,444,'Gobi HeatTec&reg; Tee-XL-Orange'),(3100,106,0,445,'container2'),(3101,124,0,445,'0'),(3102,121,0,445,'gobi-heattec-reg-tee-xl-red'),(3103,87,0,445,'/m/s/ms04-red_main_1.jpg'),(3104,88,0,445,'/m/s/ms04-red_main_1.jpg'),(3105,89,0,445,'/m/s/ms04-red_main_1.jpg'),(3106,73,0,445,'Gobi HeatTec&reg; Tee-XL-Red'),(3107,106,0,446,'container2'),(3108,124,0,446,'0'),(3109,121,0,446,'gobi-heattec-reg-tee'),(3110,87,0,446,'/m/s/ms04-orange_main_1.jpg'),(3111,88,0,446,'/m/s/ms04-orange_main_1.jpg'),(3112,89,0,446,'/m/s/ms04-orange_main_1.jpg'),(3113,73,0,446,'Gobi HeatTec&reg; Tee'),(3114,106,0,447,'container2'),(3115,124,0,447,'0'),(3116,121,0,447,'helios-evercool-trade-tee-xs-black'),(3117,87,0,447,'/m/s/ms05-black_main_1.jpg'),(3118,88,0,447,'/m/s/ms05-black_main_1.jpg'),(3119,89,0,447,'/m/s/ms05-black_main_1.jpg'),(3120,73,0,447,'Helios EverCool&trade; Tee-XS-Black'),(3121,106,0,448,'container2'),(3122,124,0,448,'0'),(3123,121,0,448,'helios-evercool-trade-tee-xs-blue'),(3124,87,0,448,'/m/s/ms05-blue_main_1.jpg'),(3125,88,0,448,'/m/s/ms05-blue_main_1.jpg'),(3126,89,0,448,'/m/s/ms05-blue_main_1.jpg'),(3127,73,0,448,'Helios EverCool&trade; Tee-XS-Blue'),(3128,106,0,449,'container2'),(3129,124,0,449,'0'),(3130,121,0,449,'helios-evercool-trade-tee-xs-purple'),(3131,87,0,449,'/m/s/ms05-purple_main_1.jpg'),(3132,88,0,449,'/m/s/ms05-purple_main_1.jpg'),(3133,89,0,449,'/m/s/ms05-purple_main_1.jpg'),(3134,73,0,449,'Helios EverCool&trade; Tee-XS-Purple'),(3135,106,0,450,'container2'),(3136,124,0,450,'0'),(3137,121,0,450,'helios-evercool-trade-tee-s-black'),(3138,87,0,450,'/m/s/ms05-black_main_1.jpg'),(3139,88,0,450,'/m/s/ms05-black_main_1.jpg'),(3140,89,0,450,'/m/s/ms05-black_main_1.jpg'),(3141,73,0,450,'Helios EverCool&trade; Tee-S-Black'),(3142,106,0,451,'container2'),(3143,124,0,451,'0'),(3144,121,0,451,'helios-evercool-trade-tee-s-blue'),(3145,87,0,451,'/m/s/ms05-blue_main_1.jpg'),(3146,88,0,451,'/m/s/ms05-blue_main_1.jpg'),(3147,89,0,451,'/m/s/ms05-blue_main_1.jpg'),(3148,73,0,451,'Helios EverCool&trade; Tee-S-Blue'),(3149,106,0,452,'container2'),(3150,124,0,452,'0'),(3151,121,0,452,'helios-evercool-trade-tee-s-purple'),(3152,87,0,452,'/m/s/ms05-purple_main_1.jpg'),(3153,88,0,452,'/m/s/ms05-purple_main_1.jpg'),(3154,89,0,452,'/m/s/ms05-purple_main_1.jpg'),(3155,73,0,452,'Helios EverCool&trade; Tee-S-Purple'),(3156,106,0,453,'container2'),(3157,124,0,453,'0'),(3158,121,0,453,'helios-evercool-trade-tee-m-black'),(3159,87,0,453,'/m/s/ms05-black_main_1.jpg'),(3160,88,0,453,'/m/s/ms05-black_main_1.jpg'),(3161,89,0,453,'/m/s/ms05-black_main_1.jpg'),(3162,73,0,453,'Helios EverCool&trade; Tee-M-Black'),(3163,106,0,454,'container2'),(3164,124,0,454,'0'),(3165,121,0,454,'helios-evercool-trade-tee-m-blue'),(3166,87,0,454,'/m/s/ms05-blue_main_1.jpg'),(3167,88,0,454,'/m/s/ms05-blue_main_1.jpg'),(3168,89,0,454,'/m/s/ms05-blue_main_1.jpg'),(3169,73,0,454,'Helios EverCool&trade; Tee-M-Blue'),(3170,106,0,455,'container2'),(3171,124,0,455,'0'),(3172,121,0,455,'helios-evercool-trade-tee-m-purple'),(3173,87,0,455,'/m/s/ms05-purple_main_1.jpg'),(3174,88,0,455,'/m/s/ms05-purple_main_1.jpg'),(3175,89,0,455,'/m/s/ms05-purple_main_1.jpg'),(3176,73,0,455,'Helios EverCool&trade; Tee-M-Purple'),(3177,106,0,456,'container2'),(3178,124,0,456,'0'),(3179,121,0,456,'helios-evercool-trade-tee-l-black'),(3180,87,0,456,'/m/s/ms05-black_main_1.jpg'),(3181,88,0,456,'/m/s/ms05-black_main_1.jpg'),(3182,89,0,456,'/m/s/ms05-black_main_1.jpg'),(3183,73,0,456,'Helios EverCool&trade; Tee-L-Black'),(3184,106,0,457,'container2'),(3185,124,0,457,'0'),(3186,121,0,457,'helios-evercool-trade-tee-l-blue'),(3187,87,0,457,'/m/s/ms05-blue_main_1.jpg'),(3188,88,0,457,'/m/s/ms05-blue_main_1.jpg'),(3189,89,0,457,'/m/s/ms05-blue_main_1.jpg'),(3190,73,0,457,'Helios EverCool&trade; Tee-L-Blue'),(3191,106,0,458,'container2'),(3192,124,0,458,'0'),(3193,121,0,458,'helios-evercool-trade-tee-l-purple'),(3194,87,0,458,'/m/s/ms05-purple_main_1.jpg'),(3195,88,0,458,'/m/s/ms05-purple_main_1.jpg'),(3196,89,0,458,'/m/s/ms05-purple_main_1.jpg'),(3197,73,0,458,'Helios EverCool&trade; Tee-L-Purple'),(3198,106,0,459,'container2'),(3199,124,0,459,'0'),(3200,121,0,459,'helios-evercool-trade-tee-xl-black'),(3201,87,0,459,'/m/s/ms05-black_main_1.jpg'),(3202,88,0,459,'/m/s/ms05-black_main_1.jpg'),(3203,89,0,459,'/m/s/ms05-black_main_1.jpg'),(3204,73,0,459,'Helios EverCool&trade; Tee-XL-Black'),(3205,106,0,460,'container2'),(3206,124,0,460,'0'),(3207,121,0,460,'helios-evercool-trade-tee-xl-blue'),(3208,87,0,460,'/m/s/ms05-blue_main_1.jpg'),(3209,88,0,460,'/m/s/ms05-blue_main_1.jpg'),(3210,89,0,460,'/m/s/ms05-blue_main_1.jpg'),(3211,73,0,460,'Helios EverCool&trade; Tee-XL-Blue'),(3212,106,0,461,'container2'),(3213,124,0,461,'0'),(3214,121,0,461,'helios-evercool-trade-tee-xl-purple'),(3215,87,0,461,'/m/s/ms05-purple_main_1.jpg'),(3216,88,0,461,'/m/s/ms05-purple_main_1.jpg'),(3217,89,0,461,'/m/s/ms05-purple_main_1.jpg'),(3218,73,0,461,'Helios EverCool&trade; Tee-XL-Purple'),(3219,106,0,462,'container2'),(3220,124,0,462,'0'),(3221,121,0,462,'helios-evercool-trade-tee'),(3222,87,0,462,'/m/s/ms05-blue_main_1.jpg'),(3223,88,0,462,'/m/s/ms05-blue_main_1.jpg'),(3224,89,0,462,'/m/s/ms05-blue_main_1.jpg'),(3225,73,0,462,'Helios EverCool&trade; Tee'),(3226,106,0,463,'container2'),(3227,124,0,463,'0'),(3228,121,0,463,'ryker-lumatech-trade-tee-crew-neck-xs-black'),(3229,87,0,463,'/m/s/ms09-black_main_1.jpg'),(3230,88,0,463,'/m/s/ms09-black_main_1.jpg'),(3231,89,0,463,'/m/s/ms09-black_main_1.jpg'),(3232,73,0,463,'Ryker LumaTech&trade; Tee (Crew-neck)-XS-Black'),(3233,106,0,464,'container2'),(3234,124,0,464,'0'),(3235,121,0,464,'ryker-lumatech-trade-tee-crew-neck-xs-blue'),(3236,87,0,464,'/m/s/ms09-blue_main_1.jpg'),(3237,88,0,464,'/m/s/ms09-blue_main_1.jpg'),(3238,89,0,464,'/m/s/ms09-blue_main_1.jpg'),(3239,73,0,464,'Ryker LumaTech&trade; Tee (Crew-neck)-XS-Blue'),(3240,106,0,465,'container2'),(3241,124,0,465,'0'),(3242,121,0,465,'ryker-lumatech-trade-tee-crew-neck-xs-red'),(3243,87,0,465,'/m/s/ms09-red_main_1.jpg'),(3244,88,0,465,'/m/s/ms09-red_main_1.jpg'),(3245,89,0,465,'/m/s/ms09-red_main_1.jpg'),(3246,73,0,465,'Ryker LumaTech&trade; Tee (Crew-neck)-XS-Red'),(3247,106,0,466,'container2'),(3248,124,0,466,'0'),(3249,121,0,466,'ryker-lumatech-trade-tee-crew-neck-s-black'),(3250,87,0,466,'/m/s/ms09-black_main_1.jpg'),(3251,88,0,466,'/m/s/ms09-black_main_1.jpg'),(3252,89,0,466,'/m/s/ms09-black_main_1.jpg'),(3253,73,0,466,'Ryker LumaTech&trade; Tee (Crew-neck)-S-Black'),(3254,106,0,467,'container2'),(3255,124,0,467,'0'),(3256,121,0,467,'ryker-lumatech-trade-tee-crew-neck-s-blue'),(3257,87,0,467,'/m/s/ms09-blue_main_1.jpg'),(3258,88,0,467,'/m/s/ms09-blue_main_1.jpg'),(3259,89,0,467,'/m/s/ms09-blue_main_1.jpg'),(3260,73,0,467,'Ryker LumaTech&trade; Tee (Crew-neck)-S-Blue'),(3261,106,0,468,'container2'),(3262,124,0,468,'0'),(3263,121,0,468,'ryker-lumatech-trade-tee-crew-neck-s-red'),(3264,87,0,468,'/m/s/ms09-red_main_1.jpg'),(3265,88,0,468,'/m/s/ms09-red_main_1.jpg'),(3266,89,0,468,'/m/s/ms09-red_main_1.jpg'),(3267,73,0,468,'Ryker LumaTech&trade; Tee (Crew-neck)-S-Red'),(3268,106,0,469,'container2'),(3269,124,0,469,'0'),(3270,121,0,469,'ryker-lumatech-trade-tee-crew-neck-m-black'),(3271,87,0,469,'/m/s/ms09-black_main_1.jpg'),(3272,88,0,469,'/m/s/ms09-black_main_1.jpg'),(3273,89,0,469,'/m/s/ms09-black_main_1.jpg'),(3274,73,0,469,'Ryker LumaTech&trade; Tee (Crew-neck)-M-Black'),(3275,106,0,470,'container2'),(3276,124,0,470,'0'),(3277,121,0,470,'ryker-lumatech-trade-tee-crew-neck-m-blue'),(3278,87,0,470,'/m/s/ms09-blue_main_1.jpg'),(3279,88,0,470,'/m/s/ms09-blue_main_1.jpg'),(3280,89,0,470,'/m/s/ms09-blue_main_1.jpg'),(3281,73,0,470,'Ryker LumaTech&trade; Tee (Crew-neck)-M-Blue'),(3282,106,0,471,'container2'),(3283,124,0,471,'0'),(3284,121,0,471,'ryker-lumatech-trade-tee-crew-neck-m-red'),(3285,87,0,471,'/m/s/ms09-red_main_1.jpg'),(3286,88,0,471,'/m/s/ms09-red_main_1.jpg'),(3287,89,0,471,'/m/s/ms09-red_main_1.jpg'),(3288,73,0,471,'Ryker LumaTech&trade; Tee (Crew-neck)-M-Red'),(3289,106,0,472,'container2'),(3290,124,0,472,'0'),(3291,121,0,472,'ryker-lumatech-trade-tee-crew-neck-l-black'),(3292,87,0,472,'/m/s/ms09-black_main_1.jpg'),(3293,88,0,472,'/m/s/ms09-black_main_1.jpg'),(3294,89,0,472,'/m/s/ms09-black_main_1.jpg'),(3295,73,0,472,'Ryker LumaTech&trade; Tee (Crew-neck)-L-Black'),(3296,106,0,473,'container2'),(3297,124,0,473,'0'),(3298,121,0,473,'ryker-lumatech-trade-tee-crew-neck-l-blue'),(3299,87,0,473,'/m/s/ms09-blue_main_1.jpg'),(3300,88,0,473,'/m/s/ms09-blue_main_1.jpg'),(3301,89,0,473,'/m/s/ms09-blue_main_1.jpg'),(3302,73,0,473,'Ryker LumaTech&trade; Tee (Crew-neck)-L-Blue'),(3303,106,0,474,'container2'),(3304,124,0,474,'0'),(3305,121,0,474,'ryker-lumatech-trade-tee-crew-neck-l-red'),(3306,87,0,474,'/m/s/ms09-red_main_1.jpg'),(3307,88,0,474,'/m/s/ms09-red_main_1.jpg'),(3308,89,0,474,'/m/s/ms09-red_main_1.jpg'),(3309,73,0,474,'Ryker LumaTech&trade; Tee (Crew-neck)-L-Red'),(3310,106,0,475,'container2'),(3311,124,0,475,'0'),(3312,121,0,475,'ryker-lumatech-trade-tee-crew-neck-xl-black'),(3313,87,0,475,'/m/s/ms09-black_main_1.jpg'),(3314,88,0,475,'/m/s/ms09-black_main_1.jpg'),(3315,89,0,475,'/m/s/ms09-black_main_1.jpg'),(3316,73,0,475,'Ryker LumaTech&trade; Tee (Crew-neck)-XL-Black'),(3317,106,0,476,'container2'),(3318,124,0,476,'0'),(3319,121,0,476,'ryker-lumatech-trade-tee-crew-neck-xl-blue'),(3320,87,0,476,'/m/s/ms09-blue_main_1.jpg'),(3321,88,0,476,'/m/s/ms09-blue_main_1.jpg'),(3322,89,0,476,'/m/s/ms09-blue_main_1.jpg'),(3323,73,0,476,'Ryker LumaTech&trade; Tee (Crew-neck)-XL-Blue'),(3324,106,0,477,'container2'),(3325,124,0,477,'0'),(3326,121,0,477,'ryker-lumatech-trade-tee-crew-neck-xl-red'),(3327,87,0,477,'/m/s/ms09-red_main_1.jpg'),(3328,88,0,477,'/m/s/ms09-red_main_1.jpg'),(3329,89,0,477,'/m/s/ms09-red_main_1.jpg'),(3330,73,0,477,'Ryker LumaTech&trade; Tee (Crew-neck)-XL-Red'),(3331,106,0,478,'container2'),(3332,124,0,478,'0'),(3333,121,0,478,'ryker-lumatech-trade-tee-crew-neck'),(3334,87,0,478,'/m/s/ms09-blue_main_1.jpg'),(3335,88,0,478,'/m/s/ms09-blue_main_1.jpg'),(3336,89,0,478,'/m/s/ms09-blue_main_1.jpg'),(3337,73,0,478,'Ryker LumaTech&trade; Tee (Crew-neck)'),(3338,106,0,479,'container2'),(3339,124,0,479,'0'),(3340,121,0,479,'atomic-endurance-running-tee-v-neck-xs-blue'),(3341,87,0,479,'/m/s/ms11-blue_main_1.jpg'),(3342,88,0,479,'/m/s/ms11-blue_main_1.jpg'),(3343,89,0,479,'/m/s/ms11-blue_main_1.jpg'),(3344,73,0,479,'Atomic Endurance Running Tee (V-neck)-XS-Blue'),(3345,106,0,480,'container2'),(3346,124,0,480,'0'),(3347,121,0,480,'atomic-endurance-running-tee-v-neck-xs-green'),(3348,87,0,480,'/m/s/ms11-green_main_1.jpg'),(3349,88,0,480,'/m/s/ms11-green_main_1.jpg'),(3350,89,0,480,'/m/s/ms11-green_main_1.jpg'),(3351,73,0,480,'Atomic Endurance Running Tee (V-neck)-XS-Green'),(3352,106,0,481,'container2'),(3353,124,0,481,'0'),(3354,121,0,481,'atomic-endurance-running-tee-v-neck-xs-yellow'),(3355,87,0,481,'/m/s/ms11-yellow_main_1.jpg'),(3356,88,0,481,'/m/s/ms11-yellow_main_1.jpg'),(3357,89,0,481,'/m/s/ms11-yellow_main_1.jpg'),(3358,73,0,481,'Atomic Endurance Running Tee (V-neck)-XS-Yellow'),(3359,106,0,482,'container2'),(3360,124,0,482,'0'),(3361,121,0,482,'atomic-endurance-running-tee-v-neck-s-blue'),(3362,87,0,482,'/m/s/ms11-blue_main_1.jpg'),(3363,88,0,482,'/m/s/ms11-blue_main_1.jpg'),(3364,89,0,482,'/m/s/ms11-blue_main_1.jpg'),(3365,73,0,482,'Atomic Endurance Running Tee (V-neck)-S-Blue'),(3366,106,0,483,'container2'),(3367,124,0,483,'0'),(3368,121,0,483,'atomic-endurance-running-tee-v-neck-s-green'),(3369,87,0,483,'/m/s/ms11-green_main_1.jpg'),(3370,88,0,483,'/m/s/ms11-green_main_1.jpg'),(3371,89,0,483,'/m/s/ms11-green_main_1.jpg'),(3372,73,0,483,'Atomic Endurance Running Tee (V-neck)-S-Green'),(3373,106,0,484,'container2'),(3374,124,0,484,'0'),(3375,121,0,484,'atomic-endurance-running-tee-v-neck-s-yellow'),(3376,87,0,484,'/m/s/ms11-yellow_main_1.jpg'),(3377,88,0,484,'/m/s/ms11-yellow_main_1.jpg'),(3378,89,0,484,'/m/s/ms11-yellow_main_1.jpg'),(3379,73,0,484,'Atomic Endurance Running Tee (V-neck)-S-Yellow'),(3380,106,0,485,'container2'),(3381,124,0,485,'0'),(3382,121,0,485,'atomic-endurance-running-tee-v-neck-m-blue'),(3383,87,0,485,'/m/s/ms11-blue_main_1.jpg'),(3384,88,0,485,'/m/s/ms11-blue_main_1.jpg'),(3385,89,0,485,'/m/s/ms11-blue_main_1.jpg'),(3386,73,0,485,'Atomic Endurance Running Tee (V-neck)-M-Blue'),(3387,106,0,486,'container2'),(3388,124,0,486,'0'),(3389,121,0,486,'atomic-endurance-running-tee-v-neck-m-green'),(3390,87,0,486,'/m/s/ms11-green_main_1.jpg'),(3391,88,0,486,'/m/s/ms11-green_main_1.jpg'),(3392,89,0,486,'/m/s/ms11-green_main_1.jpg'),(3393,73,0,486,'Atomic Endurance Running Tee (V-neck)-M-Green'),(3394,106,0,487,'container2'),(3395,124,0,487,'0'),(3396,121,0,487,'atomic-endurance-running-tee-v-neck-m-yellow'),(3397,87,0,487,'/m/s/ms11-yellow_main_1.jpg'),(3398,88,0,487,'/m/s/ms11-yellow_main_1.jpg'),(3399,89,0,487,'/m/s/ms11-yellow_main_1.jpg'),(3400,73,0,487,'Atomic Endurance Running Tee (V-neck)-M-Yellow'),(3401,106,0,488,'container2'),(3402,124,0,488,'0'),(3403,121,0,488,'atomic-endurance-running-tee-v-neck-l-blue'),(3404,87,0,488,'/m/s/ms11-blue_main_1.jpg'),(3405,88,0,488,'/m/s/ms11-blue_main_1.jpg'),(3406,89,0,488,'/m/s/ms11-blue_main_1.jpg'),(3407,73,0,488,'Atomic Endurance Running Tee (V-neck)-L-Blue'),(3408,106,0,489,'container2'),(3409,124,0,489,'0'),(3410,121,0,489,'atomic-endurance-running-tee-v-neck-l-green'),(3411,87,0,489,'/m/s/ms11-green_main_1.jpg'),(3412,88,0,489,'/m/s/ms11-green_main_1.jpg'),(3413,89,0,489,'/m/s/ms11-green_main_1.jpg'),(3414,73,0,489,'Atomic Endurance Running Tee (V-neck)-L-Green'),(3415,106,0,490,'container2'),(3416,124,0,490,'0'),(3417,121,0,490,'atomic-endurance-running-tee-v-neck-l-yellow'),(3418,87,0,490,'/m/s/ms11-yellow_main_1.jpg'),(3419,88,0,490,'/m/s/ms11-yellow_main_1.jpg'),(3420,89,0,490,'/m/s/ms11-yellow_main_1.jpg'),(3421,73,0,490,'Atomic Endurance Running Tee (V-neck)-L-Yellow'),(3422,106,0,491,'container2'),(3423,124,0,491,'0'),(3424,121,0,491,'atomic-endurance-running-tee-v-neck-xl-blue'),(3425,87,0,491,'/m/s/ms11-blue_main_1.jpg'),(3426,88,0,491,'/m/s/ms11-blue_main_1.jpg'),(3427,89,0,491,'/m/s/ms11-blue_main_1.jpg'),(3428,73,0,491,'Atomic Endurance Running Tee (V-neck)-XL-Blue'),(3429,106,0,492,'container2'),(3430,124,0,492,'0'),(3431,121,0,492,'atomic-endurance-running-tee-v-neck-xl-green'),(3432,87,0,492,'/m/s/ms11-green_main_1.jpg'),(3433,88,0,492,'/m/s/ms11-green_main_1.jpg'),(3434,89,0,492,'/m/s/ms11-green_main_1.jpg'),(3435,73,0,492,'Atomic Endurance Running Tee (V-neck)-XL-Green'),(3436,106,0,493,'container2'),(3437,124,0,493,'0'),(3438,121,0,493,'atomic-endurance-running-tee-v-neck-xl-yellow'),(3439,87,0,493,'/m/s/ms11-yellow_main_1.jpg'),(3440,88,0,493,'/m/s/ms11-yellow_main_1.jpg'),(3441,89,0,493,'/m/s/ms11-yellow_main_1.jpg'),(3442,73,0,493,'Atomic Endurance Running Tee (V-neck)-XL-Yellow'),(3443,106,0,494,'container2'),(3444,124,0,494,'0'),(3445,121,0,494,'atomic-endurance-running-tee-v-neck'),(3446,87,0,494,'/m/s/ms11-green_main_1.jpg'),(3447,88,0,494,'/m/s/ms11-green_main_1.jpg'),(3448,89,0,494,'/m/s/ms11-green_main_1.jpg'),(3449,73,0,494,'Atomic Endurance Running Tee (V-neck)'),(3450,106,0,495,'container2'),(3451,124,0,495,'0'),(3452,121,0,495,'atomic-endurance-running-tee-crew-neck-xs-black'),(3453,87,0,495,'/m/s/ms12-black_main_1.jpg'),(3454,88,0,495,'/m/s/ms12-black_main_1.jpg'),(3455,89,0,495,'/m/s/ms12-black_main_1.jpg'),(3456,73,0,495,'Atomic Endurance Running Tee (Crew-Neck)-XS-Black'),(3457,106,0,496,'container2'),(3458,124,0,496,'0'),(3459,121,0,496,'atomic-endurance-running-tee-crew-neck-xs-blue'),(3460,87,0,496,'/m/s/ms12-blue_main_1.jpg'),(3461,88,0,496,'/m/s/ms12-blue_main_1.jpg'),(3462,89,0,496,'/m/s/ms12-blue_main_1.jpg'),(3463,73,0,496,'Atomic Endurance Running Tee (Crew-Neck)-XS-Blue'),(3464,106,0,497,'container2'),(3465,124,0,497,'0'),(3466,121,0,497,'atomic-endurance-running-tee-crew-neck-xs-red'),(3467,87,0,497,'/m/s/ms12-red_main_1.jpg'),(3468,88,0,497,'/m/s/ms12-red_main_1.jpg'),(3469,89,0,497,'/m/s/ms12-red_main_1.jpg'),(3470,73,0,497,'Atomic Endurance Running Tee (Crew-Neck)-XS-Red'),(3471,106,0,498,'container2'),(3472,124,0,498,'0'),(3473,121,0,498,'atomic-endurance-running-tee-crew-neck-s-black'),(3474,87,0,498,'/m/s/ms12-black_main_1.jpg'),(3475,88,0,498,'/m/s/ms12-black_main_1.jpg'),(3476,89,0,498,'/m/s/ms12-black_main_1.jpg'),(3477,73,0,498,'Atomic Endurance Running Tee (Crew-Neck)-S-Black'),(3478,106,0,499,'container2'),(3479,124,0,499,'0'),(3480,121,0,499,'atomic-endurance-running-tee-crew-neck-s-blue'),(3481,87,0,499,'/m/s/ms12-blue_main_1.jpg'),(3482,88,0,499,'/m/s/ms12-blue_main_1.jpg'),(3483,89,0,499,'/m/s/ms12-blue_main_1.jpg'),(3484,73,0,499,'Atomic Endurance Running Tee (Crew-Neck)-S-Blue'),(3485,106,0,500,'container2'),(3486,124,0,500,'0'),(3487,121,0,500,'atomic-endurance-running-tee-crew-neck-s-red'),(3488,87,0,500,'/m/s/ms12-red_main_1.jpg'),(3489,88,0,500,'/m/s/ms12-red_main_1.jpg'),(3490,89,0,500,'/m/s/ms12-red_main_1.jpg'),(3491,73,0,500,'Atomic Endurance Running Tee (Crew-Neck)-S-Red'),(3492,106,0,501,'container2'),(3493,124,0,501,'0'),(3494,121,0,501,'atomic-endurance-running-tee-crew-neck-m-black'),(3495,87,0,501,'/m/s/ms12-black_main_1.jpg'),(3496,88,0,501,'/m/s/ms12-black_main_1.jpg'),(3497,89,0,501,'/m/s/ms12-black_main_1.jpg'),(3498,73,0,501,'Atomic Endurance Running Tee (Crew-Neck)-M-Black'),(3499,106,0,502,'container2'),(3500,124,0,502,'0'),(3501,121,0,502,'atomic-endurance-running-tee-crew-neck-m-blue'),(3502,87,0,502,'/m/s/ms12-blue_main_1.jpg'),(3503,88,0,502,'/m/s/ms12-blue_main_1.jpg'),(3504,89,0,502,'/m/s/ms12-blue_main_1.jpg'),(3505,73,0,502,'Atomic Endurance Running Tee (Crew-Neck)-M-Blue'),(3506,106,0,503,'container2'),(3507,124,0,503,'0'),(3508,121,0,503,'atomic-endurance-running-tee-crew-neck-m-red'),(3509,87,0,503,'/m/s/ms12-red_main_1.jpg'),(3510,88,0,503,'/m/s/ms12-red_main_1.jpg'),(3511,89,0,503,'/m/s/ms12-red_main_1.jpg'),(3512,73,0,503,'Atomic Endurance Running Tee (Crew-Neck)-M-Red'),(3513,106,0,504,'container2'),(3514,124,0,504,'0'),(3515,121,0,504,'atomic-endurance-running-tee-crew-neck-l-black'),(3516,87,0,504,'/m/s/ms12-black_main_1.jpg'),(3517,88,0,504,'/m/s/ms12-black_main_1.jpg'),(3518,89,0,504,'/m/s/ms12-black_main_1.jpg'),(3519,73,0,504,'Atomic Endurance Running Tee (Crew-Neck)-L-Black'),(3520,106,0,505,'container2'),(3521,124,0,505,'0'),(3522,121,0,505,'atomic-endurance-running-tee-crew-neck-l-blue'),(3523,87,0,505,'/m/s/ms12-blue_main_1.jpg'),(3524,88,0,505,'/m/s/ms12-blue_main_1.jpg'),(3525,89,0,505,'/m/s/ms12-blue_main_1.jpg'),(3526,73,0,505,'Atomic Endurance Running Tee (Crew-Neck)-L-Blue'),(3527,106,0,506,'container2'),(3528,124,0,506,'0'),(3529,121,0,506,'atomic-endurance-running-tee-crew-neck-l-red'),(3530,87,0,506,'/m/s/ms12-red_main_1.jpg'),(3531,88,0,506,'/m/s/ms12-red_main_1.jpg'),(3532,89,0,506,'/m/s/ms12-red_main_1.jpg'),(3533,73,0,506,'Atomic Endurance Running Tee (Crew-Neck)-L-Red'),(3534,106,0,507,'container2'),(3535,124,0,507,'0'),(3536,121,0,507,'atomic-endurance-running-tee-crew-neck-xl-black'),(3537,87,0,507,'/m/s/ms12-black_main_1.jpg'),(3538,88,0,507,'/m/s/ms12-black_main_1.jpg'),(3539,89,0,507,'/m/s/ms12-black_main_1.jpg'),(3540,73,0,507,'Atomic Endurance Running Tee (Crew-Neck)-XL-Black'),(3541,106,0,508,'container2'),(3542,124,0,508,'0'),(3543,121,0,508,'atomic-endurance-running-tee-crew-neck-xl-blue'),(3544,87,0,508,'/m/s/ms12-blue_main_1.jpg'),(3545,88,0,508,'/m/s/ms12-blue_main_1.jpg'),(3546,89,0,508,'/m/s/ms12-blue_main_1.jpg'),(3547,73,0,508,'Atomic Endurance Running Tee (Crew-Neck)-XL-Blue'),(3548,106,0,509,'container2'),(3549,124,0,509,'0'),(3550,121,0,509,'atomic-endurance-running-tee-crew-neck-xl-red'),(3551,87,0,509,'/m/s/ms12-red_main_1.jpg'),(3552,88,0,509,'/m/s/ms12-red_main_1.jpg'),(3553,89,0,509,'/m/s/ms12-red_main_1.jpg'),(3554,73,0,509,'Atomic Endurance Running Tee (Crew-Neck)-XL-Red'),(3555,106,0,510,'container2'),(3556,124,0,510,'0'),(3557,121,0,510,'atomic-endurance-running-tee-crew-neck'),(3558,87,0,510,'/m/s/ms12-red_main_1.jpg'),(3559,88,0,510,'/m/s/ms12-red_main_1.jpg'),(3560,89,0,510,'/m/s/ms12-red_main_1.jpg'),(3561,73,0,510,'Atomic Endurance Running Tee (Crew-Neck)'),(3562,106,0,511,'container2'),(3563,124,0,511,'0'),(3564,121,0,511,'balboa-persistence-tee-xs-gray'),(3565,87,0,511,'/m/s/ms03-gray_main_1.jpg'),(3566,88,0,511,'/m/s/ms03-gray_main_1.jpg'),(3567,89,0,511,'/m/s/ms03-gray_main_1.jpg'),(3568,73,0,511,'Balboa Persistence Tee-XS-Gray'),(3569,106,0,512,'container2'),(3570,124,0,512,'0'),(3571,121,0,512,'balboa-persistence-tee-xs-green'),(3572,87,0,512,'/m/s/ms03-green_main_1.jpg'),(3573,88,0,512,'/m/s/ms03-green_main_1.jpg'),(3574,89,0,512,'/m/s/ms03-green_main_1.jpg'),(3575,73,0,512,'Balboa Persistence Tee-XS-Green'),(3576,106,0,513,'container2'),(3577,124,0,513,'0'),(3578,121,0,513,'balboa-persistence-tee-xs-orange'),(3579,87,0,513,'/m/s/ms03-orange_main_1.jpg'),(3580,88,0,513,'/m/s/ms03-orange_main_1.jpg'),(3581,89,0,513,'/m/s/ms03-orange_main_1.jpg'),(3582,73,0,513,'Balboa Persistence Tee-XS-Orange'),(3583,106,0,514,'container2'),(3584,124,0,514,'0'),(3585,121,0,514,'balboa-persistence-tee-s-gray'),(3586,87,0,514,'/m/s/ms03-gray_main_1.jpg'),(3587,88,0,514,'/m/s/ms03-gray_main_1.jpg'),(3588,89,0,514,'/m/s/ms03-gray_main_1.jpg'),(3589,73,0,514,'Balboa Persistence Tee-S-Gray'),(3590,106,0,515,'container2'),(3591,124,0,515,'0'),(3592,121,0,515,'balboa-persistence-tee-s-green'),(3593,87,0,515,'/m/s/ms03-green_main_1.jpg'),(3594,88,0,515,'/m/s/ms03-green_main_1.jpg'),(3595,89,0,515,'/m/s/ms03-green_main_1.jpg'),(3596,73,0,515,'Balboa Persistence Tee-S-Green'),(3597,106,0,516,'container2'),(3598,124,0,516,'0'),(3599,121,0,516,'balboa-persistence-tee-s-orange'),(3600,87,0,516,'/m/s/ms03-orange_main_1.jpg'),(3601,88,0,516,'/m/s/ms03-orange_main_1.jpg'),(3602,89,0,516,'/m/s/ms03-orange_main_1.jpg'),(3603,73,0,516,'Balboa Persistence Tee-S-Orange'),(3604,106,0,517,'container2'),(3605,124,0,517,'0'),(3606,121,0,517,'balboa-persistence-tee-m-gray'),(3607,87,0,517,'/m/s/ms03-gray_main_1.jpg'),(3608,88,0,517,'/m/s/ms03-gray_main_1.jpg'),(3609,89,0,517,'/m/s/ms03-gray_main_1.jpg'),(3610,73,0,517,'Balboa Persistence Tee-M-Gray'),(3611,106,0,518,'container2'),(3612,124,0,518,'0'),(3613,121,0,518,'balboa-persistence-tee-m-green'),(3614,87,0,518,'/m/s/ms03-green_main_1.jpg'),(3615,88,0,518,'/m/s/ms03-green_main_1.jpg'),(3616,89,0,518,'/m/s/ms03-green_main_1.jpg'),(3617,73,0,518,'Balboa Persistence Tee-M-Green'),(3618,106,0,519,'container2'),(3619,124,0,519,'0'),(3620,121,0,519,'balboa-persistence-tee-m-orange'),(3621,87,0,519,'/m/s/ms03-orange_main_1.jpg'),(3622,88,0,519,'/m/s/ms03-orange_main_1.jpg'),(3623,89,0,519,'/m/s/ms03-orange_main_1.jpg'),(3624,73,0,519,'Balboa Persistence Tee-M-Orange'),(3625,106,0,520,'container2'),(3626,124,0,520,'0'),(3627,121,0,520,'balboa-persistence-tee-l-gray'),(3628,87,0,520,'/m/s/ms03-gray_main_1.jpg'),(3629,88,0,520,'/m/s/ms03-gray_main_1.jpg'),(3630,89,0,520,'/m/s/ms03-gray_main_1.jpg'),(3631,73,0,520,'Balboa Persistence Tee-L-Gray'),(3632,106,0,521,'container2'),(3633,124,0,521,'0'),(3634,121,0,521,'balboa-persistence-tee-l-green'),(3635,87,0,521,'/m/s/ms03-green_main_1.jpg'),(3636,88,0,521,'/m/s/ms03-green_main_1.jpg'),(3637,89,0,521,'/m/s/ms03-green_main_1.jpg'),(3638,73,0,521,'Balboa Persistence Tee-L-Green'),(3639,106,0,522,'container2'),(3640,124,0,522,'0'),(3641,121,0,522,'balboa-persistence-tee-l-orange'),(3642,87,0,522,'/m/s/ms03-orange_main_1.jpg'),(3643,88,0,522,'/m/s/ms03-orange_main_1.jpg'),(3644,89,0,522,'/m/s/ms03-orange_main_1.jpg'),(3645,73,0,522,'Balboa Persistence Tee-L-Orange'),(3646,106,0,523,'container2'),(3647,124,0,523,'0'),(3648,121,0,523,'balboa-persistence-tee-xl-gray'),(3649,87,0,523,'/m/s/ms03-gray_main_1.jpg'),(3650,88,0,523,'/m/s/ms03-gray_main_1.jpg'),(3651,89,0,523,'/m/s/ms03-gray_main_1.jpg'),(3652,73,0,523,'Balboa Persistence Tee-XL-Gray'),(3653,106,0,524,'container2'),(3654,124,0,524,'0'),(3655,121,0,524,'balboa-persistence-tee-xl-green'),(3656,87,0,524,'/m/s/ms03-green_main_1.jpg'),(3657,88,0,524,'/m/s/ms03-green_main_1.jpg'),(3658,89,0,524,'/m/s/ms03-green_main_1.jpg'),(3659,73,0,524,'Balboa Persistence Tee-XL-Green'),(3660,106,0,525,'container2'),(3661,124,0,525,'0'),(3662,121,0,525,'balboa-persistence-tee-xl-orange'),(3663,87,0,525,'/m/s/ms03-orange_main_1.jpg'),(3664,88,0,525,'/m/s/ms03-orange_main_1.jpg'),(3665,89,0,525,'/m/s/ms03-orange_main_1.jpg'),(3666,73,0,525,'Balboa Persistence Tee-XL-Orange'),(3667,106,0,526,'container2'),(3668,124,0,526,'0'),(3669,121,0,526,'balboa-persistence-tee'),(3670,87,0,526,'/m/s/ms03-black_main_1.jpg'),(3671,88,0,526,'/m/s/ms03-black_main_1.jpg'),(3672,89,0,526,'/m/s/ms03-black_main_1.jpg'),(3673,73,0,526,'Balboa Persistence Tee'),(3674,106,0,527,'container2'),(3675,124,0,527,'0'),(3676,121,0,527,'zoltan-gym-tee-xs-blue'),(3677,87,0,527,'/m/s/ms06-blue_main_1.jpg'),(3678,88,0,527,'/m/s/ms06-blue_main_1.jpg'),(3679,89,0,527,'/m/s/ms06-blue_main_1.jpg'),(3680,73,0,527,'Zoltan Gym Tee-XS-Blue'),(3681,106,0,528,'container2'),(3682,124,0,528,'0'),(3683,121,0,528,'zoltan-gym-tee-xs-green'),(3684,87,0,528,'/m/s/ms06-green_main_1.jpg'),(3685,88,0,528,'/m/s/ms06-green_main_1.jpg'),(3686,89,0,528,'/m/s/ms06-green_main_1.jpg'),(3687,73,0,528,'Zoltan Gym Tee-XS-Green'),(3688,106,0,529,'container2'),(3689,124,0,529,'0'),(3690,121,0,529,'zoltan-gym-tee-xs-yellow'),(3691,87,0,529,'/m/s/ms06-yellow_main_1.jpg'),(3692,88,0,529,'/m/s/ms06-yellow_main_1.jpg'),(3693,89,0,529,'/m/s/ms06-yellow_main_1.jpg'),(3694,73,0,529,'Zoltan Gym Tee-XS-Yellow'),(3695,106,0,530,'container2'),(3696,124,0,530,'0'),(3697,121,0,530,'zoltan-gym-tee-s-blue'),(3698,87,0,530,'/m/s/ms06-blue_main_1.jpg'),(3699,88,0,530,'/m/s/ms06-blue_main_1.jpg'),(3700,89,0,530,'/m/s/ms06-blue_main_1.jpg'),(3701,73,0,530,'Zoltan Gym Tee-S-Blue'),(3702,106,0,531,'container2'),(3703,124,0,531,'0'),(3704,121,0,531,'zoltan-gym-tee-s-green'),(3705,87,0,531,'/m/s/ms06-green_main_1.jpg'),(3706,88,0,531,'/m/s/ms06-green_main_1.jpg'),(3707,89,0,531,'/m/s/ms06-green_main_1.jpg'),(3708,73,0,531,'Zoltan Gym Tee-S-Green'),(3709,106,0,532,'container2'),(3710,124,0,532,'0'),(3711,121,0,532,'zoltan-gym-tee-s-yellow'),(3712,87,0,532,'/m/s/ms06-yellow_main_1.jpg'),(3713,88,0,532,'/m/s/ms06-yellow_main_1.jpg'),(3714,89,0,532,'/m/s/ms06-yellow_main_1.jpg'),(3715,73,0,532,'Zoltan Gym Tee-S-Yellow'),(3716,106,0,533,'container2'),(3717,124,0,533,'0'),(3718,121,0,533,'zoltan-gym-tee-m-blue'),(3719,87,0,533,'/m/s/ms06-blue_main_1.jpg'),(3720,88,0,533,'/m/s/ms06-blue_main_1.jpg'),(3721,89,0,533,'/m/s/ms06-blue_main_1.jpg'),(3722,73,0,533,'Zoltan Gym Tee-M-Blue'),(3723,106,0,534,'container2'),(3724,124,0,534,'0'),(3725,121,0,534,'zoltan-gym-tee-m-green'),(3726,87,0,534,'/m/s/ms06-green_main_1.jpg'),(3727,88,0,534,'/m/s/ms06-green_main_1.jpg'),(3728,89,0,534,'/m/s/ms06-green_main_1.jpg'),(3729,73,0,534,'Zoltan Gym Tee-M-Green'),(3730,106,0,535,'container2'),(3731,124,0,535,'0'),(3732,121,0,535,'zoltan-gym-tee-m-yellow'),(3733,87,0,535,'/m/s/ms06-yellow_main_1.jpg'),(3734,88,0,535,'/m/s/ms06-yellow_main_1.jpg'),(3735,89,0,535,'/m/s/ms06-yellow_main_1.jpg'),(3736,73,0,535,'Zoltan Gym Tee-M-Yellow'),(3737,106,0,536,'container2'),(3738,124,0,536,'0'),(3739,121,0,536,'zoltan-gym-tee-l-blue'),(3740,87,0,536,'/m/s/ms06-blue_main_1.jpg'),(3741,88,0,536,'/m/s/ms06-blue_main_1.jpg'),(3742,89,0,536,'/m/s/ms06-blue_main_1.jpg'),(3743,73,0,536,'Zoltan Gym Tee-L-Blue'),(3744,106,0,537,'container2'),(3745,124,0,537,'0'),(3746,121,0,537,'zoltan-gym-tee-l-green'),(3747,87,0,537,'/m/s/ms06-green_main_1.jpg'),(3748,88,0,537,'/m/s/ms06-green_main_1.jpg'),(3749,89,0,537,'/m/s/ms06-green_main_1.jpg'),(3750,73,0,537,'Zoltan Gym Tee-L-Green'),(3751,106,0,538,'container2'),(3752,124,0,538,'0'),(3753,121,0,538,'zoltan-gym-tee-l-yellow'),(3754,87,0,538,'/m/s/ms06-yellow_main_1.jpg'),(3755,88,0,538,'/m/s/ms06-yellow_main_1.jpg'),(3756,89,0,538,'/m/s/ms06-yellow_main_1.jpg'),(3757,73,0,538,'Zoltan Gym Tee-L-Yellow'),(3758,106,0,539,'container2'),(3759,124,0,539,'0'),(3760,121,0,539,'zoltan-gym-tee-xl-blue'),(3761,87,0,539,'/m/s/ms06-blue_main_1.jpg'),(3762,88,0,539,'/m/s/ms06-blue_main_1.jpg'),(3763,89,0,539,'/m/s/ms06-blue_main_1.jpg'),(3764,73,0,539,'Zoltan Gym Tee-XL-Blue'),(3765,106,0,540,'container2'),(3766,124,0,540,'0'),(3767,121,0,540,'zoltan-gym-tee-xl-green'),(3768,87,0,540,'/m/s/ms06-green_main_1.jpg'),(3769,88,0,540,'/m/s/ms06-green_main_1.jpg'),(3770,89,0,540,'/m/s/ms06-green_main_1.jpg'),(3771,73,0,540,'Zoltan Gym Tee-XL-Green'),(3772,106,0,541,'container2'),(3773,124,0,541,'0'),(3774,121,0,541,'zoltan-gym-tee-xl-yellow'),(3775,87,0,541,'/m/s/ms06-yellow_main_1.jpg'),(3776,88,0,541,'/m/s/ms06-yellow_main_1.jpg'),(3777,89,0,541,'/m/s/ms06-yellow_main_1.jpg'),(3778,73,0,541,'Zoltan Gym Tee-XL-Yellow'),(3779,106,0,542,'container2'),(3780,124,0,542,'0'),(3781,121,0,542,'zoltan-gym-tee'),(3782,87,0,542,'/m/s/ms06-blue_main_1.jpg'),(3783,88,0,542,'/m/s/ms06-blue_main_1.jpg'),(3784,89,0,542,'/m/s/ms06-blue_main_1.jpg'),(3785,73,0,542,'Zoltan Gym Tee'),(3786,106,0,543,'container2'),(3787,124,0,543,'0'),(3788,121,0,543,'aero-daily-fitness-tee-xs-black'),(3789,87,0,543,'/m/s/ms01-black_main_1.jpg'),(3790,88,0,543,'/m/s/ms01-black_main_1.jpg'),(3791,89,0,543,'/m/s/ms01-black_main_1.jpg'),(3792,73,0,543,'Aero Daily Fitness Tee-XS-Black'),(3793,106,0,544,'container2'),(3794,124,0,544,'0'),(3795,121,0,544,'aero-daily-fitness-tee-xs-brown'),(3796,87,0,544,'/m/s/ms01-brown_main_1.jpg'),(3797,88,0,544,'/m/s/ms01-brown_main_1.jpg'),(3798,89,0,544,'/m/s/ms01-brown_main_1.jpg'),(3799,73,0,544,'Aero Daily Fitness Tee-XS-Brown'),(3800,106,0,545,'container2'),(3801,124,0,545,'0'),(3802,121,0,545,'aero-daily-fitness-tee-xs-yellow'),(3803,87,0,545,'/m/s/ms01-yellow_main_1.jpg'),(3804,88,0,545,'/m/s/ms01-yellow_main_1.jpg'),(3805,89,0,545,'/m/s/ms01-yellow_main_1.jpg'),(3806,73,0,545,'Aero Daily Fitness Tee-XS-Yellow'),(3807,106,0,546,'container2'),(3808,124,0,546,'0'),(3809,121,0,546,'aero-daily-fitness-tee-s-black'),(3810,87,0,546,'/m/s/ms01-black_main_1.jpg'),(3811,88,0,546,'/m/s/ms01-black_main_1.jpg'),(3812,89,0,546,'/m/s/ms01-black_main_1.jpg'),(3813,73,0,546,'Aero Daily Fitness Tee-S-Black'),(3814,106,0,547,'container2'),(3815,124,0,547,'0'),(3816,121,0,547,'aero-daily-fitness-tee-s-brown'),(3817,87,0,547,'/m/s/ms01-brown_main_2.jpg'),(3818,88,0,547,'/m/s/ms01-brown_main_2.jpg'),(3819,89,0,547,'/m/s/ms01-brown_main_2.jpg'),(3820,73,0,547,'Aero Daily Fitness Tee-S-Brown'),(3821,106,0,548,'container2'),(3822,124,0,548,'0'),(3823,121,0,548,'aero-daily-fitness-tee-s-yellow'),(3824,87,0,548,'/m/s/ms01-yellow_main_2.jpg'),(3825,88,0,548,'/m/s/ms01-yellow_main_2.jpg'),(3826,89,0,548,'/m/s/ms01-yellow_main_2.jpg'),(3827,73,0,548,'Aero Daily Fitness Tee-S-Yellow'),(3828,106,0,549,'container2'),(3829,124,0,549,'0'),(3830,121,0,549,'aero-daily-fitness-tee-m-black'),(3831,87,0,549,'/m/s/ms01-black_main_2.jpg'),(3832,88,0,549,'/m/s/ms01-black_main_2.jpg'),(3833,89,0,549,'/m/s/ms01-black_main_2.jpg'),(3834,73,0,549,'Aero Daily Fitness Tee-M-Black'),(3835,106,0,550,'container2'),(3836,124,0,550,'0'),(3837,121,0,550,'aero-daily-fitness-tee-m-brown'),(3838,87,0,550,'/m/s/ms01-brown_main_2.jpg'),(3839,88,0,550,'/m/s/ms01-brown_main_2.jpg'),(3840,89,0,550,'/m/s/ms01-brown_main_2.jpg'),(3841,73,0,550,'Aero Daily Fitness Tee-M-Brown'),(3842,106,0,551,'container2'),(3843,124,0,551,'0'),(3844,121,0,551,'aero-daily-fitness-tee-m-yellow'),(3845,87,0,551,'/m/s/ms01-yellow_main_2.jpg'),(3846,88,0,551,'/m/s/ms01-yellow_main_2.jpg'),(3847,89,0,551,'/m/s/ms01-yellow_main_2.jpg'),(3848,73,0,551,'Aero Daily Fitness Tee-M-Yellow'),(3849,106,0,552,'container2'),(3850,124,0,552,'0'),(3851,121,0,552,'aero-daily-fitness-tee-l-black'),(3852,87,0,552,'/m/s/ms01-black_main_2.jpg'),(3853,88,0,552,'/m/s/ms01-black_main_2.jpg'),(3854,89,0,552,'/m/s/ms01-black_main_2.jpg'),(3855,73,0,552,'Aero Daily Fitness Tee-L-Black'),(3856,106,0,553,'container2'),(3857,124,0,553,'0'),(3858,121,0,553,'aero-daily-fitness-tee-l-brown'),(3859,87,0,553,'/m/s/ms01-brown_main_2.jpg'),(3860,88,0,553,'/m/s/ms01-brown_main_2.jpg'),(3861,89,0,553,'/m/s/ms01-brown_main_2.jpg'),(3862,73,0,553,'Aero Daily Fitness Tee-L-Brown'),(3863,106,0,554,'container2'),(3864,124,0,554,'0'),(3865,121,0,554,'aero-daily-fitness-tee-l-yellow'),(3866,87,0,554,'/m/s/ms01-yellow_main_2.jpg'),(3867,88,0,554,'/m/s/ms01-yellow_main_2.jpg'),(3868,89,0,554,'/m/s/ms01-yellow_main_2.jpg'),(3869,73,0,554,'Aero Daily Fitness Tee-L-Yellow'),(3870,106,0,555,'container2'),(3871,124,0,555,'0'),(3872,121,0,555,'aero-daily-fitness-tee-xl-black'),(3873,87,0,555,'/m/s/ms01-black_main_2.jpg'),(3874,88,0,555,'/m/s/ms01-black_main_2.jpg'),(3875,89,0,555,'/m/s/ms01-black_main_2.jpg'),(3876,73,0,555,'Aero Daily Fitness Tee-XL-Black'),(3877,106,0,556,'container2'),(3878,124,0,556,'0'),(3879,121,0,556,'aero-daily-fitness-tee-xl-brown'),(3880,87,0,556,'/m/s/ms01-brown_main_2.jpg'),(3881,88,0,556,'/m/s/ms01-brown_main_2.jpg'),(3882,89,0,556,'/m/s/ms01-brown_main_2.jpg'),(3883,73,0,556,'Aero Daily Fitness Tee-XL-Brown'),(3884,106,0,557,'container2'),(3885,124,0,557,'0'),(3886,121,0,557,'aero-daily-fitness-tee-xl-yellow'),(3887,87,0,557,'/m/s/ms01-yellow_main_2.jpg'),(3888,88,0,557,'/m/s/ms01-yellow_main_2.jpg'),(3889,89,0,557,'/m/s/ms01-yellow_main_2.jpg'),(3890,73,0,557,'Aero Daily Fitness Tee-XL-Yellow'),(3891,106,0,558,'container2'),(3892,124,0,558,'0'),(3893,121,0,558,'aero-daily-fitness-tee'),(3894,87,0,558,'/m/s/ms01-blue_main_1.jpg'),(3895,88,0,558,'/m/s/ms01-blue_main_1.jpg'),(3896,89,0,558,'/m/s/ms01-blue_main_1.jpg'),(3897,73,0,558,'Aero Daily Fitness Tee'),(3898,106,0,559,'container2'),(3899,124,0,559,'0'),(3900,121,0,559,'ryker-lumatech-trade-tee-v-neck-xs-black'),(3901,87,0,559,'/m/s/ms02-black_main_1.jpg'),(3902,88,0,559,'/m/s/ms02-black_main_1.jpg'),(3903,89,0,559,'/m/s/ms02-black_main_1.jpg'),(3904,73,0,559,'Ryker LumaTech&trade; Tee (V-neck)-XS-Black'),(3905,106,0,560,'container2'),(3906,124,0,560,'0'),(3907,121,0,560,'ryker-lumatech-trade-tee-v-neck-xs-blue'),(3908,87,0,560,'/m/s/ms02-blue_main_1.jpg'),(3909,88,0,560,'/m/s/ms02-blue_main_1.jpg'),(3910,89,0,560,'/m/s/ms02-blue_main_1.jpg'),(3911,73,0,560,'Ryker LumaTech&trade; Tee (V-neck)-XS-Blue'),(3912,106,0,561,'container2'),(3913,124,0,561,'0'),(3914,121,0,561,'ryker-lumatech-trade-tee-v-neck-xs-gray'),(3915,87,0,561,'/m/s/ms02-gray_main_1.jpg'),(3916,88,0,561,'/m/s/ms02-gray_main_1.jpg'),(3917,89,0,561,'/m/s/ms02-gray_main_1.jpg'),(3918,73,0,561,'Ryker LumaTech&trade; Tee (V-neck)-XS-Gray'),(3919,106,0,562,'container2'),(3920,124,0,562,'0'),(3921,121,0,562,'ryker-lumatech-trade-tee-v-neck-s-black'),(3922,87,0,562,'/m/s/ms02-black_main_1.jpg'),(3923,88,0,562,'/m/s/ms02-black_main_1.jpg'),(3924,89,0,562,'/m/s/ms02-black_main_1.jpg'),(3925,73,0,562,'Ryker LumaTech&trade; Tee (V-neck)-S-Black'),(3926,106,0,563,'container2'),(3927,124,0,563,'0'),(3928,121,0,563,'ryker-lumatech-trade-tee-v-neck-s-blue'),(3929,87,0,563,'/m/s/ms02-blue_main_1.jpg'),(3930,88,0,563,'/m/s/ms02-blue_main_1.jpg'),(3931,89,0,563,'/m/s/ms02-blue_main_1.jpg'),(3932,73,0,563,'Ryker LumaTech&trade; Tee (V-neck)-S-Blue'),(3933,106,0,564,'container2'),(3934,124,0,564,'0'),(3935,121,0,564,'ryker-lumatech-trade-tee-v-neck-s-gray'),(3936,87,0,564,'/m/s/ms02-gray_main_1.jpg'),(3937,88,0,564,'/m/s/ms02-gray_main_1.jpg'),(3938,89,0,564,'/m/s/ms02-gray_main_1.jpg'),(3939,73,0,564,'Ryker LumaTech&trade; Tee (V-neck)-S-Gray'),(3940,106,0,565,'container2'),(3941,124,0,565,'0'),(3942,121,0,565,'ryker-lumatech-trade-tee-v-neck-m-black'),(3943,87,0,565,'/m/s/ms02-black_main_1.jpg'),(3944,88,0,565,'/m/s/ms02-black_main_1.jpg'),(3945,89,0,565,'/m/s/ms02-black_main_1.jpg'),(3946,73,0,565,'Ryker LumaTech&trade; Tee (V-neck)-M-Black'),(3947,106,0,566,'container2'),(3948,124,0,566,'0'),(3949,121,0,566,'ryker-lumatech-trade-tee-v-neck-m-blue'),(3950,87,0,566,'/m/s/ms02-blue_main_1.jpg'),(3951,88,0,566,'/m/s/ms02-blue_main_1.jpg'),(3952,89,0,566,'/m/s/ms02-blue_main_1.jpg'),(3953,73,0,566,'Ryker LumaTech&trade; Tee (V-neck)-M-Blue'),(3954,106,0,567,'container2'),(3955,124,0,567,'0'),(3956,121,0,567,'ryker-lumatech-trade-tee-v-neck-m-gray'),(3957,87,0,567,'/m/s/ms02-gray_main_1.jpg'),(3958,88,0,567,'/m/s/ms02-gray_main_1.jpg'),(3959,89,0,567,'/m/s/ms02-gray_main_1.jpg'),(3960,73,0,567,'Ryker LumaTech&trade; Tee (V-neck)-M-Gray'),(3961,106,0,568,'container2'),(3962,124,0,568,'0'),(3963,121,0,568,'ryker-lumatech-trade-tee-v-neck-l-black'),(3964,87,0,568,'/m/s/ms02-black_main_1.jpg'),(3965,88,0,568,'/m/s/ms02-black_main_1.jpg'),(3966,89,0,568,'/m/s/ms02-black_main_1.jpg'),(3967,73,0,568,'Ryker LumaTech&trade; Tee (V-neck)-L-Black'),(3968,106,0,569,'container2'),(3969,124,0,569,'0'),(3970,121,0,569,'ryker-lumatech-trade-tee-v-neck-l-blue'),(3971,87,0,569,'/m/s/ms02-blue_main_1.jpg'),(3972,88,0,569,'/m/s/ms02-blue_main_1.jpg'),(3973,89,0,569,'/m/s/ms02-blue_main_1.jpg'),(3974,73,0,569,'Ryker LumaTech&trade; Tee (V-neck)-L-Blue'),(3975,106,0,570,'container2'),(3976,124,0,570,'0'),(3977,121,0,570,'ryker-lumatech-trade-tee-v-neck-l-gray'),(3978,87,0,570,'/m/s/ms02-gray_main_1.jpg'),(3979,88,0,570,'/m/s/ms02-gray_main_1.jpg'),(3980,89,0,570,'/m/s/ms02-gray_main_1.jpg'),(3981,73,0,570,'Ryker LumaTech&trade; Tee (V-neck)-L-Gray'),(3982,106,0,571,'container2'),(3983,124,0,571,'0'),(3984,121,0,571,'ryker-lumatech-trade-tee-v-neck-xl-black'),(3985,87,0,571,'/m/s/ms02-black_main_1.jpg'),(3986,88,0,571,'/m/s/ms02-black_main_1.jpg'),(3987,89,0,571,'/m/s/ms02-black_main_1.jpg'),(3988,73,0,571,'Ryker LumaTech&trade; Tee (V-neck)-XL-Black'),(3989,106,0,572,'container2'),(3990,124,0,572,'0'),(3991,121,0,572,'ryker-lumatech-trade-tee-v-neck-xl-blue'),(3992,87,0,572,'/m/s/ms02-blue_main_1.jpg'),(3993,88,0,572,'/m/s/ms02-blue_main_1.jpg'),(3994,89,0,572,'/m/s/ms02-blue_main_1.jpg'),(3995,73,0,572,'Ryker LumaTech&trade; Tee (V-neck)-XL-Blue'),(3996,106,0,573,'container2'),(3997,124,0,573,'0'),(3998,121,0,573,'ryker-lumatech-trade-tee-v-neck-xl-gray'),(3999,87,0,573,'/m/s/ms02-gray_main_1.jpg'),(4000,88,0,573,'/m/s/ms02-gray_main_1.jpg'),(4001,89,0,573,'/m/s/ms02-gray_main_1.jpg'),(4002,73,0,573,'Ryker LumaTech&trade; Tee (V-neck)-XL-Gray'),(4003,106,0,574,'container2'),(4004,124,0,574,'0'),(4005,121,0,574,'ryker-lumatech-trade-tee-v-neck'),(4006,87,0,574,'/m/s/ms02-gray_main_1.jpg'),(4007,88,0,574,'/m/s/ms02-gray_main_1.jpg'),(4008,89,0,574,'/m/s/ms02-gray_main_1.jpg'),(4009,73,0,574,'Ryker LumaTech&trade; Tee (V-neck)'),(4010,106,0,575,'container2'),(4011,124,0,575,'0'),(4012,121,0,575,'logan-heattec-reg-tee-xs-black'),(4013,87,0,575,'/m/s/ms10-black_main_1.jpg'),(4014,88,0,575,'/m/s/ms10-black_main_1.jpg'),(4015,89,0,575,'/m/s/ms10-black_main_1.jpg'),(4016,73,0,575,'Logan  HeatTec&reg; Tee-XS-Black'),(4017,106,0,576,'container2'),(4018,124,0,576,'0'),(4019,121,0,576,'logan-heattec-reg-tee-xs-blue'),(4020,87,0,576,'/m/s/ms10-blue_main_1.jpg'),(4021,88,0,576,'/m/s/ms10-blue_main_1.jpg'),(4022,89,0,576,'/m/s/ms10-blue_main_1.jpg'),(4023,73,0,576,'Logan  HeatTec&reg; Tee-XS-Blue'),(4024,106,0,577,'container2'),(4025,124,0,577,'0'),(4026,121,0,577,'logan-heattec-reg-tee-xs-red'),(4027,87,0,577,'/m/s/ms10-red_main_1.jpg'),(4028,88,0,577,'/m/s/ms10-red_main_1.jpg'),(4029,89,0,577,'/m/s/ms10-red_main_1.jpg'),(4030,73,0,577,'Logan  HeatTec&reg; Tee-XS-Red'),(4031,106,0,578,'container2'),(4032,124,0,578,'0'),(4033,121,0,578,'logan-heattec-reg-tee-s-black'),(4034,87,0,578,'/m/s/ms10-black_main_1.jpg'),(4035,88,0,578,'/m/s/ms10-black_main_1.jpg'),(4036,89,0,578,'/m/s/ms10-black_main_1.jpg'),(4037,73,0,578,'Logan  HeatTec&reg; Tee-S-Black'),(4038,106,0,579,'container2'),(4039,124,0,579,'0'),(4040,121,0,579,'logan-heattec-reg-tee-s-blue'),(4041,87,0,579,'/m/s/ms10-blue_main_1.jpg'),(4042,88,0,579,'/m/s/ms10-blue_main_1.jpg'),(4043,89,0,579,'/m/s/ms10-blue_main_1.jpg'),(4044,73,0,579,'Logan  HeatTec&reg; Tee-S-Blue'),(4045,106,0,580,'container2'),(4046,124,0,580,'0'),(4047,121,0,580,'logan-heattec-reg-tee-s-red'),(4048,87,0,580,'/m/s/ms10-red_main_1.jpg'),(4049,88,0,580,'/m/s/ms10-red_main_1.jpg'),(4050,89,0,580,'/m/s/ms10-red_main_1.jpg'),(4051,73,0,580,'Logan  HeatTec&reg; Tee-S-Red'),(4052,106,0,581,'container2'),(4053,124,0,581,'0'),(4054,121,0,581,'logan-heattec-reg-tee-m-black'),(4055,87,0,581,'/m/s/ms10-black_main_1.jpg'),(4056,88,0,581,'/m/s/ms10-black_main_1.jpg'),(4057,89,0,581,'/m/s/ms10-black_main_1.jpg'),(4058,73,0,581,'Logan  HeatTec&reg; Tee-M-Black'),(4059,106,0,582,'container2'),(4060,124,0,582,'0'),(4061,121,0,582,'logan-heattec-reg-tee-m-blue'),(4062,87,0,582,'/m/s/ms10-blue_main_1.jpg'),(4063,88,0,582,'/m/s/ms10-blue_main_1.jpg'),(4064,89,0,582,'/m/s/ms10-blue_main_1.jpg'),(4065,73,0,582,'Logan  HeatTec&reg; Tee-M-Blue'),(4066,106,0,583,'container2'),(4067,124,0,583,'0'),(4068,121,0,583,'logan-heattec-reg-tee-m-red'),(4069,87,0,583,'/m/s/ms10-red_main_1.jpg'),(4070,88,0,583,'/m/s/ms10-red_main_1.jpg'),(4071,89,0,583,'/m/s/ms10-red_main_1.jpg'),(4072,73,0,583,'Logan  HeatTec&reg; Tee-M-Red'),(4073,106,0,584,'container2'),(4074,124,0,584,'0'),(4075,121,0,584,'logan-heattec-reg-tee-l-black'),(4076,87,0,584,'/m/s/ms10-black_main_1.jpg'),(4077,88,0,584,'/m/s/ms10-black_main_1.jpg'),(4078,89,0,584,'/m/s/ms10-black_main_1.jpg'),(4079,73,0,584,'Logan  HeatTec&reg; Tee-L-Black'),(4080,106,0,585,'container2'),(4081,124,0,585,'0'),(4082,121,0,585,'logan-heattec-reg-tee-l-blue'),(4083,87,0,585,'/m/s/ms10-blue_main_1.jpg'),(4084,88,0,585,'/m/s/ms10-blue_main_1.jpg'),(4085,89,0,585,'/m/s/ms10-blue_main_1.jpg'),(4086,73,0,585,'Logan  HeatTec&reg; Tee-L-Blue'),(4087,106,0,586,'container2'),(4088,124,0,586,'0'),(4089,121,0,586,'logan-heattec-reg-tee-l-red'),(4090,87,0,586,'/m/s/ms10-red_main_1.jpg'),(4091,88,0,586,'/m/s/ms10-red_main_1.jpg'),(4092,89,0,586,'/m/s/ms10-red_main_1.jpg'),(4093,73,0,586,'Logan  HeatTec&reg; Tee-L-Red'),(4094,106,0,587,'container2'),(4095,124,0,587,'0'),(4096,121,0,587,'logan-heattec-reg-tee-xl-black'),(4097,87,0,587,'/m/s/ms10-black_main_1.jpg'),(4098,88,0,587,'/m/s/ms10-black_main_1.jpg'),(4099,89,0,587,'/m/s/ms10-black_main_1.jpg'),(4100,73,0,587,'Logan  HeatTec&reg; Tee-XL-Black'),(4101,106,0,588,'container2'),(4102,124,0,588,'0'),(4103,121,0,588,'logan-heattec-reg-tee-xl-blue'),(4104,87,0,588,'/m/s/ms10-blue_main_1.jpg'),(4105,88,0,588,'/m/s/ms10-blue_main_1.jpg'),(4106,89,0,588,'/m/s/ms10-blue_main_1.jpg'),(4107,73,0,588,'Logan  HeatTec&reg; Tee-XL-Blue'),(4108,106,0,589,'container2'),(4109,124,0,589,'0'),(4110,121,0,589,'logan-heattec-reg-tee-xl-red'),(4111,87,0,589,'/m/s/ms10-red_main_1.jpg'),(4112,88,0,589,'/m/s/ms10-red_main_1.jpg'),(4113,89,0,589,'/m/s/ms10-red_main_1.jpg'),(4114,73,0,589,'Logan  HeatTec&reg; Tee-XL-Red'),(4115,106,0,590,'container2'),(4116,124,0,590,'0'),(4117,121,0,590,'logan-heattec-reg-tee'),(4118,87,0,590,'/m/s/ms10-blue_main_1.jpg'),(4119,88,0,590,'/m/s/ms10-blue_main_1.jpg'),(4120,89,0,590,'/m/s/ms10-blue_main_1.jpg'),(4121,73,0,590,'Logan  HeatTec&reg; Tee'),(4122,106,0,591,'container2'),(4123,124,0,591,'0'),(4124,121,0,591,'deion-long-sleeve-evercool-trade-tee-xs-black'),(4125,87,0,591,'/m/s/ms07-black_main_1.jpg'),(4126,88,0,591,'/m/s/ms07-black_main_1.jpg'),(4127,89,0,591,'/m/s/ms07-black_main_1.jpg'),(4128,73,0,591,'Deion Long-Sleeve EverCool&trade; Tee-XS-Black'),(4129,106,0,592,'container2'),(4130,124,0,592,'0'),(4131,121,0,592,'deion-long-sleeve-evercool-trade-tee-xs-green'),(4132,87,0,592,'/m/s/ms07-green_main_1.jpg'),(4133,88,0,592,'/m/s/ms07-green_main_1.jpg'),(4134,89,0,592,'/m/s/ms07-green_main_1.jpg'),(4135,73,0,592,'Deion Long-Sleeve EverCool&trade; Tee-XS-Green'),(4136,106,0,593,'container2'),(4137,124,0,593,'0'),(4138,121,0,593,'deion-long-sleeve-evercool-trade-tee-xs-white'),(4139,87,0,593,'/m/s/ms07-white_main_1.jpg'),(4140,88,0,593,'/m/s/ms07-white_main_1.jpg'),(4141,89,0,593,'/m/s/ms07-white_main_1.jpg'),(4142,73,0,593,'Deion Long-Sleeve EverCool&trade; Tee-XS-White'),(4143,106,0,594,'container2'),(4144,124,0,594,'0'),(4145,121,0,594,'deion-long-sleeve-evercool-trade-tee-s-black'),(4146,87,0,594,'/m/s/ms07-black_main_1.jpg'),(4147,88,0,594,'/m/s/ms07-black_main_1.jpg'),(4148,89,0,594,'/m/s/ms07-black_main_1.jpg'),(4149,73,0,594,'Deion Long-Sleeve EverCool&trade; Tee-S-Black'),(4150,106,0,595,'container2'),(4151,124,0,595,'0'),(4152,121,0,595,'deion-long-sleeve-evercool-trade-tee-s-green'),(4153,87,0,595,'/m/s/ms07-green_main_1.jpg'),(4154,88,0,595,'/m/s/ms07-green_main_1.jpg'),(4155,89,0,595,'/m/s/ms07-green_main_1.jpg'),(4156,73,0,595,'Deion Long-Sleeve EverCool&trade; Tee-S-Green'),(4157,106,0,596,'container2'),(4158,124,0,596,'0'),(4159,121,0,596,'deion-long-sleeve-evercool-trade-tee-s-white'),(4160,87,0,596,'/m/s/ms07-white_main_1.jpg'),(4161,88,0,596,'/m/s/ms07-white_main_1.jpg'),(4162,89,0,596,'/m/s/ms07-white_main_1.jpg'),(4163,73,0,596,'Deion Long-Sleeve EverCool&trade; Tee-S-White'),(4164,106,0,597,'container2'),(4165,124,0,597,'0'),(4166,121,0,597,'deion-long-sleeve-evercool-trade-tee-m-black'),(4167,87,0,597,'/m/s/ms07-black_main_1.jpg'),(4168,88,0,597,'/m/s/ms07-black_main_1.jpg'),(4169,89,0,597,'/m/s/ms07-black_main_1.jpg'),(4170,73,0,597,'Deion Long-Sleeve EverCool&trade; Tee-M-Black'),(4171,106,0,598,'container2'),(4172,124,0,598,'0'),(4173,121,0,598,'deion-long-sleeve-evercool-trade-tee-m-green'),(4174,87,0,598,'/m/s/ms07-green_main_1.jpg'),(4175,88,0,598,'/m/s/ms07-green_main_1.jpg'),(4176,89,0,598,'/m/s/ms07-green_main_1.jpg'),(4177,73,0,598,'Deion Long-Sleeve EverCool&trade; Tee-M-Green'),(4178,106,0,599,'container2'),(4179,124,0,599,'0'),(4180,121,0,599,'deion-long-sleeve-evercool-trade-tee-m-white'),(4181,87,0,599,'/m/s/ms07-white_main_1.jpg'),(4182,88,0,599,'/m/s/ms07-white_main_1.jpg'),(4183,89,0,599,'/m/s/ms07-white_main_1.jpg'),(4184,73,0,599,'Deion Long-Sleeve EverCool&trade; Tee-M-White'),(4185,106,0,600,'container2'),(4186,124,0,600,'0'),(4187,121,0,600,'deion-long-sleeve-evercool-trade-tee-l-black'),(4188,87,0,600,'/m/s/ms07-black_main_1.jpg'),(4189,88,0,600,'/m/s/ms07-black_main_1.jpg'),(4190,89,0,600,'/m/s/ms07-black_main_1.jpg'),(4191,73,0,600,'Deion Long-Sleeve EverCool&trade; Tee-L-Black'),(4192,106,0,601,'container2'),(4193,124,0,601,'0'),(4194,121,0,601,'deion-long-sleeve-evercool-trade-tee-l-green'),(4195,87,0,601,'/m/s/ms07-green_main_1.jpg'),(4196,88,0,601,'/m/s/ms07-green_main_1.jpg'),(4197,89,0,601,'/m/s/ms07-green_main_1.jpg'),(4198,73,0,601,'Deion Long-Sleeve EverCool&trade; Tee-L-Green'),(4199,106,0,602,'container2'),(4200,124,0,602,'0'),(4201,121,0,602,'deion-long-sleeve-evercool-trade-tee-l-white'),(4202,87,0,602,'/m/s/ms07-white_main_1.jpg'),(4203,88,0,602,'/m/s/ms07-white_main_1.jpg'),(4204,89,0,602,'/m/s/ms07-white_main_1.jpg'),(4205,73,0,602,'Deion Long-Sleeve EverCool&trade; Tee-L-White'),(4206,106,0,603,'container2'),(4207,124,0,603,'0'),(4208,121,0,603,'deion-long-sleeve-evercool-trade-tee-xl-black'),(4209,87,0,603,'/m/s/ms07-black_main_1.jpg'),(4210,88,0,603,'/m/s/ms07-black_main_1.jpg'),(4211,89,0,603,'/m/s/ms07-black_main_1.jpg'),(4212,73,0,603,'Deion Long-Sleeve EverCool&trade; Tee-XL-Black'),(4213,106,0,604,'container2'),(4214,124,0,604,'0'),(4215,121,0,604,'deion-long-sleeve-evercool-trade-tee-xl-green'),(4216,87,0,604,'/m/s/ms07-green_main_1.jpg'),(4217,88,0,604,'/m/s/ms07-green_main_1.jpg'),(4218,89,0,604,'/m/s/ms07-green_main_1.jpg'),(4219,73,0,604,'Deion Long-Sleeve EverCool&trade; Tee-XL-Green'),(4220,106,0,605,'container2'),(4221,124,0,605,'0'),(4222,121,0,605,'deion-long-sleeve-evercool-trade-tee-xl-white'),(4223,87,0,605,'/m/s/ms07-white_main_1.jpg'),(4224,88,0,605,'/m/s/ms07-white_main_1.jpg'),(4225,89,0,605,'/m/s/ms07-white_main_1.jpg'),(4226,73,0,605,'Deion Long-Sleeve EverCool&trade; Tee-XL-White'),(4227,106,0,606,'container2'),(4228,124,0,606,'0'),(4229,121,0,606,'deion-long-sleeve-evercool-trade-tee'),(4230,87,0,606,'/m/s/ms07-green_main_1.jpg'),(4231,88,0,606,'/m/s/ms07-green_main_1.jpg'),(4232,89,0,606,'/m/s/ms07-green_main_1.jpg'),(4233,73,0,606,'Deion Long-Sleeve EverCool&trade; Tee'),(4234,106,0,607,'container2'),(4235,124,0,607,'0'),(4236,121,0,607,'strike-endurance-tee-xs-black'),(4237,87,0,607,'/m/s/ms08-black_main_1.jpg'),(4238,88,0,607,'/m/s/ms08-black_main_1.jpg'),(4239,89,0,607,'/m/s/ms08-black_main_1.jpg'),(4240,73,0,607,'Strike Endurance Tee-XS-Black'),(4241,106,0,608,'container2'),(4242,124,0,608,'0'),(4243,121,0,608,'strike-endurance-tee-xs-blue'),(4244,87,0,608,'/m/s/ms08-blue_main_1.jpg'),(4245,88,0,608,'/m/s/ms08-blue_main_1.jpg'),(4246,89,0,608,'/m/s/ms08-blue_main_1.jpg'),(4247,73,0,608,'Strike Endurance Tee-XS-Blue'),(4248,106,0,609,'container2'),(4249,124,0,609,'0'),(4250,121,0,609,'strike-endurance-tee-xs-red'),(4251,87,0,609,'/m/s/ms08-red_main_1.jpg'),(4252,88,0,609,'/m/s/ms08-red_main_1.jpg'),(4253,89,0,609,'/m/s/ms08-red_main_1.jpg'),(4254,73,0,609,'Strike Endurance Tee-XS-Red'),(4255,106,0,610,'container2'),(4256,124,0,610,'0'),(4257,121,0,610,'strike-endurance-tee-s-black'),(4258,87,0,610,'/m/s/ms08-black_main_1.jpg'),(4259,88,0,610,'/m/s/ms08-black_main_1.jpg'),(4260,89,0,610,'/m/s/ms08-black_main_1.jpg'),(4261,73,0,610,'Strike Endurance Tee-S-Black'),(4262,106,0,611,'container2'),(4263,124,0,611,'0'),(4264,121,0,611,'strike-endurance-tee-s-blue'),(4265,87,0,611,'/m/s/ms08-blue_main_1.jpg'),(4266,88,0,611,'/m/s/ms08-blue_main_1.jpg'),(4267,89,0,611,'/m/s/ms08-blue_main_1.jpg'),(4268,73,0,611,'Strike Endurance Tee-S-Blue'),(4269,106,0,612,'container2'),(4270,124,0,612,'0'),(4271,121,0,612,'strike-endurance-tee-s-red'),(4272,87,0,612,'/m/s/ms08-red_main_1.jpg'),(4273,88,0,612,'/m/s/ms08-red_main_1.jpg'),(4274,89,0,612,'/m/s/ms08-red_main_1.jpg'),(4275,73,0,612,'Strike Endurance Tee-S-Red'),(4276,106,0,613,'container2'),(4277,124,0,613,'0'),(4278,121,0,613,'strike-endurance-tee-m-black'),(4279,87,0,613,'/m/s/ms08-black_main_1.jpg'),(4280,88,0,613,'/m/s/ms08-black_main_1.jpg'),(4281,89,0,613,'/m/s/ms08-black_main_1.jpg'),(4282,73,0,613,'Strike Endurance Tee-M-Black'),(4283,106,0,614,'container2'),(4284,124,0,614,'0'),(4285,121,0,614,'strike-endurance-tee-m-blue'),(4286,87,0,614,'/m/s/ms08-blue_main_1.jpg'),(4287,88,0,614,'/m/s/ms08-blue_main_1.jpg'),(4288,89,0,614,'/m/s/ms08-blue_main_1.jpg'),(4289,73,0,614,'Strike Endurance Tee-M-Blue'),(4290,106,0,615,'container2'),(4291,124,0,615,'0'),(4292,121,0,615,'strike-endurance-tee-m-red'),(4293,87,0,615,'/m/s/ms08-red_main_1.jpg'),(4294,88,0,615,'/m/s/ms08-red_main_1.jpg'),(4295,89,0,615,'/m/s/ms08-red_main_1.jpg'),(4296,73,0,615,'Strike Endurance Tee-M-Red'),(4297,106,0,616,'container2'),(4298,124,0,616,'0'),(4299,121,0,616,'strike-endurance-tee-l-black'),(4300,87,0,616,'/m/s/ms08-black_main_1.jpg'),(4301,88,0,616,'/m/s/ms08-black_main_1.jpg'),(4302,89,0,616,'/m/s/ms08-black_main_1.jpg'),(4303,73,0,616,'Strike Endurance Tee-L-Black'),(4304,106,0,617,'container2'),(4305,124,0,617,'0'),(4306,121,0,617,'strike-endurance-tee-l-blue'),(4307,87,0,617,'/m/s/ms08-blue_main_1.jpg'),(4308,88,0,617,'/m/s/ms08-blue_main_1.jpg'),(4309,89,0,617,'/m/s/ms08-blue_main_1.jpg'),(4310,73,0,617,'Strike Endurance Tee-L-Blue'),(4311,106,0,618,'container2'),(4312,124,0,618,'0'),(4313,121,0,618,'strike-endurance-tee-l-red'),(4314,87,0,618,'/m/s/ms08-red_main_1.jpg'),(4315,88,0,618,'/m/s/ms08-red_main_1.jpg'),(4316,89,0,618,'/m/s/ms08-red_main_1.jpg'),(4317,73,0,618,'Strike Endurance Tee-L-Red'),(4318,106,0,619,'container2'),(4319,124,0,619,'0'),(4320,121,0,619,'strike-endurance-tee-xl-black'),(4321,87,0,619,'/m/s/ms08-black_main_1.jpg'),(4322,88,0,619,'/m/s/ms08-black_main_1.jpg'),(4323,89,0,619,'/m/s/ms08-black_main_1.jpg'),(4324,73,0,619,'Strike Endurance Tee-XL-Black'),(4325,106,0,620,'container2'),(4326,124,0,620,'0'),(4327,121,0,620,'strike-endurance-tee-xl-blue'),(4328,87,0,620,'/m/s/ms08-blue_main_1.jpg'),(4329,88,0,620,'/m/s/ms08-blue_main_1.jpg'),(4330,89,0,620,'/m/s/ms08-blue_main_1.jpg'),(4331,73,0,620,'Strike Endurance Tee-XL-Blue'),(4332,106,0,621,'container2'),(4333,124,0,621,'0'),(4334,121,0,621,'strike-endurance-tee-xl-red'),(4335,87,0,621,'/m/s/ms08-red_main_1.jpg'),(4336,88,0,621,'/m/s/ms08-red_main_1.jpg'),(4337,89,0,621,'/m/s/ms08-red_main_1.jpg'),(4338,73,0,621,'Strike Endurance Tee-XL-Red'),(4339,106,0,622,'container2'),(4340,124,0,622,'0'),(4341,121,0,622,'strike-endurance-tee'),(4342,87,0,622,'/m/s/ms08-black_main_1.jpg'),(4343,88,0,622,'/m/s/ms08-black_main_1.jpg'),(4344,89,0,622,'/m/s/ms08-black_main_1.jpg'),(4345,73,0,622,'Strike Endurance Tee'),(4346,106,0,623,'container2'),(4347,124,0,623,'0'),(4348,121,0,623,'erikssen-cooltech-trade-fitness-tank-xs-gray'),(4349,87,0,623,'/m/t/mt01-gray_main_1.jpg'),(4350,88,0,623,'/m/t/mt01-gray_main_1.jpg'),(4351,89,0,623,'/m/t/mt01-gray_main_1.jpg'),(4352,73,0,623,'Erikssen CoolTech&trade; Fitness Tank-XS-Gray'),(4353,106,0,624,'container2'),(4354,124,0,624,'0'),(4355,121,0,624,'erikssen-cooltech-trade-fitness-tank-xs-orange'),(4356,87,0,624,'/m/t/mt01-orange_main_1.jpg'),(4357,88,0,624,'/m/t/mt01-orange_main_1.jpg'),(4358,89,0,624,'/m/t/mt01-orange_main_1.jpg'),(4359,73,0,624,'Erikssen CoolTech&trade; Fitness Tank-XS-Orange'),(4360,106,0,625,'container2'),(4361,124,0,625,'0'),(4362,121,0,625,'erikssen-cooltech-trade-fitness-tank-xs-red'),(4363,87,0,625,'/m/t/mt01-red_main_1.jpg'),(4364,88,0,625,'/m/t/mt01-red_main_1.jpg'),(4365,89,0,625,'/m/t/mt01-red_main_1.jpg'),(4366,73,0,625,'Erikssen CoolTech&trade; Fitness Tank-XS-Red'),(4367,106,0,626,'container2'),(4368,124,0,626,'0'),(4369,121,0,626,'erikssen-cooltech-trade-fitness-tank-s-gray'),(4370,87,0,626,'/m/t/mt01-gray_main_1.jpg'),(4371,88,0,626,'/m/t/mt01-gray_main_1.jpg'),(4372,89,0,626,'/m/t/mt01-gray_main_1.jpg'),(4373,73,0,626,'Erikssen CoolTech&trade; Fitness Tank-S-Gray'),(4374,106,0,627,'container2'),(4375,124,0,627,'0'),(4376,121,0,627,'erikssen-cooltech-trade-fitness-tank-s-orange'),(4377,87,0,627,'/m/t/mt01-orange_main_1.jpg'),(4378,88,0,627,'/m/t/mt01-orange_main_1.jpg'),(4379,89,0,627,'/m/t/mt01-orange_main_1.jpg'),(4380,73,0,627,'Erikssen CoolTech&trade; Fitness Tank-S-Orange'),(4381,106,0,628,'container2'),(4382,124,0,628,'0'),(4383,121,0,628,'erikssen-cooltech-trade-fitness-tank-s-red'),(4384,87,0,628,'/m/t/mt01-red_main_1.jpg'),(4385,88,0,628,'/m/t/mt01-red_main_1.jpg'),(4386,89,0,628,'/m/t/mt01-red_main_1.jpg'),(4387,73,0,628,'Erikssen CoolTech&trade; Fitness Tank-S-Red'),(4388,106,0,629,'container2'),(4389,124,0,629,'0'),(4390,121,0,629,'erikssen-cooltech-trade-fitness-tank-m-gray'),(4391,87,0,629,'/m/t/mt01-gray_main_1.jpg'),(4392,88,0,629,'/m/t/mt01-gray_main_1.jpg'),(4393,89,0,629,'/m/t/mt01-gray_main_1.jpg'),(4394,73,0,629,'Erikssen CoolTech&trade; Fitness Tank-M-Gray'),(4395,106,0,630,'container2'),(4396,124,0,630,'0'),(4397,121,0,630,'erikssen-cooltech-trade-fitness-tank-m-orange'),(4398,87,0,630,'/m/t/mt01-orange_main_1.jpg'),(4399,88,0,630,'/m/t/mt01-orange_main_1.jpg'),(4400,89,0,630,'/m/t/mt01-orange_main_1.jpg'),(4401,73,0,630,'Erikssen CoolTech&trade; Fitness Tank-M-Orange'),(4402,106,0,631,'container2'),(4403,124,0,631,'0'),(4404,121,0,631,'erikssen-cooltech-trade-fitness-tank-m-red'),(4405,87,0,631,'/m/t/mt01-red_main_1.jpg'),(4406,88,0,631,'/m/t/mt01-red_main_1.jpg'),(4407,89,0,631,'/m/t/mt01-red_main_1.jpg'),(4408,73,0,631,'Erikssen CoolTech&trade; Fitness Tank-M-Red'),(4409,106,0,632,'container2'),(4410,124,0,632,'0'),(4411,121,0,632,'erikssen-cooltech-trade-fitness-tank-l-gray'),(4412,87,0,632,'/m/t/mt01-gray_main_1.jpg'),(4413,88,0,632,'/m/t/mt01-gray_main_1.jpg'),(4414,89,0,632,'/m/t/mt01-gray_main_1.jpg'),(4415,73,0,632,'Erikssen CoolTech&trade; Fitness Tank-L-Gray'),(4416,106,0,633,'container2'),(4417,124,0,633,'0'),(4418,121,0,633,'erikssen-cooltech-trade-fitness-tank-l-orange'),(4419,87,0,633,'/m/t/mt01-orange_main_1.jpg'),(4420,88,0,633,'/m/t/mt01-orange_main_1.jpg'),(4421,89,0,633,'/m/t/mt01-orange_main_1.jpg'),(4422,73,0,633,'Erikssen CoolTech&trade; Fitness Tank-L-Orange'),(4423,106,0,634,'container2'),(4424,124,0,634,'0'),(4425,121,0,634,'erikssen-cooltech-trade-fitness-tank-l-red'),(4426,87,0,634,'/m/t/mt01-red_main_1.jpg'),(4427,88,0,634,'/m/t/mt01-red_main_1.jpg'),(4428,89,0,634,'/m/t/mt01-red_main_1.jpg'),(4429,73,0,634,'Erikssen CoolTech&trade; Fitness Tank-L-Red'),(4430,106,0,635,'container2'),(4431,124,0,635,'0'),(4432,121,0,635,'erikssen-cooltech-trade-fitness-tank-xl-gray'),(4433,87,0,635,'/m/t/mt01-gray_main_1.jpg'),(4434,88,0,635,'/m/t/mt01-gray_main_1.jpg'),(4435,89,0,635,'/m/t/mt01-gray_main_1.jpg'),(4436,73,0,635,'Erikssen CoolTech&trade; Fitness Tank-XL-Gray'),(4437,106,0,636,'container2'),(4438,124,0,636,'0'),(4439,121,0,636,'erikssen-cooltech-trade-fitness-tank-xl-orange'),(4440,87,0,636,'/m/t/mt01-orange_main_1.jpg'),(4441,88,0,636,'/m/t/mt01-orange_main_1.jpg'),(4442,89,0,636,'/m/t/mt01-orange_main_1.jpg'),(4443,73,0,636,'Erikssen CoolTech&trade; Fitness Tank-XL-Orange'),(4444,106,0,637,'container2'),(4445,124,0,637,'0'),(4446,121,0,637,'erikssen-cooltech-trade-fitness-tank-xl-red'),(4447,87,0,637,'/m/t/mt01-red_main_1.jpg'),(4448,88,0,637,'/m/t/mt01-red_main_1.jpg'),(4449,89,0,637,'/m/t/mt01-red_main_1.jpg'),(4450,73,0,637,'Erikssen CoolTech&trade; Fitness Tank-XL-Red'),(4451,106,0,638,'container2'),(4452,124,0,638,'0'),(4453,121,0,638,'erikssen-cooltech-trade-fitness-tank'),(4454,87,0,638,'/m/t/mt01-red_main_1.jpg'),(4455,88,0,638,'/m/t/mt01-red_main_1.jpg'),(4456,89,0,638,'/m/t/mt01-red_main_1.jpg'),(4457,73,0,638,'Erikssen CoolTech&trade; Fitness Tank'),(4458,106,0,639,'container2'),(4459,124,0,639,'0'),(4460,121,0,639,'tristan-endurance-tank-xs-gray'),(4461,87,0,639,'/m/t/mt02-gray_main_1.jpg'),(4462,88,0,639,'/m/t/mt02-gray_main_1.jpg'),(4463,89,0,639,'/m/t/mt02-gray_main_1.jpg'),(4464,73,0,639,'Tristan Endurance Tank-XS-Gray'),(4465,106,0,640,'container2'),(4466,124,0,640,'0'),(4467,121,0,640,'tristan-endurance-tank-xs-red'),(4468,87,0,640,'/m/t/mt02-red_main_1.jpg'),(4469,88,0,640,'/m/t/mt02-red_main_1.jpg'),(4470,89,0,640,'/m/t/mt02-red_main_1.jpg'),(4471,73,0,640,'Tristan Endurance Tank-XS-Red'),(4472,106,0,641,'container2'),(4473,124,0,641,'0'),(4474,121,0,641,'tristan-endurance-tank-xs-white'),(4475,87,0,641,'/m/t/mt02-white_main_1.jpg'),(4476,88,0,641,'/m/t/mt02-white_main_1.jpg'),(4477,89,0,641,'/m/t/mt02-white_main_1.jpg'),(4478,73,0,641,'Tristan Endurance Tank-XS-White'),(4479,106,0,642,'container2'),(4480,124,0,642,'0'),(4481,121,0,642,'tristan-endurance-tank-s-gray'),(4482,87,0,642,'/m/t/mt02-gray_main_1.jpg'),(4483,88,0,642,'/m/t/mt02-gray_main_1.jpg'),(4484,89,0,642,'/m/t/mt02-gray_main_1.jpg'),(4485,73,0,642,'Tristan Endurance Tank-S-Gray'),(4486,106,0,643,'container2'),(4487,124,0,643,'0'),(4488,121,0,643,'tristan-endurance-tank-s-red'),(4489,87,0,643,'/m/t/mt02-red_main_1.jpg'),(4490,88,0,643,'/m/t/mt02-red_main_1.jpg'),(4491,89,0,643,'/m/t/mt02-red_main_1.jpg'),(4492,73,0,643,'Tristan Endurance Tank-S-Red'),(4493,106,0,644,'container2'),(4494,124,0,644,'0'),(4495,121,0,644,'tristan-endurance-tank-s-white'),(4496,87,0,644,'/m/t/mt02-white_main_1.jpg'),(4497,88,0,644,'/m/t/mt02-white_main_1.jpg'),(4498,89,0,644,'/m/t/mt02-white_main_1.jpg'),(4499,73,0,644,'Tristan Endurance Tank-S-White'),(4500,106,0,645,'container2'),(4501,124,0,645,'0'),(4502,121,0,645,'tristan-endurance-tank-m-gray'),(4503,87,0,645,'/m/t/mt02-gray_main_1.jpg'),(4504,88,0,645,'/m/t/mt02-gray_main_1.jpg'),(4505,89,0,645,'/m/t/mt02-gray_main_1.jpg'),(4506,73,0,645,'Tristan Endurance Tank-M-Gray'),(4507,106,0,646,'container2'),(4508,124,0,646,'0'),(4509,121,0,646,'tristan-endurance-tank-m-red'),(4510,87,0,646,'/m/t/mt02-red_main_1.jpg'),(4511,88,0,646,'/m/t/mt02-red_main_1.jpg'),(4512,89,0,646,'/m/t/mt02-red_main_1.jpg'),(4513,73,0,646,'Tristan Endurance Tank-M-Red'),(4514,106,0,647,'container2'),(4515,124,0,647,'0'),(4516,121,0,647,'tristan-endurance-tank-m-white'),(4517,87,0,647,'/m/t/mt02-white_main_2.jpg'),(4518,88,0,647,'/m/t/mt02-white_main_2.jpg'),(4519,89,0,647,'/m/t/mt02-white_main_2.jpg'),(4520,73,0,647,'Tristan Endurance Tank-M-White'),(4521,106,0,648,'container2'),(4522,124,0,648,'0'),(4523,121,0,648,'tristan-endurance-tank-l-gray'),(4524,87,0,648,'/m/t/mt02-gray_main_2.jpg'),(4525,88,0,648,'/m/t/mt02-gray_main_2.jpg'),(4526,89,0,648,'/m/t/mt02-gray_main_2.jpg'),(4527,73,0,648,'Tristan Endurance Tank-L-Gray'),(4528,106,0,649,'container2'),(4529,124,0,649,'0'),(4530,121,0,649,'tristan-endurance-tank-l-red'),(4531,87,0,649,'/m/t/mt02-red_main_2.jpg'),(4532,88,0,649,'/m/t/mt02-red_main_2.jpg'),(4533,89,0,649,'/m/t/mt02-red_main_2.jpg'),(4534,73,0,649,'Tristan Endurance Tank-L-Red'),(4535,106,0,650,'container2'),(4536,124,0,650,'0'),(4537,121,0,650,'tristan-endurance-tank-l-white'),(4538,87,0,650,'/m/t/mt02-white_main_2.jpg'),(4539,88,0,650,'/m/t/mt02-white_main_2.jpg'),(4540,89,0,650,'/m/t/mt02-white_main_2.jpg'),(4541,73,0,650,'Tristan Endurance Tank-L-White'),(4542,106,0,651,'container2'),(4543,124,0,651,'0'),(4544,121,0,651,'tristan-endurance-tank-xl-gray'),(4545,87,0,651,'/m/t/mt02-gray_main_2.jpg'),(4546,88,0,651,'/m/t/mt02-gray_main_2.jpg'),(4547,89,0,651,'/m/t/mt02-gray_main_2.jpg'),(4548,73,0,651,'Tristan Endurance Tank-XL-Gray'),(4549,106,0,652,'container2'),(4550,124,0,652,'0'),(4551,121,0,652,'tristan-endurance-tank-xl-red'),(4552,87,0,652,'/m/t/mt02-red_main_2.jpg'),(4553,88,0,652,'/m/t/mt02-red_main_2.jpg'),(4554,89,0,652,'/m/t/mt02-red_main_2.jpg'),(4555,73,0,652,'Tristan Endurance Tank-XL-Red'),(4556,106,0,653,'container2'),(4557,124,0,653,'0'),(4558,121,0,653,'tristan-endurance-tank-xl-white'),(4559,87,0,653,'/m/t/mt02-white_main_2.jpg'),(4560,88,0,653,'/m/t/mt02-white_main_2.jpg'),(4561,89,0,653,'/m/t/mt02-white_main_2.jpg'),(4562,73,0,653,'Tristan Endurance Tank-XL-White'),(4563,106,0,654,'container2'),(4564,124,0,654,'0'),(4565,121,0,654,'tristan-endurance-tank'),(4566,87,0,654,'/m/t/mt02-white_main_2.jpg'),(4567,88,0,654,'/m/t/mt02-white_main_2.jpg'),(4568,89,0,654,'/m/t/mt02-white_main_2.jpg'),(4569,73,0,654,'Tristan Endurance Tank'),(4570,106,0,655,'container2'),(4571,124,0,655,'0'),(4572,121,0,655,'primo-endurance-tank-xs-blue'),(4573,87,0,655,'/m/t/mt03-blue_main_1.jpg'),(4574,88,0,655,'/m/t/mt03-blue_main_1.jpg'),(4575,89,0,655,'/m/t/mt03-blue_main_1.jpg'),(4576,73,0,655,'Primo Endurance Tank-XS-Blue'),(4577,106,0,656,'container2'),(4578,124,0,656,'0'),(4579,121,0,656,'primo-endurance-tank-xs-red'),(4580,87,0,656,'/m/t/mt03-red_main_1.jpg'),(4581,88,0,656,'/m/t/mt03-red_main_1.jpg'),(4582,89,0,656,'/m/t/mt03-red_main_1.jpg'),(4583,73,0,656,'Primo Endurance Tank-XS-Red'),(4584,106,0,657,'container2'),(4585,124,0,657,'0'),(4586,121,0,657,'primo-endurance-tank-xs-yellow'),(4587,87,0,657,'/m/t/mt03-yellow_main_1.jpg'),(4588,88,0,657,'/m/t/mt03-yellow_main_1.jpg'),(4589,89,0,657,'/m/t/mt03-yellow_main_1.jpg'),(4590,73,0,657,'Primo Endurance Tank-XS-Yellow'),(4591,106,0,658,'container2'),(4592,124,0,658,'0'),(4593,121,0,658,'primo-endurance-tank-s-blue'),(4594,87,0,658,'/m/t/mt03-blue_main_1.jpg'),(4595,88,0,658,'/m/t/mt03-blue_main_1.jpg'),(4596,89,0,658,'/m/t/mt03-blue_main_1.jpg'),(4597,73,0,658,'Primo Endurance Tank-S-Blue'),(4598,106,0,659,'container2'),(4599,124,0,659,'0'),(4600,121,0,659,'primo-endurance-tank-s-red'),(4601,87,0,659,'/m/t/mt03-red_main_1.jpg'),(4602,88,0,659,'/m/t/mt03-red_main_1.jpg'),(4603,89,0,659,'/m/t/mt03-red_main_1.jpg'),(4604,73,0,659,'Primo Endurance Tank-S-Red'),(4605,106,0,660,'container2'),(4606,124,0,660,'0'),(4607,121,0,660,'primo-endurance-tank-s-yellow'),(4608,87,0,660,'/m/t/mt03-yellow_main_1.jpg'),(4609,88,0,660,'/m/t/mt03-yellow_main_1.jpg'),(4610,89,0,660,'/m/t/mt03-yellow_main_1.jpg'),(4611,73,0,660,'Primo Endurance Tank-S-Yellow'),(4612,106,0,661,'container2'),(4613,124,0,661,'0'),(4614,121,0,661,'primo-endurance-tank-m-blue'),(4615,87,0,661,'/m/t/mt03-blue_main_1.jpg'),(4616,88,0,661,'/m/t/mt03-blue_main_1.jpg'),(4617,89,0,661,'/m/t/mt03-blue_main_1.jpg'),(4618,73,0,661,'Primo Endurance Tank-M-Blue'),(4619,106,0,662,'container2'),(4620,124,0,662,'0'),(4621,121,0,662,'primo-endurance-tank-m-red'),(4622,87,0,662,'/m/t/mt03-red_main_1.jpg'),(4623,88,0,662,'/m/t/mt03-red_main_1.jpg'),(4624,89,0,662,'/m/t/mt03-red_main_1.jpg'),(4625,73,0,662,'Primo Endurance Tank-M-Red'),(4626,106,0,663,'container2'),(4627,124,0,663,'0'),(4628,121,0,663,'primo-endurance-tank-m-yellow'),(4629,87,0,663,'/m/t/mt03-yellow_main_1.jpg'),(4630,88,0,663,'/m/t/mt03-yellow_main_1.jpg'),(4631,89,0,663,'/m/t/mt03-yellow_main_1.jpg'),(4632,73,0,663,'Primo Endurance Tank-M-Yellow'),(4633,106,0,664,'container2'),(4634,124,0,664,'0'),(4635,121,0,664,'primo-endurance-tank-l-blue'),(4636,87,0,664,'/m/t/mt03-blue_main_1.jpg'),(4637,88,0,664,'/m/t/mt03-blue_main_1.jpg'),(4638,89,0,664,'/m/t/mt03-blue_main_1.jpg'),(4639,73,0,664,'Primo Endurance Tank-L-Blue'),(4640,106,0,665,'container2'),(4641,124,0,665,'0'),(4642,121,0,665,'primo-endurance-tank-l-red'),(4643,87,0,665,'/m/t/mt03-red_main_1.jpg'),(4644,88,0,665,'/m/t/mt03-red_main_1.jpg'),(4645,89,0,665,'/m/t/mt03-red_main_1.jpg'),(4646,73,0,665,'Primo Endurance Tank-L-Red'),(4647,106,0,666,'container2'),(4648,124,0,666,'0'),(4649,121,0,666,'primo-endurance-tank-l-yellow'),(4650,87,0,666,'/m/t/mt03-yellow_main_1.jpg'),(4651,88,0,666,'/m/t/mt03-yellow_main_1.jpg'),(4652,89,0,666,'/m/t/mt03-yellow_main_1.jpg'),(4653,73,0,666,'Primo Endurance Tank-L-Yellow'),(4654,106,0,667,'container2'),(4655,124,0,667,'0'),(4656,121,0,667,'primo-endurance-tank-xl-blue'),(4657,87,0,667,'/m/t/mt03-blue_main_1.jpg'),(4658,88,0,667,'/m/t/mt03-blue_main_1.jpg'),(4659,89,0,667,'/m/t/mt03-blue_main_1.jpg'),(4660,73,0,667,'Primo Endurance Tank-XL-Blue'),(4661,106,0,668,'container2'),(4662,124,0,668,'0'),(4663,121,0,668,'primo-endurance-tank-xl-red'),(4664,87,0,668,'/m/t/mt03-red_main_1.jpg'),(4665,88,0,668,'/m/t/mt03-red_main_1.jpg'),(4666,89,0,668,'/m/t/mt03-red_main_1.jpg'),(4667,73,0,668,'Primo Endurance Tank-XL-Red'),(4668,106,0,669,'container2'),(4669,124,0,669,'0'),(4670,121,0,669,'primo-endurance-tank-xl-yellow'),(4671,87,0,669,'/m/t/mt03-yellow_main_1.jpg'),(4672,88,0,669,'/m/t/mt03-yellow_main_1.jpg'),(4673,89,0,669,'/m/t/mt03-yellow_main_1.jpg'),(4674,73,0,669,'Primo Endurance Tank-XL-Yellow'),(4675,106,0,670,'container2'),(4676,124,0,670,'0'),(4677,121,0,670,'primo-endurance-tank'),(4678,87,0,670,'/m/t/mt03-red_main_1.jpg'),(4679,88,0,670,'/m/t/mt03-red_main_1.jpg'),(4680,89,0,670,'/m/t/mt03-red_main_1.jpg'),(4681,73,0,670,'Primo Endurance Tank'),(4682,106,0,671,'container2'),(4683,124,0,671,'0'),(4684,121,0,671,'helios-endurance-tank-xs-blue'),(4685,87,0,671,'/m/t/mt04-blue_main_1.jpg'),(4686,88,0,671,'/m/t/mt04-blue_main_1.jpg'),(4687,89,0,671,'/m/t/mt04-blue_main_1.jpg'),(4688,73,0,671,'Helios Endurance Tank-XS-Blue'),(4689,106,0,672,'container2'),(4690,124,0,672,'0'),(4691,121,0,672,'helios-endurance-tank-s-blue'),(4692,87,0,672,'/m/t/mt04-blue_main_1.jpg'),(4693,88,0,672,'/m/t/mt04-blue_main_1.jpg'),(4694,89,0,672,'/m/t/mt04-blue_main_1.jpg'),(4695,73,0,672,'Helios Endurance Tank-S-Blue'),(4696,106,0,673,'container2'),(4697,124,0,673,'0'),(4698,121,0,673,'helios-endurance-tank-m-blue'),(4699,87,0,673,'/m/t/mt04-blue_main_1.jpg'),(4700,88,0,673,'/m/t/mt04-blue_main_1.jpg'),(4701,89,0,673,'/m/t/mt04-blue_main_1.jpg'),(4702,73,0,673,'Helios Endurance Tank-M-Blue'),(4703,106,0,674,'container2'),(4704,124,0,674,'0'),(4705,121,0,674,'helios-endurance-tank-l-blue'),(4706,87,0,674,'/m/t/mt04-blue_main_1.jpg'),(4707,88,0,674,'/m/t/mt04-blue_main_1.jpg'),(4708,89,0,674,'/m/t/mt04-blue_main_1.jpg'),(4709,73,0,674,'Helios Endurance Tank-L-Blue'),(4710,106,0,675,'container2'),(4711,124,0,675,'0'),(4712,121,0,675,'helios-endurance-tank-xl-blue'),(4713,87,0,675,'/m/t/mt04-blue_main_1.jpg'),(4714,88,0,675,'/m/t/mt04-blue_main_1.jpg'),(4715,89,0,675,'/m/t/mt04-blue_main_1.jpg'),(4716,73,0,675,'Helios Endurance Tank-XL-Blue'),(4717,106,0,676,'container2'),(4718,124,0,676,'0'),(4719,121,0,676,'helios-endurance-tank'),(4720,87,0,676,'/m/t/mt04-blue_main_1.jpg'),(4721,88,0,676,'/m/t/mt04-blue_main_1.jpg'),(4722,89,0,676,'/m/t/mt04-blue_main_1.jpg'),(4723,73,0,676,'Helios Endurance Tank'),(4724,106,0,677,'container2'),(4725,124,0,677,'0'),(4726,121,0,677,'rocco-gym-tank-xs-blue'),(4727,87,0,677,'/m/t/mt05-blue_main_1.jpg'),(4728,88,0,677,'/m/t/mt05-blue_main_1.jpg'),(4729,89,0,677,'/m/t/mt05-blue_main_1.jpg'),(4730,73,0,677,'Rocco Gym Tank-XS-Blue'),(4731,106,0,678,'container2'),(4732,124,0,678,'0'),(4733,121,0,678,'rocco-gym-tank-s-blue'),(4734,87,0,678,'/m/t/mt05-blue_main_1.jpg'),(4735,88,0,678,'/m/t/mt05-blue_main_1.jpg'),(4736,89,0,678,'/m/t/mt05-blue_main_1.jpg'),(4737,73,0,678,'Rocco Gym Tank-S-Blue'),(4738,106,0,679,'container2'),(4739,124,0,679,'0'),(4740,121,0,679,'rocco-gym-tank-m-blue'),(4741,87,0,679,'/m/t/mt05-blue_main_1.jpg'),(4742,88,0,679,'/m/t/mt05-blue_main_1.jpg'),(4743,89,0,679,'/m/t/mt05-blue_main_1.jpg'),(4744,73,0,679,'Rocco Gym Tank-M-Blue'),(4745,106,0,680,'container2'),(4746,124,0,680,'0'),(4747,121,0,680,'rocco-gym-tank-l-blue'),(4748,87,0,680,'/m/t/mt05-blue_main_1.jpg'),(4749,88,0,680,'/m/t/mt05-blue_main_1.jpg'),(4750,89,0,680,'/m/t/mt05-blue_main_1.jpg'),(4751,73,0,680,'Rocco Gym Tank-L-Blue'),(4752,106,0,681,'container2'),(4753,124,0,681,'0'),(4754,121,0,681,'rocco-gym-tank-xl-blue'),(4755,87,0,681,'/m/t/mt05-blue_main_1.jpg'),(4756,88,0,681,'/m/t/mt05-blue_main_1.jpg'),(4757,89,0,681,'/m/t/mt05-blue_main_1.jpg'),(4758,73,0,681,'Rocco Gym Tank-XL-Blue'),(4759,106,0,682,'container2'),(4760,124,0,682,'0'),(4761,121,0,682,'rocco-gym-tank'),(4762,87,0,682,'/m/t/mt05-blue_main_1.jpg'),(4763,88,0,682,'/m/t/mt05-blue_main_1.jpg'),(4764,89,0,682,'/m/t/mt05-blue_main_1.jpg'),(4765,73,0,682,'Rocco Gym Tank'),(4766,106,0,683,'container2'),(4767,124,0,683,'0'),(4768,121,0,683,'vulcan-weightlifting-tank-xs-black'),(4769,87,0,683,'/m/t/mt06-black_main_1.jpg'),(4770,88,0,683,'/m/t/mt06-black_main_1.jpg'),(4771,89,0,683,'/m/t/mt06-black_main_1.jpg'),(4772,73,0,683,'Vulcan Weightlifting Tank-XS-Black'),(4773,106,0,684,'container2'),(4774,124,0,684,'0'),(4775,121,0,684,'vulcan-weightlifting-tank-s-black'),(4776,87,0,684,'/m/t/mt06-black_main_1.jpg'),(4777,88,0,684,'/m/t/mt06-black_main_1.jpg'),(4778,89,0,684,'/m/t/mt06-black_main_1.jpg'),(4779,73,0,684,'Vulcan Weightlifting Tank-S-Black'),(4780,106,0,685,'container2'),(4781,124,0,685,'0'),(4782,121,0,685,'vulcan-weightlifting-tank-m-black'),(4783,87,0,685,'/m/t/mt06-black_main_1.jpg'),(4784,88,0,685,'/m/t/mt06-black_main_1.jpg'),(4785,89,0,685,'/m/t/mt06-black_main_1.jpg'),(4786,73,0,685,'Vulcan Weightlifting Tank-M-Black'),(4787,106,0,686,'container2'),(4788,124,0,686,'0'),(4789,121,0,686,'vulcan-weightlifting-tank-l-black'),(4790,87,0,686,'/m/t/mt06-black_main_1.jpg'),(4791,88,0,686,'/m/t/mt06-black_main_1.jpg'),(4792,89,0,686,'/m/t/mt06-black_main_1.jpg'),(4793,73,0,686,'Vulcan Weightlifting Tank-L-Black'),(4794,106,0,687,'container2'),(4795,124,0,687,'0'),(4796,121,0,687,'vulcan-weightlifting-tank-xl-black'),(4797,87,0,687,'/m/t/mt06-black_main_1.jpg'),(4798,88,0,687,'/m/t/mt06-black_main_1.jpg'),(4799,89,0,687,'/m/t/mt06-black_main_1.jpg'),(4800,73,0,687,'Vulcan Weightlifting Tank-XL-Black'),(4801,106,0,688,'container2'),(4802,124,0,688,'0'),(4803,121,0,688,'vulcan-weightlifting-tank'),(4804,87,0,688,'/m/t/mt06-black_main_1.jpg'),(4805,88,0,688,'/m/t/mt06-black_main_1.jpg'),(4806,89,0,688,'/m/t/mt06-black_main_1.jpg'),(4807,73,0,688,'Vulcan Weightlifting Tank'),(4808,106,0,689,'container2'),(4809,124,0,689,'0'),(4810,121,0,689,'argus-all-weather-tank-xs-gray'),(4811,87,0,689,'/m/t/mt07-gray_main_1.jpg'),(4812,88,0,689,'/m/t/mt07-gray_main_1.jpg'),(4813,89,0,689,'/m/t/mt07-gray_main_1.jpg'),(4814,73,0,689,'Argus All-Weather Tank-XS-Gray'),(4815,106,0,690,'container2'),(4816,124,0,690,'0'),(4817,121,0,690,'argus-all-weather-tank-s-gray'),(4818,87,0,690,'/m/t/mt07-gray_main_1.jpg'),(4819,88,0,690,'/m/t/mt07-gray_main_1.jpg'),(4820,89,0,690,'/m/t/mt07-gray_main_1.jpg'),(4821,73,0,690,'Argus All-Weather Tank-S-Gray'),(4822,106,0,691,'container2'),(4823,124,0,691,'0'),(4824,121,0,691,'argus-all-weather-tank-m-gray'),(4825,87,0,691,'/m/t/mt07-gray_main_1.jpg'),(4826,88,0,691,'/m/t/mt07-gray_main_1.jpg'),(4827,89,0,691,'/m/t/mt07-gray_main_1.jpg'),(4828,73,0,691,'Argus All-Weather Tank-M-Gray'),(4829,106,0,692,'container2'),(4830,124,0,692,'0'),(4831,121,0,692,'argus-all-weather-tank-l-gray'),(4832,87,0,692,'/m/t/mt07-gray_main_1.jpg'),(4833,88,0,692,'/m/t/mt07-gray_main_1.jpg'),(4834,89,0,692,'/m/t/mt07-gray_main_1.jpg'),(4835,73,0,692,'Argus All-Weather Tank-L-Gray'),(4836,106,0,693,'container2'),(4837,124,0,693,'0'),(4838,121,0,693,'argus-all-weather-tank-xl-gray'),(4839,87,0,693,'/m/t/mt07-gray_main_1.jpg'),(4840,88,0,693,'/m/t/mt07-gray_main_1.jpg'),(4841,89,0,693,'/m/t/mt07-gray_main_1.jpg'),(4842,73,0,693,'Argus All-Weather Tank-XL-Gray'),(4843,106,0,694,'container2'),(4844,124,0,694,'0'),(4845,121,0,694,'argus-all-weather-tank'),(4846,87,0,694,'/m/t/mt07-gray_main_1.jpg'),(4847,88,0,694,'/m/t/mt07-gray_main_1.jpg'),(4848,89,0,694,'/m/t/mt07-gray_main_1.jpg'),(4849,73,0,694,'Argus All-Weather Tank'),(4850,106,0,695,'container2'),(4851,124,0,695,'0'),(4852,121,0,695,'sparta-gym-tank-xs-green'),(4853,87,0,695,'/m/t/mt08-green_main_1.jpg'),(4854,88,0,695,'/m/t/mt08-green_main_1.jpg'),(4855,89,0,695,'/m/t/mt08-green_main_1.jpg'),(4856,73,0,695,'Sparta Gym Tank-XS-Green'),(4857,106,0,696,'container2'),(4858,124,0,696,'0'),(4859,121,0,696,'sparta-gym-tank-s-green'),(4860,87,0,696,'/m/t/mt08-green_main_1.jpg'),(4861,88,0,696,'/m/t/mt08-green_main_1.jpg'),(4862,89,0,696,'/m/t/mt08-green_main_1.jpg'),(4863,73,0,696,'Sparta Gym Tank-S-Green'),(4864,106,0,697,'container2'),(4865,124,0,697,'0'),(4866,121,0,697,'sparta-gym-tank-m-green'),(4867,87,0,697,'/m/t/mt08-green_main_1.jpg'),(4868,88,0,697,'/m/t/mt08-green_main_1.jpg'),(4869,89,0,697,'/m/t/mt08-green_main_1.jpg'),(4870,73,0,697,'Sparta Gym Tank-M-Green'),(4871,106,0,698,'container2'),(4872,124,0,698,'0'),(4873,121,0,698,'sparta-gym-tank-l-green'),(4874,87,0,698,'/m/t/mt08-green_main_1.jpg'),(4875,88,0,698,'/m/t/mt08-green_main_1.jpg'),(4876,89,0,698,'/m/t/mt08-green_main_1.jpg'),(4877,73,0,698,'Sparta Gym Tank-L-Green'),(4878,106,0,699,'container2'),(4879,124,0,699,'0'),(4880,121,0,699,'sparta-gym-tank-xl-green'),(4881,87,0,699,'/m/t/mt08-green_main_1.jpg'),(4882,88,0,699,'/m/t/mt08-green_main_1.jpg'),(4883,89,0,699,'/m/t/mt08-green_main_1.jpg'),(4884,73,0,699,'Sparta Gym Tank-XL-Green'),(4885,106,0,700,'container2'),(4886,124,0,700,'0'),(4887,121,0,700,'sparta-gym-tank'),(4888,87,0,700,'/m/t/mt08-green_main_1.jpg'),(4889,88,0,700,'/m/t/mt08-green_main_1.jpg'),(4890,89,0,700,'/m/t/mt08-green_main_1.jpg'),(4891,73,0,700,'Sparta Gym Tank'),(4892,106,0,701,'container2'),(4893,124,0,701,'0'),(4894,121,0,701,'sinbad-fitness-tank-xs-blue'),(4895,87,0,701,'/m/t/mt09-blue_main_1.jpg'),(4896,88,0,701,'/m/t/mt09-blue_main_1.jpg'),(4897,89,0,701,'/m/t/mt09-blue_main_1.jpg'),(4898,73,0,701,'Sinbad Fitness Tank-XS-Blue'),(4899,106,0,702,'container2'),(4900,124,0,702,'0'),(4901,121,0,702,'sinbad-fitness-tank-s-blue'),(4902,87,0,702,'/m/t/mt09-blue_main_1.jpg'),(4903,88,0,702,'/m/t/mt09-blue_main_1.jpg'),(4904,89,0,702,'/m/t/mt09-blue_main_1.jpg'),(4905,73,0,702,'Sinbad Fitness Tank-S-Blue'),(4906,106,0,703,'container2'),(4907,124,0,703,'0'),(4908,121,0,703,'sinbad-fitness-tank-m-blue'),(4909,87,0,703,'/m/t/mt09-blue_main_1.jpg'),(4910,88,0,703,'/m/t/mt09-blue_main_1.jpg'),(4911,89,0,703,'/m/t/mt09-blue_main_1.jpg'),(4912,73,0,703,'Sinbad Fitness Tank-M-Blue'),(4913,106,0,704,'container2'),(4914,124,0,704,'0'),(4915,121,0,704,'sinbad-fitness-tank-l-blue'),(4916,87,0,704,'/m/t/mt09-blue_main_1.jpg'),(4917,88,0,704,'/m/t/mt09-blue_main_1.jpg'),(4918,89,0,704,'/m/t/mt09-blue_main_1.jpg'),(4919,73,0,704,'Sinbad Fitness Tank-L-Blue'),(4920,106,0,705,'container2'),(4921,124,0,705,'0'),(4922,121,0,705,'sinbad-fitness-tank-xl-blue'),(4923,87,0,705,'/m/t/mt09-blue_main_1.jpg'),(4924,88,0,705,'/m/t/mt09-blue_main_1.jpg'),(4925,89,0,705,'/m/t/mt09-blue_main_1.jpg'),(4926,73,0,705,'Sinbad Fitness Tank-XL-Blue'),(4927,106,0,706,'container2'),(4928,124,0,706,'0'),(4929,121,0,706,'sinbad-fitness-tank'),(4930,87,0,706,'/m/t/mt09-blue_main_1.jpg'),(4931,88,0,706,'/m/t/mt09-blue_main_1.jpg'),(4932,89,0,706,'/m/t/mt09-blue_main_1.jpg'),(4933,73,0,706,'Sinbad Fitness Tank'),(4934,106,0,707,'container2'),(4935,124,0,707,'0'),(4936,121,0,707,'tiberius-gym-tank-xs-yellow'),(4937,87,0,707,'/m/t/mt10-yellow_main_1.jpg'),(4938,88,0,707,'/m/t/mt10-yellow_main_1.jpg'),(4939,89,0,707,'/m/t/mt10-yellow_main_1.jpg'),(4940,73,0,707,'Tiberius Gym Tank-XS-Yellow'),(4941,106,0,708,'container2'),(4942,124,0,708,'0'),(4943,121,0,708,'tiberius-gym-tank-s-yellow'),(4944,87,0,708,'/m/t/mt10-yellow_main_1.jpg'),(4945,88,0,708,'/m/t/mt10-yellow_main_1.jpg'),(4946,89,0,708,'/m/t/mt10-yellow_main_1.jpg'),(4947,73,0,708,'Tiberius Gym Tank-S-Yellow'),(4948,106,0,709,'container2'),(4949,124,0,709,'0'),(4950,121,0,709,'tiberius-gym-tank-m-yellow'),(4951,87,0,709,'/m/t/mt10-yellow_main_1.jpg'),(4952,88,0,709,'/m/t/mt10-yellow_main_1.jpg'),(4953,89,0,709,'/m/t/mt10-yellow_main_1.jpg'),(4954,73,0,709,'Tiberius Gym Tank-M-Yellow'),(4955,106,0,710,'container2'),(4956,124,0,710,'0'),(4957,121,0,710,'tiberius-gym-tank-l-yellow'),(4958,87,0,710,'/m/t/mt10-yellow_main_1.jpg'),(4959,88,0,710,'/m/t/mt10-yellow_main_1.jpg'),(4960,89,0,710,'/m/t/mt10-yellow_main_1.jpg'),(4961,73,0,710,'Tiberius Gym Tank-L-Yellow'),(4962,106,0,711,'container2'),(4963,124,0,711,'0'),(4964,121,0,711,'tiberius-gym-tank-xl-yellow'),(4965,87,0,711,'/m/t/mt10-yellow_main_1.jpg'),(4966,88,0,711,'/m/t/mt10-yellow_main_1.jpg'),(4967,89,0,711,'/m/t/mt10-yellow_main_1.jpg'),(4968,73,0,711,'Tiberius Gym Tank-XL-Yellow'),(4969,106,0,712,'container2'),(4970,124,0,712,'0'),(4971,121,0,712,'tiberius-gym-tank'),(4972,87,0,712,'/m/t/mt10-yellow_main_1.jpg'),(4973,88,0,712,'/m/t/mt10-yellow_main_1.jpg'),(4974,89,0,712,'/m/t/mt10-yellow_main_1.jpg'),(4975,73,0,712,'Tiberius Gym Tank'),(4976,106,0,713,'container2'),(4977,124,0,713,'0'),(4978,121,0,713,'atlas-fitness-tank-xs-blue'),(4979,87,0,713,'/m/t/mt11-blue_main_1.jpg'),(4980,88,0,713,'/m/t/mt11-blue_main_1.jpg'),(4981,89,0,713,'/m/t/mt11-blue_main_1.jpg'),(4982,73,0,713,'Atlas Fitness Tank-XS-Blue'),(4983,106,0,714,'container2'),(4984,124,0,714,'0'),(4985,121,0,714,'atlas-fitness-tank-s-blue'),(4986,87,0,714,'/m/t/mt11-blue_main_1.jpg'),(4987,88,0,714,'/m/t/mt11-blue_main_1.jpg'),(4988,89,0,714,'/m/t/mt11-blue_main_1.jpg'),(4989,73,0,714,'Atlas Fitness Tank-S-Blue'),(4990,106,0,715,'container2'),(4991,124,0,715,'0'),(4992,121,0,715,'atlas-fitness-tank-m-blue'),(4993,87,0,715,'/m/t/mt11-blue_main_1.jpg'),(4994,88,0,715,'/m/t/mt11-blue_main_1.jpg'),(4995,89,0,715,'/m/t/mt11-blue_main_1.jpg'),(4996,73,0,715,'Atlas Fitness Tank-M-Blue'),(4997,106,0,716,'container2'),(4998,124,0,716,'0'),(4999,121,0,716,'atlas-fitness-tank-l-blue'),(5000,87,0,716,'/m/t/mt11-blue_main_1.jpg'),(5001,88,0,716,'/m/t/mt11-blue_main_1.jpg'),(5002,89,0,716,'/m/t/mt11-blue_main_1.jpg'),(5003,73,0,716,'Atlas Fitness Tank-L-Blue'),(5004,106,0,717,'container2'),(5005,124,0,717,'0'),(5006,121,0,717,'atlas-fitness-tank-xl-blue'),(5007,87,0,717,'/m/t/mt11-blue_main_1.jpg'),(5008,88,0,717,'/m/t/mt11-blue_main_1.jpg'),(5009,89,0,717,'/m/t/mt11-blue_main_1.jpg'),(5010,73,0,717,'Atlas Fitness Tank-XL-Blue'),(5011,106,0,718,'container2'),(5012,124,0,718,'0'),(5013,121,0,718,'atlas-fitness-tank'),(5014,87,0,718,'/m/t/mt11-blue_main_1.jpg'),(5015,88,0,718,'/m/t/mt11-blue_main_1.jpg'),(5016,89,0,718,'/m/t/mt11-blue_main_1.jpg'),(5017,73,0,718,'Atlas Fitness Tank'),(5018,106,0,719,'container2'),(5019,124,0,719,'0'),(5020,121,0,719,'cassius-sparring-tank-xs-blue'),(5021,87,0,719,'/m/t/mt12-blue_main_1.jpg'),(5022,88,0,719,'/m/t/mt12-blue_main_1.jpg'),(5023,89,0,719,'/m/t/mt12-blue_main_1.jpg'),(5024,73,0,719,'Cassius Sparring Tank-XS-Blue'),(5025,106,0,720,'container2'),(5026,124,0,720,'0'),(5027,121,0,720,'cassius-sparring-tank-s-blue'),(5028,87,0,720,'/m/t/mt12-blue_main_1.jpg'),(5029,88,0,720,'/m/t/mt12-blue_main_1.jpg'),(5030,89,0,720,'/m/t/mt12-blue_main_1.jpg'),(5031,73,0,720,'Cassius Sparring Tank-S-Blue'),(5032,106,0,721,'container2'),(5033,124,0,721,'0'),(5034,121,0,721,'cassius-sparring-tank-m-blue'),(5035,87,0,721,'/m/t/mt12-blue_main_1.jpg'),(5036,88,0,721,'/m/t/mt12-blue_main_1.jpg'),(5037,89,0,721,'/m/t/mt12-blue_main_1.jpg'),(5038,73,0,721,'Cassius Sparring Tank-M-Blue'),(5039,106,0,722,'container2'),(5040,124,0,722,'0'),(5041,121,0,722,'cassius-sparring-tank-l-blue'),(5042,87,0,722,'/m/t/mt12-blue_main_1.jpg'),(5043,88,0,722,'/m/t/mt12-blue_main_1.jpg'),(5044,89,0,722,'/m/t/mt12-blue_main_1.jpg'),(5045,73,0,722,'Cassius Sparring Tank-L-Blue'),(5046,106,0,723,'container2'),(5047,124,0,723,'0'),(5048,121,0,723,'cassius-sparring-tank-xl-blue'),(5049,87,0,723,'/m/t/mt12-blue_main_1.jpg'),(5050,88,0,723,'/m/t/mt12-blue_main_1.jpg'),(5051,89,0,723,'/m/t/mt12-blue_main_1.jpg'),(5052,73,0,723,'Cassius Sparring Tank-XL-Blue'),(5053,106,0,724,'container2'),(5054,124,0,724,'0'),(5055,121,0,724,'cassius-sparring-tank'),(5056,87,0,724,'/m/t/mt12-blue_main_1.jpg'),(5057,88,0,724,'/m/t/mt12-blue_main_1.jpg'),(5058,89,0,724,'/m/t/mt12-blue_main_1.jpg'),(5059,73,0,724,'Cassius Sparring Tank'),(5060,106,0,725,'container2'),(5061,124,0,725,'0'),(5062,121,0,725,'caesar-warm-up-pant-32-black'),(5063,87,0,725,'/m/p/mp01-black_main_1.jpg'),(5064,88,0,725,'/m/p/mp01-black_main_1.jpg'),(5065,89,0,725,'/m/p/mp01-black_main_1.jpg'),(5066,73,0,725,'Caesar Warm-Up Pant-32-Black'),(5067,106,0,726,'container2'),(5068,124,0,726,'0'),(5069,121,0,726,'caesar-warm-up-pant-32-gray'),(5070,87,0,726,'/m/p/mp01-gray_main_1.jpg'),(5071,88,0,726,'/m/p/mp01-gray_main_1.jpg'),(5072,89,0,726,'/m/p/mp01-gray_main_1.jpg'),(5073,73,0,726,'Caesar Warm-Up Pant-32-Gray'),(5074,106,0,727,'container2'),(5075,124,0,727,'0'),(5076,121,0,727,'caesar-warm-up-pant-32-purple'),(5077,87,0,727,'/m/p/mp01-purple_main_1.jpg'),(5078,88,0,727,'/m/p/mp01-purple_main_1.jpg'),(5079,89,0,727,'/m/p/mp01-purple_main_1.jpg'),(5080,73,0,727,'Caesar Warm-Up Pant-32-Purple'),(5081,106,0,728,'container2'),(5082,124,0,728,'0'),(5083,121,0,728,'caesar-warm-up-pant-33-black'),(5084,87,0,728,'/m/p/mp01-black_main_1.jpg'),(5085,88,0,728,'/m/p/mp01-black_main_1.jpg'),(5086,89,0,728,'/m/p/mp01-black_main_1.jpg'),(5087,73,0,728,'Caesar Warm-Up Pant-33-Black'),(5088,106,0,729,'container2'),(5089,124,0,729,'0'),(5090,121,0,729,'caesar-warm-up-pant-33-gray'),(5091,87,0,729,'/m/p/mp01-gray_main_1.jpg'),(5092,88,0,729,'/m/p/mp01-gray_main_1.jpg'),(5093,89,0,729,'/m/p/mp01-gray_main_1.jpg'),(5094,73,0,729,'Caesar Warm-Up Pant-33-Gray'),(5095,106,0,730,'container2'),(5096,124,0,730,'0'),(5097,121,0,730,'caesar-warm-up-pant-33-purple'),(5098,87,0,730,'/m/p/mp01-purple_main_1.jpg'),(5099,88,0,730,'/m/p/mp01-purple_main_1.jpg'),(5100,89,0,730,'/m/p/mp01-purple_main_1.jpg'),(5101,73,0,730,'Caesar Warm-Up Pant-33-Purple'),(5102,106,0,731,'container2'),(5103,124,0,731,'0'),(5104,121,0,731,'caesar-warm-up-pant-34-black'),(5105,87,0,731,'/m/p/mp01-black_main_1.jpg'),(5106,88,0,731,'/m/p/mp01-black_main_1.jpg'),(5107,89,0,731,'/m/p/mp01-black_main_1.jpg'),(5108,73,0,731,'Caesar Warm-Up Pant-34-Black'),(5109,106,0,732,'container2'),(5110,124,0,732,'0'),(5111,121,0,732,'caesar-warm-up-pant-34-gray'),(5112,87,0,732,'/m/p/mp01-gray_main_1.jpg'),(5113,88,0,732,'/m/p/mp01-gray_main_1.jpg'),(5114,89,0,732,'/m/p/mp01-gray_main_1.jpg'),(5115,73,0,732,'Caesar Warm-Up Pant-34-Gray'),(5116,106,0,733,'container2'),(5117,124,0,733,'0'),(5118,121,0,733,'caesar-warm-up-pant-34-purple'),(5119,87,0,733,'/m/p/mp01-purple_main_1.jpg'),(5120,88,0,733,'/m/p/mp01-purple_main_1.jpg'),(5121,89,0,733,'/m/p/mp01-purple_main_1.jpg'),(5122,73,0,733,'Caesar Warm-Up Pant-34-Purple'),(5123,106,0,734,'container2'),(5124,124,0,734,'0'),(5125,121,0,734,'caesar-warm-up-pant-36-black'),(5126,87,0,734,'/m/p/mp01-black_main_1.jpg'),(5127,88,0,734,'/m/p/mp01-black_main_1.jpg'),(5128,89,0,734,'/m/p/mp01-black_main_1.jpg'),(5129,73,0,734,'Caesar Warm-Up Pant-36-Black'),(5130,106,0,735,'container2'),(5131,124,0,735,'0'),(5132,121,0,735,'caesar-warm-up-pant-36-gray'),(5133,87,0,735,'/m/p/mp01-gray_main_1.jpg'),(5134,88,0,735,'/m/p/mp01-gray_main_1.jpg'),(5135,89,0,735,'/m/p/mp01-gray_main_1.jpg'),(5136,73,0,735,'Caesar Warm-Up Pant-36-Gray'),(5137,106,0,736,'container2'),(5138,124,0,736,'0'),(5139,121,0,736,'caesar-warm-up-pant-36-purple'),(5140,87,0,736,'/m/p/mp01-purple_main_1.jpg'),(5141,88,0,736,'/m/p/mp01-purple_main_1.jpg'),(5142,89,0,736,'/m/p/mp01-purple_main_1.jpg'),(5143,73,0,736,'Caesar Warm-Up Pant-36-Purple'),(5144,106,0,737,'container2'),(5145,124,0,737,'0'),(5146,121,0,737,'caesar-warm-up-pant'),(5147,87,0,737,'/m/p/mp01-gray_main_1.jpg'),(5148,88,0,737,'/m/p/mp01-gray_main_1.jpg'),(5149,89,0,737,'/m/p/mp01-gray_main_1.jpg'),(5150,73,0,737,'Caesar Warm-Up Pant'),(5151,106,0,738,'container2'),(5152,124,0,738,'0'),(5153,121,0,738,'viktor-lumatech-trade-pant-32-blue'),(5154,87,0,738,'/m/p/mp02-blue_main_1.jpg'),(5155,88,0,738,'/m/p/mp02-blue_main_1.jpg'),(5156,89,0,738,'/m/p/mp02-blue_main_1.jpg'),(5157,73,0,738,'Viktor LumaTech&trade; Pant-32-Blue'),(5158,106,0,739,'container2'),(5159,124,0,739,'0'),(5160,121,0,739,'viktor-lumatech-trade-pant-32-gray'),(5161,87,0,739,'/m/p/mp02-gray_main_1.jpg'),(5162,88,0,739,'/m/p/mp02-gray_main_1.jpg'),(5163,89,0,739,'/m/p/mp02-gray_main_1.jpg'),(5164,73,0,739,'Viktor LumaTech&trade; Pant-32-Gray'),(5165,106,0,740,'container2'),(5166,124,0,740,'0'),(5167,121,0,740,'viktor-lumatech-trade-pant-32-red'),(5168,87,0,740,'/m/p/mp02-red_main_1.jpg'),(5169,88,0,740,'/m/p/mp02-red_main_1.jpg'),(5170,89,0,740,'/m/p/mp02-red_main_1.jpg'),(5171,73,0,740,'Viktor LumaTech&trade; Pant-32-Red'),(5172,106,0,741,'container2'),(5173,124,0,741,'0'),(5174,121,0,741,'viktor-lumatech-trade-pant-33-blue'),(5175,87,0,741,'/m/p/mp02-blue_main_1.jpg'),(5176,88,0,741,'/m/p/mp02-blue_main_1.jpg'),(5177,89,0,741,'/m/p/mp02-blue_main_1.jpg'),(5178,73,0,741,'Viktor LumaTech&trade; Pant-33-Blue'),(5179,106,0,742,'container2'),(5180,124,0,742,'0'),(5181,121,0,742,'viktor-lumatech-trade-pant-33-gray'),(5182,87,0,742,'/m/p/mp02-gray_main_1.jpg'),(5183,88,0,742,'/m/p/mp02-gray_main_1.jpg'),(5184,89,0,742,'/m/p/mp02-gray_main_1.jpg'),(5185,73,0,742,'Viktor LumaTech&trade; Pant-33-Gray'),(5186,106,0,743,'container2'),(5187,124,0,743,'0'),(5188,121,0,743,'viktor-lumatech-trade-pant-33-red'),(5189,87,0,743,'/m/p/mp02-red_main_1.jpg'),(5190,88,0,743,'/m/p/mp02-red_main_1.jpg'),(5191,89,0,743,'/m/p/mp02-red_main_1.jpg'),(5192,73,0,743,'Viktor LumaTech&trade; Pant-33-Red'),(5193,106,0,744,'container2'),(5194,124,0,744,'0'),(5195,121,0,744,'viktor-lumatech-trade-pant-34-blue'),(5196,87,0,744,'/m/p/mp02-blue_main_1.jpg'),(5197,88,0,744,'/m/p/mp02-blue_main_1.jpg'),(5198,89,0,744,'/m/p/mp02-blue_main_1.jpg'),(5199,73,0,744,'Viktor LumaTech&trade; Pant-34-Blue'),(5200,106,0,745,'container2'),(5201,124,0,745,'0'),(5202,121,0,745,'viktor-lumatech-trade-pant-34-gray'),(5203,87,0,745,'/m/p/mp02-gray_main_1.jpg'),(5204,88,0,745,'/m/p/mp02-gray_main_1.jpg'),(5205,89,0,745,'/m/p/mp02-gray_main_1.jpg'),(5206,73,0,745,'Viktor LumaTech&trade; Pant-34-Gray'),(5207,106,0,746,'container2'),(5208,124,0,746,'0'),(5209,121,0,746,'viktor-lumatech-trade-pant-34-red'),(5210,87,0,746,'/m/p/mp02-red_main_1.jpg'),(5211,88,0,746,'/m/p/mp02-red_main_1.jpg'),(5212,89,0,746,'/m/p/mp02-red_main_1.jpg'),(5213,73,0,746,'Viktor LumaTech&trade; Pant-34-Red'),(5214,106,0,747,'container2'),(5215,124,0,747,'0'),(5216,121,0,747,'viktor-lumatech-trade-pant-36-blue'),(5217,87,0,747,'/m/p/mp02-blue_main_2.jpg'),(5218,88,0,747,'/m/p/mp02-blue_main_2.jpg'),(5219,89,0,747,'/m/p/mp02-blue_main_2.jpg'),(5220,73,0,747,'Viktor LumaTech&trade; Pant-36-Blue'),(5221,106,0,748,'container2'),(5222,124,0,748,'0'),(5223,121,0,748,'viktor-lumatech-trade-pant-36-gray'),(5224,87,0,748,'/m/p/mp02-gray_main_2.jpg'),(5225,88,0,748,'/m/p/mp02-gray_main_2.jpg'),(5226,89,0,748,'/m/p/mp02-gray_main_2.jpg'),(5227,73,0,748,'Viktor LumaTech&trade; Pant-36-Gray'),(5228,106,0,749,'container2'),(5229,124,0,749,'0'),(5230,121,0,749,'viktor-lumatech-trade-pant-36-red'),(5231,87,0,749,'/m/p/mp02-red_main_2.jpg'),(5232,88,0,749,'/m/p/mp02-red_main_2.jpg'),(5233,89,0,749,'/m/p/mp02-red_main_2.jpg'),(5234,73,0,749,'Viktor LumaTech&trade; Pant-36-Red'),(5235,106,0,750,'container2'),(5236,124,0,750,'0'),(5237,121,0,750,'viktor-lumatech-trade-pant'),(5238,87,0,750,'/m/p/mp02-gray_main_2.jpg'),(5239,88,0,750,'/m/p/mp02-gray_main_2.jpg'),(5240,89,0,750,'/m/p/mp02-gray_main_2.jpg'),(5241,73,0,750,'Viktor LumaTech&trade; Pant'),(5242,106,0,751,'container2'),(5243,124,0,751,'0'),(5244,121,0,751,'geo-insulated-jogging-pant-32-blue'),(5245,87,0,751,'/m/p/mp03-blue_main_1.jpg'),(5246,88,0,751,'/m/p/mp03-blue_main_1.jpg'),(5247,89,0,751,'/m/p/mp03-blue_main_1.jpg'),(5248,73,0,751,'Geo Insulated Jogging Pant-32-Blue'),(5249,106,0,752,'container2'),(5250,124,0,752,'0'),(5251,121,0,752,'geo-insulated-jogging-pant-32-green'),(5252,87,0,752,'/m/p/mp03-green_main_1.jpg'),(5253,88,0,752,'/m/p/mp03-green_main_1.jpg'),(5254,89,0,752,'/m/p/mp03-green_main_1.jpg'),(5255,73,0,752,'Geo Insulated Jogging Pant-32-Green'),(5256,106,0,753,'container2'),(5257,124,0,753,'0'),(5258,121,0,753,'geo-insulated-jogging-pant-32-red'),(5259,87,0,753,'/m/p/mp03-red_main_1.jpg'),(5260,88,0,753,'/m/p/mp03-red_main_1.jpg'),(5261,89,0,753,'/m/p/mp03-red_main_1.jpg'),(5262,73,0,753,'Geo Insulated Jogging Pant-32-Red'),(5263,106,0,754,'container2'),(5264,124,0,754,'0'),(5265,121,0,754,'geo-insulated-jogging-pant-33-blue'),(5266,87,0,754,'/m/p/mp03-blue_main_1.jpg'),(5267,88,0,754,'/m/p/mp03-blue_main_1.jpg'),(5268,89,0,754,'/m/p/mp03-blue_main_1.jpg'),(5269,73,0,754,'Geo Insulated Jogging Pant-33-Blue'),(5270,106,0,755,'container2'),(5271,124,0,755,'0'),(5272,121,0,755,'geo-insulated-jogging-pant-33-green'),(5273,87,0,755,'/m/p/mp03-green_main_1.jpg'),(5274,88,0,755,'/m/p/mp03-green_main_1.jpg'),(5275,89,0,755,'/m/p/mp03-green_main_1.jpg'),(5276,73,0,755,'Geo Insulated Jogging Pant-33-Green'),(5277,106,0,756,'container2'),(5278,124,0,756,'0'),(5279,121,0,756,'geo-insulated-jogging-pant-33-red'),(5280,87,0,756,'/m/p/mp03-red_main_1.jpg'),(5281,88,0,756,'/m/p/mp03-red_main_1.jpg'),(5282,89,0,756,'/m/p/mp03-red_main_1.jpg'),(5283,73,0,756,'Geo Insulated Jogging Pant-33-Red'),(5284,106,0,757,'container2'),(5285,124,0,757,'0'),(5286,121,0,757,'geo-insulated-jogging-pant-34-blue'),(5287,87,0,757,'/m/p/mp03-blue_main_1.jpg'),(5288,88,0,757,'/m/p/mp03-blue_main_1.jpg'),(5289,89,0,757,'/m/p/mp03-blue_main_1.jpg'),(5290,73,0,757,'Geo Insulated Jogging Pant-34-Blue'),(5291,106,0,758,'container2'),(5292,124,0,758,'0'),(5293,121,0,758,'geo-insulated-jogging-pant-34-green'),(5294,87,0,758,'/m/p/mp03-green_main_1.jpg'),(5295,88,0,758,'/m/p/mp03-green_main_1.jpg'),(5296,89,0,758,'/m/p/mp03-green_main_1.jpg'),(5297,73,0,758,'Geo Insulated Jogging Pant-34-Green'),(5298,106,0,759,'container2'),(5299,124,0,759,'0'),(5300,121,0,759,'geo-insulated-jogging-pant-34-red'),(5301,87,0,759,'/m/p/mp03-red_main_1.jpg'),(5302,88,0,759,'/m/p/mp03-red_main_1.jpg'),(5303,89,0,759,'/m/p/mp03-red_main_1.jpg'),(5304,73,0,759,'Geo Insulated Jogging Pant-34-Red'),(5305,106,0,760,'container2'),(5306,124,0,760,'0'),(5307,121,0,760,'geo-insulated-jogging-pant-36-blue'),(5308,87,0,760,'/m/p/mp03-blue_main_1.jpg'),(5309,88,0,760,'/m/p/mp03-blue_main_1.jpg'),(5310,89,0,760,'/m/p/mp03-blue_main_1.jpg'),(5311,73,0,760,'Geo Insulated Jogging Pant-36-Blue'),(5312,106,0,761,'container2'),(5313,124,0,761,'0'),(5314,121,0,761,'geo-insulated-jogging-pant-36-green'),(5315,87,0,761,'/m/p/mp03-green_main_1.jpg'),(5316,88,0,761,'/m/p/mp03-green_main_1.jpg'),(5317,89,0,761,'/m/p/mp03-green_main_1.jpg'),(5318,73,0,761,'Geo Insulated Jogging Pant-36-Green'),(5319,106,0,762,'container2'),(5320,124,0,762,'0'),(5321,121,0,762,'geo-insulated-jogging-pant-36-red'),(5322,87,0,762,'/m/p/mp03-red_main_1.jpg'),(5323,88,0,762,'/m/p/mp03-red_main_1.jpg'),(5324,89,0,762,'/m/p/mp03-red_main_1.jpg'),(5325,73,0,762,'Geo Insulated Jogging Pant-36-Red'),(5326,106,0,763,'container2'),(5327,124,0,763,'0'),(5328,121,0,763,'geo-insulated-jogging-pant'),(5329,87,0,763,'/m/p/mp03-black_main_1.jpg'),(5330,88,0,763,'/m/p/mp03-black_main_1.jpg'),(5331,89,0,763,'/m/p/mp03-black_main_1.jpg'),(5332,73,0,763,'Geo Insulated Jogging Pant'),(5333,106,0,764,'container2'),(5334,124,0,764,'0'),(5335,121,0,764,'supernova-sport-pant-32-black'),(5336,87,0,764,'/m/p/mp04-black_main_1.jpg'),(5337,88,0,764,'/m/p/mp04-black_main_1.jpg'),(5338,89,0,764,'/m/p/mp04-black_main_1.jpg'),(5339,73,0,764,'Supernova Sport Pant-32-Black'),(5340,106,0,765,'container2'),(5341,124,0,765,'0'),(5342,121,0,765,'supernova-sport-pant-32-gray'),(5343,87,0,765,'/m/p/mp04-gray_main_1.jpg'),(5344,88,0,765,'/m/p/mp04-gray_main_1.jpg'),(5345,89,0,765,'/m/p/mp04-gray_main_1.jpg'),(5346,73,0,765,'Supernova Sport Pant-32-Gray'),(5347,106,0,766,'container2'),(5348,124,0,766,'0'),(5349,121,0,766,'supernova-sport-pant-32-green'),(5350,87,0,766,'/m/p/mp04-green_main_1.jpg'),(5351,88,0,766,'/m/p/mp04-green_main_1.jpg'),(5352,89,0,766,'/m/p/mp04-green_main_1.jpg'),(5353,73,0,766,'Supernova Sport Pant-32-Green'),(5354,106,0,767,'container2'),(5355,124,0,767,'0'),(5356,121,0,767,'supernova-sport-pant-33-black'),(5357,87,0,767,'/m/p/mp04-black_main_1.jpg'),(5358,88,0,767,'/m/p/mp04-black_main_1.jpg'),(5359,89,0,767,'/m/p/mp04-black_main_1.jpg'),(5360,73,0,767,'Supernova Sport Pant-33-Black'),(5361,106,0,768,'container2'),(5362,124,0,768,'0'),(5363,121,0,768,'supernova-sport-pant-33-gray'),(5364,87,0,768,'/m/p/mp04-gray_main_1.jpg'),(5365,88,0,768,'/m/p/mp04-gray_main_1.jpg'),(5366,89,0,768,'/m/p/mp04-gray_main_1.jpg'),(5367,73,0,768,'Supernova Sport Pant-33-Gray'),(5368,106,0,769,'container2'),(5369,124,0,769,'0'),(5370,121,0,769,'supernova-sport-pant-33-green'),(5371,87,0,769,'/m/p/mp04-green_main_1.jpg'),(5372,88,0,769,'/m/p/mp04-green_main_1.jpg'),(5373,89,0,769,'/m/p/mp04-green_main_1.jpg'),(5374,73,0,769,'Supernova Sport Pant-33-Green'),(5375,106,0,770,'container2'),(5376,124,0,770,'0'),(5377,121,0,770,'supernova-sport-pant-34-black'),(5378,87,0,770,'/m/p/mp04-black_main_1.jpg'),(5379,88,0,770,'/m/p/mp04-black_main_1.jpg'),(5380,89,0,770,'/m/p/mp04-black_main_1.jpg'),(5381,73,0,770,'Supernova Sport Pant-34-Black'),(5382,106,0,771,'container2'),(5383,124,0,771,'0'),(5384,121,0,771,'supernova-sport-pant-34-gray'),(5385,87,0,771,'/m/p/mp04-gray_main_1.jpg'),(5386,88,0,771,'/m/p/mp04-gray_main_1.jpg'),(5387,89,0,771,'/m/p/mp04-gray_main_1.jpg'),(5388,73,0,771,'Supernova Sport Pant-34-Gray'),(5389,106,0,772,'container2'),(5390,124,0,772,'0'),(5391,121,0,772,'supernova-sport-pant-34-green'),(5392,87,0,772,'/m/p/mp04-green_main_1.jpg'),(5393,88,0,772,'/m/p/mp04-green_main_1.jpg'),(5394,89,0,772,'/m/p/mp04-green_main_1.jpg'),(5395,73,0,772,'Supernova Sport Pant-34-Green'),(5396,106,0,773,'container2'),(5397,124,0,773,'0'),(5398,121,0,773,'supernova-sport-pant-36-black'),(5399,87,0,773,'/m/p/mp04-black_main_1.jpg'),(5400,88,0,773,'/m/p/mp04-black_main_1.jpg'),(5401,89,0,773,'/m/p/mp04-black_main_1.jpg'),(5402,73,0,773,'Supernova Sport Pant-36-Black'),(5403,106,0,774,'container2'),(5404,124,0,774,'0'),(5405,121,0,774,'supernova-sport-pant-36-gray'),(5406,87,0,774,'/m/p/mp04-gray_main_1.jpg'),(5407,88,0,774,'/m/p/mp04-gray_main_1.jpg'),(5408,89,0,774,'/m/p/mp04-gray_main_1.jpg'),(5409,73,0,774,'Supernova Sport Pant-36-Gray'),(5410,106,0,775,'container2'),(5411,124,0,775,'0'),(5412,121,0,775,'supernova-sport-pant-36-green'),(5413,87,0,775,'/m/p/mp04-green_main_1.jpg'),(5414,88,0,775,'/m/p/mp04-green_main_1.jpg'),(5415,89,0,775,'/m/p/mp04-green_main_1.jpg'),(5416,73,0,775,'Supernova Sport Pant-36-Green'),(5417,106,0,776,'container2'),(5418,124,0,776,'0'),(5419,121,0,776,'supernova-sport-pant'),(5420,87,0,776,'/m/p/mp04-gray_main_1.jpg'),(5421,88,0,776,'/m/p/mp04-gray_main_1.jpg'),(5422,89,0,776,'/m/p/mp04-gray_main_1.jpg'),(5423,73,0,776,'Supernova Sport Pant'),(5424,106,0,777,'container2'),(5425,124,0,777,'0'),(5426,121,0,777,'kratos-gym-pant-32-black'),(5427,87,0,777,'/m/p/mp05-black_main_1.jpg'),(5428,88,0,777,'/m/p/mp05-black_main_1.jpg'),(5429,89,0,777,'/m/p/mp05-black_main_1.jpg'),(5430,73,0,777,'Kratos Gym Pant-32-Black'),(5431,106,0,778,'container2'),(5432,124,0,778,'0'),(5433,121,0,778,'kratos-gym-pant-32-blue'),(5434,87,0,778,'/m/p/mp05-blue_main_1.jpg'),(5435,88,0,778,'/m/p/mp05-blue_main_1.jpg'),(5436,89,0,778,'/m/p/mp05-blue_main_1.jpg'),(5437,73,0,778,'Kratos Gym Pant-32-Blue'),(5438,106,0,779,'container2'),(5439,124,0,779,'0'),(5440,121,0,779,'kratos-gym-pant-32-green'),(5441,87,0,779,'/m/p/mp05-green_main_1.jpg'),(5442,88,0,779,'/m/p/mp05-green_main_1.jpg'),(5443,89,0,779,'/m/p/mp05-green_main_1.jpg'),(5444,73,0,779,'Kratos Gym Pant-32-Green'),(5445,106,0,780,'container2'),(5446,124,0,780,'0'),(5447,121,0,780,'kratos-gym-pant-33-black'),(5448,87,0,780,'/m/p/mp05-black_main_1.jpg'),(5449,88,0,780,'/m/p/mp05-black_main_1.jpg'),(5450,89,0,780,'/m/p/mp05-black_main_1.jpg'),(5451,73,0,780,'Kratos Gym Pant-33-Black'),(5452,106,0,781,'container2'),(5453,124,0,781,'0'),(5454,121,0,781,'kratos-gym-pant-33-blue'),(5455,87,0,781,'/m/p/mp05-blue_main_1.jpg'),(5456,88,0,781,'/m/p/mp05-blue_main_1.jpg'),(5457,89,0,781,'/m/p/mp05-blue_main_1.jpg'),(5458,73,0,781,'Kratos Gym Pant-33-Blue'),(5459,106,0,782,'container2'),(5460,124,0,782,'0'),(5461,121,0,782,'kratos-gym-pant-33-green'),(5462,87,0,782,'/m/p/mp05-green_main_1.jpg'),(5463,88,0,782,'/m/p/mp05-green_main_1.jpg'),(5464,89,0,782,'/m/p/mp05-green_main_1.jpg'),(5465,73,0,782,'Kratos Gym Pant-33-Green'),(5466,106,0,783,'container2'),(5467,124,0,783,'0'),(5468,121,0,783,'kratos-gym-pant-34-black'),(5469,87,0,783,'/m/p/mp05-black_main_1.jpg'),(5470,88,0,783,'/m/p/mp05-black_main_1.jpg'),(5471,89,0,783,'/m/p/mp05-black_main_1.jpg'),(5472,73,0,783,'Kratos Gym Pant-34-Black'),(5473,106,0,784,'container2'),(5474,124,0,784,'0'),(5475,121,0,784,'kratos-gym-pant-34-blue'),(5476,87,0,784,'/m/p/mp05-blue_main_1.jpg'),(5477,88,0,784,'/m/p/mp05-blue_main_1.jpg'),(5478,89,0,784,'/m/p/mp05-blue_main_1.jpg'),(5479,73,0,784,'Kratos Gym Pant-34-Blue'),(5480,106,0,785,'container2'),(5481,124,0,785,'0'),(5482,121,0,785,'kratos-gym-pant-34-green'),(5483,87,0,785,'/m/p/mp05-green_main_1.jpg'),(5484,88,0,785,'/m/p/mp05-green_main_1.jpg'),(5485,89,0,785,'/m/p/mp05-green_main_1.jpg'),(5486,73,0,785,'Kratos Gym Pant-34-Green'),(5487,106,0,786,'container2'),(5488,124,0,786,'0'),(5489,121,0,786,'kratos-gym-pant-36-black'),(5490,87,0,786,'/m/p/mp05-black_main_1.jpg'),(5491,88,0,786,'/m/p/mp05-black_main_1.jpg'),(5492,89,0,786,'/m/p/mp05-black_main_1.jpg'),(5493,73,0,786,'Kratos Gym Pant-36-Black'),(5494,106,0,787,'container2'),(5495,124,0,787,'0'),(5496,121,0,787,'kratos-gym-pant-36-blue'),(5497,87,0,787,'/m/p/mp05-blue_main_1.jpg'),(5498,88,0,787,'/m/p/mp05-blue_main_1.jpg'),(5499,89,0,787,'/m/p/mp05-blue_main_1.jpg'),(5500,73,0,787,'Kratos Gym Pant-36-Blue'),(5501,106,0,788,'container2'),(5502,124,0,788,'0'),(5503,121,0,788,'kratos-gym-pant-36-green'),(5504,87,0,788,'/m/p/mp05-green_main_1.jpg'),(5505,88,0,788,'/m/p/mp05-green_main_1.jpg'),(5506,89,0,788,'/m/p/mp05-green_main_1.jpg'),(5507,73,0,788,'Kratos Gym Pant-36-Green'),(5508,106,0,789,'container2'),(5509,124,0,789,'0'),(5510,121,0,789,'kratos-gym-pant'),(5511,87,0,789,'/m/p/mp05-blue_main_1.jpg'),(5512,88,0,789,'/m/p/mp05-blue_main_1.jpg'),(5513,89,0,789,'/m/p/mp05-blue_main_1.jpg'),(5514,73,0,789,'Kratos Gym Pant'),(5515,106,0,790,'container2'),(5516,124,0,790,'0'),(5517,121,0,790,'mithra-warmup-pant-32-gray'),(5518,87,0,790,'/m/p/mp06-gray_main_1.jpg'),(5519,88,0,790,'/m/p/mp06-gray_main_1.jpg'),(5520,89,0,790,'/m/p/mp06-gray_main_1.jpg'),(5521,73,0,790,'Mithra Warmup Pant-32-Gray'),(5522,106,0,791,'container2'),(5523,124,0,791,'0'),(5524,121,0,791,'mithra-warmup-pant-32-green'),(5525,87,0,791,'/m/p/mp06-green_main_1.jpg'),(5526,88,0,791,'/m/p/mp06-green_main_1.jpg'),(5527,89,0,791,'/m/p/mp06-green_main_1.jpg'),(5528,73,0,791,'Mithra Warmup Pant-32-Green'),(5529,106,0,792,'container2'),(5530,124,0,792,'0'),(5531,121,0,792,'mithra-warmup-pant-32-orange'),(5532,87,0,792,'/m/p/mp06-orange_main_1.jpg'),(5533,88,0,792,'/m/p/mp06-orange_main_1.jpg'),(5534,89,0,792,'/m/p/mp06-orange_main_1.jpg'),(5535,73,0,792,'Mithra Warmup Pant-32-Orange'),(5536,106,0,793,'container2'),(5537,124,0,793,'0'),(5538,121,0,793,'mithra-warmup-pant-33-gray'),(5539,87,0,793,'/m/p/mp06-gray_main_1.jpg'),(5540,88,0,793,'/m/p/mp06-gray_main_1.jpg'),(5541,89,0,793,'/m/p/mp06-gray_main_1.jpg'),(5542,73,0,793,'Mithra Warmup Pant-33-Gray'),(5543,106,0,794,'container2'),(5544,124,0,794,'0'),(5545,121,0,794,'mithra-warmup-pant-33-green'),(5546,87,0,794,'/m/p/mp06-green_main_1.jpg'),(5547,88,0,794,'/m/p/mp06-green_main_1.jpg'),(5548,89,0,794,'/m/p/mp06-green_main_1.jpg'),(5549,73,0,794,'Mithra Warmup Pant-33-Green'),(5550,106,0,795,'container2'),(5551,124,0,795,'0'),(5552,121,0,795,'mithra-warmup-pant-33-orange'),(5553,87,0,795,'/m/p/mp06-orange_main_1.jpg'),(5554,88,0,795,'/m/p/mp06-orange_main_1.jpg'),(5555,89,0,795,'/m/p/mp06-orange_main_1.jpg'),(5556,73,0,795,'Mithra Warmup Pant-33-Orange'),(5557,106,0,796,'container2'),(5558,124,0,796,'0'),(5559,121,0,796,'mithra-warmup-pant-34-gray'),(5560,87,0,796,'/m/p/mp06-gray_main_1.jpg'),(5561,88,0,796,'/m/p/mp06-gray_main_1.jpg'),(5562,89,0,796,'/m/p/mp06-gray_main_1.jpg'),(5563,73,0,796,'Mithra Warmup Pant-34-Gray'),(5564,106,0,797,'container2'),(5565,124,0,797,'0'),(5566,121,0,797,'mithra-warmup-pant-34-green'),(5567,87,0,797,'/m/p/mp06-green_main_1.jpg'),(5568,88,0,797,'/m/p/mp06-green_main_1.jpg'),(5569,89,0,797,'/m/p/mp06-green_main_1.jpg'),(5570,73,0,797,'Mithra Warmup Pant-34-Green'),(5571,106,0,798,'container2'),(5572,124,0,798,'0'),(5573,121,0,798,'mithra-warmup-pant-34-orange'),(5574,87,0,798,'/m/p/mp06-orange_main_1.jpg'),(5575,88,0,798,'/m/p/mp06-orange_main_1.jpg'),(5576,89,0,798,'/m/p/mp06-orange_main_1.jpg'),(5577,73,0,798,'Mithra Warmup Pant-34-Orange'),(5578,106,0,799,'container2'),(5579,124,0,799,'0'),(5580,121,0,799,'mithra-warmup-pant-36-gray'),(5581,87,0,799,'/m/p/mp06-gray_main_1.jpg'),(5582,88,0,799,'/m/p/mp06-gray_main_1.jpg'),(5583,89,0,799,'/m/p/mp06-gray_main_1.jpg'),(5584,73,0,799,'Mithra Warmup Pant-36-Gray'),(5585,106,0,800,'container2'),(5586,124,0,800,'0'),(5587,121,0,800,'mithra-warmup-pant-36-green'),(5588,87,0,800,'/m/p/mp06-green_main_1.jpg'),(5589,88,0,800,'/m/p/mp06-green_main_1.jpg'),(5590,89,0,800,'/m/p/mp06-green_main_1.jpg'),(5591,73,0,800,'Mithra Warmup Pant-36-Green'),(5592,106,0,801,'container2'),(5593,124,0,801,'0'),(5594,121,0,801,'mithra-warmup-pant-36-orange'),(5595,87,0,801,'/m/p/mp06-orange_main_1.jpg'),(5596,88,0,801,'/m/p/mp06-orange_main_1.jpg'),(5597,89,0,801,'/m/p/mp06-orange_main_1.jpg'),(5598,73,0,801,'Mithra Warmup Pant-36-Orange'),(5599,106,0,802,'container2'),(5600,124,0,802,'0'),(5601,121,0,802,'mithra-warmup-pant'),(5602,87,0,802,'/m/p/mp06-gray_main_1.jpg'),(5603,88,0,802,'/m/p/mp06-gray_main_1.jpg'),(5604,89,0,802,'/m/p/mp06-gray_main_1.jpg'),(5605,73,0,802,'Mithra Warmup Pant'),(5606,106,0,803,'container2'),(5607,124,0,803,'0'),(5608,121,0,803,'thorpe-track-pant-32-black'),(5609,87,0,803,'/m/p/mp07-black_main_1.jpg'),(5610,88,0,803,'/m/p/mp07-black_main_1.jpg'),(5611,89,0,803,'/m/p/mp07-black_main_1.jpg'),(5612,73,0,803,'Thorpe Track Pant-32-Black'),(5613,106,0,804,'container2'),(5614,124,0,804,'0'),(5615,121,0,804,'thorpe-track-pant-32-blue'),(5616,87,0,804,'/m/p/mp07-blue_main_1.jpg'),(5617,88,0,804,'/m/p/mp07-blue_main_1.jpg'),(5618,89,0,804,'/m/p/mp07-blue_main_1.jpg'),(5619,73,0,804,'Thorpe Track Pant-32-Blue'),(5620,106,0,805,'container2'),(5621,124,0,805,'0'),(5622,121,0,805,'thorpe-track-pant-32-purple'),(5623,87,0,805,'/m/p/mp07-purple_main_1.jpg'),(5624,88,0,805,'/m/p/mp07-purple_main_1.jpg'),(5625,89,0,805,'/m/p/mp07-purple_main_1.jpg'),(5626,73,0,805,'Thorpe Track Pant-32-Purple'),(5627,106,0,806,'container2'),(5628,124,0,806,'0'),(5629,121,0,806,'thorpe-track-pant-33-black'),(5630,87,0,806,'/m/p/mp07-black_main_1.jpg'),(5631,88,0,806,'/m/p/mp07-black_main_1.jpg'),(5632,89,0,806,'/m/p/mp07-black_main_1.jpg'),(5633,73,0,806,'Thorpe Track Pant-33-Black'),(5634,106,0,807,'container2'),(5635,124,0,807,'0'),(5636,121,0,807,'thorpe-track-pant-33-blue'),(5637,87,0,807,'/m/p/mp07-blue_main_1.jpg'),(5638,88,0,807,'/m/p/mp07-blue_main_1.jpg'),(5639,89,0,807,'/m/p/mp07-blue_main_1.jpg'),(5640,73,0,807,'Thorpe Track Pant-33-Blue'),(5641,106,0,808,'container2'),(5642,124,0,808,'0'),(5643,121,0,808,'thorpe-track-pant-33-purple'),(5644,87,0,808,'/m/p/mp07-purple_main_1.jpg'),(5645,88,0,808,'/m/p/mp07-purple_main_1.jpg'),(5646,89,0,808,'/m/p/mp07-purple_main_1.jpg'),(5647,73,0,808,'Thorpe Track Pant-33-Purple'),(5648,106,0,809,'container2'),(5649,124,0,809,'0'),(5650,121,0,809,'thorpe-track-pant-34-black'),(5651,87,0,809,'/m/p/mp07-black_main_1.jpg'),(5652,88,0,809,'/m/p/mp07-black_main_1.jpg'),(5653,89,0,809,'/m/p/mp07-black_main_1.jpg'),(5654,73,0,809,'Thorpe Track Pant-34-Black'),(5655,106,0,810,'container2'),(5656,124,0,810,'0'),(5657,121,0,810,'thorpe-track-pant-34-blue'),(5658,87,0,810,'/m/p/mp07-blue_main_1.jpg'),(5659,88,0,810,'/m/p/mp07-blue_main_1.jpg'),(5660,89,0,810,'/m/p/mp07-blue_main_1.jpg'),(5661,73,0,810,'Thorpe Track Pant-34-Blue'),(5662,106,0,811,'container2'),(5663,124,0,811,'0'),(5664,121,0,811,'thorpe-track-pant-34-purple'),(5665,87,0,811,'/m/p/mp07-purple_main_1.jpg'),(5666,88,0,811,'/m/p/mp07-purple_main_1.jpg'),(5667,89,0,811,'/m/p/mp07-purple_main_1.jpg'),(5668,73,0,811,'Thorpe Track Pant-34-Purple'),(5669,106,0,812,'container2'),(5670,124,0,812,'0'),(5671,121,0,812,'thorpe-track-pant-36-black'),(5672,87,0,812,'/m/p/mp07-black_main_1.jpg'),(5673,88,0,812,'/m/p/mp07-black_main_1.jpg'),(5674,89,0,812,'/m/p/mp07-black_main_1.jpg'),(5675,73,0,812,'Thorpe Track Pant-36-Black'),(5676,106,0,813,'container2'),(5677,124,0,813,'0'),(5678,121,0,813,'thorpe-track-pant-36-blue'),(5679,87,0,813,'/m/p/mp07-blue_main_1.jpg'),(5680,88,0,813,'/m/p/mp07-blue_main_1.jpg'),(5681,89,0,813,'/m/p/mp07-blue_main_1.jpg'),(5682,73,0,813,'Thorpe Track Pant-36-Blue'),(5683,106,0,814,'container2'),(5684,124,0,814,'0'),(5685,121,0,814,'thorpe-track-pant-36-purple'),(5686,87,0,814,'/m/p/mp07-purple_main_1.jpg'),(5687,88,0,814,'/m/p/mp07-purple_main_1.jpg'),(5688,89,0,814,'/m/p/mp07-purple_main_1.jpg'),(5689,73,0,814,'Thorpe Track Pant-36-Purple'),(5690,106,0,815,'container2'),(5691,124,0,815,'0'),(5692,121,0,815,'thorpe-track-pant'),(5693,87,0,815,'/m/p/mp07-blue_main_1.jpg'),(5694,88,0,815,'/m/p/mp07-blue_main_1.jpg'),(5695,89,0,815,'/m/p/mp07-blue_main_1.jpg'),(5696,73,0,815,'Thorpe Track Pant'),(5697,106,0,816,'container2'),(5698,124,0,816,'0'),(5699,121,0,816,'zeppelin-yoga-pant-32-blue'),(5700,87,0,816,'/m/p/mp08-blue_main_1.jpg'),(5701,88,0,816,'/m/p/mp08-blue_main_1.jpg'),(5702,89,0,816,'/m/p/mp08-blue_main_1.jpg'),(5703,73,0,816,'Zeppelin Yoga Pant-32-Blue'),(5704,106,0,817,'container2'),(5705,124,0,817,'0'),(5706,121,0,817,'zeppelin-yoga-pant-32-green'),(5707,87,0,817,'/m/p/mp08-green_main_1.jpg'),(5708,88,0,817,'/m/p/mp08-green_main_1.jpg'),(5709,89,0,817,'/m/p/mp08-green_main_1.jpg'),(5710,73,0,817,'Zeppelin Yoga Pant-32-Green'),(5711,106,0,818,'container2'),(5712,124,0,818,'0'),(5713,121,0,818,'zeppelin-yoga-pant-32-red'),(5714,87,0,818,'/m/p/mp08-red_main_1.jpg'),(5715,88,0,818,'/m/p/mp08-red_main_1.jpg'),(5716,89,0,818,'/m/p/mp08-red_main_1.jpg'),(5717,73,0,818,'Zeppelin Yoga Pant-32-Red'),(5718,106,0,819,'container2'),(5719,124,0,819,'0'),(5720,121,0,819,'zeppelin-yoga-pant-33-blue'),(5721,87,0,819,'/m/p/mp08-blue_main_1.jpg'),(5722,88,0,819,'/m/p/mp08-blue_main_1.jpg'),(5723,89,0,819,'/m/p/mp08-blue_main_1.jpg'),(5724,73,0,819,'Zeppelin Yoga Pant-33-Blue'),(5725,106,0,820,'container2'),(5726,124,0,820,'0'),(5727,121,0,820,'zeppelin-yoga-pant-33-green'),(5728,87,0,820,'/m/p/mp08-green_main_1.jpg'),(5729,88,0,820,'/m/p/mp08-green_main_1.jpg'),(5730,89,0,820,'/m/p/mp08-green_main_1.jpg'),(5731,73,0,820,'Zeppelin Yoga Pant-33-Green'),(5732,106,0,821,'container2'),(5733,124,0,821,'0'),(5734,121,0,821,'zeppelin-yoga-pant-33-red'),(5735,87,0,821,'/m/p/mp08-red_main_1.jpg'),(5736,88,0,821,'/m/p/mp08-red_main_1.jpg'),(5737,89,0,821,'/m/p/mp08-red_main_1.jpg'),(5738,73,0,821,'Zeppelin Yoga Pant-33-Red'),(5739,106,0,822,'container2'),(5740,124,0,822,'0'),(5741,121,0,822,'zeppelin-yoga-pant-34-blue'),(5742,87,0,822,'/m/p/mp08-blue_main_1.jpg'),(5743,88,0,822,'/m/p/mp08-blue_main_1.jpg'),(5744,89,0,822,'/m/p/mp08-blue_main_1.jpg'),(5745,73,0,822,'Zeppelin Yoga Pant-34-Blue'),(5746,106,0,823,'container2'),(5747,124,0,823,'0'),(5748,121,0,823,'zeppelin-yoga-pant-34-green'),(5749,87,0,823,'/m/p/mp08-green_main_1.jpg'),(5750,88,0,823,'/m/p/mp08-green_main_1.jpg'),(5751,89,0,823,'/m/p/mp08-green_main_1.jpg'),(5752,73,0,823,'Zeppelin Yoga Pant-34-Green'),(5753,106,0,824,'container2'),(5754,124,0,824,'0'),(5755,121,0,824,'zeppelin-yoga-pant-34-red'),(5756,87,0,824,'/m/p/mp08-red_main_1.jpg'),(5757,88,0,824,'/m/p/mp08-red_main_1.jpg'),(5758,89,0,824,'/m/p/mp08-red_main_1.jpg'),(5759,73,0,824,'Zeppelin Yoga Pant-34-Red'),(5760,106,0,825,'container2'),(5761,124,0,825,'0'),(5762,121,0,825,'zeppelin-yoga-pant-36-blue'),(5763,87,0,825,'/m/p/mp08-blue_main_1.jpg'),(5764,88,0,825,'/m/p/mp08-blue_main_1.jpg'),(5765,89,0,825,'/m/p/mp08-blue_main_1.jpg'),(5766,73,0,825,'Zeppelin Yoga Pant-36-Blue'),(5767,106,0,826,'container2'),(5768,124,0,826,'0'),(5769,121,0,826,'zeppelin-yoga-pant-36-green'),(5770,87,0,826,'/m/p/mp08-green_main_1.jpg'),(5771,88,0,826,'/m/p/mp08-green_main_1.jpg'),(5772,89,0,826,'/m/p/mp08-green_main_1.jpg'),(5773,73,0,826,'Zeppelin Yoga Pant-36-Green'),(5774,106,0,827,'container2'),(5775,124,0,827,'0'),(5776,121,0,827,'zeppelin-yoga-pant-36-red'),(5777,87,0,827,'/m/p/mp08-red_main_1.jpg'),(5778,88,0,827,'/m/p/mp08-red_main_1.jpg'),(5779,89,0,827,'/m/p/mp08-red_main_1.jpg'),(5780,73,0,827,'Zeppelin Yoga Pant-36-Red'),(5781,106,0,828,'container2'),(5782,124,0,828,'0'),(5783,121,0,828,'zeppelin-yoga-pant'),(5784,87,0,828,'/m/p/mp08-green_main_1.jpg'),(5785,88,0,828,'/m/p/mp08-green_main_1.jpg'),(5786,89,0,828,'/m/p/mp08-green_main_1.jpg'),(5787,73,0,828,'Zeppelin Yoga Pant'),(5788,106,0,829,'container2'),(5789,124,0,829,'0'),(5790,121,0,829,'livingston-all-purpose-tight-32-black'),(5791,87,0,829,'/m/p/mp09-black_main_1.jpg'),(5792,88,0,829,'/m/p/mp09-black_main_1.jpg'),(5793,89,0,829,'/m/p/mp09-black_main_1.jpg'),(5794,73,0,829,'Livingston All-Purpose Tight-32-Black'),(5795,106,0,830,'container2'),(5796,124,0,830,'0'),(5797,121,0,830,'livingston-all-purpose-tight-32-blue'),(5798,87,0,830,'/m/p/mp09-blue_main_1.jpg'),(5799,88,0,830,'/m/p/mp09-blue_main_1.jpg'),(5800,89,0,830,'/m/p/mp09-blue_main_1.jpg'),(5801,73,0,830,'Livingston All-Purpose Tight-32-Blue'),(5802,106,0,831,'container2'),(5803,124,0,831,'0'),(5804,121,0,831,'livingston-all-purpose-tight-32-red'),(5805,87,0,831,'/m/p/mp09-red_main_1.jpg'),(5806,88,0,831,'/m/p/mp09-red_main_1.jpg'),(5807,89,0,831,'/m/p/mp09-red_main_1.jpg'),(5808,73,0,831,'Livingston All-Purpose Tight-32-Red'),(5809,106,0,832,'container2'),(5810,124,0,832,'0'),(5811,121,0,832,'livingston-all-purpose-tight-33-black'),(5812,87,0,832,'/m/p/mp09-black_main_1.jpg'),(5813,88,0,832,'/m/p/mp09-black_main_1.jpg'),(5814,89,0,832,'/m/p/mp09-black_main_1.jpg'),(5815,73,0,832,'Livingston All-Purpose Tight-33-Black'),(5816,106,0,833,'container2'),(5817,124,0,833,'0'),(5818,121,0,833,'livingston-all-purpose-tight-33-blue'),(5819,87,0,833,'/m/p/mp09-blue_main_1.jpg'),(5820,88,0,833,'/m/p/mp09-blue_main_1.jpg'),(5821,89,0,833,'/m/p/mp09-blue_main_1.jpg'),(5822,73,0,833,'Livingston All-Purpose Tight-33-Blue'),(5823,106,0,834,'container2'),(5824,124,0,834,'0'),(5825,121,0,834,'livingston-all-purpose-tight-33-red'),(5826,87,0,834,'/m/p/mp09-red_main_1.jpg'),(5827,88,0,834,'/m/p/mp09-red_main_1.jpg'),(5828,89,0,834,'/m/p/mp09-red_main_1.jpg'),(5829,73,0,834,'Livingston All-Purpose Tight-33-Red'),(5830,106,0,835,'container2'),(5831,124,0,835,'0'),(5832,121,0,835,'livingston-all-purpose-tight-34-black'),(5833,87,0,835,'/m/p/mp09-black_main_1.jpg'),(5834,88,0,835,'/m/p/mp09-black_main_1.jpg'),(5835,89,0,835,'/m/p/mp09-black_main_1.jpg'),(5836,73,0,835,'Livingston All-Purpose Tight-34-Black'),(5837,106,0,836,'container2'),(5838,124,0,836,'0'),(5839,121,0,836,'livingston-all-purpose-tight-34-blue'),(5840,87,0,836,'/m/p/mp09-blue_main_1.jpg'),(5841,88,0,836,'/m/p/mp09-blue_main_1.jpg'),(5842,89,0,836,'/m/p/mp09-blue_main_1.jpg'),(5843,73,0,836,'Livingston All-Purpose Tight-34-Blue'),(5844,106,0,837,'container2'),(5845,124,0,837,'0'),(5846,121,0,837,'livingston-all-purpose-tight-34-red'),(5847,87,0,837,'/m/p/mp09-red_main_1.jpg'),(5848,88,0,837,'/m/p/mp09-red_main_1.jpg'),(5849,89,0,837,'/m/p/mp09-red_main_1.jpg'),(5850,73,0,837,'Livingston All-Purpose Tight-34-Red'),(5851,106,0,838,'container2'),(5852,124,0,838,'0'),(5853,121,0,838,'livingston-all-purpose-tight-36-black'),(5854,87,0,838,'/m/p/mp09-black_main_1.jpg'),(5855,88,0,838,'/m/p/mp09-black_main_1.jpg'),(5856,89,0,838,'/m/p/mp09-black_main_1.jpg'),(5857,73,0,838,'Livingston All-Purpose Tight-36-Black'),(5858,106,0,839,'container2'),(5859,124,0,839,'0'),(5860,121,0,839,'livingston-all-purpose-tight-36-blue'),(5861,87,0,839,'/m/p/mp09-blue_main_1.jpg'),(5862,88,0,839,'/m/p/mp09-blue_main_1.jpg'),(5863,89,0,839,'/m/p/mp09-blue_main_1.jpg'),(5864,73,0,839,'Livingston All-Purpose Tight-36-Blue'),(5865,106,0,840,'container2'),(5866,124,0,840,'0'),(5867,121,0,840,'livingston-all-purpose-tight-36-red'),(5868,87,0,840,'/m/p/mp09-red_main_1.jpg'),(5869,88,0,840,'/m/p/mp09-red_main_1.jpg'),(5870,89,0,840,'/m/p/mp09-red_main_1.jpg'),(5871,73,0,840,'Livingston All-Purpose Tight-36-Red'),(5872,106,0,841,'container2'),(5873,124,0,841,'0'),(5874,121,0,841,'livingston-all-purpose-tight'),(5875,87,0,841,'/m/p/mp09-blue_main_1.jpg'),(5876,88,0,841,'/m/p/mp09-blue_main_1.jpg'),(5877,89,0,841,'/m/p/mp09-blue_main_1.jpg'),(5878,73,0,841,'Livingston All-Purpose Tight'),(5879,106,0,842,'container2'),(5880,124,0,842,'0'),(5881,121,0,842,'orestes-yoga-pant-32-black'),(5882,87,0,842,'/m/p/mp10-black_main_1.jpg'),(5883,88,0,842,'/m/p/mp10-black_main_1.jpg'),(5884,89,0,842,'/m/p/mp10-black_main_1.jpg'),(5885,73,0,842,'Orestes Yoga Pant -32-Black'),(5886,106,0,843,'container2'),(5887,124,0,843,'0'),(5888,121,0,843,'orestes-yoga-pant-32-blue'),(5889,87,0,843,'/m/p/mp10-blue_main_1.jpg'),(5890,88,0,843,'/m/p/mp10-blue_main_1.jpg'),(5891,89,0,843,'/m/p/mp10-blue_main_1.jpg'),(5892,73,0,843,'Orestes Yoga Pant -32-Blue'),(5893,106,0,844,'container2'),(5894,124,0,844,'0'),(5895,121,0,844,'orestes-yoga-pant-32-green'),(5896,87,0,844,'/m/p/mp10-green_main_1.jpg'),(5897,88,0,844,'/m/p/mp10-green_main_1.jpg'),(5898,89,0,844,'/m/p/mp10-green_main_1.jpg'),(5899,73,0,844,'Orestes Yoga Pant -32-Green'),(5900,106,0,845,'container2'),(5901,124,0,845,'0'),(5902,121,0,845,'orestes-yoga-pant-33-black'),(5903,87,0,845,'/m/p/mp10-black_main_1.jpg'),(5904,88,0,845,'/m/p/mp10-black_main_1.jpg'),(5905,89,0,845,'/m/p/mp10-black_main_1.jpg'),(5906,73,0,845,'Orestes Yoga Pant -33-Black'),(5907,106,0,846,'container2'),(5908,124,0,846,'0'),(5909,121,0,846,'orestes-yoga-pant-33-blue'),(5910,87,0,846,'/m/p/mp10-blue_main_1.jpg'),(5911,88,0,846,'/m/p/mp10-blue_main_1.jpg'),(5912,89,0,846,'/m/p/mp10-blue_main_1.jpg'),(5913,73,0,846,'Orestes Yoga Pant -33-Blue'),(5914,106,0,847,'container2'),(5915,124,0,847,'0'),(5916,121,0,847,'orestes-yoga-pant-33-green'),(5917,87,0,847,'/m/p/mp10-green_main_2.jpg'),(5918,88,0,847,'/m/p/mp10-green_main_2.jpg'),(5919,89,0,847,'/m/p/mp10-green_main_2.jpg'),(5920,73,0,847,'Orestes Yoga Pant -33-Green'),(5921,106,0,848,'container2'),(5922,124,0,848,'0'),(5923,121,0,848,'orestes-yoga-pant-34-black'),(5924,87,0,848,'/m/p/mp10-black_main_2.jpg'),(5925,88,0,848,'/m/p/mp10-black_main_2.jpg'),(5926,89,0,848,'/m/p/mp10-black_main_2.jpg'),(5927,73,0,848,'Orestes Yoga Pant -34-Black'),(5928,106,0,849,'container2'),(5929,124,0,849,'0'),(5930,121,0,849,'orestes-yoga-pant-34-blue'),(5931,87,0,849,'/m/p/mp10-blue_main_2.jpg'),(5932,88,0,849,'/m/p/mp10-blue_main_2.jpg'),(5933,89,0,849,'/m/p/mp10-blue_main_2.jpg'),(5934,73,0,849,'Orestes Yoga Pant -34-Blue'),(5935,106,0,850,'container2'),(5936,124,0,850,'0'),(5937,121,0,850,'orestes-yoga-pant-34-green'),(5938,87,0,850,'/m/p/mp10-green_main_2.jpg'),(5939,88,0,850,'/m/p/mp10-green_main_2.jpg'),(5940,89,0,850,'/m/p/mp10-green_main_2.jpg'),(5941,73,0,850,'Orestes Yoga Pant -34-Green'),(5942,106,0,851,'container2'),(5943,124,0,851,'0'),(5944,121,0,851,'orestes-yoga-pant-36-black'),(5945,87,0,851,'/m/p/mp10-black_main_2.jpg'),(5946,88,0,851,'/m/p/mp10-black_main_2.jpg'),(5947,89,0,851,'/m/p/mp10-black_main_2.jpg'),(5948,73,0,851,'Orestes Yoga Pant -36-Black'),(5949,106,0,852,'container2'),(5950,124,0,852,'0'),(5951,121,0,852,'orestes-yoga-pant-36-blue'),(5952,87,0,852,'/m/p/mp10-blue_main_2.jpg'),(5953,88,0,852,'/m/p/mp10-blue_main_2.jpg'),(5954,89,0,852,'/m/p/mp10-blue_main_2.jpg'),(5955,73,0,852,'Orestes Yoga Pant -36-Blue'),(5956,106,0,853,'container2'),(5957,124,0,853,'0'),(5958,121,0,853,'orestes-yoga-pant-36-green'),(5959,87,0,853,'/m/p/mp10-green_main_2.jpg'),(5960,88,0,853,'/m/p/mp10-green_main_2.jpg'),(5961,89,0,853,'/m/p/mp10-green_main_2.jpg'),(5962,73,0,853,'Orestes Yoga Pant -36-Green'),(5963,106,0,854,'container2'),(5964,124,0,854,'0'),(5965,121,0,854,'orestes-yoga-pant'),(5966,87,0,854,'/m/p/mp10-black_main_2.jpg'),(5967,88,0,854,'/m/p/mp10-black_main_2.jpg'),(5968,89,0,854,'/m/p/mp10-black_main_2.jpg'),(5969,73,0,854,'Orestes Yoga Pant '),(5970,106,0,855,'container2'),(5971,124,0,855,'0'),(5972,121,0,855,'aether-gym-pant-32-blue'),(5973,87,0,855,'/m/p/mp11-blue_main_1.jpg'),(5974,88,0,855,'/m/p/mp11-blue_main_1.jpg'),(5975,89,0,855,'/m/p/mp11-blue_main_1.jpg'),(5976,73,0,855,'Aether Gym Pant -32-Blue'),(5977,106,0,856,'container2'),(5978,124,0,856,'0'),(5979,121,0,856,'aether-gym-pant-32-brown'),(5980,87,0,856,'/m/p/mp11-brown_main_1.jpg'),(5981,88,0,856,'/m/p/mp11-brown_main_1.jpg'),(5982,89,0,856,'/m/p/mp11-brown_main_1.jpg'),(5983,73,0,856,'Aether Gym Pant -32-Brown'),(5984,106,0,857,'container2'),(5985,124,0,857,'0'),(5986,121,0,857,'aether-gym-pant-32-green'),(5987,87,0,857,'/m/p/mp11-green_main_1.jpg'),(5988,88,0,857,'/m/p/mp11-green_main_1.jpg'),(5989,89,0,857,'/m/p/mp11-green_main_1.jpg'),(5990,73,0,857,'Aether Gym Pant -32-Green'),(5991,106,0,858,'container2'),(5992,124,0,858,'0'),(5993,121,0,858,'aether-gym-pant-33-blue'),(5994,87,0,858,'/m/p/mp11-blue_main_1.jpg'),(5995,88,0,858,'/m/p/mp11-blue_main_1.jpg'),(5996,89,0,858,'/m/p/mp11-blue_main_1.jpg'),(5997,73,0,858,'Aether Gym Pant -33-Blue'),(5998,106,0,859,'container2'),(5999,124,0,859,'0'),(6000,121,0,859,'aether-gym-pant-33-brown'),(6001,87,0,859,'/m/p/mp11-brown_main_1.jpg'),(6002,88,0,859,'/m/p/mp11-brown_main_1.jpg'),(6003,89,0,859,'/m/p/mp11-brown_main_1.jpg'),(6004,73,0,859,'Aether Gym Pant -33-Brown'),(6005,106,0,860,'container2'),(6006,124,0,860,'0'),(6007,121,0,860,'aether-gym-pant-33-green'),(6008,87,0,860,'/m/p/mp11-green_main_1.jpg'),(6009,88,0,860,'/m/p/mp11-green_main_1.jpg'),(6010,89,0,860,'/m/p/mp11-green_main_1.jpg'),(6011,73,0,860,'Aether Gym Pant -33-Green'),(6012,106,0,861,'container2'),(6013,124,0,861,'0'),(6014,121,0,861,'aether-gym-pant-34-blue'),(6015,87,0,861,'/m/p/mp11-blue_main_1.jpg'),(6016,88,0,861,'/m/p/mp11-blue_main_1.jpg'),(6017,89,0,861,'/m/p/mp11-blue_main_1.jpg'),(6018,73,0,861,'Aether Gym Pant -34-Blue'),(6019,106,0,862,'container2'),(6020,124,0,862,'0'),(6021,121,0,862,'aether-gym-pant-34-brown'),(6022,87,0,862,'/m/p/mp11-brown_main_1.jpg'),(6023,88,0,862,'/m/p/mp11-brown_main_1.jpg'),(6024,89,0,862,'/m/p/mp11-brown_main_1.jpg'),(6025,73,0,862,'Aether Gym Pant -34-Brown'),(6026,106,0,863,'container2'),(6027,124,0,863,'0'),(6028,121,0,863,'aether-gym-pant-34-green'),(6029,87,0,863,'/m/p/mp11-green_main_1.jpg'),(6030,88,0,863,'/m/p/mp11-green_main_1.jpg'),(6031,89,0,863,'/m/p/mp11-green_main_1.jpg'),(6032,73,0,863,'Aether Gym Pant -34-Green'),(6033,106,0,864,'container2'),(6034,124,0,864,'0'),(6035,121,0,864,'aether-gym-pant-36-blue'),(6036,87,0,864,'/m/p/mp11-blue_main_1.jpg'),(6037,88,0,864,'/m/p/mp11-blue_main_1.jpg'),(6038,89,0,864,'/m/p/mp11-blue_main_1.jpg'),(6039,73,0,864,'Aether Gym Pant -36-Blue'),(6040,106,0,865,'container2'),(6041,124,0,865,'0'),(6042,121,0,865,'aether-gym-pant-36-brown'),(6043,87,0,865,'/m/p/mp11-brown_main_1.jpg'),(6044,88,0,865,'/m/p/mp11-brown_main_1.jpg'),(6045,89,0,865,'/m/p/mp11-brown_main_1.jpg'),(6046,73,0,865,'Aether Gym Pant -36-Brown'),(6047,106,0,866,'container2'),(6048,124,0,866,'0'),(6049,121,0,866,'aether-gym-pant-36-green'),(6050,87,0,866,'/m/p/mp11-green_main_1.jpg'),(6051,88,0,866,'/m/p/mp11-green_main_1.jpg'),(6052,89,0,866,'/m/p/mp11-green_main_1.jpg'),(6053,73,0,866,'Aether Gym Pant -36-Green'),(6054,106,0,867,'container2'),(6055,124,0,867,'0'),(6056,121,0,867,'aether-gym-pant'),(6057,87,0,867,'/m/p/mp11-brown_main_1.jpg'),(6058,88,0,867,'/m/p/mp11-brown_main_1.jpg'),(6059,89,0,867,'/m/p/mp11-brown_main_1.jpg'),(6060,73,0,867,'Aether Gym Pant '),(6061,106,0,868,'container2'),(6062,124,0,868,'0'),(6063,121,0,868,'cronus-yoga-pant-32-black'),(6064,87,0,868,'/m/p/mp12-black_main_1.jpg'),(6065,88,0,868,'/m/p/mp12-black_main_1.jpg'),(6066,89,0,868,'/m/p/mp12-black_main_1.jpg'),(6067,73,0,868,'Cronus Yoga Pant -32-Black'),(6068,106,0,869,'container2'),(6069,124,0,869,'0'),(6070,121,0,869,'cronus-yoga-pant-32-blue'),(6071,87,0,869,'/m/p/mp12-blue_main_1.jpg'),(6072,88,0,869,'/m/p/mp12-blue_main_1.jpg'),(6073,89,0,869,'/m/p/mp12-blue_main_1.jpg'),(6074,73,0,869,'Cronus Yoga Pant -32-Blue'),(6075,106,0,870,'container2'),(6076,124,0,870,'0'),(6077,121,0,870,'cronus-yoga-pant-32-red'),(6078,87,0,870,'/m/p/mp12-red_main_1.jpg'),(6079,88,0,870,'/m/p/mp12-red_main_1.jpg'),(6080,89,0,870,'/m/p/mp12-red_main_1.jpg'),(6081,73,0,870,'Cronus Yoga Pant -32-Red'),(6082,106,0,871,'container2'),(6083,124,0,871,'0'),(6084,121,0,871,'cronus-yoga-pant-33-black'),(6085,87,0,871,'/m/p/mp12-black_main_1.jpg'),(6086,88,0,871,'/m/p/mp12-black_main_1.jpg'),(6087,89,0,871,'/m/p/mp12-black_main_1.jpg'),(6088,73,0,871,'Cronus Yoga Pant -33-Black'),(6089,106,0,872,'container2'),(6090,124,0,872,'0'),(6091,121,0,872,'cronus-yoga-pant-33-blue'),(6092,87,0,872,'/m/p/mp12-blue_main_1.jpg'),(6093,88,0,872,'/m/p/mp12-blue_main_1.jpg'),(6094,89,0,872,'/m/p/mp12-blue_main_1.jpg'),(6095,73,0,872,'Cronus Yoga Pant -33-Blue'),(6096,106,0,873,'container2'),(6097,124,0,873,'0'),(6098,121,0,873,'cronus-yoga-pant-33-red'),(6099,87,0,873,'/m/p/mp12-red_main_1.jpg'),(6100,88,0,873,'/m/p/mp12-red_main_1.jpg'),(6101,89,0,873,'/m/p/mp12-red_main_1.jpg'),(6102,73,0,873,'Cronus Yoga Pant -33-Red'),(6103,106,0,874,'container2'),(6104,124,0,874,'0'),(6105,121,0,874,'cronus-yoga-pant-34-black'),(6106,87,0,874,'/m/p/mp12-black_main_1.jpg'),(6107,88,0,874,'/m/p/mp12-black_main_1.jpg'),(6108,89,0,874,'/m/p/mp12-black_main_1.jpg'),(6109,73,0,874,'Cronus Yoga Pant -34-Black'),(6110,106,0,875,'container2'),(6111,124,0,875,'0'),(6112,121,0,875,'cronus-yoga-pant-34-blue'),(6113,87,0,875,'/m/p/mp12-blue_main_1.jpg'),(6114,88,0,875,'/m/p/mp12-blue_main_1.jpg'),(6115,89,0,875,'/m/p/mp12-blue_main_1.jpg'),(6116,73,0,875,'Cronus Yoga Pant -34-Blue'),(6117,106,0,876,'container2'),(6118,124,0,876,'0'),(6119,121,0,876,'cronus-yoga-pant-34-red'),(6120,87,0,876,'/m/p/mp12-red_main_1.jpg'),(6121,88,0,876,'/m/p/mp12-red_main_1.jpg'),(6122,89,0,876,'/m/p/mp12-red_main_1.jpg'),(6123,73,0,876,'Cronus Yoga Pant -34-Red'),(6124,106,0,877,'container2'),(6125,124,0,877,'0'),(6126,121,0,877,'cronus-yoga-pant-36-black'),(6127,87,0,877,'/m/p/mp12-black_main_1.jpg'),(6128,88,0,877,'/m/p/mp12-black_main_1.jpg'),(6129,89,0,877,'/m/p/mp12-black_main_1.jpg'),(6130,73,0,877,'Cronus Yoga Pant -36-Black'),(6131,106,0,878,'container2'),(6132,124,0,878,'0'),(6133,121,0,878,'cronus-yoga-pant-36-blue'),(6134,87,0,878,'/m/p/mp12-blue_main_1.jpg'),(6135,88,0,878,'/m/p/mp12-blue_main_1.jpg'),(6136,89,0,878,'/m/p/mp12-blue_main_1.jpg'),(6137,73,0,878,'Cronus Yoga Pant -36-Blue'),(6138,106,0,879,'container2'),(6139,124,0,879,'0'),(6140,121,0,879,'cronus-yoga-pant-36-red'),(6141,87,0,879,'/m/p/mp12-red_main_1.jpg'),(6142,88,0,879,'/m/p/mp12-red_main_1.jpg'),(6143,89,0,879,'/m/p/mp12-red_main_1.jpg'),(6144,73,0,879,'Cronus Yoga Pant -36-Red'),(6145,106,0,880,'container2'),(6146,124,0,880,'0'),(6147,121,0,880,'cronus-yoga-pant'),(6148,87,0,880,'/m/p/mp12-black_main_1.jpg'),(6149,88,0,880,'/m/p/mp12-black_main_1.jpg'),(6150,89,0,880,'/m/p/mp12-black_main_1.jpg'),(6151,73,0,880,'Cronus Yoga Pant '),(6152,106,0,881,'container2'),(6153,124,0,881,'0'),(6154,121,0,881,'cobalt-cooltech-trade-fitness-short-32-black'),(6155,87,0,881,'/m/s/msh01-black_main_1.jpg'),(6156,88,0,881,'/m/s/msh01-black_main_1.jpg'),(6157,89,0,881,'/m/s/msh01-black_main_1.jpg'),(6158,73,0,881,'Cobalt CoolTech&trade; Fitness Short-32-Black'),(6159,106,0,882,'container2'),(6160,124,0,882,'0'),(6161,121,0,882,'cobalt-cooltech-trade-fitness-short-32-blue'),(6162,87,0,882,'/m/s/msh01-blue_main_1.jpg'),(6163,88,0,882,'/m/s/msh01-blue_main_1.jpg'),(6164,89,0,882,'/m/s/msh01-blue_main_1.jpg'),(6165,73,0,882,'Cobalt CoolTech&trade; Fitness Short-32-Blue'),(6166,106,0,883,'container2'),(6167,124,0,883,'0'),(6168,121,0,883,'cobalt-cooltech-trade-fitness-short-32-red'),(6169,87,0,883,'/m/s/msh01-red_main_1.jpg'),(6170,88,0,883,'/m/s/msh01-red_main_1.jpg'),(6171,89,0,883,'/m/s/msh01-red_main_1.jpg'),(6172,73,0,883,'Cobalt CoolTech&trade; Fitness Short-32-Red'),(6173,106,0,884,'container2'),(6174,124,0,884,'0'),(6175,121,0,884,'cobalt-cooltech-trade-fitness-short-33-black'),(6176,87,0,884,'/m/s/msh01-black_main_1.jpg'),(6177,88,0,884,'/m/s/msh01-black_main_1.jpg'),(6178,89,0,884,'/m/s/msh01-black_main_1.jpg'),(6179,73,0,884,'Cobalt CoolTech&trade; Fitness Short-33-Black'),(6180,106,0,885,'container2'),(6181,124,0,885,'0'),(6182,121,0,885,'cobalt-cooltech-trade-fitness-short-33-blue'),(6183,87,0,885,'/m/s/msh01-blue_main_1.jpg'),(6184,88,0,885,'/m/s/msh01-blue_main_1.jpg'),(6185,89,0,885,'/m/s/msh01-blue_main_1.jpg'),(6186,73,0,885,'Cobalt CoolTech&trade; Fitness Short-33-Blue'),(6187,106,0,886,'container2'),(6188,124,0,886,'0'),(6189,121,0,886,'cobalt-cooltech-trade-fitness-short-33-red'),(6190,87,0,886,'/m/s/msh01-red_main_1.jpg'),(6191,88,0,886,'/m/s/msh01-red_main_1.jpg'),(6192,89,0,886,'/m/s/msh01-red_main_1.jpg'),(6193,73,0,886,'Cobalt CoolTech&trade; Fitness Short-33-Red'),(6194,106,0,887,'container2'),(6195,124,0,887,'0'),(6196,121,0,887,'cobalt-cooltech-trade-fitness-short-34-black'),(6197,87,0,887,'/m/s/msh01-black_main_1.jpg'),(6198,88,0,887,'/m/s/msh01-black_main_1.jpg'),(6199,89,0,887,'/m/s/msh01-black_main_1.jpg'),(6200,73,0,887,'Cobalt CoolTech&trade; Fitness Short-34-Black'),(6201,106,0,888,'container2'),(6202,124,0,888,'0'),(6203,121,0,888,'cobalt-cooltech-trade-fitness-short-34-blue'),(6204,87,0,888,'/m/s/msh01-blue_main_1.jpg'),(6205,88,0,888,'/m/s/msh01-blue_main_1.jpg'),(6206,89,0,888,'/m/s/msh01-blue_main_1.jpg'),(6207,73,0,888,'Cobalt CoolTech&trade; Fitness Short-34-Blue'),(6208,106,0,889,'container2'),(6209,124,0,889,'0'),(6210,121,0,889,'cobalt-cooltech-trade-fitness-short-34-red'),(6211,87,0,889,'/m/s/msh01-red_main_1.jpg'),(6212,88,0,889,'/m/s/msh01-red_main_1.jpg'),(6213,89,0,889,'/m/s/msh01-red_main_1.jpg'),(6214,73,0,889,'Cobalt CoolTech&trade; Fitness Short-34-Red'),(6215,106,0,890,'container2'),(6216,124,0,890,'0'),(6217,121,0,890,'cobalt-cooltech-trade-fitness-short-36-black'),(6218,87,0,890,'/m/s/msh01-black_main_1.jpg'),(6219,88,0,890,'/m/s/msh01-black_main_1.jpg'),(6220,89,0,890,'/m/s/msh01-black_main_1.jpg'),(6221,73,0,890,'Cobalt CoolTech&trade; Fitness Short-36-Black'),(6222,106,0,891,'container2'),(6223,124,0,891,'0'),(6224,121,0,891,'cobalt-cooltech-trade-fitness-short-36-blue'),(6225,87,0,891,'/m/s/msh01-blue_main_1.jpg'),(6226,88,0,891,'/m/s/msh01-blue_main_1.jpg'),(6227,89,0,891,'/m/s/msh01-blue_main_1.jpg'),(6228,73,0,891,'Cobalt CoolTech&trade; Fitness Short-36-Blue'),(6229,106,0,892,'container2'),(6230,124,0,892,'0'),(6231,121,0,892,'cobalt-cooltech-trade-fitness-short-36-red'),(6232,87,0,892,'/m/s/msh01-red_main_1.jpg'),(6233,88,0,892,'/m/s/msh01-red_main_1.jpg'),(6234,89,0,892,'/m/s/msh01-red_main_1.jpg'),(6235,73,0,892,'Cobalt CoolTech&trade; Fitness Short-36-Red'),(6236,106,0,893,'container2'),(6237,124,0,893,'0'),(6238,121,0,893,'cobalt-cooltech-trade-fitness-short'),(6239,87,0,893,'/m/s/msh01-blue_main_1.jpg'),(6240,88,0,893,'/m/s/msh01-blue_main_1.jpg'),(6241,89,0,893,'/m/s/msh01-blue_main_1.jpg'),(6242,73,0,893,'Cobalt CoolTech&trade; Fitness Short'),(6243,106,0,894,'container2'),(6244,124,0,894,'0'),(6245,121,0,894,'apollo-running-short-32-black'),(6246,87,0,894,'/m/s/msh02-black_main_1.jpg'),(6247,88,0,894,'/m/s/msh02-black_main_1.jpg'),(6248,89,0,894,'/m/s/msh02-black_main_1.jpg'),(6249,73,0,894,'Apollo Running Short-32-Black'),(6250,106,0,895,'container2'),(6251,124,0,895,'0'),(6252,121,0,895,'apollo-running-short-33-black'),(6253,87,0,895,'/m/s/msh02-black_main_1.jpg'),(6254,88,0,895,'/m/s/msh02-black_main_1.jpg'),(6255,89,0,895,'/m/s/msh02-black_main_1.jpg'),(6256,73,0,895,'Apollo Running Short-33-Black'),(6257,106,0,896,'container2'),(6258,124,0,896,'0'),(6259,121,0,896,'apollo-running-short-34-black'),(6260,87,0,896,'/m/s/msh02-black_main_1.jpg'),(6261,88,0,896,'/m/s/msh02-black_main_1.jpg'),(6262,89,0,896,'/m/s/msh02-black_main_1.jpg'),(6263,73,0,896,'Apollo Running Short-34-Black'),(6264,106,0,897,'container2'),(6265,124,0,897,'0'),(6266,121,0,897,'apollo-running-short-36-black'),(6267,87,0,897,'/m/s/msh02-black_main_1.jpg'),(6268,88,0,897,'/m/s/msh02-black_main_1.jpg'),(6269,89,0,897,'/m/s/msh02-black_main_1.jpg'),(6270,73,0,897,'Apollo Running Short-36-Black'),(6271,106,0,898,'container2'),(6272,124,0,898,'0'),(6273,121,0,898,'apollo-running-short'),(6274,87,0,898,'/m/s/msh02-black_main_1.jpg'),(6275,88,0,898,'/m/s/msh02-black_main_1.jpg'),(6276,89,0,898,'/m/s/msh02-black_main_1.jpg'),(6277,73,0,898,'Apollo Running Short'),(6278,106,0,899,'container2'),(6279,124,0,899,'0'),(6280,121,0,899,'meteor-workout-short-32-black'),(6281,87,0,899,'/m/s/msh03-black_main_1.jpg'),(6282,88,0,899,'/m/s/msh03-black_main_1.jpg'),(6283,89,0,899,'/m/s/msh03-black_main_1.jpg'),(6284,73,0,899,'Meteor Workout Short-32-Black'),(6285,106,0,900,'container2'),(6286,124,0,900,'0'),(6287,121,0,900,'meteor-workout-short-32-blue'),(6288,87,0,900,'/m/s/msh03-blue_main_1.jpg'),(6289,88,0,900,'/m/s/msh03-blue_main_1.jpg'),(6290,89,0,900,'/m/s/msh03-blue_main_1.jpg'),(6291,73,0,900,'Meteor Workout Short-32-Blue'),(6292,106,0,901,'container2'),(6293,124,0,901,'0'),(6294,121,0,901,'meteor-workout-short-32-green'),(6295,87,0,901,'/m/s/msh03-green_main_1.jpg'),(6296,88,0,901,'/m/s/msh03-green_main_1.jpg'),(6297,89,0,901,'/m/s/msh03-green_main_1.jpg'),(6298,73,0,901,'Meteor Workout Short-32-Green'),(6299,106,0,902,'container2'),(6300,124,0,902,'0'),(6301,121,0,902,'meteor-workout-short-33-black'),(6302,87,0,902,'/m/s/msh03-black_main_1.jpg'),(6303,88,0,902,'/m/s/msh03-black_main_1.jpg'),(6304,89,0,902,'/m/s/msh03-black_main_1.jpg'),(6305,73,0,902,'Meteor Workout Short-33-Black'),(6306,106,0,903,'container2'),(6307,124,0,903,'0'),(6308,121,0,903,'meteor-workout-short-33-blue'),(6309,87,0,903,'/m/s/msh03-blue_main_1.jpg'),(6310,88,0,903,'/m/s/msh03-blue_main_1.jpg'),(6311,89,0,903,'/m/s/msh03-blue_main_1.jpg'),(6312,73,0,903,'Meteor Workout Short-33-Blue'),(6313,106,0,904,'container2'),(6314,124,0,904,'0'),(6315,121,0,904,'meteor-workout-short-33-green'),(6316,87,0,904,'/m/s/msh03-green_main_1.jpg'),(6317,88,0,904,'/m/s/msh03-green_main_1.jpg'),(6318,89,0,904,'/m/s/msh03-green_main_1.jpg'),(6319,73,0,904,'Meteor Workout Short-33-Green'),(6320,106,0,905,'container2'),(6321,124,0,905,'0'),(6322,121,0,905,'meteor-workout-short-34-black'),(6323,87,0,905,'/m/s/msh03-black_main_1.jpg'),(6324,88,0,905,'/m/s/msh03-black_main_1.jpg'),(6325,89,0,905,'/m/s/msh03-black_main_1.jpg'),(6326,73,0,905,'Meteor Workout Short-34-Black'),(6327,106,0,906,'container2'),(6328,124,0,906,'0'),(6329,121,0,906,'meteor-workout-short-34-blue'),(6330,87,0,906,'/m/s/msh03-blue_main_1.jpg'),(6331,88,0,906,'/m/s/msh03-blue_main_1.jpg'),(6332,89,0,906,'/m/s/msh03-blue_main_1.jpg'),(6333,73,0,906,'Meteor Workout Short-34-Blue'),(6334,106,0,907,'container2'),(6335,124,0,907,'0'),(6336,121,0,907,'meteor-workout-short-34-green'),(6337,87,0,907,'/m/s/msh03-green_main_1.jpg'),(6338,88,0,907,'/m/s/msh03-green_main_1.jpg'),(6339,89,0,907,'/m/s/msh03-green_main_1.jpg'),(6340,73,0,907,'Meteor Workout Short-34-Green'),(6341,106,0,908,'container2'),(6342,124,0,908,'0'),(6343,121,0,908,'meteor-workout-short-36-black'),(6344,87,0,908,'/m/s/msh03-black_main_1.jpg'),(6345,88,0,908,'/m/s/msh03-black_main_1.jpg'),(6346,89,0,908,'/m/s/msh03-black_main_1.jpg'),(6347,73,0,908,'Meteor Workout Short-36-Black'),(6348,106,0,909,'container2'),(6349,124,0,909,'0'),(6350,121,0,909,'meteor-workout-short-36-blue'),(6351,87,0,909,'/m/s/msh03-blue_main_1.jpg'),(6352,88,0,909,'/m/s/msh03-blue_main_1.jpg'),(6353,89,0,909,'/m/s/msh03-blue_main_1.jpg'),(6354,73,0,909,'Meteor Workout Short-36-Blue'),(6355,106,0,910,'container2'),(6356,124,0,910,'0'),(6357,121,0,910,'meteor-workout-short-36-green'),(6358,87,0,910,'/m/s/msh03-green_main_1.jpg'),(6359,88,0,910,'/m/s/msh03-green_main_1.jpg'),(6360,89,0,910,'/m/s/msh03-green_main_1.jpg'),(6361,73,0,910,'Meteor Workout Short-36-Green'),(6362,106,0,911,'container2'),(6363,124,0,911,'0'),(6364,121,0,911,'meteor-workout-short'),(6365,87,0,911,'/m/s/msh03-blue_main_1.jpg'),(6366,88,0,911,'/m/s/msh03-blue_main_1.jpg'),(6367,89,0,911,'/m/s/msh03-blue_main_1.jpg'),(6368,73,0,911,'Meteor Workout Short'),(6369,106,0,912,'container2'),(6370,124,0,912,'0'),(6371,121,0,912,'torque-power-short-32-gray'),(6372,87,0,912,'/m/s/msh04-gray_main_1.jpg'),(6373,88,0,912,'/m/s/msh04-gray_main_1.jpg'),(6374,89,0,912,'/m/s/msh04-gray_main_1.jpg'),(6375,73,0,912,'Torque Power Short-32-Gray'),(6376,106,0,913,'container2'),(6377,124,0,913,'0'),(6378,121,0,913,'torque-power-short-32-purple'),(6379,87,0,913,'/m/s/msh04-purple_main_1.jpg'),(6380,88,0,913,'/m/s/msh04-purple_main_1.jpg'),(6381,89,0,913,'/m/s/msh04-purple_main_1.jpg'),(6382,73,0,913,'Torque Power Short-32-Purple'),(6383,106,0,914,'container2'),(6384,124,0,914,'0'),(6385,121,0,914,'torque-power-short-32-yellow'),(6386,87,0,914,'/m/s/msh04-yellow_main_1.jpg'),(6387,88,0,914,'/m/s/msh04-yellow_main_1.jpg'),(6388,89,0,914,'/m/s/msh04-yellow_main_1.jpg'),(6389,73,0,914,'Torque Power Short-32-Yellow'),(6390,106,0,915,'container2'),(6391,124,0,915,'0'),(6392,121,0,915,'torque-power-short-33-gray'),(6393,87,0,915,'/m/s/msh04-gray_main_1.jpg'),(6394,88,0,915,'/m/s/msh04-gray_main_1.jpg'),(6395,89,0,915,'/m/s/msh04-gray_main_1.jpg'),(6396,73,0,915,'Torque Power Short-33-Gray'),(6397,106,0,916,'container2'),(6398,124,0,916,'0'),(6399,121,0,916,'torque-power-short-33-purple'),(6400,87,0,916,'/m/s/msh04-purple_main_1.jpg'),(6401,88,0,916,'/m/s/msh04-purple_main_1.jpg'),(6402,89,0,916,'/m/s/msh04-purple_main_1.jpg'),(6403,73,0,916,'Torque Power Short-33-Purple'),(6404,106,0,917,'container2'),(6405,124,0,917,'0'),(6406,121,0,917,'torque-power-short-33-yellow'),(6407,87,0,917,'/m/s/msh04-yellow_main_1.jpg'),(6408,88,0,917,'/m/s/msh04-yellow_main_1.jpg'),(6409,89,0,917,'/m/s/msh04-yellow_main_1.jpg'),(6410,73,0,917,'Torque Power Short-33-Yellow'),(6411,106,0,918,'container2'),(6412,124,0,918,'0'),(6413,121,0,918,'torque-power-short-34-gray'),(6414,87,0,918,'/m/s/msh04-gray_main_1.jpg'),(6415,88,0,918,'/m/s/msh04-gray_main_1.jpg'),(6416,89,0,918,'/m/s/msh04-gray_main_1.jpg'),(6417,73,0,918,'Torque Power Short-34-Gray'),(6418,106,0,919,'container2'),(6419,124,0,919,'0'),(6420,121,0,919,'torque-power-short-34-purple'),(6421,87,0,919,'/m/s/msh04-purple_main_1.jpg'),(6422,88,0,919,'/m/s/msh04-purple_main_1.jpg'),(6423,89,0,919,'/m/s/msh04-purple_main_1.jpg'),(6424,73,0,919,'Torque Power Short-34-Purple'),(6425,106,0,920,'container2'),(6426,124,0,920,'0'),(6427,121,0,920,'torque-power-short-34-yellow'),(6428,87,0,920,'/m/s/msh04-yellow_main_1.jpg'),(6429,88,0,920,'/m/s/msh04-yellow_main_1.jpg'),(6430,89,0,920,'/m/s/msh04-yellow_main_1.jpg'),(6431,73,0,920,'Torque Power Short-34-Yellow'),(6432,106,0,921,'container2'),(6433,124,0,921,'0'),(6434,121,0,921,'torque-power-short-36-gray'),(6435,87,0,921,'/m/s/msh04-gray_main_1.jpg'),(6436,88,0,921,'/m/s/msh04-gray_main_1.jpg'),(6437,89,0,921,'/m/s/msh04-gray_main_1.jpg'),(6438,73,0,921,'Torque Power Short-36-Gray'),(6439,106,0,922,'container2'),(6440,124,0,922,'0'),(6441,121,0,922,'torque-power-short-36-purple'),(6442,87,0,922,'/m/s/msh04-purple_main_1.jpg'),(6443,88,0,922,'/m/s/msh04-purple_main_1.jpg'),(6444,89,0,922,'/m/s/msh04-purple_main_1.jpg'),(6445,73,0,922,'Torque Power Short-36-Purple'),(6446,106,0,923,'container2'),(6447,124,0,923,'0'),(6448,121,0,923,'torque-power-short-36-yellow'),(6449,87,0,923,'/m/s/msh04-yellow_main_1.jpg'),(6450,88,0,923,'/m/s/msh04-yellow_main_1.jpg'),(6451,89,0,923,'/m/s/msh04-yellow_main_1.jpg'),(6452,73,0,923,'Torque Power Short-36-Yellow'),(6453,106,0,924,'container2'),(6454,124,0,924,'0'),(6455,121,0,924,'torque-power-short'),(6456,87,0,924,'/m/s/msh04-gray_main_1.jpg'),(6457,88,0,924,'/m/s/msh04-gray_main_1.jpg'),(6458,89,0,924,'/m/s/msh04-gray_main_1.jpg'),(6459,73,0,924,'Torque Power Short'),(6460,106,0,925,'container2'),(6461,124,0,925,'0'),(6462,121,0,925,'hawkeye-yoga-short-32-black'),(6463,87,0,925,'/m/s/msh05-black_main_1.jpg'),(6464,88,0,925,'/m/s/msh05-black_main_1.jpg'),(6465,89,0,925,'/m/s/msh05-black_main_1.jpg'),(6466,73,0,925,'Hawkeye Yoga Short-32-Black'),(6467,106,0,926,'container2'),(6468,124,0,926,'0'),(6469,121,0,926,'hawkeye-yoga-short-32-blue'),(6470,87,0,926,'/m/s/msh05-blue_main_1.jpg'),(6471,88,0,926,'/m/s/msh05-blue_main_1.jpg'),(6472,89,0,926,'/m/s/msh05-blue_main_1.jpg'),(6473,73,0,926,'Hawkeye Yoga Short-32-Blue'),(6474,106,0,927,'container2'),(6475,124,0,927,'0'),(6476,121,0,927,'hawkeye-yoga-short-32-gray'),(6477,87,0,927,'/m/s/msh05-gray_main_1.jpg'),(6478,88,0,927,'/m/s/msh05-gray_main_1.jpg'),(6479,89,0,927,'/m/s/msh05-gray_main_1.jpg'),(6480,73,0,927,'Hawkeye Yoga Short-32-Gray'),(6481,106,0,928,'container2'),(6482,124,0,928,'0'),(6483,121,0,928,'hawkeye-yoga-short-33-black'),(6484,87,0,928,'/m/s/msh05-black_main_1.jpg'),(6485,88,0,928,'/m/s/msh05-black_main_1.jpg'),(6486,89,0,928,'/m/s/msh05-black_main_1.jpg'),(6487,73,0,928,'Hawkeye Yoga Short-33-Black'),(6488,106,0,929,'container2'),(6489,124,0,929,'0'),(6490,121,0,929,'hawkeye-yoga-short-33-blue'),(6491,87,0,929,'/m/s/msh05-blue_main_1.jpg'),(6492,88,0,929,'/m/s/msh05-blue_main_1.jpg'),(6493,89,0,929,'/m/s/msh05-blue_main_1.jpg'),(6494,73,0,929,'Hawkeye Yoga Short-33-Blue'),(6495,106,0,930,'container2'),(6496,124,0,930,'0'),(6497,121,0,930,'hawkeye-yoga-short-33-gray'),(6498,87,0,930,'/m/s/msh05-gray_main_1.jpg'),(6499,88,0,930,'/m/s/msh05-gray_main_1.jpg'),(6500,89,0,930,'/m/s/msh05-gray_main_1.jpg'),(6501,73,0,930,'Hawkeye Yoga Short-33-Gray'),(6502,106,0,931,'container2'),(6503,124,0,931,'0'),(6504,121,0,931,'hawkeye-yoga-short-34-black'),(6505,87,0,931,'/m/s/msh05-black_main_1.jpg'),(6506,88,0,931,'/m/s/msh05-black_main_1.jpg'),(6507,89,0,931,'/m/s/msh05-black_main_1.jpg'),(6508,73,0,931,'Hawkeye Yoga Short-34-Black'),(6509,106,0,932,'container2'),(6510,124,0,932,'0'),(6511,121,0,932,'hawkeye-yoga-short-34-blue'),(6512,87,0,932,'/m/s/msh05-blue_main_1.jpg'),(6513,88,0,932,'/m/s/msh05-blue_main_1.jpg'),(6514,89,0,932,'/m/s/msh05-blue_main_1.jpg'),(6515,73,0,932,'Hawkeye Yoga Short-34-Blue'),(6516,106,0,933,'container2'),(6517,124,0,933,'0'),(6518,121,0,933,'hawkeye-yoga-short-34-gray'),(6519,87,0,933,'/m/s/msh05-gray_main_1.jpg'),(6520,88,0,933,'/m/s/msh05-gray_main_1.jpg'),(6521,89,0,933,'/m/s/msh05-gray_main_1.jpg'),(6522,73,0,933,'Hawkeye Yoga Short-34-Gray'),(6523,106,0,934,'container2'),(6524,124,0,934,'0'),(6525,121,0,934,'hawkeye-yoga-short-36-black'),(6526,87,0,934,'/m/s/msh05-black_main_1.jpg'),(6527,88,0,934,'/m/s/msh05-black_main_1.jpg'),(6528,89,0,934,'/m/s/msh05-black_main_1.jpg'),(6529,73,0,934,'Hawkeye Yoga Short-36-Black'),(6530,106,0,935,'container2'),(6531,124,0,935,'0'),(6532,121,0,935,'hawkeye-yoga-short-36-blue'),(6533,87,0,935,'/m/s/msh05-blue_main_1.jpg'),(6534,88,0,935,'/m/s/msh05-blue_main_1.jpg'),(6535,89,0,935,'/m/s/msh05-blue_main_1.jpg'),(6536,73,0,935,'Hawkeye Yoga Short-36-Blue'),(6537,106,0,936,'container2'),(6538,124,0,936,'0'),(6539,121,0,936,'hawkeye-yoga-short-36-gray'),(6540,87,0,936,'/m/s/msh05-gray_main_1.jpg'),(6541,88,0,936,'/m/s/msh05-gray_main_1.jpg'),(6542,89,0,936,'/m/s/msh05-gray_main_1.jpg'),(6543,73,0,936,'Hawkeye Yoga Short-36-Gray'),(6544,106,0,937,'container2'),(6545,124,0,937,'0'),(6546,121,0,937,'hawkeye-yoga-short'),(6547,87,0,937,'/m/s/msh05-gray_main_1.jpg'),(6548,88,0,937,'/m/s/msh05-gray_main_1.jpg'),(6549,89,0,937,'/m/s/msh05-gray_main_1.jpg'),(6550,73,0,937,'Hawkeye Yoga Short'),(6551,106,0,938,'container2'),(6552,124,0,938,'0'),(6553,121,0,938,'lono-yoga-short-32-blue'),(6554,87,0,938,'/m/s/msh06-blue_main_1.jpg'),(6555,88,0,938,'/m/s/msh06-blue_main_1.jpg'),(6556,89,0,938,'/m/s/msh06-blue_main_1.jpg'),(6557,73,0,938,'Lono Yoga Short-32-Blue'),(6558,106,0,939,'container2'),(6559,124,0,939,'0'),(6560,121,0,939,'lono-yoga-short-32-gray'),(6561,87,0,939,'/m/s/msh06-gray_main_1.jpg'),(6562,88,0,939,'/m/s/msh06-gray_main_1.jpg'),(6563,89,0,939,'/m/s/msh06-gray_main_1.jpg'),(6564,73,0,939,'Lono Yoga Short-32-Gray'),(6565,106,0,940,'container2'),(6566,124,0,940,'0'),(6567,121,0,940,'lono-yoga-short-32-red'),(6568,87,0,940,'/m/s/msh06-red_main_1.jpg'),(6569,88,0,940,'/m/s/msh06-red_main_1.jpg'),(6570,89,0,940,'/m/s/msh06-red_main_1.jpg'),(6571,73,0,940,'Lono Yoga Short-32-Red'),(6572,106,0,941,'container2'),(6573,124,0,941,'0'),(6574,121,0,941,'lono-yoga-short-33-blue'),(6575,87,0,941,'/m/s/msh06-blue_main_1.jpg'),(6576,88,0,941,'/m/s/msh06-blue_main_1.jpg'),(6577,89,0,941,'/m/s/msh06-blue_main_1.jpg'),(6578,73,0,941,'Lono Yoga Short-33-Blue'),(6579,106,0,942,'container2'),(6580,124,0,942,'0'),(6581,121,0,942,'lono-yoga-short-33-gray'),(6582,87,0,942,'/m/s/msh06-gray_main_1.jpg'),(6583,88,0,942,'/m/s/msh06-gray_main_1.jpg'),(6584,89,0,942,'/m/s/msh06-gray_main_1.jpg'),(6585,73,0,942,'Lono Yoga Short-33-Gray'),(6586,106,0,943,'container2'),(6587,124,0,943,'0'),(6588,121,0,943,'lono-yoga-short-33-red'),(6589,87,0,943,'/m/s/msh06-red_main_1.jpg'),(6590,88,0,943,'/m/s/msh06-red_main_1.jpg'),(6591,89,0,943,'/m/s/msh06-red_main_1.jpg'),(6592,73,0,943,'Lono Yoga Short-33-Red'),(6593,106,0,944,'container2'),(6594,124,0,944,'0'),(6595,121,0,944,'lono-yoga-short-34-blue'),(6596,87,0,944,'/m/s/msh06-blue_main_1.jpg'),(6597,88,0,944,'/m/s/msh06-blue_main_1.jpg'),(6598,89,0,944,'/m/s/msh06-blue_main_1.jpg'),(6599,73,0,944,'Lono Yoga Short-34-Blue'),(6600,106,0,945,'container2'),(6601,124,0,945,'0'),(6602,121,0,945,'lono-yoga-short-34-gray'),(6603,87,0,945,'/m/s/msh06-gray_main_1.jpg'),(6604,88,0,945,'/m/s/msh06-gray_main_1.jpg'),(6605,89,0,945,'/m/s/msh06-gray_main_1.jpg'),(6606,73,0,945,'Lono Yoga Short-34-Gray'),(6607,106,0,946,'container2'),(6608,124,0,946,'0'),(6609,121,0,946,'lono-yoga-short-34-red'),(6610,87,0,946,'/m/s/msh06-red_main_1.jpg'),(6611,88,0,946,'/m/s/msh06-red_main_1.jpg'),(6612,89,0,946,'/m/s/msh06-red_main_1.jpg'),(6613,73,0,946,'Lono Yoga Short-34-Red'),(6614,106,0,947,'container2'),(6615,124,0,947,'0'),(6616,121,0,947,'lono-yoga-short-36-blue'),(6617,87,0,947,'/m/s/msh06-blue_main_2.jpg'),(6618,88,0,947,'/m/s/msh06-blue_main_2.jpg'),(6619,89,0,947,'/m/s/msh06-blue_main_2.jpg'),(6620,73,0,947,'Lono Yoga Short-36-Blue'),(6621,106,0,948,'container2'),(6622,124,0,948,'0'),(6623,121,0,948,'lono-yoga-short-36-gray'),(6624,87,0,948,'/m/s/msh06-gray_main_2.jpg'),(6625,88,0,948,'/m/s/msh06-gray_main_2.jpg'),(6626,89,0,948,'/m/s/msh06-gray_main_2.jpg'),(6627,73,0,948,'Lono Yoga Short-36-Gray'),(6628,106,0,949,'container2'),(6629,124,0,949,'0'),(6630,121,0,949,'lono-yoga-short-36-red'),(6631,87,0,949,'/m/s/msh06-red_main_2.jpg'),(6632,88,0,949,'/m/s/msh06-red_main_2.jpg'),(6633,89,0,949,'/m/s/msh06-red_main_2.jpg'),(6634,73,0,949,'Lono Yoga Short-36-Red'),(6635,106,0,950,'container2'),(6636,124,0,950,'0'),(6637,121,0,950,'lono-yoga-short'),(6638,87,0,950,'/m/s/msh06-gray_main_2.jpg'),(6639,88,0,950,'/m/s/msh06-gray_main_2.jpg'),(6640,89,0,950,'/m/s/msh06-gray_main_2.jpg'),(6641,73,0,950,'Lono Yoga Short'),(6642,106,0,951,'container2'),(6643,124,0,951,'0'),(6644,121,0,951,'rapha-sports-short-32-black'),(6645,87,0,951,'/m/s/msh07-black_main_1.jpg'),(6646,88,0,951,'/m/s/msh07-black_main_1.jpg'),(6647,89,0,951,'/m/s/msh07-black_main_1.jpg'),(6648,73,0,951,'Rapha  Sports Short-32-Black'),(6649,106,0,952,'container2'),(6650,124,0,952,'0'),(6651,121,0,952,'rapha-sports-short-32-blue'),(6652,87,0,952,'/m/s/msh07-blue_main_1.jpg'),(6653,88,0,952,'/m/s/msh07-blue_main_1.jpg'),(6654,89,0,952,'/m/s/msh07-blue_main_1.jpg'),(6655,73,0,952,'Rapha  Sports Short-32-Blue'),(6656,106,0,953,'container2'),(6657,124,0,953,'0'),(6658,121,0,953,'rapha-sports-short-32-purple'),(6659,87,0,953,'/m/s/msh07-purple_main_1.jpg'),(6660,88,0,953,'/m/s/msh07-purple_main_1.jpg'),(6661,89,0,953,'/m/s/msh07-purple_main_1.jpg'),(6662,73,0,953,'Rapha  Sports Short-32-Purple'),(6663,106,0,954,'container2'),(6664,124,0,954,'0'),(6665,121,0,954,'rapha-sports-short-33-black'),(6666,87,0,954,'/m/s/msh07-black_main_1.jpg'),(6667,88,0,954,'/m/s/msh07-black_main_1.jpg'),(6668,89,0,954,'/m/s/msh07-black_main_1.jpg'),(6669,73,0,954,'Rapha  Sports Short-33-Black'),(6670,106,0,955,'container2'),(6671,124,0,955,'0'),(6672,121,0,955,'rapha-sports-short-33-blue'),(6673,87,0,955,'/m/s/msh07-blue_main_1.jpg'),(6674,88,0,955,'/m/s/msh07-blue_main_1.jpg'),(6675,89,0,955,'/m/s/msh07-blue_main_1.jpg'),(6676,73,0,955,'Rapha  Sports Short-33-Blue'),(6677,106,0,956,'container2'),(6678,124,0,956,'0'),(6679,121,0,956,'rapha-sports-short-33-purple'),(6680,87,0,956,'/m/s/msh07-purple_main_1.jpg'),(6681,88,0,956,'/m/s/msh07-purple_main_1.jpg'),(6682,89,0,956,'/m/s/msh07-purple_main_1.jpg'),(6683,73,0,956,'Rapha  Sports Short-33-Purple'),(6684,106,0,957,'container2'),(6685,124,0,957,'0'),(6686,121,0,957,'rapha-sports-short-34-black'),(6687,87,0,957,'/m/s/msh07-black_main_1.jpg'),(6688,88,0,957,'/m/s/msh07-black_main_1.jpg'),(6689,89,0,957,'/m/s/msh07-black_main_1.jpg'),(6690,73,0,957,'Rapha  Sports Short-34-Black'),(6691,106,0,958,'container2'),(6692,124,0,958,'0'),(6693,121,0,958,'rapha-sports-short-34-blue'),(6694,87,0,958,'/m/s/msh07-blue_main_1.jpg'),(6695,88,0,958,'/m/s/msh07-blue_main_1.jpg'),(6696,89,0,958,'/m/s/msh07-blue_main_1.jpg'),(6697,73,0,958,'Rapha  Sports Short-34-Blue'),(6698,106,0,959,'container2'),(6699,124,0,959,'0'),(6700,121,0,959,'rapha-sports-short-34-purple'),(6701,87,0,959,'/m/s/msh07-purple_main_1.jpg'),(6702,88,0,959,'/m/s/msh07-purple_main_1.jpg'),(6703,89,0,959,'/m/s/msh07-purple_main_1.jpg'),(6704,73,0,959,'Rapha  Sports Short-34-Purple'),(6705,106,0,960,'container2'),(6706,124,0,960,'0'),(6707,121,0,960,'rapha-sports-short-36-black'),(6708,87,0,960,'/m/s/msh07-black_main_1.jpg'),(6709,88,0,960,'/m/s/msh07-black_main_1.jpg'),(6710,89,0,960,'/m/s/msh07-black_main_1.jpg'),(6711,73,0,960,'Rapha  Sports Short-36-Black'),(6712,106,0,961,'container2'),(6713,124,0,961,'0'),(6714,121,0,961,'rapha-sports-short-36-blue'),(6715,87,0,961,'/m/s/msh07-blue_main_1.jpg'),(6716,88,0,961,'/m/s/msh07-blue_main_1.jpg'),(6717,89,0,961,'/m/s/msh07-blue_main_1.jpg'),(6718,73,0,961,'Rapha  Sports Short-36-Blue'),(6719,106,0,962,'container2'),(6720,124,0,962,'0'),(6721,121,0,962,'rapha-sports-short-36-purple'),(6722,87,0,962,'/m/s/msh07-purple_main_1.jpg'),(6723,88,0,962,'/m/s/msh07-purple_main_1.jpg'),(6724,89,0,962,'/m/s/msh07-purple_main_1.jpg'),(6725,73,0,962,'Rapha  Sports Short-36-Purple'),(6726,106,0,963,'container2'),(6727,124,0,963,'0'),(6728,121,0,963,'rapha-sports-short'),(6729,87,0,963,'/m/s/msh07-black_main_1.jpg'),(6730,88,0,963,'/m/s/msh07-black_main_1.jpg'),(6731,89,0,963,'/m/s/msh07-black_main_1.jpg'),(6732,73,0,963,'Rapha  Sports Short'),(6733,106,0,964,'container2'),(6734,124,0,964,'0'),(6735,121,0,964,'orestes-fitness-short-32-black'),(6736,87,0,964,'/m/s/msh08-black_main_1.jpg'),(6737,88,0,964,'/m/s/msh08-black_main_1.jpg'),(6738,89,0,964,'/m/s/msh08-black_main_1.jpg'),(6739,73,0,964,'Orestes Fitness Short-32-Black'),(6740,106,0,965,'container2'),(6741,124,0,965,'0'),(6742,121,0,965,'orestes-fitness-short-32-blue'),(6743,87,0,965,'/m/s/msh08-blue_main_1.jpg'),(6744,88,0,965,'/m/s/msh08-blue_main_1.jpg'),(6745,89,0,965,'/m/s/msh08-blue_main_1.jpg'),(6746,73,0,965,'Orestes Fitness Short-32-Blue'),(6747,106,0,966,'container2'),(6748,124,0,966,'0'),(6749,121,0,966,'orestes-fitness-short-32-green'),(6750,87,0,966,'/m/s/msh08-green_main_1.jpg'),(6751,88,0,966,'/m/s/msh08-green_main_1.jpg'),(6752,89,0,966,'/m/s/msh08-green_main_1.jpg'),(6753,73,0,966,'Orestes Fitness Short-32-Green'),(6754,106,0,967,'container2'),(6755,124,0,967,'0'),(6756,121,0,967,'orestes-fitness-short-33-black'),(6757,87,0,967,'/m/s/msh08-black_main_1.jpg'),(6758,88,0,967,'/m/s/msh08-black_main_1.jpg'),(6759,89,0,967,'/m/s/msh08-black_main_1.jpg'),(6760,73,0,967,'Orestes Fitness Short-33-Black'),(6761,106,0,968,'container2'),(6762,124,0,968,'0'),(6763,121,0,968,'orestes-fitness-short-33-blue'),(6764,87,0,968,'/m/s/msh08-blue_main_1.jpg'),(6765,88,0,968,'/m/s/msh08-blue_main_1.jpg'),(6766,89,0,968,'/m/s/msh08-blue_main_1.jpg'),(6767,73,0,968,'Orestes Fitness Short-33-Blue'),(6768,106,0,969,'container2'),(6769,124,0,969,'0'),(6770,121,0,969,'orestes-fitness-short-33-green'),(6771,87,0,969,'/m/s/msh08-green_main_1.jpg'),(6772,88,0,969,'/m/s/msh08-green_main_1.jpg'),(6773,89,0,969,'/m/s/msh08-green_main_1.jpg'),(6774,73,0,969,'Orestes Fitness Short-33-Green'),(6775,106,0,970,'container2'),(6776,124,0,970,'0'),(6777,121,0,970,'orestes-fitness-short-34-black'),(6778,87,0,970,'/m/s/msh08-black_main_1.jpg'),(6779,88,0,970,'/m/s/msh08-black_main_1.jpg'),(6780,89,0,970,'/m/s/msh08-black_main_1.jpg'),(6781,73,0,970,'Orestes Fitness Short-34-Black'),(6782,106,0,971,'container2'),(6783,124,0,971,'0'),(6784,121,0,971,'orestes-fitness-short-34-blue'),(6785,87,0,971,'/m/s/msh08-blue_main_1.jpg'),(6786,88,0,971,'/m/s/msh08-blue_main_1.jpg'),(6787,89,0,971,'/m/s/msh08-blue_main_1.jpg'),(6788,73,0,971,'Orestes Fitness Short-34-Blue'),(6789,106,0,972,'container2'),(6790,124,0,972,'0'),(6791,121,0,972,'orestes-fitness-short-34-green'),(6792,87,0,972,'/m/s/msh08-green_main_1.jpg'),(6793,88,0,972,'/m/s/msh08-green_main_1.jpg'),(6794,89,0,972,'/m/s/msh08-green_main_1.jpg'),(6795,73,0,972,'Orestes Fitness Short-34-Green'),(6796,106,0,973,'container2'),(6797,124,0,973,'0'),(6798,121,0,973,'orestes-fitness-short-36-black'),(6799,87,0,973,'/m/s/msh08-black_main_1.jpg'),(6800,88,0,973,'/m/s/msh08-black_main_1.jpg'),(6801,89,0,973,'/m/s/msh08-black_main_1.jpg'),(6802,73,0,973,'Orestes Fitness Short-36-Black'),(6803,106,0,974,'container2'),(6804,124,0,974,'0'),(6805,121,0,974,'orestes-fitness-short-36-blue'),(6806,87,0,974,'/m/s/msh08-blue_main_1.jpg'),(6807,88,0,974,'/m/s/msh08-blue_main_1.jpg'),(6808,89,0,974,'/m/s/msh08-blue_main_1.jpg'),(6809,73,0,974,'Orestes Fitness Short-36-Blue'),(6810,106,0,975,'container2'),(6811,124,0,975,'0'),(6812,121,0,975,'orestes-fitness-short-36-green'),(6813,87,0,975,'/m/s/msh08-green_main_1.jpg'),(6814,88,0,975,'/m/s/msh08-green_main_1.jpg'),(6815,89,0,975,'/m/s/msh08-green_main_1.jpg'),(6816,73,0,975,'Orestes Fitness Short-36-Green'),(6817,106,0,976,'container2'),(6818,124,0,976,'0'),(6819,121,0,976,'orestes-fitness-short'),(6820,87,0,976,'/m/s/msh08-black_main_1.jpg'),(6821,88,0,976,'/m/s/msh08-black_main_1.jpg'),(6822,89,0,976,'/m/s/msh08-black_main_1.jpg'),(6823,73,0,976,'Orestes Fitness Short'),(6824,106,0,977,'container2'),(6825,124,0,977,'0'),(6826,121,0,977,'troy-yoga-short-32-black'),(6827,87,0,977,'/m/s/msh09-black_main_1.jpg'),(6828,88,0,977,'/m/s/msh09-black_main_1.jpg'),(6829,89,0,977,'/m/s/msh09-black_main_1.jpg'),(6830,73,0,977,'Troy Yoga Short-32-Black'),(6831,106,0,978,'container2'),(6832,124,0,978,'0'),(6833,121,0,978,'troy-yoga-short-32-blue'),(6834,87,0,978,'/m/s/msh09-blue_main_1.jpg'),(6835,88,0,978,'/m/s/msh09-blue_main_1.jpg'),(6836,89,0,978,'/m/s/msh09-blue_main_1.jpg'),(6837,73,0,978,'Troy Yoga Short-32-Blue'),(6838,106,0,979,'container2'),(6839,124,0,979,'0'),(6840,121,0,979,'troy-yoga-short-32-green'),(6841,87,0,979,'/m/s/msh09-green_main_1.jpg'),(6842,88,0,979,'/m/s/msh09-green_main_1.jpg'),(6843,89,0,979,'/m/s/msh09-green_main_1.jpg'),(6844,73,0,979,'Troy Yoga Short-32-Green'),(6845,106,0,980,'container2'),(6846,124,0,980,'0'),(6847,121,0,980,'troy-yoga-short-33-black'),(6848,87,0,980,'/m/s/msh09-black_main_1.jpg'),(6849,88,0,980,'/m/s/msh09-black_main_1.jpg'),(6850,89,0,980,'/m/s/msh09-black_main_1.jpg'),(6851,73,0,980,'Troy Yoga Short-33-Black'),(6852,106,0,981,'container2'),(6853,124,0,981,'0'),(6854,121,0,981,'troy-yoga-short-33-blue'),(6855,87,0,981,'/m/s/msh09-blue_main_1.jpg'),(6856,88,0,981,'/m/s/msh09-blue_main_1.jpg'),(6857,89,0,981,'/m/s/msh09-blue_main_1.jpg'),(6858,73,0,981,'Troy Yoga Short-33-Blue'),(6859,106,0,982,'container2'),(6860,124,0,982,'0'),(6861,121,0,982,'troy-yoga-short-33-green'),(6862,87,0,982,'/m/s/msh09-green_main_1.jpg'),(6863,88,0,982,'/m/s/msh09-green_main_1.jpg'),(6864,89,0,982,'/m/s/msh09-green_main_1.jpg'),(6865,73,0,982,'Troy Yoga Short-33-Green'),(6866,106,0,983,'container2'),(6867,124,0,983,'0'),(6868,121,0,983,'troy-yoga-short-34-black'),(6869,87,0,983,'/m/s/msh09-black_main_1.jpg'),(6870,88,0,983,'/m/s/msh09-black_main_1.jpg'),(6871,89,0,983,'/m/s/msh09-black_main_1.jpg'),(6872,73,0,983,'Troy Yoga Short-34-Black'),(6873,106,0,984,'container2'),(6874,124,0,984,'0'),(6875,121,0,984,'troy-yoga-short-34-blue'),(6876,87,0,984,'/m/s/msh09-blue_main_1.jpg'),(6877,88,0,984,'/m/s/msh09-blue_main_1.jpg'),(6878,89,0,984,'/m/s/msh09-blue_main_1.jpg'),(6879,73,0,984,'Troy Yoga Short-34-Blue'),(6880,106,0,985,'container2'),(6881,124,0,985,'0'),(6882,121,0,985,'troy-yoga-short-34-green'),(6883,87,0,985,'/m/s/msh09-green_main_1.jpg'),(6884,88,0,985,'/m/s/msh09-green_main_1.jpg'),(6885,89,0,985,'/m/s/msh09-green_main_1.jpg'),(6886,73,0,985,'Troy Yoga Short-34-Green'),(6887,106,0,986,'container2'),(6888,124,0,986,'0'),(6889,121,0,986,'troy-yoga-short-36-black'),(6890,87,0,986,'/m/s/msh09-black_main_1.jpg'),(6891,88,0,986,'/m/s/msh09-black_main_1.jpg'),(6892,89,0,986,'/m/s/msh09-black_main_1.jpg'),(6893,73,0,986,'Troy Yoga Short-36-Black'),(6894,106,0,987,'container2'),(6895,124,0,987,'0'),(6896,121,0,987,'troy-yoga-short-36-blue'),(6897,87,0,987,'/m/s/msh09-blue_main_1.jpg'),(6898,88,0,987,'/m/s/msh09-blue_main_1.jpg'),(6899,89,0,987,'/m/s/msh09-blue_main_1.jpg'),(6900,73,0,987,'Troy Yoga Short-36-Blue'),(6901,106,0,988,'container2'),(6902,124,0,988,'0'),(6903,121,0,988,'troy-yoga-short-36-green'),(6904,87,0,988,'/m/s/msh09-green_main_1.jpg'),(6905,88,0,988,'/m/s/msh09-green_main_1.jpg'),(6906,89,0,988,'/m/s/msh09-green_main_1.jpg'),(6907,73,0,988,'Troy Yoga Short-36-Green'),(6908,106,0,989,'container2'),(6909,124,0,989,'0'),(6910,121,0,989,'troy-yoga-short'),(6911,87,0,989,'/m/s/msh09-blue_main_1.jpg'),(6912,88,0,989,'/m/s/msh09-blue_main_1.jpg'),(6913,89,0,989,'/m/s/msh09-blue_main_1.jpg'),(6914,73,0,989,'Troy Yoga Short'),(6915,106,0,990,'container2'),(6916,124,0,990,'0'),(6917,121,0,990,'sol-active-short-32-blue'),(6918,87,0,990,'/m/s/msh10-blue_main_1.jpg'),(6919,88,0,990,'/m/s/msh10-blue_main_1.jpg'),(6920,89,0,990,'/m/s/msh10-blue_main_1.jpg'),(6921,73,0,990,'Sol Active Short-32-Blue'),(6922,106,0,991,'container2'),(6923,124,0,991,'0'),(6924,121,0,991,'sol-active-short-32-green'),(6925,87,0,991,'/m/s/msh10-green_main_1.jpg'),(6926,88,0,991,'/m/s/msh10-green_main_1.jpg'),(6927,89,0,991,'/m/s/msh10-green_main_1.jpg'),(6928,73,0,991,'Sol Active Short-32-Green'),(6929,106,0,992,'container2'),(6930,124,0,992,'0'),(6931,121,0,992,'sol-active-short-32-purple'),(6932,87,0,992,'/m/s/msh10-purple_main_1.jpg'),(6933,88,0,992,'/m/s/msh10-purple_main_1.jpg'),(6934,89,0,992,'/m/s/msh10-purple_main_1.jpg'),(6935,73,0,992,'Sol Active Short-32-Purple'),(6936,106,0,993,'container2'),(6937,124,0,993,'0'),(6938,121,0,993,'sol-active-short-33-blue'),(6939,87,0,993,'/m/s/msh10-blue_main_1.jpg'),(6940,88,0,993,'/m/s/msh10-blue_main_1.jpg'),(6941,89,0,993,'/m/s/msh10-blue_main_1.jpg'),(6942,73,0,993,'Sol Active Short-33-Blue'),(6943,106,0,994,'container2'),(6944,124,0,994,'0'),(6945,121,0,994,'sol-active-short-33-green'),(6946,87,0,994,'/m/s/msh10-green_main_1.jpg'),(6947,88,0,994,'/m/s/msh10-green_main_1.jpg'),(6948,89,0,994,'/m/s/msh10-green_main_1.jpg'),(6949,73,0,994,'Sol Active Short-33-Green'),(6950,106,0,995,'container2'),(6951,124,0,995,'0'),(6952,121,0,995,'sol-active-short-33-purple'),(6953,87,0,995,'/m/s/msh10-purple_main_1.jpg'),(6954,88,0,995,'/m/s/msh10-purple_main_1.jpg'),(6955,89,0,995,'/m/s/msh10-purple_main_1.jpg'),(6956,73,0,995,'Sol Active Short-33-Purple'),(6957,106,0,996,'container2'),(6958,124,0,996,'0'),(6959,121,0,996,'sol-active-short-34-blue'),(6960,87,0,996,'/m/s/msh10-blue_main_1.jpg'),(6961,88,0,996,'/m/s/msh10-blue_main_1.jpg'),(6962,89,0,996,'/m/s/msh10-blue_main_1.jpg'),(6963,73,0,996,'Sol Active Short-34-Blue'),(6964,106,0,997,'container2'),(6965,124,0,997,'0'),(6966,121,0,997,'sol-active-short-34-green'),(6967,87,0,997,'/m/s/msh10-green_main_1.jpg'),(6968,88,0,997,'/m/s/msh10-green_main_1.jpg'),(6969,89,0,997,'/m/s/msh10-green_main_1.jpg'),(6970,73,0,997,'Sol Active Short-34-Green'),(6971,106,0,998,'container2'),(6972,124,0,998,'0'),(6973,121,0,998,'sol-active-short-34-purple'),(6974,87,0,998,'/m/s/msh10-purple_main_1.jpg'),(6975,88,0,998,'/m/s/msh10-purple_main_1.jpg'),(6976,89,0,998,'/m/s/msh10-purple_main_1.jpg'),(6977,73,0,998,'Sol Active Short-34-Purple'),(6978,106,0,999,'container2'),(6979,124,0,999,'0'),(6980,121,0,999,'sol-active-short-36-blue'),(6981,87,0,999,'/m/s/msh10-blue_main_1.jpg'),(6982,88,0,999,'/m/s/msh10-blue_main_1.jpg'),(6983,89,0,999,'/m/s/msh10-blue_main_1.jpg'),(6984,73,0,999,'Sol Active Short-36-Blue'),(6985,106,0,1000,'container2'),(6986,124,0,1000,'0'),(6987,121,0,1000,'sol-active-short-36-green'),(6988,87,0,1000,'/m/s/msh10-green_main_1.jpg'),(6989,88,0,1000,'/m/s/msh10-green_main_1.jpg'),(6990,89,0,1000,'/m/s/msh10-green_main_1.jpg'),(6991,73,0,1000,'Sol Active Short-36-Green'),(6992,106,0,1001,'container2'),(6993,124,0,1001,'0'),(6994,121,0,1001,'sol-active-short-36-purple'),(6995,87,0,1001,'/m/s/msh10-purple_main_1.jpg'),(6996,88,0,1001,'/m/s/msh10-purple_main_1.jpg'),(6997,89,0,1001,'/m/s/msh10-purple_main_1.jpg'),(6998,73,0,1001,'Sol Active Short-36-Purple'),(6999,106,0,1002,'container2'),(7000,124,0,1002,'0'),(7001,121,0,1002,'sol-active-short'),(7002,87,0,1002,'/m/s/msh10-blue_main_1.jpg'),(7003,88,0,1002,'/m/s/msh10-blue_main_1.jpg'),(7004,89,0,1002,'/m/s/msh10-blue_main_1.jpg'),(7005,73,0,1002,'Sol Active Short'),(7006,106,0,1003,'container2'),(7007,124,0,1003,'0'),(7008,121,0,1003,'arcadio-gym-short-32-black'),(7009,87,0,1003,'/m/s/msh11-black_main_1.jpg'),(7010,88,0,1003,'/m/s/msh11-black_main_1.jpg'),(7011,89,0,1003,'/m/s/msh11-black_main_1.jpg'),(7012,73,0,1003,'Arcadio Gym Short-32-Black'),(7013,106,0,1004,'container2'),(7014,124,0,1004,'0'),(7015,121,0,1004,'arcadio-gym-short-32-blue'),(7016,87,0,1004,'/m/s/msh11-blue_main_1.jpg'),(7017,88,0,1004,'/m/s/msh11-blue_main_1.jpg'),(7018,89,0,1004,'/m/s/msh11-blue_main_1.jpg'),(7019,73,0,1004,'Arcadio Gym Short-32-Blue'),(7020,106,0,1005,'container2'),(7021,124,0,1005,'0'),(7022,121,0,1005,'arcadio-gym-short-32-red'),(7023,87,0,1005,'/m/s/msh11-red_main_1.jpg'),(7024,88,0,1005,'/m/s/msh11-red_main_1.jpg'),(7025,89,0,1005,'/m/s/msh11-red_main_1.jpg'),(7026,73,0,1005,'Arcadio Gym Short-32-Red'),(7027,106,0,1006,'container2'),(7028,124,0,1006,'0'),(7029,121,0,1006,'arcadio-gym-short-33-black'),(7030,87,0,1006,'/m/s/msh11-black_main_1.jpg'),(7031,88,0,1006,'/m/s/msh11-black_main_1.jpg'),(7032,89,0,1006,'/m/s/msh11-black_main_1.jpg'),(7033,73,0,1006,'Arcadio Gym Short-33-Black'),(7034,106,0,1007,'container2'),(7035,124,0,1007,'0'),(7036,121,0,1007,'arcadio-gym-short-33-blue'),(7037,87,0,1007,'/m/s/msh11-blue_main_1.jpg'),(7038,88,0,1007,'/m/s/msh11-blue_main_1.jpg'),(7039,89,0,1007,'/m/s/msh11-blue_main_1.jpg'),(7040,73,0,1007,'Arcadio Gym Short-33-Blue'),(7041,106,0,1008,'container2'),(7042,124,0,1008,'0'),(7043,121,0,1008,'arcadio-gym-short-33-red'),(7044,87,0,1008,'/m/s/msh11-red_main_1.jpg'),(7045,88,0,1008,'/m/s/msh11-red_main_1.jpg'),(7046,89,0,1008,'/m/s/msh11-red_main_1.jpg'),(7047,73,0,1008,'Arcadio Gym Short-33-Red'),(7048,106,0,1009,'container2'),(7049,124,0,1009,'0'),(7050,121,0,1009,'arcadio-gym-short-34-black'),(7051,87,0,1009,'/m/s/msh11-black_main_1.jpg'),(7052,88,0,1009,'/m/s/msh11-black_main_1.jpg'),(7053,89,0,1009,'/m/s/msh11-black_main_1.jpg'),(7054,73,0,1009,'Arcadio Gym Short-34-Black'),(7055,106,0,1010,'container2'),(7056,124,0,1010,'0'),(7057,121,0,1010,'arcadio-gym-short-34-blue'),(7058,87,0,1010,'/m/s/msh11-blue_main_1.jpg'),(7059,88,0,1010,'/m/s/msh11-blue_main_1.jpg'),(7060,89,0,1010,'/m/s/msh11-blue_main_1.jpg'),(7061,73,0,1010,'Arcadio Gym Short-34-Blue'),(7062,106,0,1011,'container2'),(7063,124,0,1011,'0'),(7064,121,0,1011,'arcadio-gym-short-34-red'),(7065,87,0,1011,'/m/s/msh11-red_main_1.jpg'),(7066,88,0,1011,'/m/s/msh11-red_main_1.jpg'),(7067,89,0,1011,'/m/s/msh11-red_main_1.jpg'),(7068,73,0,1011,'Arcadio Gym Short-34-Red'),(7069,106,0,1012,'container2'),(7070,124,0,1012,'0'),(7071,121,0,1012,'arcadio-gym-short-36-black'),(7072,87,0,1012,'/m/s/msh11-black_main_1.jpg'),(7073,88,0,1012,'/m/s/msh11-black_main_1.jpg'),(7074,89,0,1012,'/m/s/msh11-black_main_1.jpg'),(7075,73,0,1012,'Arcadio Gym Short-36-Black'),(7076,106,0,1013,'container2'),(7077,124,0,1013,'0'),(7078,121,0,1013,'arcadio-gym-short-36-blue'),(7079,87,0,1013,'/m/s/msh11-blue_main_1.jpg'),(7080,88,0,1013,'/m/s/msh11-blue_main_1.jpg'),(7081,89,0,1013,'/m/s/msh11-blue_main_1.jpg'),(7082,73,0,1013,'Arcadio Gym Short-36-Blue'),(7083,106,0,1014,'container2'),(7084,124,0,1014,'0'),(7085,121,0,1014,'arcadio-gym-short-36-red'),(7086,87,0,1014,'/m/s/msh11-red_main_1.jpg'),(7087,88,0,1014,'/m/s/msh11-red_main_1.jpg'),(7088,89,0,1014,'/m/s/msh11-red_main_1.jpg'),(7089,73,0,1014,'Arcadio Gym Short-36-Red'),(7090,106,0,1015,'container2'),(7091,124,0,1015,'0'),(7092,121,0,1015,'arcadio-gym-short'),(7093,87,0,1015,'/m/s/msh11-blue_main_1.jpg'),(7094,88,0,1015,'/m/s/msh11-blue_main_1.jpg'),(7095,89,0,1015,'/m/s/msh11-blue_main_1.jpg'),(7096,73,0,1015,'Arcadio Gym Short'),(7097,106,0,1016,'container2'),(7098,124,0,1016,'0'),(7099,121,0,1016,'pierce-gym-short-32-black'),(7100,87,0,1016,'/m/s/msh12-black_main_1.jpg'),(7101,88,0,1016,'/m/s/msh12-black_main_1.jpg'),(7102,89,0,1016,'/m/s/msh12-black_main_1.jpg'),(7103,73,0,1016,'Pierce Gym Short-32-Black'),(7104,106,0,1017,'container2'),(7105,124,0,1017,'0'),(7106,121,0,1017,'pierce-gym-short-32-gray'),(7107,87,0,1017,'/m/s/msh12-gray_main_1.jpg'),(7108,88,0,1017,'/m/s/msh12-gray_main_1.jpg'),(7109,89,0,1017,'/m/s/msh12-gray_main_1.jpg'),(7110,73,0,1017,'Pierce Gym Short-32-Gray'),(7111,106,0,1018,'container2'),(7112,124,0,1018,'0'),(7113,121,0,1018,'pierce-gym-short-32-red'),(7114,87,0,1018,'/m/s/msh12-red_main_1.jpg'),(7115,88,0,1018,'/m/s/msh12-red_main_1.jpg'),(7116,89,0,1018,'/m/s/msh12-red_main_1.jpg'),(7117,73,0,1018,'Pierce Gym Short-32-Red'),(7118,106,0,1019,'container2'),(7119,124,0,1019,'0'),(7120,121,0,1019,'pierce-gym-short-33-black'),(7121,87,0,1019,'/m/s/msh12-black_main_1.jpg'),(7122,88,0,1019,'/m/s/msh12-black_main_1.jpg'),(7123,89,0,1019,'/m/s/msh12-black_main_1.jpg'),(7124,73,0,1019,'Pierce Gym Short-33-Black'),(7125,106,0,1020,'container2'),(7126,124,0,1020,'0'),(7127,121,0,1020,'pierce-gym-short-33-gray'),(7128,87,0,1020,'/m/s/msh12-gray_main_1.jpg'),(7129,88,0,1020,'/m/s/msh12-gray_main_1.jpg'),(7130,89,0,1020,'/m/s/msh12-gray_main_1.jpg'),(7131,73,0,1020,'Pierce Gym Short-33-Gray'),(7132,106,0,1021,'container2'),(7133,124,0,1021,'0'),(7134,121,0,1021,'pierce-gym-short-33-red'),(7135,87,0,1021,'/m/s/msh12-red_main_1.jpg'),(7136,88,0,1021,'/m/s/msh12-red_main_1.jpg'),(7137,89,0,1021,'/m/s/msh12-red_main_1.jpg'),(7138,73,0,1021,'Pierce Gym Short-33-Red'),(7139,106,0,1022,'container2'),(7140,124,0,1022,'0'),(7141,121,0,1022,'pierce-gym-short-34-black'),(7142,87,0,1022,'/m/s/msh12-black_main_1.jpg'),(7143,88,0,1022,'/m/s/msh12-black_main_1.jpg'),(7144,89,0,1022,'/m/s/msh12-black_main_1.jpg'),(7145,73,0,1022,'Pierce Gym Short-34-Black'),(7146,106,0,1023,'container2'),(7147,124,0,1023,'0'),(7148,121,0,1023,'pierce-gym-short-34-gray'),(7149,87,0,1023,'/m/s/msh12-gray_main_1.jpg'),(7150,88,0,1023,'/m/s/msh12-gray_main_1.jpg'),(7151,89,0,1023,'/m/s/msh12-gray_main_1.jpg'),(7152,73,0,1023,'Pierce Gym Short-34-Gray'),(7153,106,0,1024,'container2'),(7154,124,0,1024,'0'),(7155,121,0,1024,'pierce-gym-short-34-red'),(7156,87,0,1024,'/m/s/msh12-red_main_1.jpg'),(7157,88,0,1024,'/m/s/msh12-red_main_1.jpg'),(7158,89,0,1024,'/m/s/msh12-red_main_1.jpg'),(7159,73,0,1024,'Pierce Gym Short-34-Red'),(7160,106,0,1025,'container2'),(7161,124,0,1025,'0'),(7162,121,0,1025,'pierce-gym-short-36-black'),(7163,87,0,1025,'/m/s/msh12-black_main_1.jpg'),(7164,88,0,1025,'/m/s/msh12-black_main_1.jpg'),(7165,89,0,1025,'/m/s/msh12-black_main_1.jpg'),(7166,73,0,1025,'Pierce Gym Short-36-Black'),(7167,106,0,1026,'container2'),(7168,124,0,1026,'0'),(7169,121,0,1026,'pierce-gym-short-36-gray'),(7170,87,0,1026,'/m/s/msh12-gray_main_1.jpg'),(7171,88,0,1026,'/m/s/msh12-gray_main_1.jpg'),(7172,89,0,1026,'/m/s/msh12-gray_main_1.jpg'),(7173,73,0,1026,'Pierce Gym Short-36-Gray'),(7174,106,0,1027,'container2'),(7175,124,0,1027,'0'),(7176,121,0,1027,'pierce-gym-short-36-red'),(7177,87,0,1027,'/m/s/msh12-red_main_1.jpg'),(7178,88,0,1027,'/m/s/msh12-red_main_1.jpg'),(7179,89,0,1027,'/m/s/msh12-red_main_1.jpg'),(7180,73,0,1027,'Pierce Gym Short-36-Red'),(7181,106,0,1028,'container2'),(7182,124,0,1028,'0'),(7183,121,0,1028,'pierce-gym-short'),(7184,87,0,1028,'/m/s/msh12-red_main_1.jpg'),(7185,88,0,1028,'/m/s/msh12-red_main_1.jpg'),(7186,89,0,1028,'/m/s/msh12-red_main_1.jpg'),(7187,73,0,1028,'Pierce Gym Short'),(7188,106,0,1029,'container2'),(7189,124,0,1029,'0'),(7190,121,0,1029,'mona-pullover-hoodlie-xs-green'),(7191,87,0,1029,'/w/h/wh01-green_main_1.jpg'),(7192,88,0,1029,'/w/h/wh01-green_main_1.jpg'),(7193,89,0,1029,'/w/h/wh01-green_main_1.jpg'),(7194,73,0,1029,'Mona Pullover Hoodlie-XS-Green'),(7195,106,0,1030,'container2'),(7196,124,0,1030,'0'),(7197,121,0,1030,'mona-pullover-hoodlie-xs-orange'),(7198,87,0,1030,'/w/h/wh01-orange_main_1.jpg'),(7199,88,0,1030,'/w/h/wh01-orange_main_1.jpg'),(7200,89,0,1030,'/w/h/wh01-orange_main_1.jpg'),(7201,73,0,1030,'Mona Pullover Hoodlie-XS-Orange'),(7202,106,0,1031,'container2'),(7203,124,0,1031,'0'),(7204,121,0,1031,'mona-pullover-hoodlie-xs-purple'),(7205,87,0,1031,'/w/h/wh01-purple_main_1.jpg'),(7206,88,0,1031,'/w/h/wh01-purple_main_1.jpg'),(7207,89,0,1031,'/w/h/wh01-purple_main_1.jpg'),(7208,73,0,1031,'Mona Pullover Hoodlie-XS-Purple'),(7209,106,0,1032,'container2'),(7210,124,0,1032,'0'),(7211,121,0,1032,'mona-pullover-hoodlie-s-green'),(7212,87,0,1032,'/w/h/wh01-green_main_1.jpg'),(7213,88,0,1032,'/w/h/wh01-green_main_1.jpg'),(7214,89,0,1032,'/w/h/wh01-green_main_1.jpg'),(7215,73,0,1032,'Mona Pullover Hoodlie-S-Green'),(7216,106,0,1033,'container2'),(7217,124,0,1033,'0'),(7218,121,0,1033,'mona-pullover-hoodlie-s-orange'),(7219,87,0,1033,'/w/h/wh01-orange_main_1.jpg'),(7220,88,0,1033,'/w/h/wh01-orange_main_1.jpg'),(7221,89,0,1033,'/w/h/wh01-orange_main_1.jpg'),(7222,73,0,1033,'Mona Pullover Hoodlie-S-Orange'),(7223,106,0,1034,'container2'),(7224,124,0,1034,'0'),(7225,121,0,1034,'mona-pullover-hoodlie-s-purple'),(7226,87,0,1034,'/w/h/wh01-purple_main_1.jpg'),(7227,88,0,1034,'/w/h/wh01-purple_main_1.jpg'),(7228,89,0,1034,'/w/h/wh01-purple_main_1.jpg'),(7229,73,0,1034,'Mona Pullover Hoodlie-S-Purple'),(7230,106,0,1035,'container2'),(7231,124,0,1035,'0'),(7232,121,0,1035,'mona-pullover-hoodlie-m-green'),(7233,87,0,1035,'/w/h/wh01-green_main_1.jpg'),(7234,88,0,1035,'/w/h/wh01-green_main_1.jpg'),(7235,89,0,1035,'/w/h/wh01-green_main_1.jpg'),(7236,73,0,1035,'Mona Pullover Hoodlie-M-Green'),(7237,106,0,1036,'container2'),(7238,124,0,1036,'0'),(7239,121,0,1036,'mona-pullover-hoodlie-m-orange'),(7240,87,0,1036,'/w/h/wh01-orange_main_1.jpg'),(7241,88,0,1036,'/w/h/wh01-orange_main_1.jpg'),(7242,89,0,1036,'/w/h/wh01-orange_main_1.jpg'),(7243,73,0,1036,'Mona Pullover Hoodlie-M-Orange'),(7244,106,0,1037,'container2'),(7245,124,0,1037,'0'),(7246,121,0,1037,'mona-pullover-hoodlie-m-purple'),(7247,87,0,1037,'/w/h/wh01-purple_main_1.jpg'),(7248,88,0,1037,'/w/h/wh01-purple_main_1.jpg'),(7249,89,0,1037,'/w/h/wh01-purple_main_1.jpg'),(7250,73,0,1037,'Mona Pullover Hoodlie-M-Purple'),(7251,106,0,1038,'container2'),(7252,124,0,1038,'0'),(7253,121,0,1038,'mona-pullover-hoodlie-l-green'),(7254,87,0,1038,'/w/h/wh01-green_main_1.jpg'),(7255,88,0,1038,'/w/h/wh01-green_main_1.jpg'),(7256,89,0,1038,'/w/h/wh01-green_main_1.jpg'),(7257,73,0,1038,'Mona Pullover Hoodlie-L-Green'),(7258,106,0,1039,'container2'),(7259,124,0,1039,'0'),(7260,121,0,1039,'mona-pullover-hoodlie-l-orange'),(7261,87,0,1039,'/w/h/wh01-orange_main_1.jpg'),(7262,88,0,1039,'/w/h/wh01-orange_main_1.jpg'),(7263,89,0,1039,'/w/h/wh01-orange_main_1.jpg'),(7264,73,0,1039,'Mona Pullover Hoodlie-L-Orange'),(7265,106,0,1040,'container2'),(7266,124,0,1040,'0'),(7267,121,0,1040,'mona-pullover-hoodlie-l-purple'),(7268,87,0,1040,'/w/h/wh01-purple_main_1.jpg'),(7269,88,0,1040,'/w/h/wh01-purple_main_1.jpg'),(7270,89,0,1040,'/w/h/wh01-purple_main_1.jpg'),(7271,73,0,1040,'Mona Pullover Hoodlie-L-Purple'),(7272,106,0,1041,'container2'),(7273,124,0,1041,'0'),(7274,121,0,1041,'mona-pullover-hoodlie-xl-green'),(7275,87,0,1041,'/w/h/wh01-green_main_1.jpg'),(7276,88,0,1041,'/w/h/wh01-green_main_1.jpg'),(7277,89,0,1041,'/w/h/wh01-green_main_1.jpg'),(7278,73,0,1041,'Mona Pullover Hoodlie-XL-Green'),(7279,106,0,1042,'container2'),(7280,124,0,1042,'0'),(7281,121,0,1042,'mona-pullover-hoodlie-xl-orange'),(7282,87,0,1042,'/w/h/wh01-orange_main_1.jpg'),(7283,88,0,1042,'/w/h/wh01-orange_main_1.jpg'),(7284,89,0,1042,'/w/h/wh01-orange_main_1.jpg'),(7285,73,0,1042,'Mona Pullover Hoodlie-XL-Orange'),(7286,106,0,1043,'container2'),(7287,124,0,1043,'0'),(7288,121,0,1043,'mona-pullover-hoodlie-xl-purple'),(7289,87,0,1043,'/w/h/wh01-purple_main_1.jpg'),(7290,88,0,1043,'/w/h/wh01-purple_main_1.jpg'),(7291,89,0,1043,'/w/h/wh01-purple_main_1.jpg'),(7292,73,0,1043,'Mona Pullover Hoodlie-XL-Purple'),(7293,106,0,1044,'container2'),(7294,124,0,1044,'0'),(7295,121,0,1044,'mona-pullover-hoodlie'),(7296,87,0,1044,'/w/h/wh01-green_main_1.jpg'),(7297,88,0,1044,'/w/h/wh01-green_main_1.jpg'),(7298,89,0,1044,'/w/h/wh01-green_main_1.jpg'),(7299,73,0,1044,'Mona Pullover Hoodlie'),(7300,106,0,1045,'container2'),(7301,124,0,1045,'0'),(7302,121,0,1045,'hera-pullover-hoodie-xs-blue'),(7303,87,0,1045,'/w/h/wh02-blue_main_1.jpg'),(7304,88,0,1045,'/w/h/wh02-blue_main_1.jpg'),(7305,89,0,1045,'/w/h/wh02-blue_main_1.jpg'),(7306,73,0,1045,'Hera Pullover Hoodie-XS-Blue'),(7307,106,0,1046,'container2'),(7308,124,0,1046,'0'),(7309,121,0,1046,'hera-pullover-hoodie-xs-green'),(7310,87,0,1046,'/w/h/wh02-green_main_1.jpg'),(7311,88,0,1046,'/w/h/wh02-green_main_1.jpg'),(7312,89,0,1046,'/w/h/wh02-green_main_1.jpg'),(7313,73,0,1046,'Hera Pullover Hoodie-XS-Green'),(7314,106,0,1047,'container2'),(7315,124,0,1047,'0'),(7316,121,0,1047,'hera-pullover-hoodie-xs-orange'),(7317,87,0,1047,'/w/h/wh02-orange_main_1.jpg'),(7318,88,0,1047,'/w/h/wh02-orange_main_1.jpg'),(7319,89,0,1047,'/w/h/wh02-orange_main_1.jpg'),(7320,73,0,1047,'Hera Pullover Hoodie-XS-Orange'),(7321,106,0,1048,'container2'),(7322,124,0,1048,'0'),(7323,121,0,1048,'hera-pullover-hoodie-s-blue'),(7324,87,0,1048,'/w/h/wh02-blue_main_2.jpg'),(7325,88,0,1048,'/w/h/wh02-blue_main_2.jpg'),(7326,89,0,1048,'/w/h/wh02-blue_main_2.jpg'),(7327,73,0,1048,'Hera Pullover Hoodie-S-Blue'),(7328,106,0,1049,'container2'),(7329,124,0,1049,'0'),(7330,121,0,1049,'hera-pullover-hoodie-s-green'),(7331,87,0,1049,'/w/h/wh02-green_main_2.jpg'),(7332,88,0,1049,'/w/h/wh02-green_main_2.jpg'),(7333,89,0,1049,'/w/h/wh02-green_main_2.jpg'),(7334,73,0,1049,'Hera Pullover Hoodie-S-Green'),(7335,106,0,1050,'container2'),(7336,124,0,1050,'0'),(7337,121,0,1050,'hera-pullover-hoodie-s-orange'),(7338,87,0,1050,'/w/h/wh02-orange_main_1.jpg'),(7339,88,0,1050,'/w/h/wh02-orange_main_1.jpg'),(7340,89,0,1050,'/w/h/wh02-orange_main_1.jpg'),(7341,73,0,1050,'Hera Pullover Hoodie-S-Orange'),(7342,106,0,1051,'container2'),(7343,124,0,1051,'0'),(7344,121,0,1051,'hera-pullover-hoodie-m-blue'),(7345,87,0,1051,'/w/h/wh02-blue_main_2.jpg'),(7346,88,0,1051,'/w/h/wh02-blue_main_2.jpg'),(7347,89,0,1051,'/w/h/wh02-blue_main_2.jpg'),(7348,73,0,1051,'Hera Pullover Hoodie-M-Blue'),(7349,106,0,1052,'container2'),(7350,124,0,1052,'0'),(7351,121,0,1052,'hera-pullover-hoodie-m-green'),(7352,87,0,1052,'/w/h/wh02-green_main_2.jpg'),(7353,88,0,1052,'/w/h/wh02-green_main_2.jpg'),(7354,89,0,1052,'/w/h/wh02-green_main_2.jpg'),(7355,73,0,1052,'Hera Pullover Hoodie-M-Green'),(7356,106,0,1053,'container2'),(7357,124,0,1053,'0'),(7358,121,0,1053,'hera-pullover-hoodie-m-orange'),(7359,87,0,1053,'/w/h/wh02-orange_main_1.jpg'),(7360,88,0,1053,'/w/h/wh02-orange_main_1.jpg'),(7361,89,0,1053,'/w/h/wh02-orange_main_1.jpg'),(7362,73,0,1053,'Hera Pullover Hoodie-M-Orange'),(7363,106,0,1054,'container2'),(7364,124,0,1054,'0'),(7365,121,0,1054,'hera-pullover-hoodie-l-blue'),(7366,87,0,1054,'/w/h/wh02-blue_main_2.jpg'),(7367,88,0,1054,'/w/h/wh02-blue_main_2.jpg'),(7368,89,0,1054,'/w/h/wh02-blue_main_2.jpg'),(7369,73,0,1054,'Hera Pullover Hoodie-L-Blue'),(7370,106,0,1055,'container2'),(7371,124,0,1055,'0'),(7372,121,0,1055,'hera-pullover-hoodie-l-green'),(7373,87,0,1055,'/w/h/wh02-green_main_2.jpg'),(7374,88,0,1055,'/w/h/wh02-green_main_2.jpg'),(7375,89,0,1055,'/w/h/wh02-green_main_2.jpg'),(7376,73,0,1055,'Hera Pullover Hoodie-L-Green'),(7377,106,0,1056,'container2'),(7378,124,0,1056,'0'),(7379,121,0,1056,'hera-pullover-hoodie-l-orange'),(7380,87,0,1056,'/w/h/wh02-orange_main_1.jpg'),(7381,88,0,1056,'/w/h/wh02-orange_main_1.jpg'),(7382,89,0,1056,'/w/h/wh02-orange_main_1.jpg'),(7383,73,0,1056,'Hera Pullover Hoodie-L-Orange'),(7384,106,0,1057,'container2'),(7385,124,0,1057,'0'),(7386,121,0,1057,'hera-pullover-hoodie-xl-blue'),(7387,87,0,1057,'/w/h/wh02-blue_main_2.jpg'),(7388,88,0,1057,'/w/h/wh02-blue_main_2.jpg'),(7389,89,0,1057,'/w/h/wh02-blue_main_2.jpg'),(7390,73,0,1057,'Hera Pullover Hoodie-XL-Blue'),(7391,106,0,1058,'container2'),(7392,124,0,1058,'0'),(7393,121,0,1058,'hera-pullover-hoodie-xl-green'),(7394,87,0,1058,'/w/h/wh02-green_main_2.jpg'),(7395,88,0,1058,'/w/h/wh02-green_main_2.jpg'),(7396,89,0,1058,'/w/h/wh02-green_main_2.jpg'),(7397,73,0,1058,'Hera Pullover Hoodie-XL-Green'),(7398,106,0,1059,'container2'),(7399,124,0,1059,'0'),(7400,121,0,1059,'hera-pullover-hoodie-xl-orange'),(7401,87,0,1059,'/w/h/wh02-orange_main_1.jpg'),(7402,88,0,1059,'/w/h/wh02-orange_main_1.jpg'),(7403,89,0,1059,'/w/h/wh02-orange_main_1.jpg'),(7404,73,0,1059,'Hera Pullover Hoodie-XL-Orange'),(7405,106,0,1060,'container2'),(7406,124,0,1060,'0'),(7407,121,0,1060,'hera-pullover-hoodie'),(7408,87,0,1060,'/w/h/wh02-blue_main_2.jpg'),(7409,88,0,1060,'/w/h/wh02-blue_main_2.jpg'),(7410,89,0,1060,'/w/h/wh02-blue_main_2.jpg'),(7411,73,0,1060,'Hera Pullover Hoodie'),(7412,106,0,1061,'container2'),(7413,124,0,1061,'0'),(7414,121,0,1061,'autumn-pullie-xs-green'),(7415,87,0,1061,'/w/h/wh03-green_main_1.jpg'),(7416,88,0,1061,'/w/h/wh03-green_main_1.jpg'),(7417,89,0,1061,'/w/h/wh03-green_main_1.jpg'),(7418,73,0,1061,'Autumn Pullie-XS-Green'),(7419,106,0,1062,'container2'),(7420,124,0,1062,'0'),(7421,121,0,1062,'autumn-pullie-xs-purple'),(7422,87,0,1062,'/w/h/wh03-purple_main_1.jpg'),(7423,88,0,1062,'/w/h/wh03-purple_main_1.jpg'),(7424,89,0,1062,'/w/h/wh03-purple_main_1.jpg'),(7425,73,0,1062,'Autumn Pullie-XS-Purple'),(7426,106,0,1063,'container2'),(7427,124,0,1063,'0'),(7428,121,0,1063,'autumn-pullie-xs-red'),(7429,87,0,1063,'/w/h/wh03-red_main_1.jpg'),(7430,88,0,1063,'/w/h/wh03-red_main_1.jpg'),(7431,89,0,1063,'/w/h/wh03-red_main_1.jpg'),(7432,73,0,1063,'Autumn Pullie-XS-Red'),(7433,106,0,1064,'container2'),(7434,124,0,1064,'0'),(7435,121,0,1064,'autumn-pullie-s-green'),(7436,87,0,1064,'/w/h/wh03-green_main_1.jpg'),(7437,88,0,1064,'/w/h/wh03-green_main_1.jpg'),(7438,89,0,1064,'/w/h/wh03-green_main_1.jpg'),(7439,73,0,1064,'Autumn Pullie-S-Green'),(7440,106,0,1065,'container2'),(7441,124,0,1065,'0'),(7442,121,0,1065,'autumn-pullie-s-purple'),(7443,87,0,1065,'/w/h/wh03-purple_main_1.jpg'),(7444,88,0,1065,'/w/h/wh03-purple_main_1.jpg'),(7445,89,0,1065,'/w/h/wh03-purple_main_1.jpg'),(7446,73,0,1065,'Autumn Pullie-S-Purple'),(7447,106,0,1066,'container2'),(7448,124,0,1066,'0'),(7449,121,0,1066,'autumn-pullie-s-red'),(7450,87,0,1066,'/w/h/wh03-red_main_1.jpg'),(7451,88,0,1066,'/w/h/wh03-red_main_1.jpg'),(7452,89,0,1066,'/w/h/wh03-red_main_1.jpg'),(7453,73,0,1066,'Autumn Pullie-S-Red'),(7454,106,0,1067,'container2'),(7455,124,0,1067,'0'),(7456,121,0,1067,'autumn-pullie-m-green'),(7457,87,0,1067,'/w/h/wh03-green_main_1.jpg'),(7458,88,0,1067,'/w/h/wh03-green_main_1.jpg'),(7459,89,0,1067,'/w/h/wh03-green_main_1.jpg'),(7460,73,0,1067,'Autumn Pullie-M-Green'),(7461,106,0,1068,'container2'),(7462,124,0,1068,'0'),(7463,121,0,1068,'autumn-pullie-m-purple'),(7464,87,0,1068,'/w/h/wh03-purple_main_1.jpg'),(7465,88,0,1068,'/w/h/wh03-purple_main_1.jpg'),(7466,89,0,1068,'/w/h/wh03-purple_main_1.jpg'),(7467,73,0,1068,'Autumn Pullie-M-Purple'),(7468,106,0,1069,'container2'),(7469,124,0,1069,'0'),(7470,121,0,1069,'autumn-pullie-m-red'),(7471,87,0,1069,'/w/h/wh03-red_main_1.jpg'),(7472,88,0,1069,'/w/h/wh03-red_main_1.jpg'),(7473,89,0,1069,'/w/h/wh03-red_main_1.jpg'),(7474,73,0,1069,'Autumn Pullie-M-Red'),(7475,106,0,1070,'container2'),(7476,124,0,1070,'0'),(7477,121,0,1070,'autumn-pullie-l-green'),(7478,87,0,1070,'/w/h/wh03-green_main_1.jpg'),(7479,88,0,1070,'/w/h/wh03-green_main_1.jpg'),(7480,89,0,1070,'/w/h/wh03-green_main_1.jpg'),(7481,73,0,1070,'Autumn Pullie-L-Green'),(7482,106,0,1071,'container2'),(7483,124,0,1071,'0'),(7484,121,0,1071,'autumn-pullie-l-purple'),(7485,87,0,1071,'/w/h/wh03-purple_main_1.jpg'),(7486,88,0,1071,'/w/h/wh03-purple_main_1.jpg'),(7487,89,0,1071,'/w/h/wh03-purple_main_1.jpg'),(7488,73,0,1071,'Autumn Pullie-L-Purple'),(7489,106,0,1072,'container2'),(7490,124,0,1072,'0'),(7491,121,0,1072,'autumn-pullie-l-red'),(7492,87,0,1072,'/w/h/wh03-red_main_1.jpg'),(7493,88,0,1072,'/w/h/wh03-red_main_1.jpg'),(7494,89,0,1072,'/w/h/wh03-red_main_1.jpg'),(7495,73,0,1072,'Autumn Pullie-L-Red'),(7496,106,0,1073,'container2'),(7497,124,0,1073,'0'),(7498,121,0,1073,'autumn-pullie-xl-green'),(7499,87,0,1073,'/w/h/wh03-green_main_1.jpg'),(7500,88,0,1073,'/w/h/wh03-green_main_1.jpg'),(7501,89,0,1073,'/w/h/wh03-green_main_1.jpg'),(7502,73,0,1073,'Autumn Pullie-XL-Green'),(7503,106,0,1074,'container2'),(7504,124,0,1074,'0'),(7505,121,0,1074,'autumn-pullie-xl-purple'),(7506,87,0,1074,'/w/h/wh03-purple_main_1.jpg'),(7507,88,0,1074,'/w/h/wh03-purple_main_1.jpg'),(7508,89,0,1074,'/w/h/wh03-purple_main_1.jpg'),(7509,73,0,1074,'Autumn Pullie-XL-Purple'),(7510,106,0,1075,'container2'),(7511,124,0,1075,'0'),(7512,121,0,1075,'autumn-pullie-xl-red'),(7513,87,0,1075,'/w/h/wh03-red_main_1.jpg'),(7514,88,0,1075,'/w/h/wh03-red_main_1.jpg'),(7515,89,0,1075,'/w/h/wh03-red_main_1.jpg'),(7516,73,0,1075,'Autumn Pullie-XL-Red'),(7517,106,0,1076,'container2'),(7518,124,0,1076,'0'),(7519,121,0,1076,'autumn-pullie'),(7520,87,0,1076,'/w/h/wh03-red_main_1.jpg'),(7521,88,0,1076,'/w/h/wh03-red_main_1.jpg'),(7522,89,0,1076,'/w/h/wh03-red_main_1.jpg'),(7523,73,0,1076,'Autumn Pullie'),(7524,106,0,1077,'container2'),(7525,124,0,1077,'0'),(7526,121,0,1077,'miko-pullover-hoodie-xs-blue'),(7527,87,0,1077,'/w/h/wh04-blue_main_1.jpg'),(7528,88,0,1077,'/w/h/wh04-blue_main_1.jpg'),(7529,89,0,1077,'/w/h/wh04-blue_main_1.jpg'),(7530,73,0,1077,'Miko Pullover Hoodie-XS-Blue'),(7531,106,0,1078,'container2'),(7532,124,0,1078,'0'),(7533,121,0,1078,'miko-pullover-hoodie-xs-orange'),(7534,87,0,1078,'/w/h/wh04-orange_main_1.jpg'),(7535,88,0,1078,'/w/h/wh04-orange_main_1.jpg'),(7536,89,0,1078,'/w/h/wh04-orange_main_1.jpg'),(7537,73,0,1078,'Miko Pullover Hoodie-XS-Orange'),(7538,106,0,1079,'container2'),(7539,124,0,1079,'0'),(7540,121,0,1079,'miko-pullover-hoodie-xs-purple'),(7541,87,0,1079,'/w/h/wh04-purple_main_1.jpg'),(7542,88,0,1079,'/w/h/wh04-purple_main_1.jpg'),(7543,89,0,1079,'/w/h/wh04-purple_main_1.jpg'),(7544,73,0,1079,'Miko Pullover Hoodie-XS-Purple'),(7545,106,0,1080,'container2'),(7546,124,0,1080,'0'),(7547,121,0,1080,'miko-pullover-hoodie-s-blue'),(7548,87,0,1080,'/w/h/wh04-blue_main_1.jpg'),(7549,88,0,1080,'/w/h/wh04-blue_main_1.jpg'),(7550,89,0,1080,'/w/h/wh04-blue_main_1.jpg'),(7551,73,0,1080,'Miko Pullover Hoodie-S-Blue'),(7552,106,0,1081,'container2'),(7553,124,0,1081,'0'),(7554,121,0,1081,'miko-pullover-hoodie-s-orange'),(7555,87,0,1081,'/w/h/wh04-orange_main_1.jpg'),(7556,88,0,1081,'/w/h/wh04-orange_main_1.jpg'),(7557,89,0,1081,'/w/h/wh04-orange_main_1.jpg'),(7558,73,0,1081,'Miko Pullover Hoodie-S-Orange'),(7559,106,0,1082,'container2'),(7560,124,0,1082,'0'),(7561,121,0,1082,'miko-pullover-hoodie-s-purple'),(7562,87,0,1082,'/w/h/wh04-purple_main_1.jpg'),(7563,88,0,1082,'/w/h/wh04-purple_main_1.jpg'),(7564,89,0,1082,'/w/h/wh04-purple_main_1.jpg'),(7565,73,0,1082,'Miko Pullover Hoodie-S-Purple'),(7566,106,0,1083,'container2'),(7567,124,0,1083,'0'),(7568,121,0,1083,'miko-pullover-hoodie-m-blue'),(7569,87,0,1083,'/w/h/wh04-blue_main_1.jpg'),(7570,88,0,1083,'/w/h/wh04-blue_main_1.jpg'),(7571,89,0,1083,'/w/h/wh04-blue_main_1.jpg'),(7572,73,0,1083,'Miko Pullover Hoodie-M-Blue'),(7573,106,0,1084,'container2'),(7574,124,0,1084,'0'),(7575,121,0,1084,'miko-pullover-hoodie-m-orange'),(7576,87,0,1084,'/w/h/wh04-orange_main_1.jpg'),(7577,88,0,1084,'/w/h/wh04-orange_main_1.jpg'),(7578,89,0,1084,'/w/h/wh04-orange_main_1.jpg'),(7579,73,0,1084,'Miko Pullover Hoodie-M-Orange'),(7580,106,0,1085,'container2'),(7581,124,0,1085,'0'),(7582,121,0,1085,'miko-pullover-hoodie-m-purple'),(7583,87,0,1085,'/w/h/wh04-purple_main_1.jpg'),(7584,88,0,1085,'/w/h/wh04-purple_main_1.jpg'),(7585,89,0,1085,'/w/h/wh04-purple_main_1.jpg'),(7586,73,0,1085,'Miko Pullover Hoodie-M-Purple'),(7587,106,0,1086,'container2'),(7588,124,0,1086,'0'),(7589,121,0,1086,'miko-pullover-hoodie-l-blue'),(7590,87,0,1086,'/w/h/wh04-blue_main_1.jpg'),(7591,88,0,1086,'/w/h/wh04-blue_main_1.jpg'),(7592,89,0,1086,'/w/h/wh04-blue_main_1.jpg'),(7593,73,0,1086,'Miko Pullover Hoodie-L-Blue'),(7594,106,0,1087,'container2'),(7595,124,0,1087,'0'),(7596,121,0,1087,'miko-pullover-hoodie-l-orange'),(7597,87,0,1087,'/w/h/wh04-orange_main_1.jpg'),(7598,88,0,1087,'/w/h/wh04-orange_main_1.jpg'),(7599,89,0,1087,'/w/h/wh04-orange_main_1.jpg'),(7600,73,0,1087,'Miko Pullover Hoodie-L-Orange'),(7601,106,0,1088,'container2'),(7602,124,0,1088,'0'),(7603,121,0,1088,'miko-pullover-hoodie-l-purple'),(7604,87,0,1088,'/w/h/wh04-purple_main_1.jpg'),(7605,88,0,1088,'/w/h/wh04-purple_main_1.jpg'),(7606,89,0,1088,'/w/h/wh04-purple_main_1.jpg'),(7607,73,0,1088,'Miko Pullover Hoodie-L-Purple'),(7608,106,0,1089,'container2'),(7609,124,0,1089,'0'),(7610,121,0,1089,'miko-pullover-hoodie-xl-blue'),(7611,87,0,1089,'/w/h/wh04-blue_main_1.jpg'),(7612,88,0,1089,'/w/h/wh04-blue_main_1.jpg'),(7613,89,0,1089,'/w/h/wh04-blue_main_1.jpg'),(7614,73,0,1089,'Miko Pullover Hoodie-XL-Blue'),(7615,106,0,1090,'container2'),(7616,124,0,1090,'0'),(7617,121,0,1090,'miko-pullover-hoodie-xl-orange'),(7618,87,0,1090,'/w/h/wh04-orange_main_1.jpg'),(7619,88,0,1090,'/w/h/wh04-orange_main_1.jpg'),(7620,89,0,1090,'/w/h/wh04-orange_main_1.jpg'),(7621,73,0,1090,'Miko Pullover Hoodie-XL-Orange'),(7622,106,0,1091,'container2'),(7623,124,0,1091,'0'),(7624,121,0,1091,'miko-pullover-hoodie-xl-purple'),(7625,87,0,1091,'/w/h/wh04-purple_main_1.jpg'),(7626,88,0,1091,'/w/h/wh04-purple_main_1.jpg'),(7627,89,0,1091,'/w/h/wh04-purple_main_1.jpg'),(7628,73,0,1091,'Miko Pullover Hoodie-XL-Purple'),(7629,106,0,1092,'container2'),(7630,124,0,1092,'0'),(7631,121,0,1092,'miko-pullover-hoodie'),(7632,87,0,1092,'/w/h/wh04-blue_main_1.jpg'),(7633,88,0,1092,'/w/h/wh04-blue_main_1.jpg'),(7634,89,0,1092,'/w/h/wh04-blue_main_1.jpg'),(7635,73,0,1092,'Miko Pullover Hoodie'),(7636,106,0,1093,'container2'),(7637,124,0,1093,'0'),(7638,121,0,1093,'selene-yoga-hoodie-xs-orange'),(7639,87,0,1093,'/w/h/wh05-orange_main_1.jpg'),(7640,88,0,1093,'/w/h/wh05-orange_main_1.jpg'),(7641,89,0,1093,'/w/h/wh05-orange_main_1.jpg'),(7642,73,0,1093,'Selene Yoga Hoodie-XS-Orange'),(7643,106,0,1094,'container2'),(7644,124,0,1094,'0'),(7645,121,0,1094,'selene-yoga-hoodie-xs-purple'),(7646,87,0,1094,'/w/h/wh05-purple_main_1.jpg'),(7647,88,0,1094,'/w/h/wh05-purple_main_1.jpg'),(7648,89,0,1094,'/w/h/wh05-purple_main_1.jpg'),(7649,73,0,1094,'Selene Yoga Hoodie-XS-Purple'),(7650,106,0,1095,'container2'),(7651,124,0,1095,'0'),(7652,121,0,1095,'selene-yoga-hoodie-xs-white'),(7653,87,0,1095,'/w/h/wh05-white_main_1.jpg'),(7654,88,0,1095,'/w/h/wh05-white_main_1.jpg'),(7655,89,0,1095,'/w/h/wh05-white_main_1.jpg'),(7656,73,0,1095,'Selene Yoga Hoodie-XS-White'),(7657,106,0,1096,'container2'),(7658,124,0,1096,'0'),(7659,121,0,1096,'selene-yoga-hoodie-s-orange'),(7660,87,0,1096,'/w/h/wh05-orange_main_1.jpg'),(7661,88,0,1096,'/w/h/wh05-orange_main_1.jpg'),(7662,89,0,1096,'/w/h/wh05-orange_main_1.jpg'),(7663,73,0,1096,'Selene Yoga Hoodie-S-Orange'),(7664,106,0,1097,'container2'),(7665,124,0,1097,'0'),(7666,121,0,1097,'selene-yoga-hoodie-s-purple'),(7667,87,0,1097,'/w/h/wh05-purple_main_1.jpg'),(7668,88,0,1097,'/w/h/wh05-purple_main_1.jpg'),(7669,89,0,1097,'/w/h/wh05-purple_main_1.jpg'),(7670,73,0,1097,'Selene Yoga Hoodie-S-Purple'),(7671,106,0,1098,'container2'),(7672,124,0,1098,'0'),(7673,121,0,1098,'selene-yoga-hoodie-s-white'),(7674,87,0,1098,'/w/h/wh05-white_main_1.jpg'),(7675,88,0,1098,'/w/h/wh05-white_main_1.jpg'),(7676,89,0,1098,'/w/h/wh05-white_main_1.jpg'),(7677,73,0,1098,'Selene Yoga Hoodie-S-White'),(7678,106,0,1099,'container2'),(7679,124,0,1099,'0'),(7680,121,0,1099,'selene-yoga-hoodie-m-orange'),(7681,87,0,1099,'/w/h/wh05-orange_main_1.jpg'),(7682,88,0,1099,'/w/h/wh05-orange_main_1.jpg'),(7683,89,0,1099,'/w/h/wh05-orange_main_1.jpg'),(7684,73,0,1099,'Selene Yoga Hoodie-M-Orange'),(7685,106,0,1100,'container2'),(7686,124,0,1100,'0'),(7687,121,0,1100,'selene-yoga-hoodie-m-purple'),(7688,87,0,1100,'/w/h/wh05-purple_main_1.jpg'),(7689,88,0,1100,'/w/h/wh05-purple_main_1.jpg'),(7690,89,0,1100,'/w/h/wh05-purple_main_1.jpg'),(7691,73,0,1100,'Selene Yoga Hoodie-M-Purple'),(7692,106,0,1101,'container2'),(7693,124,0,1101,'0'),(7694,121,0,1101,'selene-yoga-hoodie-m-white'),(7695,87,0,1101,'/w/h/wh05-white_main_1.jpg'),(7696,88,0,1101,'/w/h/wh05-white_main_1.jpg'),(7697,89,0,1101,'/w/h/wh05-white_main_1.jpg'),(7698,73,0,1101,'Selene Yoga Hoodie-M-White'),(7699,106,0,1102,'container2'),(7700,124,0,1102,'0'),(7701,121,0,1102,'selene-yoga-hoodie-l-orange'),(7702,87,0,1102,'/w/h/wh05-orange_main_1.jpg'),(7703,88,0,1102,'/w/h/wh05-orange_main_1.jpg'),(7704,89,0,1102,'/w/h/wh05-orange_main_1.jpg'),(7705,73,0,1102,'Selene Yoga Hoodie-L-Orange'),(7706,106,0,1103,'container2'),(7707,124,0,1103,'0'),(7708,121,0,1103,'selene-yoga-hoodie-l-purple'),(7709,87,0,1103,'/w/h/wh05-purple_main_1.jpg'),(7710,88,0,1103,'/w/h/wh05-purple_main_1.jpg'),(7711,89,0,1103,'/w/h/wh05-purple_main_1.jpg'),(7712,73,0,1103,'Selene Yoga Hoodie-L-Purple'),(7713,106,0,1104,'container2'),(7714,124,0,1104,'0'),(7715,121,0,1104,'selene-yoga-hoodie-l-white'),(7716,87,0,1104,'/w/h/wh05-white_main_1.jpg'),(7717,88,0,1104,'/w/h/wh05-white_main_1.jpg'),(7718,89,0,1104,'/w/h/wh05-white_main_1.jpg'),(7719,73,0,1104,'Selene Yoga Hoodie-L-White'),(7720,106,0,1105,'container2'),(7721,124,0,1105,'0'),(7722,121,0,1105,'selene-yoga-hoodie-xl-orange'),(7723,87,0,1105,'/w/h/wh05-orange_main_1.jpg'),(7724,88,0,1105,'/w/h/wh05-orange_main_1.jpg'),(7725,89,0,1105,'/w/h/wh05-orange_main_1.jpg'),(7726,73,0,1105,'Selene Yoga Hoodie-XL-Orange'),(7727,106,0,1106,'container2'),(7728,124,0,1106,'0'),(7729,121,0,1106,'selene-yoga-hoodie-xl-purple'),(7730,87,0,1106,'/w/h/wh05-purple_main_1.jpg'),(7731,88,0,1106,'/w/h/wh05-purple_main_1.jpg'),(7732,89,0,1106,'/w/h/wh05-purple_main_1.jpg'),(7733,73,0,1106,'Selene Yoga Hoodie-XL-Purple'),(7734,106,0,1107,'container2'),(7735,124,0,1107,'0'),(7736,121,0,1107,'selene-yoga-hoodie-xl-white'),(7737,87,0,1107,'/w/h/wh05-white_main_1.jpg'),(7738,88,0,1107,'/w/h/wh05-white_main_1.jpg'),(7739,89,0,1107,'/w/h/wh05-white_main_1.jpg'),(7740,73,0,1107,'Selene Yoga Hoodie-XL-White'),(7741,106,0,1108,'container2'),(7742,124,0,1108,'0'),(7743,121,0,1108,'selene-yoga-hoodie'),(7744,87,0,1108,'/w/h/wh05-white_main_1.jpg'),(7745,88,0,1108,'/w/h/wh05-white_main_1.jpg'),(7746,89,0,1108,'/w/h/wh05-white_main_1.jpg'),(7747,73,0,1108,'Selene Yoga Hoodie'),(7748,106,0,1109,'container2'),(7749,124,0,1109,'0'),(7750,121,0,1109,'daphne-full-zip-hoodie-xs-purple'),(7751,87,0,1109,'/w/h/wh06-purple_main_1.jpg'),(7752,88,0,1109,'/w/h/wh06-purple_main_1.jpg'),(7753,89,0,1109,'/w/h/wh06-purple_main_1.jpg'),(7754,73,0,1109,'Daphne Full-Zip Hoodie-XS-Purple'),(7755,106,0,1110,'container2'),(7756,124,0,1110,'0'),(7757,121,0,1110,'daphne-full-zip-hoodie-s-purple'),(7758,87,0,1110,'/w/h/wh06-purple_main_1.jpg'),(7759,88,0,1110,'/w/h/wh06-purple_main_1.jpg'),(7760,89,0,1110,'/w/h/wh06-purple_main_1.jpg'),(7761,73,0,1110,'Daphne Full-Zip Hoodie-S-Purple'),(7762,106,0,1111,'container2'),(7763,124,0,1111,'0'),(7764,121,0,1111,'daphne-full-zip-hoodie-m-purple'),(7765,87,0,1111,'/w/h/wh06-purple_main_1.jpg'),(7766,88,0,1111,'/w/h/wh06-purple_main_1.jpg'),(7767,89,0,1111,'/w/h/wh06-purple_main_1.jpg'),(7768,73,0,1111,'Daphne Full-Zip Hoodie-M-Purple'),(7769,106,0,1112,'container2'),(7770,124,0,1112,'0'),(7771,121,0,1112,'daphne-full-zip-hoodie-l-purple'),(7772,87,0,1112,'/w/h/wh06-purple_main_1.jpg'),(7773,88,0,1112,'/w/h/wh06-purple_main_1.jpg'),(7774,89,0,1112,'/w/h/wh06-purple_main_1.jpg'),(7775,73,0,1112,'Daphne Full-Zip Hoodie-L-Purple'),(7776,106,0,1113,'container2'),(7777,124,0,1113,'0'),(7778,121,0,1113,'daphne-full-zip-hoodie-xl-purple'),(7779,87,0,1113,'/w/h/wh06-purple_main_1.jpg'),(7780,88,0,1113,'/w/h/wh06-purple_main_1.jpg'),(7781,89,0,1113,'/w/h/wh06-purple_main_1.jpg'),(7782,73,0,1113,'Daphne Full-Zip Hoodie-XL-Purple'),(7783,106,0,1114,'container2'),(7784,124,0,1114,'0'),(7785,121,0,1114,'daphne-full-zip-hoodie'),(7786,87,0,1114,'/w/h/wh06-purple_main_1.jpg'),(7787,88,0,1114,'/w/h/wh06-purple_main_1.jpg'),(7788,89,0,1114,'/w/h/wh06-purple_main_1.jpg'),(7789,73,0,1114,'Daphne Full-Zip Hoodie'),(7790,106,0,1115,'container2'),(7791,124,0,1115,'0'),(7792,121,0,1115,'phoebe-zipper-sweatshirt-xs-gray'),(7793,87,0,1115,'/w/h/wh07-gray_main_1.jpg'),(7794,88,0,1115,'/w/h/wh07-gray_main_1.jpg'),(7795,89,0,1115,'/w/h/wh07-gray_main_1.jpg'),(7796,73,0,1115,'Phoebe Zipper Sweatshirt-XS-Gray'),(7797,106,0,1116,'container2'),(7798,124,0,1116,'0'),(7799,121,0,1116,'phoebe-zipper-sweatshirt-xs-purple'),(7800,87,0,1116,'/w/h/wh07-purple_main_1.jpg'),(7801,88,0,1116,'/w/h/wh07-purple_main_1.jpg'),(7802,89,0,1116,'/w/h/wh07-purple_main_1.jpg'),(7803,73,0,1116,'Phoebe Zipper Sweatshirt-XS-Purple'),(7804,106,0,1117,'container2'),(7805,124,0,1117,'0'),(7806,121,0,1117,'phoebe-zipper-sweatshirt-xs-white'),(7807,87,0,1117,'/w/h/wh07-white_main_1.jpg'),(7808,88,0,1117,'/w/h/wh07-white_main_1.jpg'),(7809,89,0,1117,'/w/h/wh07-white_main_1.jpg'),(7810,73,0,1117,'Phoebe Zipper Sweatshirt-XS-White'),(7811,106,0,1118,'container2'),(7812,124,0,1118,'0'),(7813,121,0,1118,'phoebe-zipper-sweatshirt-s-gray'),(7814,87,0,1118,'/w/h/wh07-gray_main_1.jpg'),(7815,88,0,1118,'/w/h/wh07-gray_main_1.jpg'),(7816,89,0,1118,'/w/h/wh07-gray_main_1.jpg'),(7817,73,0,1118,'Phoebe Zipper Sweatshirt-S-Gray'),(7818,106,0,1119,'container2'),(7819,124,0,1119,'0'),(7820,121,0,1119,'phoebe-zipper-sweatshirt-s-purple'),(7821,87,0,1119,'/w/h/wh07-purple_main_1.jpg'),(7822,88,0,1119,'/w/h/wh07-purple_main_1.jpg'),(7823,89,0,1119,'/w/h/wh07-purple_main_1.jpg'),(7824,73,0,1119,'Phoebe Zipper Sweatshirt-S-Purple'),(7825,106,0,1120,'container2'),(7826,124,0,1120,'0'),(7827,121,0,1120,'phoebe-zipper-sweatshirt-s-white'),(7828,87,0,1120,'/w/h/wh07-white_main_1.jpg'),(7829,88,0,1120,'/w/h/wh07-white_main_1.jpg'),(7830,89,0,1120,'/w/h/wh07-white_main_1.jpg'),(7831,73,0,1120,'Phoebe Zipper Sweatshirt-S-White'),(7832,106,0,1121,'container2'),(7833,124,0,1121,'0'),(7834,121,0,1121,'phoebe-zipper-sweatshirt-m-gray'),(7835,87,0,1121,'/w/h/wh07-gray_main_1.jpg'),(7836,88,0,1121,'/w/h/wh07-gray_main_1.jpg'),(7837,89,0,1121,'/w/h/wh07-gray_main_1.jpg'),(7838,73,0,1121,'Phoebe Zipper Sweatshirt-M-Gray'),(7839,106,0,1122,'container2'),(7840,124,0,1122,'0'),(7841,121,0,1122,'phoebe-zipper-sweatshirt-m-purple'),(7842,87,0,1122,'/w/h/wh07-purple_main_1.jpg'),(7843,88,0,1122,'/w/h/wh07-purple_main_1.jpg'),(7844,89,0,1122,'/w/h/wh07-purple_main_1.jpg'),(7845,73,0,1122,'Phoebe Zipper Sweatshirt-M-Purple'),(7846,106,0,1123,'container2'),(7847,124,0,1123,'0'),(7848,121,0,1123,'phoebe-zipper-sweatshirt-m-white'),(7849,87,0,1123,'/w/h/wh07-white_main_1.jpg'),(7850,88,0,1123,'/w/h/wh07-white_main_1.jpg'),(7851,89,0,1123,'/w/h/wh07-white_main_1.jpg'),(7852,73,0,1123,'Phoebe Zipper Sweatshirt-M-White'),(7853,106,0,1124,'container2'),(7854,124,0,1124,'0'),(7855,121,0,1124,'phoebe-zipper-sweatshirt-l-gray'),(7856,87,0,1124,'/w/h/wh07-gray_main_1.jpg'),(7857,88,0,1124,'/w/h/wh07-gray_main_1.jpg'),(7858,89,0,1124,'/w/h/wh07-gray_main_1.jpg'),(7859,73,0,1124,'Phoebe Zipper Sweatshirt-L-Gray'),(7860,106,0,1125,'container2'),(7861,124,0,1125,'0'),(7862,121,0,1125,'phoebe-zipper-sweatshirt-l-purple'),(7863,87,0,1125,'/w/h/wh07-purple_main_1.jpg'),(7864,88,0,1125,'/w/h/wh07-purple_main_1.jpg'),(7865,89,0,1125,'/w/h/wh07-purple_main_1.jpg'),(7866,73,0,1125,'Phoebe Zipper Sweatshirt-L-Purple'),(7867,106,0,1126,'container2'),(7868,124,0,1126,'0'),(7869,121,0,1126,'phoebe-zipper-sweatshirt-l-white'),(7870,87,0,1126,'/w/h/wh07-white_main_1.jpg'),(7871,88,0,1126,'/w/h/wh07-white_main_1.jpg'),(7872,89,0,1126,'/w/h/wh07-white_main_1.jpg'),(7873,73,0,1126,'Phoebe Zipper Sweatshirt-L-White'),(7874,106,0,1127,'container2'),(7875,124,0,1127,'0'),(7876,121,0,1127,'phoebe-zipper-sweatshirt-xl-gray'),(7877,87,0,1127,'/w/h/wh07-gray_main_1.jpg'),(7878,88,0,1127,'/w/h/wh07-gray_main_1.jpg'),(7879,89,0,1127,'/w/h/wh07-gray_main_1.jpg'),(7880,73,0,1127,'Phoebe Zipper Sweatshirt-XL-Gray'),(7881,106,0,1128,'container2'),(7882,124,0,1128,'0'),(7883,121,0,1128,'phoebe-zipper-sweatshirt-xl-purple'),(7884,87,0,1128,'/w/h/wh07-purple_main_1.jpg'),(7885,88,0,1128,'/w/h/wh07-purple_main_1.jpg'),(7886,89,0,1128,'/w/h/wh07-purple_main_1.jpg'),(7887,73,0,1128,'Phoebe Zipper Sweatshirt-XL-Purple'),(7888,106,0,1129,'container2'),(7889,124,0,1129,'0'),(7890,121,0,1129,'phoebe-zipper-sweatshirt-xl-white'),(7891,87,0,1129,'/w/h/wh07-white_main_1.jpg'),(7892,88,0,1129,'/w/h/wh07-white_main_1.jpg'),(7893,89,0,1129,'/w/h/wh07-white_main_1.jpg'),(7894,73,0,1129,'Phoebe Zipper Sweatshirt-XL-White'),(7895,106,0,1130,'container2'),(7896,124,0,1130,'0'),(7897,121,0,1130,'phoebe-zipper-sweatshirt'),(7898,87,0,1130,'/w/h/wh07-gray_main_1.jpg'),(7899,88,0,1130,'/w/h/wh07-gray_main_1.jpg'),(7900,89,0,1130,'/w/h/wh07-gray_main_1.jpg'),(7901,73,0,1130,'Phoebe Zipper Sweatshirt'),(7902,106,0,1131,'container2'),(7903,124,0,1131,'0'),(7904,121,0,1131,'cassia-funnel-sweatshirt-xs-orange'),(7905,87,0,1131,'/w/h/wh08-orange_main_1.jpg'),(7906,88,0,1131,'/w/h/wh08-orange_main_1.jpg'),(7907,89,0,1131,'/w/h/wh08-orange_main_1.jpg'),(7908,73,0,1131,'Cassia Funnel Sweatshirt-XS-Orange'),(7909,106,0,1132,'container2'),(7910,124,0,1132,'0'),(7911,121,0,1132,'cassia-funnel-sweatshirt-xs-purple'),(7912,87,0,1132,'/w/h/wh08-purple_main_1.jpg'),(7913,88,0,1132,'/w/h/wh08-purple_main_1.jpg'),(7914,89,0,1132,'/w/h/wh08-purple_main_1.jpg'),(7915,73,0,1132,'Cassia Funnel Sweatshirt-XS-Purple'),(7916,106,0,1133,'container2'),(7917,124,0,1133,'0'),(7918,121,0,1133,'cassia-funnel-sweatshirt-xs-white'),(7919,87,0,1133,'/w/h/wh08-white_main_1.jpg'),(7920,88,0,1133,'/w/h/wh08-white_main_1.jpg'),(7921,89,0,1133,'/w/h/wh08-white_main_1.jpg'),(7922,73,0,1133,'Cassia Funnel Sweatshirt-XS-White'),(7923,106,0,1134,'container2'),(7924,124,0,1134,'0'),(7925,121,0,1134,'cassia-funnel-sweatshirt-s-orange'),(7926,87,0,1134,'/w/h/wh08-orange_main_1.jpg'),(7927,88,0,1134,'/w/h/wh08-orange_main_1.jpg'),(7928,89,0,1134,'/w/h/wh08-orange_main_1.jpg'),(7929,73,0,1134,'Cassia Funnel Sweatshirt-S-Orange'),(7930,106,0,1135,'container2'),(7931,124,0,1135,'0'),(7932,121,0,1135,'cassia-funnel-sweatshirt-s-purple'),(7933,87,0,1135,'/w/h/wh08-purple_main_1.jpg'),(7934,88,0,1135,'/w/h/wh08-purple_main_1.jpg'),(7935,89,0,1135,'/w/h/wh08-purple_main_1.jpg'),(7936,73,0,1135,'Cassia Funnel Sweatshirt-S-Purple'),(7937,106,0,1136,'container2'),(7938,124,0,1136,'0'),(7939,121,0,1136,'cassia-funnel-sweatshirt-s-white'),(7940,87,0,1136,'/w/h/wh08-white_main_1.jpg'),(7941,88,0,1136,'/w/h/wh08-white_main_1.jpg'),(7942,89,0,1136,'/w/h/wh08-white_main_1.jpg'),(7943,73,0,1136,'Cassia Funnel Sweatshirt-S-White'),(7944,106,0,1137,'container2'),(7945,124,0,1137,'0'),(7946,121,0,1137,'cassia-funnel-sweatshirt-m-orange'),(7947,87,0,1137,'/w/h/wh08-orange_main_1.jpg'),(7948,88,0,1137,'/w/h/wh08-orange_main_1.jpg'),(7949,89,0,1137,'/w/h/wh08-orange_main_1.jpg'),(7950,73,0,1137,'Cassia Funnel Sweatshirt-M-Orange'),(7951,106,0,1138,'container2'),(7952,124,0,1138,'0'),(7953,121,0,1138,'cassia-funnel-sweatshirt-m-purple'),(7954,87,0,1138,'/w/h/wh08-purple_main_1.jpg'),(7955,88,0,1138,'/w/h/wh08-purple_main_1.jpg'),(7956,89,0,1138,'/w/h/wh08-purple_main_1.jpg'),(7957,73,0,1138,'Cassia Funnel Sweatshirt-M-Purple'),(7958,106,0,1139,'container2'),(7959,124,0,1139,'0'),(7960,121,0,1139,'cassia-funnel-sweatshirt-m-white'),(7961,87,0,1139,'/w/h/wh08-white_main_1.jpg'),(7962,88,0,1139,'/w/h/wh08-white_main_1.jpg'),(7963,89,0,1139,'/w/h/wh08-white_main_1.jpg'),(7964,73,0,1139,'Cassia Funnel Sweatshirt-M-White'),(7965,106,0,1140,'container2'),(7966,124,0,1140,'0'),(7967,121,0,1140,'cassia-funnel-sweatshirt-l-orange'),(7968,87,0,1140,'/w/h/wh08-orange_main_1.jpg'),(7969,88,0,1140,'/w/h/wh08-orange_main_1.jpg'),(7970,89,0,1140,'/w/h/wh08-orange_main_1.jpg'),(7971,73,0,1140,'Cassia Funnel Sweatshirt-L-Orange'),(7972,106,0,1141,'container2'),(7973,124,0,1141,'0'),(7974,121,0,1141,'cassia-funnel-sweatshirt-l-purple'),(7975,87,0,1141,'/w/h/wh08-purple_main_1.jpg'),(7976,88,0,1141,'/w/h/wh08-purple_main_1.jpg'),(7977,89,0,1141,'/w/h/wh08-purple_main_1.jpg'),(7978,73,0,1141,'Cassia Funnel Sweatshirt-L-Purple'),(7979,106,0,1142,'container2'),(7980,124,0,1142,'0'),(7981,121,0,1142,'cassia-funnel-sweatshirt-l-white'),(7982,87,0,1142,'/w/h/wh08-white_main_1.jpg'),(7983,88,0,1142,'/w/h/wh08-white_main_1.jpg'),(7984,89,0,1142,'/w/h/wh08-white_main_1.jpg'),(7985,73,0,1142,'Cassia Funnel Sweatshirt-L-White'),(7986,106,0,1143,'container2'),(7987,124,0,1143,'0'),(7988,121,0,1143,'cassia-funnel-sweatshirt-xl-orange'),(7989,87,0,1143,'/w/h/wh08-orange_main_1.jpg'),(7990,88,0,1143,'/w/h/wh08-orange_main_1.jpg'),(7991,89,0,1143,'/w/h/wh08-orange_main_1.jpg'),(7992,73,0,1143,'Cassia Funnel Sweatshirt-XL-Orange'),(7993,106,0,1144,'container2'),(7994,124,0,1144,'0'),(7995,121,0,1144,'cassia-funnel-sweatshirt-xl-purple'),(7996,87,0,1144,'/w/h/wh08-purple_main_1.jpg'),(7997,88,0,1144,'/w/h/wh08-purple_main_1.jpg'),(7998,89,0,1144,'/w/h/wh08-purple_main_1.jpg'),(7999,73,0,1144,'Cassia Funnel Sweatshirt-XL-Purple'),(8000,106,0,1145,'container2'),(8001,124,0,1145,'0'),(8002,121,0,1145,'cassia-funnel-sweatshirt-xl-white'),(8003,87,0,1145,'/w/h/wh08-white_main_1.jpg'),(8004,88,0,1145,'/w/h/wh08-white_main_1.jpg'),(8005,89,0,1145,'/w/h/wh08-white_main_1.jpg'),(8006,73,0,1145,'Cassia Funnel Sweatshirt-XL-White'),(8007,106,0,1146,'container2'),(8008,124,0,1146,'0'),(8009,121,0,1146,'cassia-funnel-sweatshirt'),(8010,87,0,1146,'/w/h/wh08-white_main_1.jpg'),(8011,88,0,1146,'/w/h/wh08-white_main_1.jpg'),(8012,89,0,1146,'/w/h/wh08-white_main_1.jpg'),(8013,73,0,1146,'Cassia Funnel Sweatshirt'),(8014,106,0,1147,'container2'),(8015,124,0,1147,'0'),(8016,121,0,1147,'ariel-roll-sleeve-sweatshirt-xs-green'),(8017,87,0,1147,'/w/h/wh09-green_main_1.jpg'),(8018,88,0,1147,'/w/h/wh09-green_main_1.jpg'),(8019,89,0,1147,'/w/h/wh09-green_main_1.jpg'),(8020,73,0,1147,'Ariel Roll Sleeve Sweatshirt-XS-Green'),(8021,106,0,1148,'container2'),(8022,124,0,1148,'0'),(8023,121,0,1148,'ariel-roll-sleeve-sweatshirt-xs-purple'),(8024,87,0,1148,'/w/h/wh09-purple_main_1.jpg'),(8025,88,0,1148,'/w/h/wh09-purple_main_1.jpg'),(8026,89,0,1148,'/w/h/wh09-purple_main_1.jpg'),(8027,73,0,1148,'Ariel Roll Sleeve Sweatshirt-XS-Purple'),(8028,106,0,1149,'container2'),(8029,124,0,1149,'0'),(8030,121,0,1149,'ariel-roll-sleeve-sweatshirt-xs-red'),(8031,87,0,1149,'/w/h/wh09-red_main_1.jpg'),(8032,88,0,1149,'/w/h/wh09-red_main_1.jpg'),(8033,89,0,1149,'/w/h/wh09-red_main_1.jpg'),(8034,73,0,1149,'Ariel Roll Sleeve Sweatshirt-XS-Red'),(8035,106,0,1150,'container2'),(8036,124,0,1150,'0'),(8037,121,0,1150,'ariel-roll-sleeve-sweatshirt-s-green'),(8038,87,0,1150,'/w/h/wh09-green_main_1.jpg'),(8039,88,0,1150,'/w/h/wh09-green_main_1.jpg'),(8040,89,0,1150,'/w/h/wh09-green_main_1.jpg'),(8041,73,0,1150,'Ariel Roll Sleeve Sweatshirt-S-Green'),(8042,106,0,1151,'container2'),(8043,124,0,1151,'0'),(8044,121,0,1151,'ariel-roll-sleeve-sweatshirt-s-purple'),(8045,87,0,1151,'/w/h/wh09-purple_main_1.jpg'),(8046,88,0,1151,'/w/h/wh09-purple_main_1.jpg'),(8047,89,0,1151,'/w/h/wh09-purple_main_1.jpg'),(8048,73,0,1151,'Ariel Roll Sleeve Sweatshirt-S-Purple'),(8049,106,0,1152,'container2'),(8050,124,0,1152,'0'),(8051,121,0,1152,'ariel-roll-sleeve-sweatshirt-s-red'),(8052,87,0,1152,'/w/h/wh09-red_main_1.jpg'),(8053,88,0,1152,'/w/h/wh09-red_main_1.jpg'),(8054,89,0,1152,'/w/h/wh09-red_main_1.jpg'),(8055,73,0,1152,'Ariel Roll Sleeve Sweatshirt-S-Red'),(8056,106,0,1153,'container2'),(8057,124,0,1153,'0'),(8058,121,0,1153,'ariel-roll-sleeve-sweatshirt-m-green'),(8059,87,0,1153,'/w/h/wh09-green_main_1.jpg'),(8060,88,0,1153,'/w/h/wh09-green_main_1.jpg'),(8061,89,0,1153,'/w/h/wh09-green_main_1.jpg'),(8062,73,0,1153,'Ariel Roll Sleeve Sweatshirt-M-Green'),(8063,106,0,1154,'container2'),(8064,124,0,1154,'0'),(8065,121,0,1154,'ariel-roll-sleeve-sweatshirt-m-purple'),(8066,87,0,1154,'/w/h/wh09-purple_main_1.jpg'),(8067,88,0,1154,'/w/h/wh09-purple_main_1.jpg'),(8068,89,0,1154,'/w/h/wh09-purple_main_1.jpg'),(8069,73,0,1154,'Ariel Roll Sleeve Sweatshirt-M-Purple'),(8070,106,0,1155,'container2'),(8071,124,0,1155,'0'),(8072,121,0,1155,'ariel-roll-sleeve-sweatshirt-m-red'),(8073,87,0,1155,'/w/h/wh09-red_main_1.jpg'),(8074,88,0,1155,'/w/h/wh09-red_main_1.jpg'),(8075,89,0,1155,'/w/h/wh09-red_main_1.jpg'),(8076,73,0,1155,'Ariel Roll Sleeve Sweatshirt-M-Red'),(8077,106,0,1156,'container2'),(8078,124,0,1156,'0'),(8079,121,0,1156,'ariel-roll-sleeve-sweatshirt-l-green'),(8080,87,0,1156,'/w/h/wh09-green_main_1.jpg'),(8081,88,0,1156,'/w/h/wh09-green_main_1.jpg'),(8082,89,0,1156,'/w/h/wh09-green_main_1.jpg'),(8083,73,0,1156,'Ariel Roll Sleeve Sweatshirt-L-Green'),(8084,106,0,1157,'container2'),(8085,124,0,1157,'0'),(8086,121,0,1157,'ariel-roll-sleeve-sweatshirt-l-purple'),(8087,87,0,1157,'/w/h/wh09-purple_main_1.jpg'),(8088,88,0,1157,'/w/h/wh09-purple_main_1.jpg'),(8089,89,0,1157,'/w/h/wh09-purple_main_1.jpg'),(8090,73,0,1157,'Ariel Roll Sleeve Sweatshirt-L-Purple'),(8091,106,0,1158,'container2'),(8092,124,0,1158,'0'),(8093,121,0,1158,'ariel-roll-sleeve-sweatshirt-l-red'),(8094,87,0,1158,'/w/h/wh09-red_main_1.jpg'),(8095,88,0,1158,'/w/h/wh09-red_main_1.jpg'),(8096,89,0,1158,'/w/h/wh09-red_main_1.jpg'),(8097,73,0,1158,'Ariel Roll Sleeve Sweatshirt-L-Red'),(8098,106,0,1159,'container2'),(8099,124,0,1159,'0'),(8100,121,0,1159,'ariel-roll-sleeve-sweatshirt-xl-green'),(8101,87,0,1159,'/w/h/wh09-green_main_1.jpg'),(8102,88,0,1159,'/w/h/wh09-green_main_1.jpg'),(8103,89,0,1159,'/w/h/wh09-green_main_1.jpg'),(8104,73,0,1159,'Ariel Roll Sleeve Sweatshirt-XL-Green'),(8105,106,0,1160,'container2'),(8106,124,0,1160,'0'),(8107,121,0,1160,'ariel-roll-sleeve-sweatshirt-xl-purple'),(8108,87,0,1160,'/w/h/wh09-purple_main_1.jpg'),(8109,88,0,1160,'/w/h/wh09-purple_main_1.jpg'),(8110,89,0,1160,'/w/h/wh09-purple_main_1.jpg'),(8111,73,0,1160,'Ariel Roll Sleeve Sweatshirt-XL-Purple'),(8112,106,0,1161,'container2'),(8113,124,0,1161,'0'),(8114,121,0,1161,'ariel-roll-sleeve-sweatshirt-xl-red'),(8115,87,0,1161,'/w/h/wh09-red_main_1.jpg'),(8116,88,0,1161,'/w/h/wh09-red_main_1.jpg'),(8117,89,0,1161,'/w/h/wh09-red_main_1.jpg'),(8118,73,0,1161,'Ariel Roll Sleeve Sweatshirt-XL-Red'),(8119,106,0,1162,'container2'),(8120,124,0,1162,'0'),(8121,121,0,1162,'ariel-roll-sleeve-sweatshirt'),(8122,87,0,1162,'/w/h/wh09-purple_main_1.jpg'),(8123,88,0,1162,'/w/h/wh09-purple_main_1.jpg'),(8124,89,0,1162,'/w/h/wh09-purple_main_1.jpg'),(8125,73,0,1162,'Ariel Roll Sleeve Sweatshirt'),(8126,106,0,1163,'container2'),(8127,124,0,1163,'0'),(8128,121,0,1163,'helena-hooded-fleece-xs-blue'),(8129,87,0,1163,'/w/h/wh10-blue_main_1.jpg'),(8130,88,0,1163,'/w/h/wh10-blue_main_1.jpg'),(8131,89,0,1163,'/w/h/wh10-blue_main_1.jpg'),(8132,73,0,1163,'Helena Hooded Fleece-XS-Blue'),(8133,106,0,1164,'container2'),(8134,124,0,1164,'0'),(8135,121,0,1164,'helena-hooded-fleece-xs-gray'),(8136,87,0,1164,'/w/h/wh10-gray_main_1.jpg'),(8137,88,0,1164,'/w/h/wh10-gray_main_1.jpg'),(8138,89,0,1164,'/w/h/wh10-gray_main_1.jpg'),(8139,73,0,1164,'Helena Hooded Fleece-XS-Gray'),(8140,106,0,1165,'container2'),(8141,124,0,1165,'0'),(8142,121,0,1165,'helena-hooded-fleece-xs-yellow'),(8143,87,0,1165,'/w/h/wh10-yellow_main_1.jpg'),(8144,88,0,1165,'/w/h/wh10-yellow_main_1.jpg'),(8145,89,0,1165,'/w/h/wh10-yellow_main_1.jpg'),(8146,73,0,1165,'Helena Hooded Fleece-XS-Yellow'),(8147,106,0,1166,'container2'),(8148,124,0,1166,'0'),(8149,121,0,1166,'helena-hooded-fleece-s-blue'),(8150,87,0,1166,'/w/h/wh10-blue_main_1.jpg'),(8151,88,0,1166,'/w/h/wh10-blue_main_1.jpg'),(8152,89,0,1166,'/w/h/wh10-blue_main_1.jpg'),(8153,73,0,1166,'Helena Hooded Fleece-S-Blue'),(8154,106,0,1167,'container2'),(8155,124,0,1167,'0'),(8156,121,0,1167,'helena-hooded-fleece-s-gray'),(8157,87,0,1167,'/w/h/wh10-gray_main_1.jpg'),(8158,88,0,1167,'/w/h/wh10-gray_main_1.jpg'),(8159,89,0,1167,'/w/h/wh10-gray_main_1.jpg'),(8160,73,0,1167,'Helena Hooded Fleece-S-Gray'),(8161,106,0,1168,'container2'),(8162,124,0,1168,'0'),(8163,121,0,1168,'helena-hooded-fleece-s-yellow'),(8164,87,0,1168,'/w/h/wh10-yellow_main_1.jpg'),(8165,88,0,1168,'/w/h/wh10-yellow_main_1.jpg'),(8166,89,0,1168,'/w/h/wh10-yellow_main_1.jpg'),(8167,73,0,1168,'Helena Hooded Fleece-S-Yellow'),(8168,106,0,1169,'container2'),(8169,124,0,1169,'0'),(8170,121,0,1169,'helena-hooded-fleece-m-blue'),(8171,87,0,1169,'/w/h/wh10-blue_main_1.jpg'),(8172,88,0,1169,'/w/h/wh10-blue_main_1.jpg'),(8173,89,0,1169,'/w/h/wh10-blue_main_1.jpg'),(8174,73,0,1169,'Helena Hooded Fleece-M-Blue'),(8175,106,0,1170,'container2'),(8176,124,0,1170,'0'),(8177,121,0,1170,'helena-hooded-fleece-m-gray'),(8178,87,0,1170,'/w/h/wh10-gray_main_1.jpg'),(8179,88,0,1170,'/w/h/wh10-gray_main_1.jpg'),(8180,89,0,1170,'/w/h/wh10-gray_main_1.jpg'),(8181,73,0,1170,'Helena Hooded Fleece-M-Gray'),(8182,106,0,1171,'container2'),(8183,124,0,1171,'0'),(8184,121,0,1171,'helena-hooded-fleece-m-yellow'),(8185,87,0,1171,'/w/h/wh10-yellow_main_1.jpg'),(8186,88,0,1171,'/w/h/wh10-yellow_main_1.jpg'),(8187,89,0,1171,'/w/h/wh10-yellow_main_1.jpg'),(8188,73,0,1171,'Helena Hooded Fleece-M-Yellow'),(8189,106,0,1172,'container2'),(8190,124,0,1172,'0'),(8191,121,0,1172,'helena-hooded-fleece-l-blue'),(8192,87,0,1172,'/w/h/wh10-blue_main_1.jpg'),(8193,88,0,1172,'/w/h/wh10-blue_main_1.jpg'),(8194,89,0,1172,'/w/h/wh10-blue_main_1.jpg'),(8195,73,0,1172,'Helena Hooded Fleece-L-Blue'),(8196,106,0,1173,'container2'),(8197,124,0,1173,'0'),(8198,121,0,1173,'helena-hooded-fleece-l-gray'),(8199,87,0,1173,'/w/h/wh10-gray_main_1.jpg'),(8200,88,0,1173,'/w/h/wh10-gray_main_1.jpg'),(8201,89,0,1173,'/w/h/wh10-gray_main_1.jpg'),(8202,73,0,1173,'Helena Hooded Fleece-L-Gray'),(8203,106,0,1174,'container2'),(8204,124,0,1174,'0'),(8205,121,0,1174,'helena-hooded-fleece-l-yellow'),(8206,87,0,1174,'/w/h/wh10-yellow_main_1.jpg'),(8207,88,0,1174,'/w/h/wh10-yellow_main_1.jpg'),(8208,89,0,1174,'/w/h/wh10-yellow_main_1.jpg'),(8209,73,0,1174,'Helena Hooded Fleece-L-Yellow'),(8210,106,0,1175,'container2'),(8211,124,0,1175,'0'),(8212,121,0,1175,'helena-hooded-fleece-xl-blue'),(8213,87,0,1175,'/w/h/wh10-blue_main_1.jpg'),(8214,88,0,1175,'/w/h/wh10-blue_main_1.jpg'),(8215,89,0,1175,'/w/h/wh10-blue_main_1.jpg'),(8216,73,0,1175,'Helena Hooded Fleece-XL-Blue'),(8217,106,0,1176,'container2'),(8218,124,0,1176,'0'),(8219,121,0,1176,'helena-hooded-fleece-xl-gray'),(8220,87,0,1176,'/w/h/wh10-gray_main_1.jpg'),(8221,88,0,1176,'/w/h/wh10-gray_main_1.jpg'),(8222,89,0,1176,'/w/h/wh10-gray_main_1.jpg'),(8223,73,0,1176,'Helena Hooded Fleece-XL-Gray'),(8224,106,0,1177,'container2'),(8225,124,0,1177,'0'),(8226,121,0,1177,'helena-hooded-fleece-xl-yellow'),(8227,87,0,1177,'/w/h/wh10-yellow_main_1.jpg'),(8228,88,0,1177,'/w/h/wh10-yellow_main_1.jpg'),(8229,89,0,1177,'/w/h/wh10-yellow_main_1.jpg'),(8230,73,0,1177,'Helena Hooded Fleece-XL-Yellow'),(8231,106,0,1178,'container2'),(8232,124,0,1178,'0'),(8233,121,0,1178,'helena-hooded-fleece'),(8234,87,0,1178,'/w/h/wh10-gray_main_1.jpg'),(8235,88,0,1178,'/w/h/wh10-gray_main_1.jpg'),(8236,89,0,1178,'/w/h/wh10-gray_main_1.jpg'),(8237,73,0,1178,'Helena Hooded Fleece'),(8238,106,0,1179,'container2'),(8239,124,0,1179,'0'),(8240,121,0,1179,'eos-v-neck-hoodie-xs-blue'),(8241,87,0,1179,'/w/h/wh11-blue_main_1.jpg'),(8242,88,0,1179,'/w/h/wh11-blue_main_1.jpg'),(8243,89,0,1179,'/w/h/wh11-blue_main_1.jpg'),(8244,73,0,1179,'Eos V-Neck Hoodie-XS-Blue'),(8245,106,0,1180,'container2'),(8246,124,0,1180,'0'),(8247,121,0,1180,'eos-v-neck-hoodie-xs-green'),(8248,87,0,1180,'/w/h/wh11-green_main_1.jpg'),(8249,88,0,1180,'/w/h/wh11-green_main_1.jpg'),(8250,89,0,1180,'/w/h/wh11-green_main_1.jpg'),(8251,73,0,1180,'Eos V-Neck Hoodie-XS-Green'),(8252,106,0,1181,'container2'),(8253,124,0,1181,'0'),(8254,121,0,1181,'eos-v-neck-hoodie-xs-orange'),(8255,87,0,1181,'/w/h/wh11-orange_main_1.jpg'),(8256,88,0,1181,'/w/h/wh11-orange_main_1.jpg'),(8257,89,0,1181,'/w/h/wh11-orange_main_1.jpg'),(8258,73,0,1181,'Eos V-Neck Hoodie-XS-Orange'),(8259,106,0,1182,'container2'),(8260,124,0,1182,'0'),(8261,121,0,1182,'eos-v-neck-hoodie-s-blue'),(8262,87,0,1182,'/w/h/wh11-blue_main_1.jpg'),(8263,88,0,1182,'/w/h/wh11-blue_main_1.jpg'),(8264,89,0,1182,'/w/h/wh11-blue_main_1.jpg'),(8265,73,0,1182,'Eos V-Neck Hoodie-S-Blue'),(8266,106,0,1183,'container2'),(8267,124,0,1183,'0'),(8268,121,0,1183,'eos-v-neck-hoodie-s-green'),(8269,87,0,1183,'/w/h/wh11-green_main_1.jpg'),(8270,88,0,1183,'/w/h/wh11-green_main_1.jpg'),(8271,89,0,1183,'/w/h/wh11-green_main_1.jpg'),(8272,73,0,1183,'Eos V-Neck Hoodie-S-Green'),(8273,106,0,1184,'container2'),(8274,124,0,1184,'0'),(8275,121,0,1184,'eos-v-neck-hoodie-s-orange'),(8276,87,0,1184,'/w/h/wh11-orange_main_1.jpg'),(8277,88,0,1184,'/w/h/wh11-orange_main_1.jpg'),(8278,89,0,1184,'/w/h/wh11-orange_main_1.jpg'),(8279,73,0,1184,'Eos V-Neck Hoodie-S-Orange'),(8280,106,0,1185,'container2'),(8281,124,0,1185,'0'),(8282,121,0,1185,'eos-v-neck-hoodie-m-blue'),(8283,87,0,1185,'/w/h/wh11-blue_main_1.jpg'),(8284,88,0,1185,'/w/h/wh11-blue_main_1.jpg'),(8285,89,0,1185,'/w/h/wh11-blue_main_1.jpg'),(8286,73,0,1185,'Eos V-Neck Hoodie-M-Blue'),(8287,106,0,1186,'container2'),(8288,124,0,1186,'0'),(8289,121,0,1186,'eos-v-neck-hoodie-m-green'),(8290,87,0,1186,'/w/h/wh11-green_main_1.jpg'),(8291,88,0,1186,'/w/h/wh11-green_main_1.jpg'),(8292,89,0,1186,'/w/h/wh11-green_main_1.jpg'),(8293,73,0,1186,'Eos V-Neck Hoodie-M-Green'),(8294,106,0,1187,'container2'),(8295,124,0,1187,'0'),(8296,121,0,1187,'eos-v-neck-hoodie-m-orange'),(8297,87,0,1187,'/w/h/wh11-orange_main_1.jpg'),(8298,88,0,1187,'/w/h/wh11-orange_main_1.jpg'),(8299,89,0,1187,'/w/h/wh11-orange_main_1.jpg'),(8300,73,0,1187,'Eos V-Neck Hoodie-M-Orange'),(8301,106,0,1188,'container2'),(8302,124,0,1188,'0'),(8303,121,0,1188,'eos-v-neck-hoodie-l-blue'),(8304,87,0,1188,'/w/h/wh11-blue_main_1.jpg'),(8305,88,0,1188,'/w/h/wh11-blue_main_1.jpg'),(8306,89,0,1188,'/w/h/wh11-blue_main_1.jpg'),(8307,73,0,1188,'Eos V-Neck Hoodie-L-Blue'),(8308,106,0,1189,'container2'),(8309,124,0,1189,'0'),(8310,121,0,1189,'eos-v-neck-hoodie-l-green'),(8311,87,0,1189,'/w/h/wh11-green_main_1.jpg'),(8312,88,0,1189,'/w/h/wh11-green_main_1.jpg'),(8313,89,0,1189,'/w/h/wh11-green_main_1.jpg'),(8314,73,0,1189,'Eos V-Neck Hoodie-L-Green'),(8315,106,0,1190,'container2'),(8316,124,0,1190,'0'),(8317,121,0,1190,'eos-v-neck-hoodie-l-orange'),(8318,87,0,1190,'/w/h/wh11-orange_main_1.jpg'),(8319,88,0,1190,'/w/h/wh11-orange_main_1.jpg'),(8320,89,0,1190,'/w/h/wh11-orange_main_1.jpg'),(8321,73,0,1190,'Eos V-Neck Hoodie-L-Orange'),(8322,106,0,1191,'container2'),(8323,124,0,1191,'0'),(8324,121,0,1191,'eos-v-neck-hoodie-xl-blue'),(8325,87,0,1191,'/w/h/wh11-blue_main_1.jpg'),(8326,88,0,1191,'/w/h/wh11-blue_main_1.jpg'),(8327,89,0,1191,'/w/h/wh11-blue_main_1.jpg'),(8328,73,0,1191,'Eos V-Neck Hoodie-XL-Blue'),(8329,106,0,1192,'container2'),(8330,124,0,1192,'0'),(8331,121,0,1192,'eos-v-neck-hoodie-xl-green'),(8332,87,0,1192,'/w/h/wh11-green_main_1.jpg'),(8333,88,0,1192,'/w/h/wh11-green_main_1.jpg'),(8334,89,0,1192,'/w/h/wh11-green_main_1.jpg'),(8335,73,0,1192,'Eos V-Neck Hoodie-XL-Green'),(8336,106,0,1193,'container2'),(8337,124,0,1193,'0'),(8338,121,0,1193,'eos-v-neck-hoodie-xl-orange'),(8339,87,0,1193,'/w/h/wh11-orange_main_1.jpg'),(8340,88,0,1193,'/w/h/wh11-orange_main_1.jpg'),(8341,89,0,1193,'/w/h/wh11-orange_main_1.jpg'),(8342,73,0,1193,'Eos V-Neck Hoodie-XL-Orange'),(8343,106,0,1194,'container2'),(8344,124,0,1194,'0'),(8345,121,0,1194,'eos-v-neck-hoodie'),(8346,87,0,1194,'/w/h/wh11-blue_main_1.jpg'),(8347,88,0,1194,'/w/h/wh11-blue_main_1.jpg'),(8348,89,0,1194,'/w/h/wh11-blue_main_1.jpg'),(8349,73,0,1194,'Eos V-Neck Hoodie'),(8350,106,0,1195,'container2'),(8351,124,0,1195,'0'),(8352,121,0,1195,'circe-hooded-ice-fleece-xs-gray'),(8353,87,0,1195,'/w/h/wh12-gray_main_1.jpg'),(8354,88,0,1195,'/w/h/wh12-gray_main_1.jpg'),(8355,89,0,1195,'/w/h/wh12-gray_main_1.jpg'),(8356,73,0,1195,'Circe Hooded Ice Fleece-XS-Gray'),(8357,106,0,1196,'container2'),(8358,124,0,1196,'0'),(8359,121,0,1196,'circe-hooded-ice-fleece-xs-green'),(8360,87,0,1196,'/w/h/wh12-green_main_1.jpg'),(8361,88,0,1196,'/w/h/wh12-green_main_1.jpg'),(8362,89,0,1196,'/w/h/wh12-green_main_1.jpg'),(8363,73,0,1196,'Circe Hooded Ice Fleece-XS-Green'),(8364,106,0,1197,'container2'),(8365,124,0,1197,'0'),(8366,121,0,1197,'circe-hooded-ice-fleece-xs-purple'),(8367,87,0,1197,'/w/h/wh12-purple_main_1.jpg'),(8368,88,0,1197,'/w/h/wh12-purple_main_1.jpg'),(8369,89,0,1197,'/w/h/wh12-purple_main_1.jpg'),(8370,73,0,1197,'Circe Hooded Ice Fleece-XS-Purple'),(8371,106,0,1198,'container2'),(8372,124,0,1198,'0'),(8373,121,0,1198,'circe-hooded-ice-fleece-s-gray'),(8374,87,0,1198,'/w/h/wh12-gray_main_1.jpg'),(8375,88,0,1198,'/w/h/wh12-gray_main_1.jpg'),(8376,89,0,1198,'/w/h/wh12-gray_main_1.jpg'),(8377,73,0,1198,'Circe Hooded Ice Fleece-S-Gray'),(8378,106,0,1199,'container2'),(8379,124,0,1199,'0'),(8380,121,0,1199,'circe-hooded-ice-fleece-s-green'),(8381,87,0,1199,'/w/h/wh12-green_main_1.jpg'),(8382,88,0,1199,'/w/h/wh12-green_main_1.jpg'),(8383,89,0,1199,'/w/h/wh12-green_main_1.jpg'),(8384,73,0,1199,'Circe Hooded Ice Fleece-S-Green'),(8385,106,0,1200,'container2'),(8386,124,0,1200,'0'),(8387,121,0,1200,'circe-hooded-ice-fleece-s-purple'),(8388,87,0,1200,'/w/h/wh12-purple_main_1.jpg'),(8389,88,0,1200,'/w/h/wh12-purple_main_1.jpg'),(8390,89,0,1200,'/w/h/wh12-purple_main_1.jpg'),(8391,73,0,1200,'Circe Hooded Ice Fleece-S-Purple'),(8392,106,0,1201,'container2'),(8393,124,0,1201,'0'),(8394,121,0,1201,'circe-hooded-ice-fleece-m-gray'),(8395,87,0,1201,'/w/h/wh12-gray_main_1.jpg'),(8396,88,0,1201,'/w/h/wh12-gray_main_1.jpg'),(8397,89,0,1201,'/w/h/wh12-gray_main_1.jpg'),(8398,73,0,1201,'Circe Hooded Ice Fleece-M-Gray'),(8399,106,0,1202,'container2'),(8400,124,0,1202,'0'),(8401,121,0,1202,'circe-hooded-ice-fleece-m-green'),(8402,87,0,1202,'/w/h/wh12-green_main_1.jpg'),(8403,88,0,1202,'/w/h/wh12-green_main_1.jpg'),(8404,89,0,1202,'/w/h/wh12-green_main_1.jpg'),(8405,73,0,1202,'Circe Hooded Ice Fleece-M-Green'),(8406,106,0,1203,'container2'),(8407,124,0,1203,'0'),(8408,121,0,1203,'circe-hooded-ice-fleece-m-purple'),(8409,87,0,1203,'/w/h/wh12-purple_main_1.jpg'),(8410,88,0,1203,'/w/h/wh12-purple_main_1.jpg'),(8411,89,0,1203,'/w/h/wh12-purple_main_1.jpg'),(8412,73,0,1203,'Circe Hooded Ice Fleece-M-Purple'),(8413,106,0,1204,'container2'),(8414,124,0,1204,'0'),(8415,121,0,1204,'circe-hooded-ice-fleece-l-gray'),(8416,87,0,1204,'/w/h/wh12-gray_main_1.jpg'),(8417,88,0,1204,'/w/h/wh12-gray_main_1.jpg'),(8418,89,0,1204,'/w/h/wh12-gray_main_1.jpg'),(8419,73,0,1204,'Circe Hooded Ice Fleece-L-Gray'),(8420,106,0,1205,'container2'),(8421,124,0,1205,'0'),(8422,121,0,1205,'circe-hooded-ice-fleece-l-green'),(8423,87,0,1205,'/w/h/wh12-green_main_1.jpg'),(8424,88,0,1205,'/w/h/wh12-green_main_1.jpg'),(8425,89,0,1205,'/w/h/wh12-green_main_1.jpg'),(8426,73,0,1205,'Circe Hooded Ice Fleece-L-Green'),(8427,106,0,1206,'container2'),(8428,124,0,1206,'0'),(8429,121,0,1206,'circe-hooded-ice-fleece-l-purple'),(8430,87,0,1206,'/w/h/wh12-purple_main_1.jpg'),(8431,88,0,1206,'/w/h/wh12-purple_main_1.jpg'),(8432,89,0,1206,'/w/h/wh12-purple_main_1.jpg'),(8433,73,0,1206,'Circe Hooded Ice Fleece-L-Purple'),(8434,106,0,1207,'container2'),(8435,124,0,1207,'0'),(8436,121,0,1207,'circe-hooded-ice-fleece-xl-gray'),(8437,87,0,1207,'/w/h/wh12-gray_main_1.jpg'),(8438,88,0,1207,'/w/h/wh12-gray_main_1.jpg'),(8439,89,0,1207,'/w/h/wh12-gray_main_1.jpg'),(8440,73,0,1207,'Circe Hooded Ice Fleece-XL-Gray'),(8441,106,0,1208,'container2'),(8442,124,0,1208,'0'),(8443,121,0,1208,'circe-hooded-ice-fleece-xl-green'),(8444,87,0,1208,'/w/h/wh12-green_main_1.jpg'),(8445,88,0,1208,'/w/h/wh12-green_main_1.jpg'),(8446,89,0,1208,'/w/h/wh12-green_main_1.jpg'),(8447,73,0,1208,'Circe Hooded Ice Fleece-XL-Green'),(8448,106,0,1209,'container2'),(8449,124,0,1209,'0'),(8450,121,0,1209,'circe-hooded-ice-fleece-xl-purple'),(8451,87,0,1209,'/w/h/wh12-purple_main_1.jpg'),(8452,88,0,1209,'/w/h/wh12-purple_main_1.jpg'),(8453,89,0,1209,'/w/h/wh12-purple_main_1.jpg'),(8454,73,0,1209,'Circe Hooded Ice Fleece-XL-Purple'),(8455,106,0,1210,'container2'),(8456,124,0,1210,'0'),(8457,121,0,1210,'circe-hooded-ice-fleece'),(8458,87,0,1210,'/w/h/wh12-gray_main_1.jpg'),(8459,88,0,1210,'/w/h/wh12-gray_main_1.jpg'),(8460,89,0,1210,'/w/h/wh12-gray_main_1.jpg'),(8461,73,0,1210,'Circe Hooded Ice Fleece'),(8462,106,0,1211,'container2'),(8463,124,0,1211,'0'),(8464,121,0,1211,'stellar-solar-jacket-s-blue'),(8465,87,0,1211,'/w/j/wj01-blue_main_1.jpg'),(8466,88,0,1211,'/w/j/wj01-blue_main_1.jpg'),(8467,89,0,1211,'/w/j/wj01-blue_main_1.jpg'),(8468,73,0,1211,'Stellar Solar Jacket-S-Blue'),(8469,106,0,1212,'container2'),(8470,124,0,1212,'0'),(8471,121,0,1212,'stellar-solar-jacket-s-red'),(8472,87,0,1212,'/w/j/wj01-red_main_1.jpg'),(8473,88,0,1212,'/w/j/wj01-red_main_1.jpg'),(8474,89,0,1212,'/w/j/wj01-red_main_1.jpg'),(8475,73,0,1212,'Stellar Solar Jacket-S-Red'),(8476,106,0,1213,'container2'),(8477,124,0,1213,'0'),(8478,121,0,1213,'stellar-solar-jacket-s-yellow'),(8479,87,0,1213,'/w/j/wj01-yellow_main_1.jpg'),(8480,88,0,1213,'/w/j/wj01-yellow_main_1.jpg'),(8481,89,0,1213,'/w/j/wj01-yellow_main_1.jpg'),(8482,73,0,1213,'Stellar Solar Jacket-S-Yellow'),(8483,106,0,1214,'container2'),(8484,124,0,1214,'0'),(8485,121,0,1214,'stellar-solar-jacket-m-blue'),(8486,87,0,1214,'/w/j/wj01-blue_main_1.jpg'),(8487,88,0,1214,'/w/j/wj01-blue_main_1.jpg'),(8488,89,0,1214,'/w/j/wj01-blue_main_1.jpg'),(8489,73,0,1214,'Stellar Solar Jacket-M-Blue'),(8490,106,0,1215,'container2'),(8491,124,0,1215,'0'),(8492,121,0,1215,'stellar-solar-jacket-m-red'),(8493,87,0,1215,'/w/j/wj01-red_main_1.jpg'),(8494,88,0,1215,'/w/j/wj01-red_main_1.jpg'),(8495,89,0,1215,'/w/j/wj01-red_main_1.jpg'),(8496,73,0,1215,'Stellar Solar Jacket-M-Red'),(8497,106,0,1216,'container2'),(8498,124,0,1216,'0'),(8499,121,0,1216,'stellar-solar-jacket-m-yellow'),(8500,87,0,1216,'/w/j/wj01-yellow_main_1.jpg'),(8501,88,0,1216,'/w/j/wj01-yellow_main_1.jpg'),(8502,89,0,1216,'/w/j/wj01-yellow_main_1.jpg'),(8503,73,0,1216,'Stellar Solar Jacket-M-Yellow'),(8504,106,0,1217,'container2'),(8505,124,0,1217,'0'),(8506,121,0,1217,'stellar-solar-jacket-l-blue'),(8507,87,0,1217,'/w/j/wj01-blue_main_1.jpg'),(8508,88,0,1217,'/w/j/wj01-blue_main_1.jpg'),(8509,89,0,1217,'/w/j/wj01-blue_main_1.jpg'),(8510,73,0,1217,'Stellar Solar Jacket-L-Blue'),(8511,106,0,1218,'container2'),(8512,124,0,1218,'0'),(8513,121,0,1218,'stellar-solar-jacket-l-red'),(8514,87,0,1218,'/w/j/wj01-red_main_1.jpg'),(8515,88,0,1218,'/w/j/wj01-red_main_1.jpg'),(8516,89,0,1218,'/w/j/wj01-red_main_1.jpg'),(8517,73,0,1218,'Stellar Solar Jacket-L-Red'),(8518,106,0,1219,'container2'),(8519,124,0,1219,'0'),(8520,121,0,1219,'stellar-solar-jacket-l-yellow'),(8521,87,0,1219,'/w/j/wj01-yellow_main_1.jpg'),(8522,88,0,1219,'/w/j/wj01-yellow_main_1.jpg'),(8523,89,0,1219,'/w/j/wj01-yellow_main_1.jpg'),(8524,73,0,1219,'Stellar Solar Jacket-L-Yellow'),(8525,106,0,1220,'container2'),(8526,124,0,1220,'0'),(8527,121,0,1220,'stellar-solar-jacket'),(8528,87,0,1220,'/w/j/wj01-red_main_1.jpg'),(8529,88,0,1220,'/w/j/wj01-red_main_1.jpg'),(8530,89,0,1220,'/w/j/wj01-red_main_1.jpg'),(8531,73,0,1220,'Stellar Solar Jacket'),(8532,106,0,1221,'container2'),(8533,124,0,1221,'0'),(8534,121,0,1221,'josie-yoga-jacket-xs-black'),(8535,87,0,1221,'/w/j/wj02-black_main_1.jpg'),(8536,88,0,1221,'/w/j/wj02-black_main_1.jpg'),(8537,89,0,1221,'/w/j/wj02-black_main_1.jpg'),(8538,73,0,1221,'Josie Yoga Jacket-XS-Black'),(8539,106,0,1222,'container2'),(8540,124,0,1222,'0'),(8541,121,0,1222,'josie-yoga-jacket-xs-blue'),(8542,87,0,1222,'/w/j/wj02-blue_main_1.jpg'),(8543,88,0,1222,'/w/j/wj02-blue_main_1.jpg'),(8544,89,0,1222,'/w/j/wj02-blue_main_1.jpg'),(8545,73,0,1222,'Josie Yoga Jacket-XS-Blue'),(8546,106,0,1223,'container2'),(8547,124,0,1223,'0'),(8548,121,0,1223,'josie-yoga-jacket-xs-gray'),(8549,87,0,1223,'/w/j/wj02-gray_main_1.jpg'),(8550,88,0,1223,'/w/j/wj02-gray_main_1.jpg'),(8551,89,0,1223,'/w/j/wj02-gray_main_1.jpg'),(8552,73,0,1223,'Josie Yoga Jacket-XS-Gray'),(8553,106,0,1224,'container2'),(8554,124,0,1224,'0'),(8555,121,0,1224,'josie-yoga-jacket-s-black'),(8556,87,0,1224,'/w/j/wj02-black_main_1.jpg'),(8557,88,0,1224,'/w/j/wj02-black_main_1.jpg'),(8558,89,0,1224,'/w/j/wj02-black_main_1.jpg'),(8559,73,0,1224,'Josie Yoga Jacket-S-Black'),(8560,106,0,1225,'container2'),(8561,124,0,1225,'0'),(8562,121,0,1225,'josie-yoga-jacket-s-blue'),(8563,87,0,1225,'/w/j/wj02-blue_main_1.jpg'),(8564,88,0,1225,'/w/j/wj02-blue_main_1.jpg'),(8565,89,0,1225,'/w/j/wj02-blue_main_1.jpg'),(8566,73,0,1225,'Josie Yoga Jacket-S-Blue'),(8567,106,0,1226,'container2'),(8568,124,0,1226,'0'),(8569,121,0,1226,'josie-yoga-jacket-s-gray'),(8570,87,0,1226,'/w/j/wj02-gray_main_1.jpg'),(8571,88,0,1226,'/w/j/wj02-gray_main_1.jpg'),(8572,89,0,1226,'/w/j/wj02-gray_main_1.jpg'),(8573,73,0,1226,'Josie Yoga Jacket-S-Gray'),(8574,106,0,1227,'container2'),(8575,124,0,1227,'0'),(8576,121,0,1227,'josie-yoga-jacket-m-black'),(8577,87,0,1227,'/w/j/wj02-black_main_1.jpg'),(8578,88,0,1227,'/w/j/wj02-black_main_1.jpg'),(8579,89,0,1227,'/w/j/wj02-black_main_1.jpg'),(8580,73,0,1227,'Josie Yoga Jacket-M-Black'),(8581,106,0,1228,'container2'),(8582,124,0,1228,'0'),(8583,121,0,1228,'josie-yoga-jacket-m-blue'),(8584,87,0,1228,'/w/j/wj02-blue_main_1.jpg'),(8585,88,0,1228,'/w/j/wj02-blue_main_1.jpg'),(8586,89,0,1228,'/w/j/wj02-blue_main_1.jpg'),(8587,73,0,1228,'Josie Yoga Jacket-M-Blue'),(8588,106,0,1229,'container2'),(8589,124,0,1229,'0'),(8590,121,0,1229,'josie-yoga-jacket-m-gray'),(8591,87,0,1229,'/w/j/wj02-gray_main_1.jpg'),(8592,88,0,1229,'/w/j/wj02-gray_main_1.jpg'),(8593,89,0,1229,'/w/j/wj02-gray_main_1.jpg'),(8594,73,0,1229,'Josie Yoga Jacket-M-Gray'),(8595,106,0,1230,'container2'),(8596,124,0,1230,'0'),(8597,121,0,1230,'josie-yoga-jacket-l-black'),(8598,87,0,1230,'/w/j/wj02-black_main_1.jpg'),(8599,88,0,1230,'/w/j/wj02-black_main_1.jpg'),(8600,89,0,1230,'/w/j/wj02-black_main_1.jpg'),(8601,73,0,1230,'Josie Yoga Jacket-L-Black'),(8602,106,0,1231,'container2'),(8603,124,0,1231,'0'),(8604,121,0,1231,'josie-yoga-jacket-l-blue'),(8605,87,0,1231,'/w/j/wj02-blue_main_1.jpg'),(8606,88,0,1231,'/w/j/wj02-blue_main_1.jpg'),(8607,89,0,1231,'/w/j/wj02-blue_main_1.jpg'),(8608,73,0,1231,'Josie Yoga Jacket-L-Blue'),(8609,106,0,1232,'container2'),(8610,124,0,1232,'0'),(8611,121,0,1232,'josie-yoga-jacket-l-gray'),(8612,87,0,1232,'/w/j/wj02-gray_main_1.jpg'),(8613,88,0,1232,'/w/j/wj02-gray_main_1.jpg'),(8614,89,0,1232,'/w/j/wj02-gray_main_1.jpg'),(8615,73,0,1232,'Josie Yoga Jacket-L-Gray'),(8616,106,0,1233,'container2'),(8617,124,0,1233,'0'),(8618,121,0,1233,'josie-yoga-jacket-xl-black'),(8619,87,0,1233,'/w/j/wj02-black_main_1.jpg'),(8620,88,0,1233,'/w/j/wj02-black_main_1.jpg'),(8621,89,0,1233,'/w/j/wj02-black_main_1.jpg'),(8622,73,0,1233,'Josie Yoga Jacket-XL-Black'),(8623,106,0,1234,'container2'),(8624,124,0,1234,'0'),(8625,121,0,1234,'josie-yoga-jacket-xl-blue'),(8626,87,0,1234,'/w/j/wj02-blue_main_1.jpg'),(8627,88,0,1234,'/w/j/wj02-blue_main_1.jpg'),(8628,89,0,1234,'/w/j/wj02-blue_main_1.jpg'),(8629,73,0,1234,'Josie Yoga Jacket-XL-Blue'),(8630,106,0,1235,'container2'),(8631,124,0,1235,'0'),(8632,121,0,1235,'josie-yoga-jacket-xl-gray'),(8633,87,0,1235,'/w/j/wj02-gray_main_1.jpg'),(8634,88,0,1235,'/w/j/wj02-gray_main_1.jpg'),(8635,89,0,1235,'/w/j/wj02-gray_main_1.jpg'),(8636,73,0,1235,'Josie Yoga Jacket-XL-Gray'),(8637,106,0,1236,'container2'),(8638,124,0,1236,'0'),(8639,121,0,1236,'josie-yoga-jacket'),(8640,87,0,1236,'/w/j/wj02-gray_main_1.jpg'),(8641,88,0,1236,'/w/j/wj02-gray_main_1.jpg'),(8642,89,0,1236,'/w/j/wj02-gray_main_1.jpg'),(8643,73,0,1236,'Josie Yoga Jacket'),(8644,106,0,1237,'container2'),(8645,124,0,1237,'0'),(8646,121,0,1237,'augusta-pullover-jacket-xs-blue'),(8647,87,0,1237,'/w/j/wj03-blue_main_1.jpg'),(8648,88,0,1237,'/w/j/wj03-blue_main_1.jpg'),(8649,89,0,1237,'/w/j/wj03-blue_main_1.jpg'),(8650,73,0,1237,'Augusta Pullover Jacket-XS-Blue'),(8651,106,0,1238,'container2'),(8652,124,0,1238,'0'),(8653,121,0,1238,'augusta-pullover-jacket-xs-orange'),(8654,87,0,1238,'/w/j/wj03-orange_main_1.jpg'),(8655,88,0,1238,'/w/j/wj03-orange_main_1.jpg'),(8656,89,0,1238,'/w/j/wj03-orange_main_1.jpg'),(8657,73,0,1238,'Augusta Pullover Jacket-XS-Orange'),(8658,106,0,1239,'container2'),(8659,124,0,1239,'0'),(8660,121,0,1239,'augusta-pullover-jacket-xs-red'),(8661,87,0,1239,'/w/j/wj03-red_main_1.jpg'),(8662,88,0,1239,'/w/j/wj03-red_main_1.jpg'),(8663,89,0,1239,'/w/j/wj03-red_main_1.jpg'),(8664,73,0,1239,'Augusta Pullover Jacket-XS-Red'),(8665,106,0,1240,'container2'),(8666,124,0,1240,'0'),(8667,121,0,1240,'augusta-pullover-jacket-s-blue'),(8668,87,0,1240,'/w/j/wj03-blue_main_1.jpg'),(8669,88,0,1240,'/w/j/wj03-blue_main_1.jpg'),(8670,89,0,1240,'/w/j/wj03-blue_main_1.jpg'),(8671,73,0,1240,'Augusta Pullover Jacket-S-Blue'),(8672,106,0,1241,'container2'),(8673,124,0,1241,'0'),(8674,121,0,1241,'augusta-pullover-jacket-s-orange'),(8675,87,0,1241,'/w/j/wj03-orange_main_1.jpg'),(8676,88,0,1241,'/w/j/wj03-orange_main_1.jpg'),(8677,89,0,1241,'/w/j/wj03-orange_main_1.jpg'),(8678,73,0,1241,'Augusta Pullover Jacket-S-Orange'),(8679,106,0,1242,'container2'),(8680,124,0,1242,'0'),(8681,121,0,1242,'augusta-pullover-jacket-s-red'),(8682,87,0,1242,'/w/j/wj03-red_main_1.jpg'),(8683,88,0,1242,'/w/j/wj03-red_main_1.jpg'),(8684,89,0,1242,'/w/j/wj03-red_main_1.jpg'),(8685,73,0,1242,'Augusta Pullover Jacket-S-Red'),(8686,106,0,1243,'container2'),(8687,124,0,1243,'0'),(8688,121,0,1243,'augusta-pullover-jacket-m-blue'),(8689,87,0,1243,'/w/j/wj03-blue_main_1.jpg'),(8690,88,0,1243,'/w/j/wj03-blue_main_1.jpg'),(8691,89,0,1243,'/w/j/wj03-blue_main_1.jpg'),(8692,73,0,1243,'Augusta Pullover Jacket-M-Blue'),(8693,106,0,1244,'container2'),(8694,124,0,1244,'0'),(8695,121,0,1244,'augusta-pullover-jacket-m-orange'),(8696,87,0,1244,'/w/j/wj03-orange_main_1.jpg'),(8697,88,0,1244,'/w/j/wj03-orange_main_1.jpg'),(8698,89,0,1244,'/w/j/wj03-orange_main_1.jpg'),(8699,73,0,1244,'Augusta Pullover Jacket-M-Orange'),(8700,106,0,1245,'container2'),(8701,124,0,1245,'0'),(8702,121,0,1245,'augusta-pullover-jacket-m-red'),(8703,87,0,1245,'/w/j/wj03-red_main_1.jpg'),(8704,88,0,1245,'/w/j/wj03-red_main_1.jpg'),(8705,89,0,1245,'/w/j/wj03-red_main_1.jpg'),(8706,73,0,1245,'Augusta Pullover Jacket-M-Red'),(8707,106,0,1246,'container2'),(8708,124,0,1246,'0'),(8709,121,0,1246,'augusta-pullover-jacket-l-blue'),(8710,87,0,1246,'/w/j/wj03-blue_main_1.jpg'),(8711,88,0,1246,'/w/j/wj03-blue_main_1.jpg'),(8712,89,0,1246,'/w/j/wj03-blue_main_1.jpg'),(8713,73,0,1246,'Augusta Pullover Jacket-L-Blue'),(8714,106,0,1247,'container2'),(8715,124,0,1247,'0'),(8716,121,0,1247,'augusta-pullover-jacket-l-orange'),(8717,87,0,1247,'/w/j/wj03-orange_main_2.jpg'),(8718,88,0,1247,'/w/j/wj03-orange_main_2.jpg'),(8719,89,0,1247,'/w/j/wj03-orange_main_2.jpg'),(8720,73,0,1247,'Augusta Pullover Jacket-L-Orange'),(8721,106,0,1248,'container2'),(8722,124,0,1248,'0'),(8723,121,0,1248,'augusta-pullover-jacket-l-red'),(8724,87,0,1248,'/w/j/wj03-red_main_2.jpg'),(8725,88,0,1248,'/w/j/wj03-red_main_2.jpg'),(8726,89,0,1248,'/w/j/wj03-red_main_2.jpg'),(8727,73,0,1248,'Augusta Pullover Jacket-L-Red'),(8728,106,0,1249,'container2'),(8729,124,0,1249,'0'),(8730,121,0,1249,'augusta-pullover-jacket-xl-blue'),(8731,87,0,1249,'/w/j/wj03-blue_main_2.jpg'),(8732,88,0,1249,'/w/j/wj03-blue_main_2.jpg'),(8733,89,0,1249,'/w/j/wj03-blue_main_2.jpg'),(8734,73,0,1249,'Augusta Pullover Jacket-XL-Blue'),(8735,106,0,1250,'container2'),(8736,124,0,1250,'0'),(8737,121,0,1250,'augusta-pullover-jacket-xl-orange'),(8738,87,0,1250,'/w/j/wj03-orange_main_2.jpg'),(8739,88,0,1250,'/w/j/wj03-orange_main_2.jpg'),(8740,89,0,1250,'/w/j/wj03-orange_main_2.jpg'),(8741,73,0,1250,'Augusta Pullover Jacket-XL-Orange'),(8742,106,0,1251,'container2'),(8743,124,0,1251,'0'),(8744,121,0,1251,'augusta-pullover-jacket-xl-red'),(8745,87,0,1251,'/w/j/wj03-red_main_2.jpg'),(8746,88,0,1251,'/w/j/wj03-red_main_2.jpg'),(8747,89,0,1251,'/w/j/wj03-red_main_2.jpg'),(8748,73,0,1251,'Augusta Pullover Jacket-XL-Red'),(8749,106,0,1252,'container2'),(8750,124,0,1252,'0'),(8751,121,0,1252,'augusta-pullover-jacket'),(8752,87,0,1252,'/w/j/wj03-red_main_2.jpg'),(8753,88,0,1252,'/w/j/wj03-red_main_2.jpg'),(8754,89,0,1252,'/w/j/wj03-red_main_2.jpg'),(8755,73,0,1252,'Augusta Pullover Jacket'),(8756,106,0,1253,'container2'),(8757,124,0,1253,'0'),(8758,121,0,1253,'ingrid-running-jacket-xs-orange'),(8759,87,0,1253,'/w/j/wj04-orange_main_1.jpg'),(8760,88,0,1253,'/w/j/wj04-orange_main_1.jpg'),(8761,89,0,1253,'/w/j/wj04-orange_main_1.jpg'),(8762,73,0,1253,'Ingrid Running Jacket-XS-Orange'),(8763,106,0,1254,'container2'),(8764,124,0,1254,'0'),(8765,121,0,1254,'ingrid-running-jacket-xs-red'),(8766,87,0,1254,'/w/j/wj04-red_main_1.jpg'),(8767,88,0,1254,'/w/j/wj04-red_main_1.jpg'),(8768,89,0,1254,'/w/j/wj04-red_main_1.jpg'),(8769,73,0,1254,'Ingrid Running Jacket-XS-Red'),(8770,106,0,1255,'container2'),(8771,124,0,1255,'0'),(8772,121,0,1255,'ingrid-running-jacket-xs-white'),(8773,87,0,1255,'/w/j/wj04-white_main_1.jpg'),(8774,88,0,1255,'/w/j/wj04-white_main_1.jpg'),(8775,89,0,1255,'/w/j/wj04-white_main_1.jpg'),(8776,73,0,1255,'Ingrid Running Jacket-XS-White'),(8777,106,0,1256,'container2'),(8778,124,0,1256,'0'),(8779,121,0,1256,'ingrid-running-jacket-s-orange'),(8780,87,0,1256,'/w/j/wj04-orange_main_1.jpg'),(8781,88,0,1256,'/w/j/wj04-orange_main_1.jpg'),(8782,89,0,1256,'/w/j/wj04-orange_main_1.jpg'),(8783,73,0,1256,'Ingrid Running Jacket-S-Orange'),(8784,106,0,1257,'container2'),(8785,124,0,1257,'0'),(8786,121,0,1257,'ingrid-running-jacket-s-red'),(8787,87,0,1257,'/w/j/wj04-red_main_1.jpg'),(8788,88,0,1257,'/w/j/wj04-red_main_1.jpg'),(8789,89,0,1257,'/w/j/wj04-red_main_1.jpg'),(8790,73,0,1257,'Ingrid Running Jacket-S-Red'),(8791,106,0,1258,'container2'),(8792,124,0,1258,'0'),(8793,121,0,1258,'ingrid-running-jacket-s-white'),(8794,87,0,1258,'/w/j/wj04-white_main_1.jpg'),(8795,88,0,1258,'/w/j/wj04-white_main_1.jpg'),(8796,89,0,1258,'/w/j/wj04-white_main_1.jpg'),(8797,73,0,1258,'Ingrid Running Jacket-S-White'),(8798,106,0,1259,'container2'),(8799,124,0,1259,'0'),(8800,121,0,1259,'ingrid-running-jacket-m-orange'),(8801,87,0,1259,'/w/j/wj04-orange_main_1.jpg'),(8802,88,0,1259,'/w/j/wj04-orange_main_1.jpg'),(8803,89,0,1259,'/w/j/wj04-orange_main_1.jpg'),(8804,73,0,1259,'Ingrid Running Jacket-M-Orange'),(8805,106,0,1260,'container2'),(8806,124,0,1260,'0'),(8807,121,0,1260,'ingrid-running-jacket-m-red'),(8808,87,0,1260,'/w/j/wj04-red_main_1.jpg'),(8809,88,0,1260,'/w/j/wj04-red_main_1.jpg'),(8810,89,0,1260,'/w/j/wj04-red_main_1.jpg'),(8811,73,0,1260,'Ingrid Running Jacket-M-Red'),(8812,106,0,1261,'container2'),(8813,124,0,1261,'0'),(8814,121,0,1261,'ingrid-running-jacket-m-white'),(8815,87,0,1261,'/w/j/wj04-white_main_1.jpg'),(8816,88,0,1261,'/w/j/wj04-white_main_1.jpg'),(8817,89,0,1261,'/w/j/wj04-white_main_1.jpg'),(8818,73,0,1261,'Ingrid Running Jacket-M-White'),(8819,106,0,1262,'container2'),(8820,124,0,1262,'0'),(8821,121,0,1262,'ingrid-running-jacket-l-orange'),(8822,87,0,1262,'/w/j/wj04-orange_main_1.jpg'),(8823,88,0,1262,'/w/j/wj04-orange_main_1.jpg'),(8824,89,0,1262,'/w/j/wj04-orange_main_1.jpg'),(8825,73,0,1262,'Ingrid Running Jacket-L-Orange'),(8826,106,0,1263,'container2'),(8827,124,0,1263,'0'),(8828,121,0,1263,'ingrid-running-jacket-l-red'),(8829,87,0,1263,'/w/j/wj04-red_main_1.jpg'),(8830,88,0,1263,'/w/j/wj04-red_main_1.jpg'),(8831,89,0,1263,'/w/j/wj04-red_main_1.jpg'),(8832,73,0,1263,'Ingrid Running Jacket-L-Red'),(8833,106,0,1264,'container2'),(8834,124,0,1264,'0'),(8835,121,0,1264,'ingrid-running-jacket-l-white'),(8836,87,0,1264,'/w/j/wj04-white_main_1.jpg'),(8837,88,0,1264,'/w/j/wj04-white_main_1.jpg'),(8838,89,0,1264,'/w/j/wj04-white_main_1.jpg'),(8839,73,0,1264,'Ingrid Running Jacket-L-White'),(8840,106,0,1265,'container2'),(8841,124,0,1265,'0'),(8842,121,0,1265,'ingrid-running-jacket-xl-orange'),(8843,87,0,1265,'/w/j/wj04-orange_main_1.jpg'),(8844,88,0,1265,'/w/j/wj04-orange_main_1.jpg'),(8845,89,0,1265,'/w/j/wj04-orange_main_1.jpg'),(8846,73,0,1265,'Ingrid Running Jacket-XL-Orange'),(8847,106,0,1266,'container2'),(8848,124,0,1266,'0'),(8849,121,0,1266,'ingrid-running-jacket-xl-red'),(8850,87,0,1266,'/w/j/wj04-red_main_1.jpg'),(8851,88,0,1266,'/w/j/wj04-red_main_1.jpg'),(8852,89,0,1266,'/w/j/wj04-red_main_1.jpg'),(8853,73,0,1266,'Ingrid Running Jacket-XL-Red'),(8854,106,0,1267,'container2'),(8855,124,0,1267,'0'),(8856,121,0,1267,'ingrid-running-jacket-xl-white'),(8857,87,0,1267,'/w/j/wj04-white_main_1.jpg'),(8858,88,0,1267,'/w/j/wj04-white_main_1.jpg'),(8859,89,0,1267,'/w/j/wj04-white_main_1.jpg'),(8860,73,0,1267,'Ingrid Running Jacket-XL-White'),(8861,106,0,1268,'container2'),(8862,124,0,1268,'0'),(8863,121,0,1268,'ingrid-running-jacket'),(8864,87,0,1268,'/w/j/wj04-white_main_1.jpg'),(8865,88,0,1268,'/w/j/wj04-white_main_1.jpg'),(8866,89,0,1268,'/w/j/wj04-white_main_1.jpg'),(8867,73,0,1268,'Ingrid Running Jacket'),(8868,106,0,1269,'container2'),(8869,124,0,1269,'0'),(8870,121,0,1269,'riona-full-zip-jacket-xs-brown'),(8871,87,0,1269,'/w/j/wj05-brown_main_1.jpg'),(8872,88,0,1269,'/w/j/wj05-brown_main_1.jpg'),(8873,89,0,1269,'/w/j/wj05-brown_main_1.jpg'),(8874,73,0,1269,'Riona Full Zip Jacket-XS-Brown'),(8875,106,0,1270,'container2'),(8876,124,0,1270,'0'),(8877,121,0,1270,'riona-full-zip-jacket-xs-green'),(8878,87,0,1270,'/w/j/wj05-green_main_1.jpg'),(8879,88,0,1270,'/w/j/wj05-green_main_1.jpg'),(8880,89,0,1270,'/w/j/wj05-green_main_1.jpg'),(8881,73,0,1270,'Riona Full Zip Jacket-XS-Green'),(8882,106,0,1271,'container2'),(8883,124,0,1271,'0'),(8884,121,0,1271,'riona-full-zip-jacket-xs-red'),(8885,87,0,1271,'/w/j/wj05-red_main_1.jpg'),(8886,88,0,1271,'/w/j/wj05-red_main_1.jpg'),(8887,89,0,1271,'/w/j/wj05-red_main_1.jpg'),(8888,73,0,1271,'Riona Full Zip Jacket-XS-Red'),(8889,106,0,1272,'container2'),(8890,124,0,1272,'0'),(8891,121,0,1272,'riona-full-zip-jacket-s-brown'),(8892,87,0,1272,'/w/j/wj05-brown_main_1.jpg'),(8893,88,0,1272,'/w/j/wj05-brown_main_1.jpg'),(8894,89,0,1272,'/w/j/wj05-brown_main_1.jpg'),(8895,73,0,1272,'Riona Full Zip Jacket-S-Brown'),(8896,106,0,1273,'container2'),(8897,124,0,1273,'0'),(8898,121,0,1273,'riona-full-zip-jacket-s-green'),(8899,87,0,1273,'/w/j/wj05-green_main_1.jpg'),(8900,88,0,1273,'/w/j/wj05-green_main_1.jpg'),(8901,89,0,1273,'/w/j/wj05-green_main_1.jpg'),(8902,73,0,1273,'Riona Full Zip Jacket-S-Green'),(8903,106,0,1274,'container2'),(8904,124,0,1274,'0'),(8905,121,0,1274,'riona-full-zip-jacket-s-red'),(8906,87,0,1274,'/w/j/wj05-red_main_1.jpg'),(8907,88,0,1274,'/w/j/wj05-red_main_1.jpg'),(8908,89,0,1274,'/w/j/wj05-red_main_1.jpg'),(8909,73,0,1274,'Riona Full Zip Jacket-S-Red'),(8910,106,0,1275,'container2'),(8911,124,0,1275,'0'),(8912,121,0,1275,'riona-full-zip-jacket-m-brown'),(8913,87,0,1275,'/w/j/wj05-brown_main_1.jpg'),(8914,88,0,1275,'/w/j/wj05-brown_main_1.jpg'),(8915,89,0,1275,'/w/j/wj05-brown_main_1.jpg'),(8916,73,0,1275,'Riona Full Zip Jacket-M-Brown'),(8917,106,0,1276,'container2'),(8918,124,0,1276,'0'),(8919,121,0,1276,'riona-full-zip-jacket-m-green'),(8920,87,0,1276,'/w/j/wj05-green_main_1.jpg'),(8921,88,0,1276,'/w/j/wj05-green_main_1.jpg'),(8922,89,0,1276,'/w/j/wj05-green_main_1.jpg'),(8923,73,0,1276,'Riona Full Zip Jacket-M-Green'),(8924,106,0,1277,'container2'),(8925,124,0,1277,'0'),(8926,121,0,1277,'riona-full-zip-jacket-m-red'),(8927,87,0,1277,'/w/j/wj05-red_main_1.jpg'),(8928,88,0,1277,'/w/j/wj05-red_main_1.jpg'),(8929,89,0,1277,'/w/j/wj05-red_main_1.jpg'),(8930,73,0,1277,'Riona Full Zip Jacket-M-Red'),(8931,106,0,1278,'container2'),(8932,124,0,1278,'0'),(8933,121,0,1278,'riona-full-zip-jacket-l-brown'),(8934,87,0,1278,'/w/j/wj05-brown_main_1.jpg'),(8935,88,0,1278,'/w/j/wj05-brown_main_1.jpg'),(8936,89,0,1278,'/w/j/wj05-brown_main_1.jpg'),(8937,73,0,1278,'Riona Full Zip Jacket-L-Brown'),(8938,106,0,1279,'container2'),(8939,124,0,1279,'0'),(8940,121,0,1279,'riona-full-zip-jacket-l-green'),(8941,87,0,1279,'/w/j/wj05-green_main_1.jpg'),(8942,88,0,1279,'/w/j/wj05-green_main_1.jpg'),(8943,89,0,1279,'/w/j/wj05-green_main_1.jpg'),(8944,73,0,1279,'Riona Full Zip Jacket-L-Green'),(8945,106,0,1280,'container2'),(8946,124,0,1280,'0'),(8947,121,0,1280,'riona-full-zip-jacket-l-red'),(8948,87,0,1280,'/w/j/wj05-red_main_1.jpg'),(8949,88,0,1280,'/w/j/wj05-red_main_1.jpg'),(8950,89,0,1280,'/w/j/wj05-red_main_1.jpg'),(8951,73,0,1280,'Riona Full Zip Jacket-L-Red'),(8952,106,0,1281,'container2'),(8953,124,0,1281,'0'),(8954,121,0,1281,'riona-full-zip-jacket-xl-brown'),(8955,87,0,1281,'/w/j/wj05-brown_main_1.jpg'),(8956,88,0,1281,'/w/j/wj05-brown_main_1.jpg'),(8957,89,0,1281,'/w/j/wj05-brown_main_1.jpg'),(8958,73,0,1281,'Riona Full Zip Jacket-XL-Brown'),(8959,106,0,1282,'container2'),(8960,124,0,1282,'0'),(8961,121,0,1282,'riona-full-zip-jacket-xl-green'),(8962,87,0,1282,'/w/j/wj05-green_main_1.jpg'),(8963,88,0,1282,'/w/j/wj05-green_main_1.jpg'),(8964,89,0,1282,'/w/j/wj05-green_main_1.jpg'),(8965,73,0,1282,'Riona Full Zip Jacket-XL-Green'),(8966,106,0,1283,'container2'),(8967,124,0,1283,'0'),(8968,121,0,1283,'riona-full-zip-jacket-xl-red'),(8969,87,0,1283,'/w/j/wj05-red_main_1.jpg'),(8970,88,0,1283,'/w/j/wj05-red_main_1.jpg'),(8971,89,0,1283,'/w/j/wj05-red_main_1.jpg'),(8972,73,0,1283,'Riona Full Zip Jacket-XL-Red'),(8973,106,0,1284,'container2'),(8974,124,0,1284,'0'),(8975,121,0,1284,'riona-full-zip-jacket'),(8976,87,0,1284,'/w/j/wj05-brown_main_1.jpg'),(8977,88,0,1284,'/w/j/wj05-brown_main_1.jpg'),(8978,89,0,1284,'/w/j/wj05-brown_main_1.jpg'),(8979,73,0,1284,'Riona Full Zip Jacket'),(8980,106,0,1285,'container2'),(8981,124,0,1285,'0'),(8982,121,0,1285,'inez-full-zip-jacket-xs-orange'),(8983,87,0,1285,'/w/j/wj07-orange_main_1.jpg'),(8984,88,0,1285,'/w/j/wj07-orange_main_1.jpg'),(8985,89,0,1285,'/w/j/wj07-orange_main_1.jpg'),(8986,73,0,1285,'Inez Full Zip Jacket-XS-Orange'),(8987,106,0,1286,'container2'),(8988,124,0,1286,'0'),(8989,121,0,1286,'inez-full-zip-jacket-xs-purple'),(8990,87,0,1286,'/w/j/wj07-purple_main_1.jpg'),(8991,88,0,1286,'/w/j/wj07-purple_main_1.jpg'),(8992,89,0,1286,'/w/j/wj07-purple_main_1.jpg'),(8993,73,0,1286,'Inez Full Zip Jacket-XS-Purple'),(8994,106,0,1287,'container2'),(8995,124,0,1287,'0'),(8996,121,0,1287,'inez-full-zip-jacket-xs-red'),(8997,87,0,1287,'/w/j/wj07-red_main_1.jpg'),(8998,88,0,1287,'/w/j/wj07-red_main_1.jpg'),(8999,89,0,1287,'/w/j/wj07-red_main_1.jpg'),(9000,73,0,1287,'Inez Full Zip Jacket-XS-Red'),(9001,106,0,1288,'container2'),(9002,124,0,1288,'0'),(9003,121,0,1288,'inez-full-zip-jacket-s-orange'),(9004,87,0,1288,'/w/j/wj07-orange_main_1.jpg'),(9005,88,0,1288,'/w/j/wj07-orange_main_1.jpg'),(9006,89,0,1288,'/w/j/wj07-orange_main_1.jpg'),(9007,73,0,1288,'Inez Full Zip Jacket-S-Orange'),(9008,106,0,1289,'container2'),(9009,124,0,1289,'0'),(9010,121,0,1289,'inez-full-zip-jacket-s-purple'),(9011,87,0,1289,'/w/j/wj07-purple_main_1.jpg'),(9012,88,0,1289,'/w/j/wj07-purple_main_1.jpg'),(9013,89,0,1289,'/w/j/wj07-purple_main_1.jpg'),(9014,73,0,1289,'Inez Full Zip Jacket-S-Purple'),(9015,106,0,1290,'container2'),(9016,124,0,1290,'0'),(9017,121,0,1290,'inez-full-zip-jacket-s-red'),(9018,87,0,1290,'/w/j/wj07-red_main_1.jpg'),(9019,88,0,1290,'/w/j/wj07-red_main_1.jpg'),(9020,89,0,1290,'/w/j/wj07-red_main_1.jpg'),(9021,73,0,1290,'Inez Full Zip Jacket-S-Red'),(9022,106,0,1291,'container2'),(9023,124,0,1291,'0'),(9024,121,0,1291,'inez-full-zip-jacket-m-orange'),(9025,87,0,1291,'/w/j/wj07-orange_main_1.jpg'),(9026,88,0,1291,'/w/j/wj07-orange_main_1.jpg'),(9027,89,0,1291,'/w/j/wj07-orange_main_1.jpg'),(9028,73,0,1291,'Inez Full Zip Jacket-M-Orange'),(9029,106,0,1292,'container2'),(9030,124,0,1292,'0'),(9031,121,0,1292,'inez-full-zip-jacket-m-purple'),(9032,87,0,1292,'/w/j/wj07-purple_main_1.jpg'),(9033,88,0,1292,'/w/j/wj07-purple_main_1.jpg'),(9034,89,0,1292,'/w/j/wj07-purple_main_1.jpg'),(9035,73,0,1292,'Inez Full Zip Jacket-M-Purple'),(9036,106,0,1293,'container2'),(9037,124,0,1293,'0'),(9038,121,0,1293,'inez-full-zip-jacket-m-red'),(9039,87,0,1293,'/w/j/wj07-red_main_1.jpg'),(9040,88,0,1293,'/w/j/wj07-red_main_1.jpg'),(9041,89,0,1293,'/w/j/wj07-red_main_1.jpg'),(9042,73,0,1293,'Inez Full Zip Jacket-M-Red'),(9043,106,0,1294,'container2'),(9044,124,0,1294,'0'),(9045,121,0,1294,'inez-full-zip-jacket-l-orange'),(9046,87,0,1294,'/w/j/wj07-orange_main_1.jpg'),(9047,88,0,1294,'/w/j/wj07-orange_main_1.jpg'),(9048,89,0,1294,'/w/j/wj07-orange_main_1.jpg'),(9049,73,0,1294,'Inez Full Zip Jacket-L-Orange'),(9050,106,0,1295,'container2'),(9051,124,0,1295,'0'),(9052,121,0,1295,'inez-full-zip-jacket-l-purple'),(9053,87,0,1295,'/w/j/wj07-purple_main_1.jpg'),(9054,88,0,1295,'/w/j/wj07-purple_main_1.jpg'),(9055,89,0,1295,'/w/j/wj07-purple_main_1.jpg'),(9056,73,0,1295,'Inez Full Zip Jacket-L-Purple'),(9057,106,0,1296,'container2'),(9058,124,0,1296,'0'),(9059,121,0,1296,'inez-full-zip-jacket-l-red'),(9060,87,0,1296,'/w/j/wj07-red_main_1.jpg'),(9061,88,0,1296,'/w/j/wj07-red_main_1.jpg'),(9062,89,0,1296,'/w/j/wj07-red_main_1.jpg'),(9063,73,0,1296,'Inez Full Zip Jacket-L-Red'),(9064,106,0,1297,'container2'),(9065,124,0,1297,'0'),(9066,121,0,1297,'inez-full-zip-jacket-xl-orange'),(9067,87,0,1297,'/w/j/wj07-orange_main_1.jpg'),(9068,88,0,1297,'/w/j/wj07-orange_main_1.jpg'),(9069,89,0,1297,'/w/j/wj07-orange_main_1.jpg'),(9070,73,0,1297,'Inez Full Zip Jacket-XL-Orange'),(9071,106,0,1298,'container2'),(9072,124,0,1298,'0'),(9073,121,0,1298,'inez-full-zip-jacket-xl-purple'),(9074,87,0,1298,'/w/j/wj07-purple_main_1.jpg'),(9075,88,0,1298,'/w/j/wj07-purple_main_1.jpg'),(9076,89,0,1298,'/w/j/wj07-purple_main_1.jpg'),(9077,73,0,1298,'Inez Full Zip Jacket-XL-Purple'),(9078,106,0,1299,'container2'),(9079,124,0,1299,'0'),(9080,121,0,1299,'inez-full-zip-jacket-xl-red'),(9081,87,0,1299,'/w/j/wj07-red_main_1.jpg'),(9082,88,0,1299,'/w/j/wj07-red_main_1.jpg'),(9083,89,0,1299,'/w/j/wj07-red_main_1.jpg'),(9084,73,0,1299,'Inez Full Zip Jacket-XL-Red'),(9085,106,0,1300,'container2'),(9086,124,0,1300,'0'),(9087,121,0,1300,'inez-full-zip-jacket'),(9088,87,0,1300,'/w/j/wj07-purple_main_1.jpg'),(9089,88,0,1300,'/w/j/wj07-purple_main_1.jpg'),(9090,89,0,1300,'/w/j/wj07-purple_main_1.jpg'),(9091,73,0,1300,'Inez Full Zip Jacket'),(9092,106,0,1301,'container2'),(9093,124,0,1301,'0'),(9094,121,0,1301,'adrienne-trek-jacket-xs-gray'),(9095,87,0,1301,'/w/j/wj08-gray_main_1.jpg'),(9096,88,0,1301,'/w/j/wj08-gray_main_1.jpg'),(9097,89,0,1301,'/w/j/wj08-gray_main_1.jpg'),(9098,73,0,1301,'Adrienne Trek Jacket-XS-Gray'),(9099,106,0,1302,'container2'),(9100,124,0,1302,'0'),(9101,121,0,1302,'adrienne-trek-jacket-xs-orange'),(9102,87,0,1302,'/w/j/wj08-orange_main_1.jpg'),(9103,88,0,1302,'/w/j/wj08-orange_main_1.jpg'),(9104,89,0,1302,'/w/j/wj08-orange_main_1.jpg'),(9105,73,0,1302,'Adrienne Trek Jacket-XS-Orange'),(9106,106,0,1303,'container2'),(9107,124,0,1303,'0'),(9108,121,0,1303,'adrienne-trek-jacket-xs-purple'),(9109,87,0,1303,'/w/j/wj08-purple_main_1.jpg'),(9110,88,0,1303,'/w/j/wj08-purple_main_1.jpg'),(9111,89,0,1303,'/w/j/wj08-purple_main_1.jpg'),(9112,73,0,1303,'Adrienne Trek Jacket-XS-Purple'),(9113,106,0,1304,'container2'),(9114,124,0,1304,'0'),(9115,121,0,1304,'adrienne-trek-jacket-s-gray'),(9116,87,0,1304,'/w/j/wj08-gray_main_1.jpg'),(9117,88,0,1304,'/w/j/wj08-gray_main_1.jpg'),(9118,89,0,1304,'/w/j/wj08-gray_main_1.jpg'),(9119,73,0,1304,'Adrienne Trek Jacket-S-Gray'),(9120,106,0,1305,'container2'),(9121,124,0,1305,'0'),(9122,121,0,1305,'adrienne-trek-jacket-s-orange'),(9123,87,0,1305,'/w/j/wj08-orange_main_1.jpg'),(9124,88,0,1305,'/w/j/wj08-orange_main_1.jpg'),(9125,89,0,1305,'/w/j/wj08-orange_main_1.jpg'),(9126,73,0,1305,'Adrienne Trek Jacket-S-Orange'),(9127,106,0,1306,'container2'),(9128,124,0,1306,'0'),(9129,121,0,1306,'adrienne-trek-jacket-s-purple'),(9130,87,0,1306,'/w/j/wj08-purple_main_1.jpg'),(9131,88,0,1306,'/w/j/wj08-purple_main_1.jpg'),(9132,89,0,1306,'/w/j/wj08-purple_main_1.jpg'),(9133,73,0,1306,'Adrienne Trek Jacket-S-Purple'),(9134,106,0,1307,'container2'),(9135,124,0,1307,'0'),(9136,121,0,1307,'adrienne-trek-jacket-m-gray'),(9137,87,0,1307,'/w/j/wj08-gray_main_1.jpg'),(9138,88,0,1307,'/w/j/wj08-gray_main_1.jpg'),(9139,89,0,1307,'/w/j/wj08-gray_main_1.jpg'),(9140,73,0,1307,'Adrienne Trek Jacket-M-Gray'),(9141,106,0,1308,'container2'),(9142,124,0,1308,'0'),(9143,121,0,1308,'adrienne-trek-jacket-m-orange'),(9144,87,0,1308,'/w/j/wj08-orange_main_1.jpg'),(9145,88,0,1308,'/w/j/wj08-orange_main_1.jpg'),(9146,89,0,1308,'/w/j/wj08-orange_main_1.jpg'),(9147,73,0,1308,'Adrienne Trek Jacket-M-Orange'),(9148,106,0,1309,'container2'),(9149,124,0,1309,'0'),(9150,121,0,1309,'adrienne-trek-jacket-m-purple'),(9151,87,0,1309,'/w/j/wj08-purple_main_1.jpg'),(9152,88,0,1309,'/w/j/wj08-purple_main_1.jpg'),(9153,89,0,1309,'/w/j/wj08-purple_main_1.jpg'),(9154,73,0,1309,'Adrienne Trek Jacket-M-Purple'),(9155,106,0,1310,'container2'),(9156,124,0,1310,'0'),(9157,121,0,1310,'adrienne-trek-jacket-l-gray'),(9158,87,0,1310,'/w/j/wj08-gray_main_1.jpg'),(9159,88,0,1310,'/w/j/wj08-gray_main_1.jpg'),(9160,89,0,1310,'/w/j/wj08-gray_main_1.jpg'),(9161,73,0,1310,'Adrienne Trek Jacket-L-Gray'),(9162,106,0,1311,'container2'),(9163,124,0,1311,'0'),(9164,121,0,1311,'adrienne-trek-jacket-l-orange'),(9165,87,0,1311,'/w/j/wj08-orange_main_1.jpg'),(9166,88,0,1311,'/w/j/wj08-orange_main_1.jpg'),(9167,89,0,1311,'/w/j/wj08-orange_main_1.jpg'),(9168,73,0,1311,'Adrienne Trek Jacket-L-Orange'),(9169,106,0,1312,'container2'),(9170,124,0,1312,'0'),(9171,121,0,1312,'adrienne-trek-jacket-l-purple'),(9172,87,0,1312,'/w/j/wj08-purple_main_1.jpg'),(9173,88,0,1312,'/w/j/wj08-purple_main_1.jpg'),(9174,89,0,1312,'/w/j/wj08-purple_main_1.jpg'),(9175,73,0,1312,'Adrienne Trek Jacket-L-Purple'),(9176,106,0,1313,'container2'),(9177,124,0,1313,'0'),(9178,121,0,1313,'adrienne-trek-jacket-xl-gray'),(9179,87,0,1313,'/w/j/wj08-gray_main_1.jpg'),(9180,88,0,1313,'/w/j/wj08-gray_main_1.jpg'),(9181,89,0,1313,'/w/j/wj08-gray_main_1.jpg'),(9182,73,0,1313,'Adrienne Trek Jacket-XL-Gray'),(9183,106,0,1314,'container2'),(9184,124,0,1314,'0'),(9185,121,0,1314,'adrienne-trek-jacket-xl-orange'),(9186,87,0,1314,'/w/j/wj08-orange_main_1.jpg'),(9187,88,0,1314,'/w/j/wj08-orange_main_1.jpg'),(9188,89,0,1314,'/w/j/wj08-orange_main_1.jpg'),(9189,73,0,1314,'Adrienne Trek Jacket-XL-Orange'),(9190,106,0,1315,'container2'),(9191,124,0,1315,'0'),(9192,121,0,1315,'adrienne-trek-jacket-xl-purple'),(9193,87,0,1315,'/w/j/wj08-purple_main_1.jpg'),(9194,88,0,1315,'/w/j/wj08-purple_main_1.jpg'),(9195,89,0,1315,'/w/j/wj08-purple_main_1.jpg'),(9196,73,0,1315,'Adrienne Trek Jacket-XL-Purple'),(9197,106,0,1316,'container2'),(9198,124,0,1316,'0'),(9199,121,0,1316,'adrienne-trek-jacket'),(9200,87,0,1316,'/w/j/wj08-gray_main_1.jpg'),(9201,88,0,1316,'/w/j/wj08-gray_main_1.jpg'),(9202,89,0,1316,'/w/j/wj08-gray_main_1.jpg'),(9203,73,0,1316,'Adrienne Trek Jacket'),(9204,106,0,1317,'container2'),(9205,124,0,1317,'0'),(9206,121,0,1317,'jade-yoga-jacket-xs-blue'),(9207,87,0,1317,'/w/j/wj09-blue_main_1.jpg'),(9208,88,0,1317,'/w/j/wj09-blue_main_1.jpg'),(9209,89,0,1317,'/w/j/wj09-blue_main_1.jpg'),(9210,73,0,1317,'Jade Yoga Jacket-XS-Blue'),(9211,106,0,1318,'container2'),(9212,124,0,1318,'0'),(9213,121,0,1318,'jade-yoga-jacket-xs-gray'),(9214,87,0,1318,'/w/j/wj09-gray_main_1.jpg'),(9215,88,0,1318,'/w/j/wj09-gray_main_1.jpg'),(9216,89,0,1318,'/w/j/wj09-gray_main_1.jpg'),(9217,73,0,1318,'Jade Yoga Jacket-XS-Gray'),(9218,106,0,1319,'container2'),(9219,124,0,1319,'0'),(9220,121,0,1319,'jade-yoga-jacket-xs-green'),(9221,87,0,1319,'/w/j/wj09-green_main_1.jpg'),(9222,88,0,1319,'/w/j/wj09-green_main_1.jpg'),(9223,89,0,1319,'/w/j/wj09-green_main_1.jpg'),(9224,73,0,1319,'Jade Yoga Jacket-XS-Green'),(9225,106,0,1320,'container2'),(9226,124,0,1320,'0'),(9227,121,0,1320,'jade-yoga-jacket-s-blue'),(9228,87,0,1320,'/w/j/wj09-blue_main_1.jpg'),(9229,88,0,1320,'/w/j/wj09-blue_main_1.jpg'),(9230,89,0,1320,'/w/j/wj09-blue_main_1.jpg'),(9231,73,0,1320,'Jade Yoga Jacket-S-Blue'),(9232,106,0,1321,'container2'),(9233,124,0,1321,'0'),(9234,121,0,1321,'jade-yoga-jacket-s-gray'),(9235,87,0,1321,'/w/j/wj09-gray_main_1.jpg'),(9236,88,0,1321,'/w/j/wj09-gray_main_1.jpg'),(9237,89,0,1321,'/w/j/wj09-gray_main_1.jpg'),(9238,73,0,1321,'Jade Yoga Jacket-S-Gray'),(9239,106,0,1322,'container2'),(9240,124,0,1322,'0'),(9241,121,0,1322,'jade-yoga-jacket-s-green'),(9242,87,0,1322,'/w/j/wj09-green_main_1.jpg'),(9243,88,0,1322,'/w/j/wj09-green_main_1.jpg'),(9244,89,0,1322,'/w/j/wj09-green_main_1.jpg'),(9245,73,0,1322,'Jade Yoga Jacket-S-Green'),(9246,106,0,1323,'container2'),(9247,124,0,1323,'0'),(9248,121,0,1323,'jade-yoga-jacket-m-blue'),(9249,87,0,1323,'/w/j/wj09-blue_main_1.jpg'),(9250,88,0,1323,'/w/j/wj09-blue_main_1.jpg'),(9251,89,0,1323,'/w/j/wj09-blue_main_1.jpg'),(9252,73,0,1323,'Jade Yoga Jacket-M-Blue'),(9253,106,0,1324,'container2'),(9254,124,0,1324,'0'),(9255,121,0,1324,'jade-yoga-jacket-m-gray'),(9256,87,0,1324,'/w/j/wj09-gray_main_1.jpg'),(9257,88,0,1324,'/w/j/wj09-gray_main_1.jpg'),(9258,89,0,1324,'/w/j/wj09-gray_main_1.jpg'),(9259,73,0,1324,'Jade Yoga Jacket-M-Gray'),(9260,106,0,1325,'container2'),(9261,124,0,1325,'0'),(9262,121,0,1325,'jade-yoga-jacket-m-green'),(9263,87,0,1325,'/w/j/wj09-green_main_1.jpg'),(9264,88,0,1325,'/w/j/wj09-green_main_1.jpg'),(9265,89,0,1325,'/w/j/wj09-green_main_1.jpg'),(9266,73,0,1325,'Jade Yoga Jacket-M-Green'),(9267,106,0,1326,'container2'),(9268,124,0,1326,'0'),(9269,121,0,1326,'jade-yoga-jacket-l-blue'),(9270,87,0,1326,'/w/j/wj09-blue_main_1.jpg'),(9271,88,0,1326,'/w/j/wj09-blue_main_1.jpg'),(9272,89,0,1326,'/w/j/wj09-blue_main_1.jpg'),(9273,73,0,1326,'Jade Yoga Jacket-L-Blue'),(9274,106,0,1327,'container2'),(9275,124,0,1327,'0'),(9276,121,0,1327,'jade-yoga-jacket-l-gray'),(9277,87,0,1327,'/w/j/wj09-gray_main_1.jpg'),(9278,88,0,1327,'/w/j/wj09-gray_main_1.jpg'),(9279,89,0,1327,'/w/j/wj09-gray_main_1.jpg'),(9280,73,0,1327,'Jade Yoga Jacket-L-Gray'),(9281,106,0,1328,'container2'),(9282,124,0,1328,'0'),(9283,121,0,1328,'jade-yoga-jacket-l-green'),(9284,87,0,1328,'/w/j/wj09-green_main_1.jpg'),(9285,88,0,1328,'/w/j/wj09-green_main_1.jpg'),(9286,89,0,1328,'/w/j/wj09-green_main_1.jpg'),(9287,73,0,1328,'Jade Yoga Jacket-L-Green'),(9288,106,0,1329,'container2'),(9289,124,0,1329,'0'),(9290,121,0,1329,'jade-yoga-jacket-xl-blue'),(9291,87,0,1329,'/w/j/wj09-blue_main_1.jpg'),(9292,88,0,1329,'/w/j/wj09-blue_main_1.jpg'),(9293,89,0,1329,'/w/j/wj09-blue_main_1.jpg'),(9294,73,0,1329,'Jade Yoga Jacket-XL-Blue'),(9295,106,0,1330,'container2'),(9296,124,0,1330,'0'),(9297,121,0,1330,'jade-yoga-jacket-xl-gray'),(9298,87,0,1330,'/w/j/wj09-gray_main_1.jpg'),(9299,88,0,1330,'/w/j/wj09-gray_main_1.jpg'),(9300,89,0,1330,'/w/j/wj09-gray_main_1.jpg'),(9301,73,0,1330,'Jade Yoga Jacket-XL-Gray'),(9302,106,0,1331,'container2'),(9303,124,0,1331,'0'),(9304,121,0,1331,'jade-yoga-jacket-xl-green'),(9305,87,0,1331,'/w/j/wj09-green_main_1.jpg'),(9306,88,0,1331,'/w/j/wj09-green_main_1.jpg'),(9307,89,0,1331,'/w/j/wj09-green_main_1.jpg'),(9308,73,0,1331,'Jade Yoga Jacket-XL-Green'),(9309,106,0,1332,'container2'),(9310,124,0,1332,'0'),(9311,121,0,1332,'jade-yoga-jacket'),(9312,87,0,1332,'/w/j/wj09-green_main_1.jpg'),(9313,88,0,1332,'/w/j/wj09-green_main_1.jpg'),(9314,89,0,1332,'/w/j/wj09-green_main_1.jpg'),(9315,73,0,1332,'Jade Yoga Jacket'),(9316,106,0,1333,'container2'),(9317,124,0,1333,'0'),(9318,121,0,1333,'nadia-elements-shell-xs-black'),(9319,87,0,1333,'/w/j/wj10-black_main_1.jpg'),(9320,88,0,1333,'/w/j/wj10-black_main_1.jpg'),(9321,89,0,1333,'/w/j/wj10-black_main_1.jpg'),(9322,73,0,1333,'Nadia Elements Shell-XS-Black'),(9323,106,0,1334,'container2'),(9324,124,0,1334,'0'),(9325,121,0,1334,'nadia-elements-shell-xs-orange'),(9326,87,0,1334,'/w/j/wj10-orange_main_1.jpg'),(9327,88,0,1334,'/w/j/wj10-orange_main_1.jpg'),(9328,89,0,1334,'/w/j/wj10-orange_main_1.jpg'),(9329,73,0,1334,'Nadia Elements Shell-XS-Orange'),(9330,106,0,1335,'container2'),(9331,124,0,1335,'0'),(9332,121,0,1335,'nadia-elements-shell-xs-yellow'),(9333,87,0,1335,'/w/j/wj10-yellow_main_1.jpg'),(9334,88,0,1335,'/w/j/wj10-yellow_main_1.jpg'),(9335,89,0,1335,'/w/j/wj10-yellow_main_1.jpg'),(9336,73,0,1335,'Nadia Elements Shell-XS-Yellow'),(9337,106,0,1336,'container2'),(9338,124,0,1336,'0'),(9339,121,0,1336,'nadia-elements-shell-s-black'),(9340,87,0,1336,'/w/j/wj10-black_main_1.jpg'),(9341,88,0,1336,'/w/j/wj10-black_main_1.jpg'),(9342,89,0,1336,'/w/j/wj10-black_main_1.jpg'),(9343,73,0,1336,'Nadia Elements Shell-S-Black'),(9344,106,0,1337,'container2'),(9345,124,0,1337,'0'),(9346,121,0,1337,'nadia-elements-shell-s-orange'),(9347,87,0,1337,'/w/j/wj10-orange_main_1.jpg'),(9348,88,0,1337,'/w/j/wj10-orange_main_1.jpg'),(9349,89,0,1337,'/w/j/wj10-orange_main_1.jpg'),(9350,73,0,1337,'Nadia Elements Shell-S-Orange'),(9351,106,0,1338,'container2'),(9352,124,0,1338,'0'),(9353,121,0,1338,'nadia-elements-shell-s-yellow'),(9354,87,0,1338,'/w/j/wj10-yellow_main_1.jpg'),(9355,88,0,1338,'/w/j/wj10-yellow_main_1.jpg'),(9356,89,0,1338,'/w/j/wj10-yellow_main_1.jpg'),(9357,73,0,1338,'Nadia Elements Shell-S-Yellow'),(9358,106,0,1339,'container2'),(9359,124,0,1339,'0'),(9360,121,0,1339,'nadia-elements-shell-m-black'),(9361,87,0,1339,'/w/j/wj10-black_main_1.jpg'),(9362,88,0,1339,'/w/j/wj10-black_main_1.jpg'),(9363,89,0,1339,'/w/j/wj10-black_main_1.jpg'),(9364,73,0,1339,'Nadia Elements Shell-M-Black'),(9365,106,0,1340,'container2'),(9366,124,0,1340,'0'),(9367,121,0,1340,'nadia-elements-shell-m-orange'),(9368,87,0,1340,'/w/j/wj10-orange_main_1.jpg'),(9369,88,0,1340,'/w/j/wj10-orange_main_1.jpg'),(9370,89,0,1340,'/w/j/wj10-orange_main_1.jpg'),(9371,73,0,1340,'Nadia Elements Shell-M-Orange'),(9372,106,0,1341,'container2'),(9373,124,0,1341,'0'),(9374,121,0,1341,'nadia-elements-shell-m-yellow'),(9375,87,0,1341,'/w/j/wj10-yellow_main_1.jpg'),(9376,88,0,1341,'/w/j/wj10-yellow_main_1.jpg'),(9377,89,0,1341,'/w/j/wj10-yellow_main_1.jpg'),(9378,73,0,1341,'Nadia Elements Shell-M-Yellow'),(9379,106,0,1342,'container2'),(9380,124,0,1342,'0'),(9381,121,0,1342,'nadia-elements-shell-l-black'),(9382,87,0,1342,'/w/j/wj10-black_main_1.jpg'),(9383,88,0,1342,'/w/j/wj10-black_main_1.jpg'),(9384,89,0,1342,'/w/j/wj10-black_main_1.jpg'),(9385,73,0,1342,'Nadia Elements Shell-L-Black'),(9386,106,0,1343,'container2'),(9387,124,0,1343,'0'),(9388,121,0,1343,'nadia-elements-shell-l-orange'),(9389,87,0,1343,'/w/j/wj10-orange_main_1.jpg'),(9390,88,0,1343,'/w/j/wj10-orange_main_1.jpg'),(9391,89,0,1343,'/w/j/wj10-orange_main_1.jpg'),(9392,73,0,1343,'Nadia Elements Shell-L-Orange'),(9393,106,0,1344,'container2'),(9394,124,0,1344,'0'),(9395,121,0,1344,'nadia-elements-shell-l-yellow'),(9396,87,0,1344,'/w/j/wj10-yellow_main_1.jpg'),(9397,88,0,1344,'/w/j/wj10-yellow_main_1.jpg'),(9398,89,0,1344,'/w/j/wj10-yellow_main_1.jpg'),(9399,73,0,1344,'Nadia Elements Shell-L-Yellow'),(9400,106,0,1345,'container2'),(9401,124,0,1345,'0'),(9402,121,0,1345,'nadia-elements-shell-xl-black'),(9403,87,0,1345,'/w/j/wj10-black_main_1.jpg'),(9404,88,0,1345,'/w/j/wj10-black_main_1.jpg'),(9405,89,0,1345,'/w/j/wj10-black_main_1.jpg'),(9406,73,0,1345,'Nadia Elements Shell-XL-Black'),(9407,106,0,1346,'container2'),(9408,124,0,1346,'0'),(9409,121,0,1346,'nadia-elements-shell-xl-orange'),(9410,87,0,1346,'/w/j/wj10-orange_main_1.jpg'),(9411,88,0,1346,'/w/j/wj10-orange_main_1.jpg'),(9412,89,0,1346,'/w/j/wj10-orange_main_1.jpg'),(9413,73,0,1346,'Nadia Elements Shell-XL-Orange'),(9414,106,0,1347,'container2'),(9415,124,0,1347,'0'),(9416,121,0,1347,'nadia-elements-shell-xl-yellow'),(9417,87,0,1347,'/w/j/wj10-yellow_main_2.jpg'),(9418,88,0,1347,'/w/j/wj10-yellow_main_2.jpg'),(9419,89,0,1347,'/w/j/wj10-yellow_main_2.jpg'),(9420,73,0,1347,'Nadia Elements Shell-XL-Yellow'),(9421,106,0,1348,'container2'),(9422,124,0,1348,'0'),(9423,121,0,1348,'nadia-elements-shell'),(9424,87,0,1348,'/w/j/wj10-yellow_main_2.jpg'),(9425,88,0,1348,'/w/j/wj10-yellow_main_2.jpg'),(9426,89,0,1348,'/w/j/wj10-yellow_main_2.jpg'),(9427,73,0,1348,'Nadia Elements Shell'),(9428,106,0,1349,'container2'),(9429,124,0,1349,'0'),(9430,121,0,1349,'neve-studio-dance-jacket-xs-black'),(9431,87,0,1349,'/w/j/wj11-black_main_1.jpg'),(9432,88,0,1349,'/w/j/wj11-black_main_1.jpg'),(9433,89,0,1349,'/w/j/wj11-black_main_1.jpg'),(9434,73,0,1349,'Neve Studio Dance Jacket-XS-Black'),(9435,106,0,1350,'container2'),(9436,124,0,1350,'0'),(9437,121,0,1350,'neve-studio-dance-jacket-xs-blue'),(9438,87,0,1350,'/w/j/wj11-blue_main_1.jpg'),(9439,88,0,1350,'/w/j/wj11-blue_main_1.jpg'),(9440,89,0,1350,'/w/j/wj11-blue_main_1.jpg'),(9441,73,0,1350,'Neve Studio Dance Jacket-XS-Blue'),(9442,106,0,1351,'container2'),(9443,124,0,1351,'0'),(9444,121,0,1351,'neve-studio-dance-jacket-xs-orange'),(9445,87,0,1351,'/w/j/wj11-orange_main_1.jpg'),(9446,88,0,1351,'/w/j/wj11-orange_main_1.jpg'),(9447,89,0,1351,'/w/j/wj11-orange_main_1.jpg'),(9448,73,0,1351,'Neve Studio Dance Jacket-XS-Orange'),(9449,106,0,1352,'container2'),(9450,124,0,1352,'0'),(9451,121,0,1352,'neve-studio-dance-jacket-s-black'),(9452,87,0,1352,'/w/j/wj11-black_main_1.jpg'),(9453,88,0,1352,'/w/j/wj11-black_main_1.jpg'),(9454,89,0,1352,'/w/j/wj11-black_main_1.jpg'),(9455,73,0,1352,'Neve Studio Dance Jacket-S-Black'),(9456,106,0,1353,'container2'),(9457,124,0,1353,'0'),(9458,121,0,1353,'neve-studio-dance-jacket-s-blue'),(9459,87,0,1353,'/w/j/wj11-blue_main_1.jpg'),(9460,88,0,1353,'/w/j/wj11-blue_main_1.jpg'),(9461,89,0,1353,'/w/j/wj11-blue_main_1.jpg'),(9462,73,0,1353,'Neve Studio Dance Jacket-S-Blue'),(9463,106,0,1354,'container2'),(9464,124,0,1354,'0'),(9465,121,0,1354,'neve-studio-dance-jacket-s-orange'),(9466,87,0,1354,'/w/j/wj11-orange_main_1.jpg'),(9467,88,0,1354,'/w/j/wj11-orange_main_1.jpg'),(9468,89,0,1354,'/w/j/wj11-orange_main_1.jpg'),(9469,73,0,1354,'Neve Studio Dance Jacket-S-Orange'),(9470,106,0,1355,'container2'),(9471,124,0,1355,'0'),(9472,121,0,1355,'neve-studio-dance-jacket-m-black'),(9473,87,0,1355,'/w/j/wj11-black_main_1.jpg'),(9474,88,0,1355,'/w/j/wj11-black_main_1.jpg'),(9475,89,0,1355,'/w/j/wj11-black_main_1.jpg'),(9476,73,0,1355,'Neve Studio Dance Jacket-M-Black'),(9477,106,0,1356,'container2'),(9478,124,0,1356,'0'),(9479,121,0,1356,'neve-studio-dance-jacket-m-blue'),(9480,87,0,1356,'/w/j/wj11-blue_main_1.jpg'),(9481,88,0,1356,'/w/j/wj11-blue_main_1.jpg'),(9482,89,0,1356,'/w/j/wj11-blue_main_1.jpg'),(9483,73,0,1356,'Neve Studio Dance Jacket-M-Blue'),(9484,106,0,1357,'container2'),(9485,124,0,1357,'0'),(9486,121,0,1357,'neve-studio-dance-jacket-m-orange'),(9487,87,0,1357,'/w/j/wj11-orange_main_1.jpg'),(9488,88,0,1357,'/w/j/wj11-orange_main_1.jpg'),(9489,89,0,1357,'/w/j/wj11-orange_main_1.jpg'),(9490,73,0,1357,'Neve Studio Dance Jacket-M-Orange'),(9491,106,0,1358,'container2'),(9492,124,0,1358,'0'),(9493,121,0,1358,'neve-studio-dance-jacket-l-black'),(9494,87,0,1358,'/w/j/wj11-black_main_1.jpg'),(9495,88,0,1358,'/w/j/wj11-black_main_1.jpg'),(9496,89,0,1358,'/w/j/wj11-black_main_1.jpg'),(9497,73,0,1358,'Neve Studio Dance Jacket-L-Black'),(9498,106,0,1359,'container2'),(9499,124,0,1359,'0'),(9500,121,0,1359,'neve-studio-dance-jacket-l-blue'),(9501,87,0,1359,'/w/j/wj11-blue_main_1.jpg'),(9502,88,0,1359,'/w/j/wj11-blue_main_1.jpg'),(9503,89,0,1359,'/w/j/wj11-blue_main_1.jpg'),(9504,73,0,1359,'Neve Studio Dance Jacket-L-Blue'),(9505,106,0,1360,'container2'),(9506,124,0,1360,'0'),(9507,121,0,1360,'neve-studio-dance-jacket-l-orange'),(9508,87,0,1360,'/w/j/wj11-orange_main_1.jpg'),(9509,88,0,1360,'/w/j/wj11-orange_main_1.jpg'),(9510,89,0,1360,'/w/j/wj11-orange_main_1.jpg'),(9511,73,0,1360,'Neve Studio Dance Jacket-L-Orange'),(9512,106,0,1361,'container2'),(9513,124,0,1361,'0'),(9514,121,0,1361,'neve-studio-dance-jacket-xl-black'),(9515,87,0,1361,'/w/j/wj11-black_main_1.jpg'),(9516,88,0,1361,'/w/j/wj11-black_main_1.jpg'),(9517,89,0,1361,'/w/j/wj11-black_main_1.jpg'),(9518,73,0,1361,'Neve Studio Dance Jacket-XL-Black'),(9519,106,0,1362,'container2'),(9520,124,0,1362,'0'),(9521,121,0,1362,'neve-studio-dance-jacket-xl-blue'),(9522,87,0,1362,'/w/j/wj11-blue_main_1.jpg'),(9523,88,0,1362,'/w/j/wj11-blue_main_1.jpg'),(9524,89,0,1362,'/w/j/wj11-blue_main_1.jpg'),(9525,73,0,1362,'Neve Studio Dance Jacket-XL-Blue'),(9526,106,0,1363,'container2'),(9527,124,0,1363,'0'),(9528,121,0,1363,'neve-studio-dance-jacket-xl-orange'),(9529,87,0,1363,'/w/j/wj11-orange_main_1.jpg'),(9530,88,0,1363,'/w/j/wj11-orange_main_1.jpg'),(9531,89,0,1363,'/w/j/wj11-orange_main_1.jpg'),(9532,73,0,1363,'Neve Studio Dance Jacket-XL-Orange'),(9533,106,0,1364,'container2'),(9534,124,0,1364,'0'),(9535,121,0,1364,'neve-studio-dance-jacket'),(9536,87,0,1364,'/w/j/wj11-blue_main_1.jpg'),(9537,88,0,1364,'/w/j/wj11-blue_main_1.jpg'),(9538,89,0,1364,'/w/j/wj11-blue_main_1.jpg'),(9539,73,0,1364,'Neve Studio Dance Jacket'),(9540,106,0,1365,'container2'),(9541,124,0,1365,'0'),(9542,121,0,1365,'juno-jacket-xs-blue'),(9543,87,0,1365,'/w/j/wj06-blue_main_1.jpg'),(9544,88,0,1365,'/w/j/wj06-blue_main_1.jpg'),(9545,89,0,1365,'/w/j/wj06-blue_main_1.jpg'),(9546,73,0,1365,'Juno Jacket-XS-Blue'),(9547,106,0,1366,'container2'),(9548,124,0,1366,'0'),(9549,121,0,1366,'juno-jacket-xs-green'),(9550,87,0,1366,'/w/j/wj06-green_main_1.jpg'),(9551,88,0,1366,'/w/j/wj06-green_main_1.jpg'),(9552,89,0,1366,'/w/j/wj06-green_main_1.jpg'),(9553,73,0,1366,'Juno Jacket-XS-Green'),(9554,106,0,1367,'container2'),(9555,124,0,1367,'0'),(9556,121,0,1367,'juno-jacket-xs-purple'),(9557,87,0,1367,'/w/j/wj06-purple_main_1.jpg'),(9558,88,0,1367,'/w/j/wj06-purple_main_1.jpg'),(9559,89,0,1367,'/w/j/wj06-purple_main_1.jpg'),(9560,73,0,1367,'Juno Jacket-XS-Purple'),(9561,106,0,1368,'container2'),(9562,124,0,1368,'0'),(9563,121,0,1368,'juno-jacket-s-blue'),(9564,87,0,1368,'/w/j/wj06-blue_main_1.jpg'),(9565,88,0,1368,'/w/j/wj06-blue_main_1.jpg'),(9566,89,0,1368,'/w/j/wj06-blue_main_1.jpg'),(9567,73,0,1368,'Juno Jacket-S-Blue'),(9568,106,0,1369,'container2'),(9569,124,0,1369,'0'),(9570,121,0,1369,'juno-jacket-s-green'),(9571,87,0,1369,'/w/j/wj06-green_main_1.jpg'),(9572,88,0,1369,'/w/j/wj06-green_main_1.jpg'),(9573,89,0,1369,'/w/j/wj06-green_main_1.jpg'),(9574,73,0,1369,'Juno Jacket-S-Green'),(9575,106,0,1370,'container2'),(9576,124,0,1370,'0'),(9577,121,0,1370,'juno-jacket-s-purple'),(9578,87,0,1370,'/w/j/wj06-purple_main_1.jpg'),(9579,88,0,1370,'/w/j/wj06-purple_main_1.jpg'),(9580,89,0,1370,'/w/j/wj06-purple_main_1.jpg'),(9581,73,0,1370,'Juno Jacket-S-Purple'),(9582,106,0,1371,'container2'),(9583,124,0,1371,'0'),(9584,121,0,1371,'juno-jacket-m-blue'),(9585,87,0,1371,'/w/j/wj06-blue_main_1.jpg'),(9586,88,0,1371,'/w/j/wj06-blue_main_1.jpg'),(9587,89,0,1371,'/w/j/wj06-blue_main_1.jpg'),(9588,73,0,1371,'Juno Jacket-M-Blue'),(9589,106,0,1372,'container2'),(9590,124,0,1372,'0'),(9591,121,0,1372,'juno-jacket-m-green'),(9592,87,0,1372,'/w/j/wj06-green_main_1.jpg'),(9593,88,0,1372,'/w/j/wj06-green_main_1.jpg'),(9594,89,0,1372,'/w/j/wj06-green_main_1.jpg'),(9595,73,0,1372,'Juno Jacket-M-Green'),(9596,106,0,1373,'container2'),(9597,124,0,1373,'0'),(9598,121,0,1373,'juno-jacket-m-purple'),(9599,87,0,1373,'/w/j/wj06-purple_main_1.jpg'),(9600,88,0,1373,'/w/j/wj06-purple_main_1.jpg'),(9601,89,0,1373,'/w/j/wj06-purple_main_1.jpg'),(9602,73,0,1373,'Juno Jacket-M-Purple'),(9603,106,0,1374,'container2'),(9604,124,0,1374,'0'),(9605,121,0,1374,'juno-jacket-l-blue'),(9606,87,0,1374,'/w/j/wj06-blue_main_1.jpg'),(9607,88,0,1374,'/w/j/wj06-blue_main_1.jpg'),(9608,89,0,1374,'/w/j/wj06-blue_main_1.jpg'),(9609,73,0,1374,'Juno Jacket-L-Blue'),(9610,106,0,1375,'container2'),(9611,124,0,1375,'0'),(9612,121,0,1375,'juno-jacket-l-green'),(9613,87,0,1375,'/w/j/wj06-green_main_1.jpg'),(9614,88,0,1375,'/w/j/wj06-green_main_1.jpg'),(9615,89,0,1375,'/w/j/wj06-green_main_1.jpg'),(9616,73,0,1375,'Juno Jacket-L-Green'),(9617,106,0,1376,'container2'),(9618,124,0,1376,'0'),(9619,121,0,1376,'juno-jacket-l-purple'),(9620,87,0,1376,'/w/j/wj06-purple_main_1.jpg'),(9621,88,0,1376,'/w/j/wj06-purple_main_1.jpg'),(9622,89,0,1376,'/w/j/wj06-purple_main_1.jpg'),(9623,73,0,1376,'Juno Jacket-L-Purple'),(9624,106,0,1377,'container2'),(9625,124,0,1377,'0'),(9626,121,0,1377,'juno-jacket-xl-blue'),(9627,87,0,1377,'/w/j/wj06-blue_main_1.jpg'),(9628,88,0,1377,'/w/j/wj06-blue_main_1.jpg'),(9629,89,0,1377,'/w/j/wj06-blue_main_1.jpg'),(9630,73,0,1377,'Juno Jacket-XL-Blue'),(9631,106,0,1378,'container2'),(9632,124,0,1378,'0'),(9633,121,0,1378,'juno-jacket-xl-green'),(9634,87,0,1378,'/w/j/wj06-green_main_1.jpg'),(9635,88,0,1378,'/w/j/wj06-green_main_1.jpg'),(9636,89,0,1378,'/w/j/wj06-green_main_1.jpg'),(9637,73,0,1378,'Juno Jacket-XL-Green'),(9638,106,0,1379,'container2'),(9639,124,0,1379,'0'),(9640,121,0,1379,'juno-jacket-xl-purple'),(9641,87,0,1379,'/w/j/wj06-purple_main_1.jpg'),(9642,88,0,1379,'/w/j/wj06-purple_main_1.jpg'),(9643,89,0,1379,'/w/j/wj06-purple_main_1.jpg'),(9644,73,0,1379,'Juno Jacket-XL-Purple'),(9645,106,0,1380,'container2'),(9646,124,0,1380,'0'),(9647,121,0,1380,'juno-jacket'),(9648,87,0,1380,'/w/j/wj06-purple_main_1.jpg'),(9649,88,0,1380,'/w/j/wj06-purple_main_1.jpg'),(9650,89,0,1380,'/w/j/wj06-purple_main_1.jpg'),(9651,73,0,1380,'Juno Jacket'),(9652,106,0,1381,'container2'),(9653,124,0,1381,'0'),(9654,121,0,1381,'olivia-1-4-zip-light-jacket-xs-black'),(9655,87,0,1381,'/w/j/wj12-black_main_1.jpg'),(9656,88,0,1381,'/w/j/wj12-black_main_1.jpg'),(9657,89,0,1381,'/w/j/wj12-black_main_1.jpg'),(9658,73,0,1381,'Olivia 1/4 Zip Light Jacket-XS-Black'),(9659,106,0,1382,'container2'),(9660,124,0,1382,'0'),(9661,121,0,1382,'olivia-1-4-zip-light-jacket-xs-blue'),(9662,87,0,1382,'/w/j/wj12-blue_main_1.jpg'),(9663,88,0,1382,'/w/j/wj12-blue_main_1.jpg'),(9664,89,0,1382,'/w/j/wj12-blue_main_1.jpg'),(9665,73,0,1382,'Olivia 1/4 Zip Light Jacket-XS-Blue'),(9666,106,0,1383,'container2'),(9667,124,0,1383,'0'),(9668,121,0,1383,'olivia-1-4-zip-light-jacket-xs-purple'),(9669,87,0,1383,'/w/j/wj12-purple_main_1.jpg'),(9670,88,0,1383,'/w/j/wj12-purple_main_1.jpg'),(9671,89,0,1383,'/w/j/wj12-purple_main_1.jpg'),(9672,73,0,1383,'Olivia 1/4 Zip Light Jacket-XS-Purple'),(9673,106,0,1384,'container2'),(9674,124,0,1384,'0'),(9675,121,0,1384,'olivia-1-4-zip-light-jacket-s-black'),(9676,87,0,1384,'/w/j/wj12-black_main_1.jpg'),(9677,88,0,1384,'/w/j/wj12-black_main_1.jpg'),(9678,89,0,1384,'/w/j/wj12-black_main_1.jpg'),(9679,73,0,1384,'Olivia 1/4 Zip Light Jacket-S-Black'),(9680,106,0,1385,'container2'),(9681,124,0,1385,'0'),(9682,121,0,1385,'olivia-1-4-zip-light-jacket-s-blue'),(9683,87,0,1385,'/w/j/wj12-blue_main_1.jpg'),(9684,88,0,1385,'/w/j/wj12-blue_main_1.jpg'),(9685,89,0,1385,'/w/j/wj12-blue_main_1.jpg'),(9686,73,0,1385,'Olivia 1/4 Zip Light Jacket-S-Blue'),(9687,106,0,1386,'container2'),(9688,124,0,1386,'0'),(9689,121,0,1386,'olivia-1-4-zip-light-jacket-s-purple'),(9690,87,0,1386,'/w/j/wj12-purple_main_1.jpg'),(9691,88,0,1386,'/w/j/wj12-purple_main_1.jpg'),(9692,89,0,1386,'/w/j/wj12-purple_main_1.jpg'),(9693,73,0,1386,'Olivia 1/4 Zip Light Jacket-S-Purple'),(9694,106,0,1387,'container2'),(9695,124,0,1387,'0'),(9696,121,0,1387,'olivia-1-4-zip-light-jacket-m-black'),(9697,87,0,1387,'/w/j/wj12-black_main_1.jpg'),(9698,88,0,1387,'/w/j/wj12-black_main_1.jpg'),(9699,89,0,1387,'/w/j/wj12-black_main_1.jpg'),(9700,73,0,1387,'Olivia 1/4 Zip Light Jacket-M-Black'),(9701,106,0,1388,'container2'),(9702,124,0,1388,'0'),(9703,121,0,1388,'olivia-1-4-zip-light-jacket-m-blue'),(9704,87,0,1388,'/w/j/wj12-blue_main_1.jpg'),(9705,88,0,1388,'/w/j/wj12-blue_main_1.jpg'),(9706,89,0,1388,'/w/j/wj12-blue_main_1.jpg'),(9707,73,0,1388,'Olivia 1/4 Zip Light Jacket-M-Blue'),(9708,106,0,1389,'container2'),(9709,124,0,1389,'0'),(9710,121,0,1389,'olivia-1-4-zip-light-jacket-m-purple'),(9711,87,0,1389,'/w/j/wj12-purple_main_1.jpg'),(9712,88,0,1389,'/w/j/wj12-purple_main_1.jpg'),(9713,89,0,1389,'/w/j/wj12-purple_main_1.jpg'),(9714,73,0,1389,'Olivia 1/4 Zip Light Jacket-M-Purple'),(9715,106,0,1390,'container2'),(9716,124,0,1390,'0'),(9717,121,0,1390,'olivia-1-4-zip-light-jacket-l-black'),(9718,87,0,1390,'/w/j/wj12-black_main_1.jpg'),(9719,88,0,1390,'/w/j/wj12-black_main_1.jpg'),(9720,89,0,1390,'/w/j/wj12-black_main_1.jpg'),(9721,73,0,1390,'Olivia 1/4 Zip Light Jacket-L-Black'),(9722,106,0,1391,'container2'),(9723,124,0,1391,'0'),(9724,121,0,1391,'olivia-1-4-zip-light-jacket-l-blue'),(9725,87,0,1391,'/w/j/wj12-blue_main_1.jpg'),(9726,88,0,1391,'/w/j/wj12-blue_main_1.jpg'),(9727,89,0,1391,'/w/j/wj12-blue_main_1.jpg'),(9728,73,0,1391,'Olivia 1/4 Zip Light Jacket-L-Blue'),(9729,106,0,1392,'container2'),(9730,124,0,1392,'0'),(9731,121,0,1392,'olivia-1-4-zip-light-jacket-l-purple'),(9732,87,0,1392,'/w/j/wj12-purple_main_1.jpg'),(9733,88,0,1392,'/w/j/wj12-purple_main_1.jpg'),(9734,89,0,1392,'/w/j/wj12-purple_main_1.jpg'),(9735,73,0,1392,'Olivia 1/4 Zip Light Jacket-L-Purple'),(9736,106,0,1393,'container2'),(9737,124,0,1393,'0'),(9738,121,0,1393,'olivia-1-4-zip-light-jacket-xl-black'),(9739,87,0,1393,'/w/j/wj12-black_main_1.jpg'),(9740,88,0,1393,'/w/j/wj12-black_main_1.jpg'),(9741,89,0,1393,'/w/j/wj12-black_main_1.jpg'),(9742,73,0,1393,'Olivia 1/4 Zip Light Jacket-XL-Black'),(9743,106,0,1394,'container2'),(9744,124,0,1394,'0'),(9745,121,0,1394,'olivia-1-4-zip-light-jacket-xl-blue'),(9746,87,0,1394,'/w/j/wj12-blue_main_1.jpg'),(9747,88,0,1394,'/w/j/wj12-blue_main_1.jpg'),(9748,89,0,1394,'/w/j/wj12-blue_main_1.jpg'),(9749,73,0,1394,'Olivia 1/4 Zip Light Jacket-XL-Blue'),(9750,106,0,1395,'container2'),(9751,124,0,1395,'0'),(9752,121,0,1395,'olivia-1-4-zip-light-jacket-xl-purple'),(9753,87,0,1395,'/w/j/wj12-purple_main_1.jpg'),(9754,88,0,1395,'/w/j/wj12-purple_main_1.jpg'),(9755,89,0,1395,'/w/j/wj12-purple_main_1.jpg'),(9756,73,0,1395,'Olivia 1/4 Zip Light Jacket-XL-Purple'),(9757,106,0,1396,'container2'),(9758,124,0,1396,'0'),(9759,121,0,1396,'olivia-1-4-zip-light-jacket'),(9760,87,0,1396,'/w/j/wj12-blue_main_1.jpg'),(9761,88,0,1396,'/w/j/wj12-blue_main_1.jpg'),(9762,89,0,1396,'/w/j/wj12-blue_main_1.jpg'),(9763,73,0,1396,'Olivia 1/4 Zip Light Jacket'),(9764,106,0,1397,'container2'),(9765,124,0,1397,'0'),(9766,121,0,1397,'gabrielle-micro-sleeve-top-xs-blue'),(9767,87,0,1397,'/w/s/ws02-blue_main_1.jpg'),(9768,88,0,1397,'/w/s/ws02-blue_main_1.jpg'),(9769,89,0,1397,'/w/s/ws02-blue_main_1.jpg'),(9770,73,0,1397,'Gabrielle Micro Sleeve Top-XS-Blue'),(9771,106,0,1398,'container2'),(9772,124,0,1398,'0'),(9773,121,0,1398,'gabrielle-micro-sleeve-top-xs-green'),(9774,87,0,1398,'/w/s/ws02-green_main_1.jpg'),(9775,88,0,1398,'/w/s/ws02-green_main_1.jpg'),(9776,89,0,1398,'/w/s/ws02-green_main_1.jpg'),(9777,73,0,1398,'Gabrielle Micro Sleeve Top-XS-Green'),(9778,106,0,1399,'container2'),(9779,124,0,1399,'0'),(9780,121,0,1399,'gabrielle-micro-sleeve-top-xs-red'),(9781,87,0,1399,'/w/s/ws02-red_main_1.jpg'),(9782,88,0,1399,'/w/s/ws02-red_main_1.jpg'),(9783,89,0,1399,'/w/s/ws02-red_main_1.jpg'),(9784,73,0,1399,'Gabrielle Micro Sleeve Top-XS-Red'),(9785,106,0,1400,'container2'),(9786,124,0,1400,'0'),(9787,121,0,1400,'gabrielle-micro-sleeve-top-s-blue'),(9788,87,0,1400,'/w/s/ws02-blue_main_1.jpg'),(9789,88,0,1400,'/w/s/ws02-blue_main_1.jpg'),(9790,89,0,1400,'/w/s/ws02-blue_main_1.jpg'),(9791,73,0,1400,'Gabrielle Micro Sleeve Top-S-Blue'),(9792,106,0,1401,'container2'),(9793,124,0,1401,'0'),(9794,121,0,1401,'gabrielle-micro-sleeve-top-s-green'),(9795,87,0,1401,'/w/s/ws02-green_main_1.jpg'),(9796,88,0,1401,'/w/s/ws02-green_main_1.jpg'),(9797,89,0,1401,'/w/s/ws02-green_main_1.jpg'),(9798,73,0,1401,'Gabrielle Micro Sleeve Top-S-Green'),(9799,106,0,1402,'container2'),(9800,124,0,1402,'0'),(9801,121,0,1402,'gabrielle-micro-sleeve-top-s-red'),(9802,87,0,1402,'/w/s/ws02-red_main_1.jpg'),(9803,88,0,1402,'/w/s/ws02-red_main_1.jpg'),(9804,89,0,1402,'/w/s/ws02-red_main_1.jpg'),(9805,73,0,1402,'Gabrielle Micro Sleeve Top-S-Red'),(9806,106,0,1403,'container2'),(9807,124,0,1403,'0'),(9808,121,0,1403,'gabrielle-micro-sleeve-top-m-blue'),(9809,87,0,1403,'/w/s/ws02-blue_main_1.jpg'),(9810,88,0,1403,'/w/s/ws02-blue_main_1.jpg'),(9811,89,0,1403,'/w/s/ws02-blue_main_1.jpg'),(9812,73,0,1403,'Gabrielle Micro Sleeve Top-M-Blue'),(9813,106,0,1404,'container2'),(9814,124,0,1404,'0'),(9815,121,0,1404,'gabrielle-micro-sleeve-top-m-green'),(9816,87,0,1404,'/w/s/ws02-green_main_1.jpg'),(9817,88,0,1404,'/w/s/ws02-green_main_1.jpg'),(9818,89,0,1404,'/w/s/ws02-green_main_1.jpg'),(9819,73,0,1404,'Gabrielle Micro Sleeve Top-M-Green'),(9820,106,0,1405,'container2'),(9821,124,0,1405,'0'),(9822,121,0,1405,'gabrielle-micro-sleeve-top-m-red'),(9823,87,0,1405,'/w/s/ws02-red_main_1.jpg'),(9824,88,0,1405,'/w/s/ws02-red_main_1.jpg'),(9825,89,0,1405,'/w/s/ws02-red_main_1.jpg'),(9826,73,0,1405,'Gabrielle Micro Sleeve Top-M-Red'),(9827,106,0,1406,'container2'),(9828,124,0,1406,'0'),(9829,121,0,1406,'gabrielle-micro-sleeve-top-l-blue'),(9830,87,0,1406,'/w/s/ws02-blue_main_1.jpg'),(9831,88,0,1406,'/w/s/ws02-blue_main_1.jpg'),(9832,89,0,1406,'/w/s/ws02-blue_main_1.jpg'),(9833,73,0,1406,'Gabrielle Micro Sleeve Top-L-Blue'),(9834,106,0,1407,'container2'),(9835,124,0,1407,'0'),(9836,121,0,1407,'gabrielle-micro-sleeve-top-l-green'),(9837,87,0,1407,'/w/s/ws02-green_main_1.jpg'),(9838,88,0,1407,'/w/s/ws02-green_main_1.jpg'),(9839,89,0,1407,'/w/s/ws02-green_main_1.jpg'),(9840,73,0,1407,'Gabrielle Micro Sleeve Top-L-Green'),(9841,106,0,1408,'container2'),(9842,124,0,1408,'0'),(9843,121,0,1408,'gabrielle-micro-sleeve-top-l-red'),(9844,87,0,1408,'/w/s/ws02-red_main_1.jpg'),(9845,88,0,1408,'/w/s/ws02-red_main_1.jpg'),(9846,89,0,1408,'/w/s/ws02-red_main_1.jpg'),(9847,73,0,1408,'Gabrielle Micro Sleeve Top-L-Red'),(9848,106,0,1409,'container2'),(9849,124,0,1409,'0'),(9850,121,0,1409,'gabrielle-micro-sleeve-top-xl-blue'),(9851,87,0,1409,'/w/s/ws02-blue_main_1.jpg'),(9852,88,0,1409,'/w/s/ws02-blue_main_1.jpg'),(9853,89,0,1409,'/w/s/ws02-blue_main_1.jpg'),(9854,73,0,1409,'Gabrielle Micro Sleeve Top-XL-Blue'),(9855,106,0,1410,'container2'),(9856,124,0,1410,'0'),(9857,121,0,1410,'gabrielle-micro-sleeve-top-xl-green'),(9858,87,0,1410,'/w/s/ws02-green_main_1.jpg'),(9859,88,0,1410,'/w/s/ws02-green_main_1.jpg'),(9860,89,0,1410,'/w/s/ws02-green_main_1.jpg'),(9861,73,0,1410,'Gabrielle Micro Sleeve Top-XL-Green'),(9862,106,0,1411,'container2'),(9863,124,0,1411,'0'),(9864,121,0,1411,'gabrielle-micro-sleeve-top-xl-red'),(9865,87,0,1411,'/w/s/ws02-red_main_1.jpg'),(9866,88,0,1411,'/w/s/ws02-red_main_1.jpg'),(9867,89,0,1411,'/w/s/ws02-red_main_1.jpg'),(9868,73,0,1411,'Gabrielle Micro Sleeve Top-XL-Red'),(9869,106,0,1412,'container2'),(9870,124,0,1412,'0'),(9871,121,0,1412,'gabrielle-micro-sleeve-top'),(9872,87,0,1412,'/w/s/ws02-green_main_1.jpg'),(9873,88,0,1412,'/w/s/ws02-green_main_1.jpg'),(9874,89,0,1412,'/w/s/ws02-green_main_1.jpg'),(9875,73,0,1412,'Gabrielle Micro Sleeve Top'),(9876,106,0,1413,'container2'),(9877,124,0,1413,'0'),(9878,121,0,1413,'iris-workout-top-xs-blue'),(9879,87,0,1413,'/w/s/ws03-blue_main_1.jpg'),(9880,88,0,1413,'/w/s/ws03-blue_main_1.jpg'),(9881,89,0,1413,'/w/s/ws03-blue_main_1.jpg'),(9882,73,0,1413,'Iris Workout Top-XS-Blue'),(9883,106,0,1414,'container2'),(9884,124,0,1414,'0'),(9885,121,0,1414,'iris-workout-top-xs-green'),(9886,87,0,1414,'/w/s/ws03-green_main_1.jpg'),(9887,88,0,1414,'/w/s/ws03-green_main_1.jpg'),(9888,89,0,1414,'/w/s/ws03-green_main_1.jpg'),(9889,73,0,1414,'Iris Workout Top-XS-Green'),(9890,106,0,1415,'container2'),(9891,124,0,1415,'0'),(9892,121,0,1415,'iris-workout-top-xs-red'),(9893,87,0,1415,'/w/s/ws03-red_main_1.jpg'),(9894,88,0,1415,'/w/s/ws03-red_main_1.jpg'),(9895,89,0,1415,'/w/s/ws03-red_main_1.jpg'),(9896,73,0,1415,'Iris Workout Top-XS-Red'),(9897,106,0,1416,'container2'),(9898,124,0,1416,'0'),(9899,121,0,1416,'iris-workout-top-s-blue'),(9900,87,0,1416,'/w/s/ws03-blue_main_1.jpg'),(9901,88,0,1416,'/w/s/ws03-blue_main_1.jpg'),(9902,89,0,1416,'/w/s/ws03-blue_main_1.jpg'),(9903,73,0,1416,'Iris Workout Top-S-Blue'),(9904,106,0,1417,'container2'),(9905,124,0,1417,'0'),(9906,121,0,1417,'iris-workout-top-s-green'),(9907,87,0,1417,'/w/s/ws03-green_main_1.jpg'),(9908,88,0,1417,'/w/s/ws03-green_main_1.jpg'),(9909,89,0,1417,'/w/s/ws03-green_main_1.jpg'),(9910,73,0,1417,'Iris Workout Top-S-Green'),(9911,106,0,1418,'container2'),(9912,124,0,1418,'0'),(9913,121,0,1418,'iris-workout-top-s-red'),(9914,87,0,1418,'/w/s/ws03-red_main_1.jpg'),(9915,88,0,1418,'/w/s/ws03-red_main_1.jpg'),(9916,89,0,1418,'/w/s/ws03-red_main_1.jpg'),(9917,73,0,1418,'Iris Workout Top-S-Red'),(9918,106,0,1419,'container2'),(9919,124,0,1419,'0'),(9920,121,0,1419,'iris-workout-top-m-blue'),(9921,87,0,1419,'/w/s/ws03-blue_main_1.jpg'),(9922,88,0,1419,'/w/s/ws03-blue_main_1.jpg'),(9923,89,0,1419,'/w/s/ws03-blue_main_1.jpg'),(9924,73,0,1419,'Iris Workout Top-M-Blue'),(9925,106,0,1420,'container2'),(9926,124,0,1420,'0'),(9927,121,0,1420,'iris-workout-top-m-green'),(9928,87,0,1420,'/w/s/ws03-green_main_1.jpg'),(9929,88,0,1420,'/w/s/ws03-green_main_1.jpg'),(9930,89,0,1420,'/w/s/ws03-green_main_1.jpg'),(9931,73,0,1420,'Iris Workout Top-M-Green'),(9932,106,0,1421,'container2'),(9933,124,0,1421,'0'),(9934,121,0,1421,'iris-workout-top-m-red'),(9935,87,0,1421,'/w/s/ws03-red_main_1.jpg'),(9936,88,0,1421,'/w/s/ws03-red_main_1.jpg'),(9937,89,0,1421,'/w/s/ws03-red_main_1.jpg'),(9938,73,0,1421,'Iris Workout Top-M-Red'),(9939,106,0,1422,'container2'),(9940,124,0,1422,'0'),(9941,121,0,1422,'iris-workout-top-l-blue'),(9942,87,0,1422,'/w/s/ws03-blue_main_1.jpg'),(9943,88,0,1422,'/w/s/ws03-blue_main_1.jpg'),(9944,89,0,1422,'/w/s/ws03-blue_main_1.jpg'),(9945,73,0,1422,'Iris Workout Top-L-Blue'),(9946,106,0,1423,'container2'),(9947,124,0,1423,'0'),(9948,121,0,1423,'iris-workout-top-l-green'),(9949,87,0,1423,'/w/s/ws03-green_main_1.jpg'),(9950,88,0,1423,'/w/s/ws03-green_main_1.jpg'),(9951,89,0,1423,'/w/s/ws03-green_main_1.jpg'),(9952,73,0,1423,'Iris Workout Top-L-Green'),(9953,106,0,1424,'container2'),(9954,124,0,1424,'0'),(9955,121,0,1424,'iris-workout-top-l-red'),(9956,87,0,1424,'/w/s/ws03-red_main_1.jpg'),(9957,88,0,1424,'/w/s/ws03-red_main_1.jpg'),(9958,89,0,1424,'/w/s/ws03-red_main_1.jpg'),(9959,73,0,1424,'Iris Workout Top-L-Red'),(9960,106,0,1425,'container2'),(9961,124,0,1425,'0'),(9962,121,0,1425,'iris-workout-top-xl-blue'),(9963,87,0,1425,'/w/s/ws03-blue_main_1.jpg'),(9964,88,0,1425,'/w/s/ws03-blue_main_1.jpg'),(9965,89,0,1425,'/w/s/ws03-blue_main_1.jpg'),(9966,73,0,1425,'Iris Workout Top-XL-Blue'),(9967,106,0,1426,'container2'),(9968,124,0,1426,'0'),(9969,121,0,1426,'iris-workout-top-xl-green'),(9970,87,0,1426,'/w/s/ws03-green_main_1.jpg'),(9971,88,0,1426,'/w/s/ws03-green_main_1.jpg'),(9972,89,0,1426,'/w/s/ws03-green_main_1.jpg'),(9973,73,0,1426,'Iris Workout Top-XL-Green'),(9974,106,0,1427,'container2'),(9975,124,0,1427,'0'),(9976,121,0,1427,'iris-workout-top-xl-red'),(9977,87,0,1427,'/w/s/ws03-red_main_1.jpg'),(9978,88,0,1427,'/w/s/ws03-red_main_1.jpg'),(9979,89,0,1427,'/w/s/ws03-red_main_1.jpg'),(9980,73,0,1427,'Iris Workout Top-XL-Red'),(9981,106,0,1428,'container2'),(9982,124,0,1428,'0'),(9983,121,0,1428,'iris-workout-top'),(9984,87,0,1428,'/w/s/ws03-red_main_1.jpg'),(9985,88,0,1428,'/w/s/ws03-red_main_1.jpg'),(9986,89,0,1428,'/w/s/ws03-red_main_1.jpg'),(9987,73,0,1428,'Iris Workout Top'),(9988,106,0,1429,'container2'),(9989,124,0,1429,'0'),(9990,121,0,1429,'layla-tee-xs-blue'),(9991,87,0,1429,'/w/s/ws04-blue_main_1.jpg'),(9992,88,0,1429,'/w/s/ws04-blue_main_1.jpg'),(9993,89,0,1429,'/w/s/ws04-blue_main_1.jpg'),(9994,73,0,1429,'Layla Tee-XS-Blue'),(9995,106,0,1430,'container2'),(9996,124,0,1430,'0'),(9997,121,0,1430,'layla-tee-xs-green'),(9998,87,0,1430,'/w/s/ws04-green_main_1.jpg'),(9999,88,0,1430,'/w/s/ws04-green_main_1.jpg'),(10000,89,0,1430,'/w/s/ws04-green_main_1.jpg'),(10001,73,0,1430,'Layla Tee-XS-Green'),(10002,106,0,1431,'container2'),(10003,124,0,1431,'0'),(10004,121,0,1431,'layla-tee-xs-red'),(10005,87,0,1431,'/w/s/ws04-red_main_1.jpg'),(10006,88,0,1431,'/w/s/ws04-red_main_1.jpg'),(10007,89,0,1431,'/w/s/ws04-red_main_1.jpg'),(10008,73,0,1431,'Layla Tee-XS-Red'),(10009,106,0,1432,'container2'),(10010,124,0,1432,'0'),(10011,121,0,1432,'layla-tee-s-blue'),(10012,87,0,1432,'/w/s/ws04-blue_main_1.jpg'),(10013,88,0,1432,'/w/s/ws04-blue_main_1.jpg'),(10014,89,0,1432,'/w/s/ws04-blue_main_1.jpg'),(10015,73,0,1432,'Layla Tee-S-Blue'),(10016,106,0,1433,'container2'),(10017,124,0,1433,'0'),(10018,121,0,1433,'layla-tee-s-green'),(10019,87,0,1433,'/w/s/ws04-green_main_1.jpg'),(10020,88,0,1433,'/w/s/ws04-green_main_1.jpg'),(10021,89,0,1433,'/w/s/ws04-green_main_1.jpg'),(10022,73,0,1433,'Layla Tee-S-Green'),(10023,106,0,1434,'container2'),(10024,124,0,1434,'0'),(10025,121,0,1434,'layla-tee-s-red'),(10026,87,0,1434,'/w/s/ws04-red_main_1.jpg'),(10027,88,0,1434,'/w/s/ws04-red_main_1.jpg'),(10028,89,0,1434,'/w/s/ws04-red_main_1.jpg'),(10029,73,0,1434,'Layla Tee-S-Red'),(10030,106,0,1435,'container2'),(10031,124,0,1435,'0'),(10032,121,0,1435,'layla-tee-m-blue'),(10033,87,0,1435,'/w/s/ws04-blue_main_1.jpg'),(10034,88,0,1435,'/w/s/ws04-blue_main_1.jpg'),(10035,89,0,1435,'/w/s/ws04-blue_main_1.jpg'),(10036,73,0,1435,'Layla Tee-M-Blue'),(10037,106,0,1436,'container2'),(10038,124,0,1436,'0'),(10039,121,0,1436,'layla-tee-m-green'),(10040,87,0,1436,'/w/s/ws04-green_main_1.jpg'),(10041,88,0,1436,'/w/s/ws04-green_main_1.jpg'),(10042,89,0,1436,'/w/s/ws04-green_main_1.jpg'),(10043,73,0,1436,'Layla Tee-M-Green'),(10044,106,0,1437,'container2'),(10045,124,0,1437,'0'),(10046,121,0,1437,'layla-tee-m-red'),(10047,87,0,1437,'/w/s/ws04-red_main_1.jpg'),(10048,88,0,1437,'/w/s/ws04-red_main_1.jpg'),(10049,89,0,1437,'/w/s/ws04-red_main_1.jpg'),(10050,73,0,1437,'Layla Tee-M-Red'),(10051,106,0,1438,'container2'),(10052,124,0,1438,'0'),(10053,121,0,1438,'layla-tee-l-blue'),(10054,87,0,1438,'/w/s/ws04-blue_main_1.jpg'),(10055,88,0,1438,'/w/s/ws04-blue_main_1.jpg'),(10056,89,0,1438,'/w/s/ws04-blue_main_1.jpg'),(10057,73,0,1438,'Layla Tee-L-Blue'),(10058,106,0,1439,'container2'),(10059,124,0,1439,'0'),(10060,121,0,1439,'layla-tee-l-green'),(10061,87,0,1439,'/w/s/ws04-green_main_1.jpg'),(10062,88,0,1439,'/w/s/ws04-green_main_1.jpg'),(10063,89,0,1439,'/w/s/ws04-green_main_1.jpg'),(10064,73,0,1439,'Layla Tee-L-Green'),(10065,106,0,1440,'container2'),(10066,124,0,1440,'0'),(10067,121,0,1440,'layla-tee-l-red'),(10068,87,0,1440,'/w/s/ws04-red_main_1.jpg'),(10069,88,0,1440,'/w/s/ws04-red_main_1.jpg'),(10070,89,0,1440,'/w/s/ws04-red_main_1.jpg'),(10071,73,0,1440,'Layla Tee-L-Red'),(10072,106,0,1441,'container2'),(10073,124,0,1441,'0'),(10074,121,0,1441,'layla-tee-xl-blue'),(10075,87,0,1441,'/w/s/ws04-blue_main_1.jpg'),(10076,88,0,1441,'/w/s/ws04-blue_main_1.jpg'),(10077,89,0,1441,'/w/s/ws04-blue_main_1.jpg'),(10078,73,0,1441,'Layla Tee-XL-Blue'),(10079,106,0,1442,'container2'),(10080,124,0,1442,'0'),(10081,121,0,1442,'layla-tee-xl-green'),(10082,87,0,1442,'/w/s/ws04-green_main_1.jpg'),(10083,88,0,1442,'/w/s/ws04-green_main_1.jpg'),(10084,89,0,1442,'/w/s/ws04-green_main_1.jpg'),(10085,73,0,1442,'Layla Tee-XL-Green'),(10086,106,0,1443,'container2'),(10087,124,0,1443,'0'),(10088,121,0,1443,'layla-tee-xl-red'),(10089,87,0,1443,'/w/s/ws04-red_main_1.jpg'),(10090,88,0,1443,'/w/s/ws04-red_main_1.jpg'),(10091,89,0,1443,'/w/s/ws04-red_main_1.jpg'),(10092,73,0,1443,'Layla Tee-XL-Red'),(10093,106,0,1444,'container2'),(10094,124,0,1444,'0'),(10095,121,0,1444,'layla-tee'),(10096,87,0,1444,'/w/s/ws04-green_main_1.jpg'),(10097,88,0,1444,'/w/s/ws04-green_main_1.jpg'),(10098,89,0,1444,'/w/s/ws04-green_main_1.jpg'),(10099,73,0,1444,'Layla Tee'),(10100,106,0,1445,'container2'),(10101,124,0,1445,'0'),(10102,121,0,1445,'elisa-evercool-trade-tee-xs-gray'),(10103,87,0,1445,'/w/s/ws06-gray_main_1.jpg'),(10104,88,0,1445,'/w/s/ws06-gray_main_1.jpg'),(10105,89,0,1445,'/w/s/ws06-gray_main_1.jpg'),(10106,73,0,1445,'Elisa EverCool&trade; Tee-XS-Gray'),(10107,106,0,1446,'container2'),(10108,124,0,1446,'0'),(10109,121,0,1446,'elisa-evercool-trade-tee-xs-purple'),(10110,87,0,1446,'/w/s/ws06-purple_main_1.jpg'),(10111,88,0,1446,'/w/s/ws06-purple_main_1.jpg'),(10112,89,0,1446,'/w/s/ws06-purple_main_1.jpg'),(10113,73,0,1446,'Elisa EverCool&trade; Tee-XS-Purple'),(10114,106,0,1447,'container2'),(10115,124,0,1447,'0'),(10116,121,0,1447,'elisa-evercool-trade-tee-xs-red'),(10117,87,0,1447,'/w/s/ws06-red_main_1.jpg'),(10118,88,0,1447,'/w/s/ws06-red_main_1.jpg'),(10119,89,0,1447,'/w/s/ws06-red_main_1.jpg'),(10120,73,0,1447,'Elisa EverCool&trade; Tee-XS-Red'),(10121,106,0,1448,'container2'),(10122,124,0,1448,'0'),(10123,121,0,1448,'elisa-evercool-trade-tee-s-gray'),(10124,87,0,1448,'/w/s/ws06-gray_main_2.jpg'),(10125,88,0,1448,'/w/s/ws06-gray_main_2.jpg'),(10126,89,0,1448,'/w/s/ws06-gray_main_2.jpg'),(10127,73,0,1448,'Elisa EverCool&trade; Tee-S-Gray'),(10128,106,0,1449,'container2'),(10129,124,0,1449,'0'),(10130,121,0,1449,'elisa-evercool-trade-tee-s-purple'),(10131,87,0,1449,'/w/s/ws06-purple_main_2.jpg'),(10132,88,0,1449,'/w/s/ws06-purple_main_2.jpg'),(10133,89,0,1449,'/w/s/ws06-purple_main_2.jpg'),(10134,73,0,1449,'Elisa EverCool&trade; Tee-S-Purple'),(10135,106,0,1450,'container2'),(10136,124,0,1450,'0'),(10137,121,0,1450,'elisa-evercool-trade-tee-s-red'),(10138,87,0,1450,'/w/s/ws06-red_main_1.jpg'),(10139,88,0,1450,'/w/s/ws06-red_main_1.jpg'),(10140,89,0,1450,'/w/s/ws06-red_main_1.jpg'),(10141,73,0,1450,'Elisa EverCool&trade; Tee-S-Red'),(10142,106,0,1451,'container2'),(10143,124,0,1451,'0'),(10144,121,0,1451,'elisa-evercool-trade-tee-m-gray'),(10145,87,0,1451,'/w/s/ws06-gray_main_2.jpg'),(10146,88,0,1451,'/w/s/ws06-gray_main_2.jpg'),(10147,89,0,1451,'/w/s/ws06-gray_main_2.jpg'),(10148,73,0,1451,'Elisa EverCool&trade; Tee-M-Gray'),(10149,106,0,1452,'container2'),(10150,124,0,1452,'0'),(10151,121,0,1452,'elisa-evercool-trade-tee-m-purple'),(10152,87,0,1452,'/w/s/ws06-purple_main_2.jpg'),(10153,88,0,1452,'/w/s/ws06-purple_main_2.jpg'),(10154,89,0,1452,'/w/s/ws06-purple_main_2.jpg'),(10155,73,0,1452,'Elisa EverCool&trade; Tee-M-Purple'),(10156,106,0,1453,'container2'),(10157,124,0,1453,'0'),(10158,121,0,1453,'elisa-evercool-trade-tee-m-red'),(10159,87,0,1453,'/w/s/ws06-red_main_1.jpg'),(10160,88,0,1453,'/w/s/ws06-red_main_1.jpg'),(10161,89,0,1453,'/w/s/ws06-red_main_1.jpg'),(10162,73,0,1453,'Elisa EverCool&trade; Tee-M-Red'),(10163,106,0,1454,'container2'),(10164,124,0,1454,'0'),(10165,121,0,1454,'elisa-evercool-trade-tee-l-gray'),(10166,87,0,1454,'/w/s/ws06-gray_main_2.jpg'),(10167,88,0,1454,'/w/s/ws06-gray_main_2.jpg'),(10168,89,0,1454,'/w/s/ws06-gray_main_2.jpg'),(10169,73,0,1454,'Elisa EverCool&trade; Tee-L-Gray'),(10170,106,0,1455,'container2'),(10171,124,0,1455,'0'),(10172,121,0,1455,'elisa-evercool-trade-tee-l-purple'),(10173,87,0,1455,'/w/s/ws06-purple_main_2.jpg'),(10174,88,0,1455,'/w/s/ws06-purple_main_2.jpg'),(10175,89,0,1455,'/w/s/ws06-purple_main_2.jpg'),(10176,73,0,1455,'Elisa EverCool&trade; Tee-L-Purple'),(10177,106,0,1456,'container2'),(10178,124,0,1456,'0'),(10179,121,0,1456,'elisa-evercool-trade-tee-l-red'),(10180,87,0,1456,'/w/s/ws06-red_main_1.jpg'),(10181,88,0,1456,'/w/s/ws06-red_main_1.jpg'),(10182,89,0,1456,'/w/s/ws06-red_main_1.jpg'),(10183,73,0,1456,'Elisa EverCool&trade; Tee-L-Red'),(10184,106,0,1457,'container2'),(10185,124,0,1457,'0'),(10186,121,0,1457,'elisa-evercool-trade-tee-xl-gray'),(10187,87,0,1457,'/w/s/ws06-gray_main_2.jpg'),(10188,88,0,1457,'/w/s/ws06-gray_main_2.jpg'),(10189,89,0,1457,'/w/s/ws06-gray_main_2.jpg'),(10190,73,0,1457,'Elisa EverCool&trade; Tee-XL-Gray'),(10191,106,0,1458,'container2'),(10192,124,0,1458,'0'),(10193,121,0,1458,'elisa-evercool-trade-tee-xl-purple'),(10194,87,0,1458,'/w/s/ws06-purple_main_2.jpg'),(10195,88,0,1458,'/w/s/ws06-purple_main_2.jpg'),(10196,89,0,1458,'/w/s/ws06-purple_main_2.jpg'),(10197,73,0,1458,'Elisa EverCool&trade; Tee-XL-Purple'),(10198,106,0,1459,'container2'),(10199,124,0,1459,'0'),(10200,121,0,1459,'elisa-evercool-trade-tee-xl-red'),(10201,87,0,1459,'/w/s/ws06-red_main_1.jpg'),(10202,88,0,1459,'/w/s/ws06-red_main_1.jpg'),(10203,89,0,1459,'/w/s/ws06-red_main_1.jpg'),(10204,73,0,1459,'Elisa EverCool&trade; Tee-XL-Red'),(10205,106,0,1460,'container2'),(10206,124,0,1460,'0'),(10207,121,0,1460,'elisa-evercool-trade-tee'),(10208,87,0,1460,'/w/s/ws06-purple_main_2.jpg'),(10209,88,0,1460,'/w/s/ws06-purple_main_2.jpg'),(10210,89,0,1460,'/w/s/ws06-purple_main_2.jpg'),(10211,73,0,1460,'Elisa EverCool&trade; Tee'),(10212,106,0,1461,'container2'),(10213,124,0,1461,'0'),(10214,121,0,1461,'juliana-short-sleeve-tee-xs-black'),(10215,87,0,1461,'/w/s/ws07-black_main_1.jpg'),(10216,88,0,1461,'/w/s/ws07-black_main_1.jpg'),(10217,89,0,1461,'/w/s/ws07-black_main_1.jpg'),(10218,73,0,1461,'Juliana Short-Sleeve Tee-XS-Black'),(10219,106,0,1462,'container2'),(10220,124,0,1462,'0'),(10221,121,0,1462,'juliana-short-sleeve-tee-xs-white'),(10222,87,0,1462,'/w/s/ws07-white_main_1.jpg'),(10223,88,0,1462,'/w/s/ws07-white_main_1.jpg'),(10224,89,0,1462,'/w/s/ws07-white_main_1.jpg'),(10225,73,0,1462,'Juliana Short-Sleeve Tee-XS-White'),(10226,106,0,1463,'container2'),(10227,124,0,1463,'0'),(10228,121,0,1463,'juliana-short-sleeve-tee-xs-yellow'),(10229,87,0,1463,'/w/s/ws07-yellow_main_1.jpg'),(10230,88,0,1463,'/w/s/ws07-yellow_main_1.jpg'),(10231,89,0,1463,'/w/s/ws07-yellow_main_1.jpg'),(10232,73,0,1463,'Juliana Short-Sleeve Tee-XS-Yellow'),(10233,106,0,1464,'container2'),(10234,124,0,1464,'0'),(10235,121,0,1464,'juliana-short-sleeve-tee-s-black'),(10236,87,0,1464,'/w/s/ws07-black_main_1.jpg'),(10237,88,0,1464,'/w/s/ws07-black_main_1.jpg'),(10238,89,0,1464,'/w/s/ws07-black_main_1.jpg'),(10239,73,0,1464,'Juliana Short-Sleeve Tee-S-Black'),(10240,106,0,1465,'container2'),(10241,124,0,1465,'0'),(10242,121,0,1465,'juliana-short-sleeve-tee-s-white'),(10243,87,0,1465,'/w/s/ws07-white_main_1.jpg'),(10244,88,0,1465,'/w/s/ws07-white_main_1.jpg'),(10245,89,0,1465,'/w/s/ws07-white_main_1.jpg'),(10246,73,0,1465,'Juliana Short-Sleeve Tee-S-White'),(10247,106,0,1466,'container2'),(10248,124,0,1466,'0'),(10249,121,0,1466,'juliana-short-sleeve-tee-s-yellow'),(10250,87,0,1466,'/w/s/ws07-yellow_main_1.jpg'),(10251,88,0,1466,'/w/s/ws07-yellow_main_1.jpg'),(10252,89,0,1466,'/w/s/ws07-yellow_main_1.jpg'),(10253,73,0,1466,'Juliana Short-Sleeve Tee-S-Yellow'),(10254,106,0,1467,'container2'),(10255,124,0,1467,'0'),(10256,121,0,1467,'juliana-short-sleeve-tee-m-black'),(10257,87,0,1467,'/w/s/ws07-black_main_1.jpg'),(10258,88,0,1467,'/w/s/ws07-black_main_1.jpg'),(10259,89,0,1467,'/w/s/ws07-black_main_1.jpg'),(10260,73,0,1467,'Juliana Short-Sleeve Tee-M-Black'),(10261,106,0,1468,'container2'),(10262,124,0,1468,'0'),(10263,121,0,1468,'juliana-short-sleeve-tee-m-white'),(10264,87,0,1468,'/w/s/ws07-white_main_1.jpg'),(10265,88,0,1468,'/w/s/ws07-white_main_1.jpg'),(10266,89,0,1468,'/w/s/ws07-white_main_1.jpg'),(10267,73,0,1468,'Juliana Short-Sleeve Tee-M-White'),(10268,106,0,1469,'container2'),(10269,124,0,1469,'0'),(10270,121,0,1469,'juliana-short-sleeve-tee-m-yellow'),(10271,87,0,1469,'/w/s/ws07-yellow_main_1.jpg'),(10272,88,0,1469,'/w/s/ws07-yellow_main_1.jpg'),(10273,89,0,1469,'/w/s/ws07-yellow_main_1.jpg'),(10274,73,0,1469,'Juliana Short-Sleeve Tee-M-Yellow'),(10275,106,0,1470,'container2'),(10276,124,0,1470,'0'),(10277,121,0,1470,'juliana-short-sleeve-tee-l-black'),(10278,87,0,1470,'/w/s/ws07-black_main_1.jpg'),(10279,88,0,1470,'/w/s/ws07-black_main_1.jpg'),(10280,89,0,1470,'/w/s/ws07-black_main_1.jpg'),(10281,73,0,1470,'Juliana Short-Sleeve Tee-L-Black'),(10282,106,0,1471,'container2'),(10283,124,0,1471,'0'),(10284,121,0,1471,'juliana-short-sleeve-tee-l-white'),(10285,87,0,1471,'/w/s/ws07-white_main_1.jpg'),(10286,88,0,1471,'/w/s/ws07-white_main_1.jpg'),(10287,89,0,1471,'/w/s/ws07-white_main_1.jpg'),(10288,73,0,1471,'Juliana Short-Sleeve Tee-L-White'),(10289,106,0,1472,'container2'),(10290,124,0,1472,'0'),(10291,121,0,1472,'juliana-short-sleeve-tee-l-yellow'),(10292,87,0,1472,'/w/s/ws07-yellow_main_1.jpg'),(10293,88,0,1472,'/w/s/ws07-yellow_main_1.jpg'),(10294,89,0,1472,'/w/s/ws07-yellow_main_1.jpg'),(10295,73,0,1472,'Juliana Short-Sleeve Tee-L-Yellow'),(10296,106,0,1473,'container2'),(10297,124,0,1473,'0'),(10298,121,0,1473,'juliana-short-sleeve-tee-xl-black'),(10299,87,0,1473,'/w/s/ws07-black_main_1.jpg'),(10300,88,0,1473,'/w/s/ws07-black_main_1.jpg'),(10301,89,0,1473,'/w/s/ws07-black_main_1.jpg'),(10302,73,0,1473,'Juliana Short-Sleeve Tee-XL-Black'),(10303,106,0,1474,'container2'),(10304,124,0,1474,'0'),(10305,121,0,1474,'juliana-short-sleeve-tee-xl-white'),(10306,87,0,1474,'/w/s/ws07-white_main_1.jpg'),(10307,88,0,1474,'/w/s/ws07-white_main_1.jpg'),(10308,89,0,1474,'/w/s/ws07-white_main_1.jpg'),(10309,73,0,1474,'Juliana Short-Sleeve Tee-XL-White'),(10310,106,0,1475,'container2'),(10311,124,0,1475,'0'),(10312,121,0,1475,'juliana-short-sleeve-tee-xl-yellow'),(10313,87,0,1475,'/w/s/ws07-yellow_main_1.jpg'),(10314,88,0,1475,'/w/s/ws07-yellow_main_1.jpg'),(10315,89,0,1475,'/w/s/ws07-yellow_main_1.jpg'),(10316,73,0,1475,'Juliana Short-Sleeve Tee-XL-Yellow'),(10317,106,0,1476,'container2'),(10318,124,0,1476,'0'),(10319,121,0,1476,'juliana-short-sleeve-tee'),(10320,87,0,1476,'/w/s/ws07-black_main_1.jpg'),(10321,88,0,1476,'/w/s/ws07-black_main_1.jpg'),(10322,89,0,1476,'/w/s/ws07-black_main_1.jpg'),(10323,73,0,1476,'Juliana Short-Sleeve Tee'),(10324,106,0,1477,'container2'),(10325,124,0,1477,'0'),(10326,121,0,1477,'minerva-lumatech-trade-v-tee-xs-black'),(10327,87,0,1477,'/w/s/ws08-black_main_1.jpg'),(10328,88,0,1477,'/w/s/ws08-black_main_1.jpg'),(10329,89,0,1477,'/w/s/ws08-black_main_1.jpg'),(10330,73,0,1477,'Minerva LumaTech&trade; V-Tee-XS-Black'),(10331,106,0,1478,'container2'),(10332,124,0,1478,'0'),(10333,121,0,1478,'minerva-lumatech-trade-v-tee-xs-blue'),(10334,87,0,1478,'/w/s/ws08-blue_main_1.jpg'),(10335,88,0,1478,'/w/s/ws08-blue_main_1.jpg'),(10336,89,0,1478,'/w/s/ws08-blue_main_1.jpg'),(10337,73,0,1478,'Minerva LumaTech&trade; V-Tee-XS-Blue'),(10338,106,0,1479,'container2'),(10339,124,0,1479,'0'),(10340,121,0,1479,'minerva-lumatech-trade-v-tee-xs-red'),(10341,87,0,1479,'/w/s/ws08-red_main_1.jpg'),(10342,88,0,1479,'/w/s/ws08-red_main_1.jpg'),(10343,89,0,1479,'/w/s/ws08-red_main_1.jpg'),(10344,73,0,1479,'Minerva LumaTech&trade; V-Tee-XS-Red'),(10345,106,0,1480,'container2'),(10346,124,0,1480,'0'),(10347,121,0,1480,'minerva-lumatech-trade-v-tee-s-black'),(10348,87,0,1480,'/w/s/ws08-black_main_1.jpg'),(10349,88,0,1480,'/w/s/ws08-black_main_1.jpg'),(10350,89,0,1480,'/w/s/ws08-black_main_1.jpg'),(10351,73,0,1480,'Minerva LumaTech&trade; V-Tee-S-Black'),(10352,106,0,1481,'container2'),(10353,124,0,1481,'0'),(10354,121,0,1481,'minerva-lumatech-trade-v-tee-s-blue'),(10355,87,0,1481,'/w/s/ws08-blue_main_1.jpg'),(10356,88,0,1481,'/w/s/ws08-blue_main_1.jpg'),(10357,89,0,1481,'/w/s/ws08-blue_main_1.jpg'),(10358,73,0,1481,'Minerva LumaTech&trade; V-Tee-S-Blue'),(10359,106,0,1482,'container2'),(10360,124,0,1482,'0'),(10361,121,0,1482,'minerva-lumatech-trade-v-tee-s-red'),(10362,87,0,1482,'/w/s/ws08-red_main_1.jpg'),(10363,88,0,1482,'/w/s/ws08-red_main_1.jpg'),(10364,89,0,1482,'/w/s/ws08-red_main_1.jpg'),(10365,73,0,1482,'Minerva LumaTech&trade; V-Tee-S-Red'),(10366,106,0,1483,'container2'),(10367,124,0,1483,'0'),(10368,121,0,1483,'minerva-lumatech-trade-v-tee-m-black'),(10369,87,0,1483,'/w/s/ws08-black_main_1.jpg'),(10370,88,0,1483,'/w/s/ws08-black_main_1.jpg'),(10371,89,0,1483,'/w/s/ws08-black_main_1.jpg'),(10372,73,0,1483,'Minerva LumaTech&trade; V-Tee-M-Black'),(10373,106,0,1484,'container2'),(10374,124,0,1484,'0'),(10375,121,0,1484,'minerva-lumatech-trade-v-tee-m-blue'),(10376,87,0,1484,'/w/s/ws08-blue_main_1.jpg'),(10377,88,0,1484,'/w/s/ws08-blue_main_1.jpg'),(10378,89,0,1484,'/w/s/ws08-blue_main_1.jpg'),(10379,73,0,1484,'Minerva LumaTech&trade; V-Tee-M-Blue'),(10380,106,0,1485,'container2'),(10381,124,0,1485,'0'),(10382,121,0,1485,'minerva-lumatech-trade-v-tee-m-red'),(10383,87,0,1485,'/w/s/ws08-red_main_1.jpg'),(10384,88,0,1485,'/w/s/ws08-red_main_1.jpg'),(10385,89,0,1485,'/w/s/ws08-red_main_1.jpg'),(10386,73,0,1485,'Minerva LumaTech&trade; V-Tee-M-Red'),(10387,106,0,1486,'container2'),(10388,124,0,1486,'0'),(10389,121,0,1486,'minerva-lumatech-trade-v-tee-l-black'),(10390,87,0,1486,'/w/s/ws08-black_main_1.jpg'),(10391,88,0,1486,'/w/s/ws08-black_main_1.jpg'),(10392,89,0,1486,'/w/s/ws08-black_main_1.jpg'),(10393,73,0,1486,'Minerva LumaTech&trade; V-Tee-L-Black'),(10394,106,0,1487,'container2'),(10395,124,0,1487,'0'),(10396,121,0,1487,'minerva-lumatech-trade-v-tee-l-blue'),(10397,87,0,1487,'/w/s/ws08-blue_main_1.jpg'),(10398,88,0,1487,'/w/s/ws08-blue_main_1.jpg'),(10399,89,0,1487,'/w/s/ws08-blue_main_1.jpg'),(10400,73,0,1487,'Minerva LumaTech&trade; V-Tee-L-Blue'),(10401,106,0,1488,'container2'),(10402,124,0,1488,'0'),(10403,121,0,1488,'minerva-lumatech-trade-v-tee-l-red'),(10404,87,0,1488,'/w/s/ws08-red_main_1.jpg'),(10405,88,0,1488,'/w/s/ws08-red_main_1.jpg'),(10406,89,0,1488,'/w/s/ws08-red_main_1.jpg'),(10407,73,0,1488,'Minerva LumaTech&trade; V-Tee-L-Red'),(10408,106,0,1489,'container2'),(10409,124,0,1489,'0'),(10410,121,0,1489,'minerva-lumatech-trade-v-tee-xl-black'),(10411,87,0,1489,'/w/s/ws08-black_main_1.jpg'),(10412,88,0,1489,'/w/s/ws08-black_main_1.jpg'),(10413,89,0,1489,'/w/s/ws08-black_main_1.jpg'),(10414,73,0,1489,'Minerva LumaTech&trade; V-Tee-XL-Black'),(10415,106,0,1490,'container2'),(10416,124,0,1490,'0'),(10417,121,0,1490,'minerva-lumatech-trade-v-tee-xl-blue'),(10418,87,0,1490,'/w/s/ws08-blue_main_1.jpg'),(10419,88,0,1490,'/w/s/ws08-blue_main_1.jpg'),(10420,89,0,1490,'/w/s/ws08-blue_main_1.jpg'),(10421,73,0,1490,'Minerva LumaTech&trade; V-Tee-XL-Blue'),(10422,106,0,1491,'container2'),(10423,124,0,1491,'0'),(10424,121,0,1491,'minerva-lumatech-trade-v-tee-xl-red'),(10425,87,0,1491,'/w/s/ws08-red_main_1.jpg'),(10426,88,0,1491,'/w/s/ws08-red_main_1.jpg'),(10427,89,0,1491,'/w/s/ws08-red_main_1.jpg'),(10428,73,0,1491,'Minerva LumaTech&trade; V-Tee-XL-Red'),(10429,106,0,1492,'container2'),(10430,124,0,1492,'0'),(10431,121,0,1492,'minerva-lumatech-trade-v-tee'),(10432,87,0,1492,'/w/s/ws08-blue_main_1.jpg'),(10433,88,0,1492,'/w/s/ws08-blue_main_1.jpg'),(10434,89,0,1492,'/w/s/ws08-blue_main_1.jpg'),(10435,73,0,1492,'Minerva LumaTech&trade; V-Tee'),(10436,106,0,1493,'container2'),(10437,124,0,1493,'0'),(10438,121,0,1493,'tiffany-fitness-tee-xs-blue'),(10439,87,0,1493,'/w/s/ws09-blue_main_1.jpg'),(10440,88,0,1493,'/w/s/ws09-blue_main_1.jpg'),(10441,89,0,1493,'/w/s/ws09-blue_main_1.jpg'),(10442,73,0,1493,'Tiffany Fitness Tee-XS-Blue'),(10443,106,0,1494,'container2'),(10444,124,0,1494,'0'),(10445,121,0,1494,'tiffany-fitness-tee-xs-red'),(10446,87,0,1494,'/w/s/ws09-red_main_1.jpg'),(10447,88,0,1494,'/w/s/ws09-red_main_1.jpg'),(10448,89,0,1494,'/w/s/ws09-red_main_1.jpg'),(10449,73,0,1494,'Tiffany Fitness Tee-XS-Red'),(10450,106,0,1495,'container2'),(10451,124,0,1495,'0'),(10452,121,0,1495,'tiffany-fitness-tee-xs-white'),(10453,87,0,1495,'/w/s/ws09-white_main_1.jpg'),(10454,88,0,1495,'/w/s/ws09-white_main_1.jpg'),(10455,89,0,1495,'/w/s/ws09-white_main_1.jpg'),(10456,73,0,1495,'Tiffany Fitness Tee-XS-White'),(10457,106,0,1496,'container2'),(10458,124,0,1496,'0'),(10459,121,0,1496,'tiffany-fitness-tee-s-blue'),(10460,87,0,1496,'/w/s/ws09-blue_main_1.jpg'),(10461,88,0,1496,'/w/s/ws09-blue_main_1.jpg'),(10462,89,0,1496,'/w/s/ws09-blue_main_1.jpg'),(10463,73,0,1496,'Tiffany Fitness Tee-S-Blue'),(10464,106,0,1497,'container2'),(10465,124,0,1497,'0'),(10466,121,0,1497,'tiffany-fitness-tee-s-red'),(10467,87,0,1497,'/w/s/ws09-red_main_1.jpg'),(10468,88,0,1497,'/w/s/ws09-red_main_1.jpg'),(10469,89,0,1497,'/w/s/ws09-red_main_1.jpg'),(10470,73,0,1497,'Tiffany Fitness Tee-S-Red'),(10471,106,0,1498,'container2'),(10472,124,0,1498,'0'),(10473,121,0,1498,'tiffany-fitness-tee-s-white'),(10474,87,0,1498,'/w/s/ws09-white_main_1.jpg'),(10475,88,0,1498,'/w/s/ws09-white_main_1.jpg'),(10476,89,0,1498,'/w/s/ws09-white_main_1.jpg'),(10477,73,0,1498,'Tiffany Fitness Tee-S-White'),(10478,106,0,1499,'container2'),(10479,124,0,1499,'0'),(10480,121,0,1499,'tiffany-fitness-tee-m-blue'),(10481,87,0,1499,'/w/s/ws09-blue_main_1.jpg'),(10482,88,0,1499,'/w/s/ws09-blue_main_1.jpg'),(10483,89,0,1499,'/w/s/ws09-blue_main_1.jpg'),(10484,73,0,1499,'Tiffany Fitness Tee-M-Blue'),(10485,106,0,1500,'container2'),(10486,124,0,1500,'0'),(10487,121,0,1500,'tiffany-fitness-tee-m-red'),(10488,87,0,1500,'/w/s/ws09-red_main_1.jpg'),(10489,88,0,1500,'/w/s/ws09-red_main_1.jpg'),(10490,89,0,1500,'/w/s/ws09-red_main_1.jpg'),(10491,73,0,1500,'Tiffany Fitness Tee-M-Red'),(10492,106,0,1501,'container2'),(10493,124,0,1501,'0'),(10494,121,0,1501,'tiffany-fitness-tee-m-white'),(10495,87,0,1501,'/w/s/ws09-white_main_1.jpg'),(10496,88,0,1501,'/w/s/ws09-white_main_1.jpg'),(10497,89,0,1501,'/w/s/ws09-white_main_1.jpg'),(10498,73,0,1501,'Tiffany Fitness Tee-M-White'),(10499,106,0,1502,'container2'),(10500,124,0,1502,'0'),(10501,121,0,1502,'tiffany-fitness-tee-l-blue'),(10502,87,0,1502,'/w/s/ws09-blue_main_1.jpg'),(10503,88,0,1502,'/w/s/ws09-blue_main_1.jpg'),(10504,89,0,1502,'/w/s/ws09-blue_main_1.jpg'),(10505,73,0,1502,'Tiffany Fitness Tee-L-Blue'),(10506,106,0,1503,'container2'),(10507,124,0,1503,'0'),(10508,121,0,1503,'tiffany-fitness-tee-l-red'),(10509,87,0,1503,'/w/s/ws09-red_main_1.jpg'),(10510,88,0,1503,'/w/s/ws09-red_main_1.jpg'),(10511,89,0,1503,'/w/s/ws09-red_main_1.jpg'),(10512,73,0,1503,'Tiffany Fitness Tee-L-Red'),(10513,106,0,1504,'container2'),(10514,124,0,1504,'0'),(10515,121,0,1504,'tiffany-fitness-tee-l-white'),(10516,87,0,1504,'/w/s/ws09-white_main_1.jpg'),(10517,88,0,1504,'/w/s/ws09-white_main_1.jpg'),(10518,89,0,1504,'/w/s/ws09-white_main_1.jpg'),(10519,73,0,1504,'Tiffany Fitness Tee-L-White'),(10520,106,0,1505,'container2'),(10521,124,0,1505,'0'),(10522,121,0,1505,'tiffany-fitness-tee-xl-blue'),(10523,87,0,1505,'/w/s/ws09-blue_main_1.jpg'),(10524,88,0,1505,'/w/s/ws09-blue_main_1.jpg'),(10525,89,0,1505,'/w/s/ws09-blue_main_1.jpg'),(10526,73,0,1505,'Tiffany Fitness Tee-XL-Blue'),(10527,106,0,1506,'container2'),(10528,124,0,1506,'0'),(10529,121,0,1506,'tiffany-fitness-tee-xl-red'),(10530,87,0,1506,'/w/s/ws09-red_main_1.jpg'),(10531,88,0,1506,'/w/s/ws09-red_main_1.jpg'),(10532,89,0,1506,'/w/s/ws09-red_main_1.jpg'),(10533,73,0,1506,'Tiffany Fitness Tee-XL-Red'),(10534,106,0,1507,'container2'),(10535,124,0,1507,'0'),(10536,121,0,1507,'tiffany-fitness-tee-xl-white'),(10537,87,0,1507,'/w/s/ws09-white_main_1.jpg'),(10538,88,0,1507,'/w/s/ws09-white_main_1.jpg'),(10539,89,0,1507,'/w/s/ws09-white_main_1.jpg'),(10540,73,0,1507,'Tiffany Fitness Tee-XL-White'),(10541,106,0,1508,'container2'),(10542,124,0,1508,'0'),(10543,121,0,1508,'tiffany-fitness-tee'),(10544,87,0,1508,'/w/s/ws09-blue_main_1.jpg'),(10545,88,0,1508,'/w/s/ws09-blue_main_1.jpg'),(10546,89,0,1508,'/w/s/ws09-blue_main_1.jpg'),(10547,73,0,1508,'Tiffany Fitness Tee'),(10548,106,0,1509,'container2'),(10549,124,0,1509,'0'),(10550,121,0,1509,'karissa-v-neck-tee-xs-green'),(10551,87,0,1509,'/w/s/ws10-green_main_1.jpg'),(10552,88,0,1509,'/w/s/ws10-green_main_1.jpg'),(10553,89,0,1509,'/w/s/ws10-green_main_1.jpg'),(10554,73,0,1509,'Karissa V-Neck Tee-XS-Green'),(10555,106,0,1510,'container2'),(10556,124,0,1510,'0'),(10557,121,0,1510,'karissa-v-neck-tee-xs-red'),(10558,87,0,1510,'/w/s/ws10-red_main_1.jpg'),(10559,88,0,1510,'/w/s/ws10-red_main_1.jpg'),(10560,89,0,1510,'/w/s/ws10-red_main_1.jpg'),(10561,73,0,1510,'Karissa V-Neck Tee-XS-Red'),(10562,106,0,1511,'container2'),(10563,124,0,1511,'0'),(10564,121,0,1511,'karissa-v-neck-tee-xs-yellow'),(10565,87,0,1511,'/w/s/ws10-yellow_main_1.jpg'),(10566,88,0,1511,'/w/s/ws10-yellow_main_1.jpg'),(10567,89,0,1511,'/w/s/ws10-yellow_main_1.jpg'),(10568,73,0,1511,'Karissa V-Neck Tee-XS-Yellow'),(10569,106,0,1512,'container2'),(10570,124,0,1512,'0'),(10571,121,0,1512,'karissa-v-neck-tee-s-green'),(10572,87,0,1512,'/w/s/ws10-green_main_1.jpg'),(10573,88,0,1512,'/w/s/ws10-green_main_1.jpg'),(10574,89,0,1512,'/w/s/ws10-green_main_1.jpg'),(10575,73,0,1512,'Karissa V-Neck Tee-S-Green'),(10576,106,0,1513,'container2'),(10577,124,0,1513,'0'),(10578,121,0,1513,'karissa-v-neck-tee-s-red'),(10579,87,0,1513,'/w/s/ws10-red_main_1.jpg'),(10580,88,0,1513,'/w/s/ws10-red_main_1.jpg'),(10581,89,0,1513,'/w/s/ws10-red_main_1.jpg'),(10582,73,0,1513,'Karissa V-Neck Tee-S-Red'),(10583,106,0,1514,'container2'),(10584,124,0,1514,'0'),(10585,121,0,1514,'karissa-v-neck-tee-s-yellow'),(10586,87,0,1514,'/w/s/ws10-yellow_main_1.jpg'),(10587,88,0,1514,'/w/s/ws10-yellow_main_1.jpg'),(10588,89,0,1514,'/w/s/ws10-yellow_main_1.jpg'),(10589,73,0,1514,'Karissa V-Neck Tee-S-Yellow'),(10590,106,0,1515,'container2'),(10591,124,0,1515,'0'),(10592,121,0,1515,'karissa-v-neck-tee-m-green'),(10593,87,0,1515,'/w/s/ws10-green_main_1.jpg'),(10594,88,0,1515,'/w/s/ws10-green_main_1.jpg'),(10595,89,0,1515,'/w/s/ws10-green_main_1.jpg'),(10596,73,0,1515,'Karissa V-Neck Tee-M-Green'),(10597,106,0,1516,'container2'),(10598,124,0,1516,'0'),(10599,121,0,1516,'karissa-v-neck-tee-m-red'),(10600,87,0,1516,'/w/s/ws10-red_main_1.jpg'),(10601,88,0,1516,'/w/s/ws10-red_main_1.jpg'),(10602,89,0,1516,'/w/s/ws10-red_main_1.jpg'),(10603,73,0,1516,'Karissa V-Neck Tee-M-Red'),(10604,106,0,1517,'container2'),(10605,124,0,1517,'0'),(10606,121,0,1517,'karissa-v-neck-tee-m-yellow'),(10607,87,0,1517,'/w/s/ws10-yellow_main_1.jpg'),(10608,88,0,1517,'/w/s/ws10-yellow_main_1.jpg'),(10609,89,0,1517,'/w/s/ws10-yellow_main_1.jpg'),(10610,73,0,1517,'Karissa V-Neck Tee-M-Yellow'),(10611,106,0,1518,'container2'),(10612,124,0,1518,'0'),(10613,121,0,1518,'karissa-v-neck-tee-l-green'),(10614,87,0,1518,'/w/s/ws10-green_main_1.jpg'),(10615,88,0,1518,'/w/s/ws10-green_main_1.jpg'),(10616,89,0,1518,'/w/s/ws10-green_main_1.jpg'),(10617,73,0,1518,'Karissa V-Neck Tee-L-Green'),(10618,106,0,1519,'container2'),(10619,124,0,1519,'0'),(10620,121,0,1519,'karissa-v-neck-tee-l-red'),(10621,87,0,1519,'/w/s/ws10-red_main_1.jpg'),(10622,88,0,1519,'/w/s/ws10-red_main_1.jpg'),(10623,89,0,1519,'/w/s/ws10-red_main_1.jpg'),(10624,73,0,1519,'Karissa V-Neck Tee-L-Red'),(10625,106,0,1520,'container2'),(10626,124,0,1520,'0'),(10627,121,0,1520,'karissa-v-neck-tee-l-yellow'),(10628,87,0,1520,'/w/s/ws10-yellow_main_1.jpg'),(10629,88,0,1520,'/w/s/ws10-yellow_main_1.jpg'),(10630,89,0,1520,'/w/s/ws10-yellow_main_1.jpg'),(10631,73,0,1520,'Karissa V-Neck Tee-L-Yellow'),(10632,106,0,1521,'container2'),(10633,124,0,1521,'0'),(10634,121,0,1521,'karissa-v-neck-tee-xl-green'),(10635,87,0,1521,'/w/s/ws10-green_main_1.jpg'),(10636,88,0,1521,'/w/s/ws10-green_main_1.jpg'),(10637,89,0,1521,'/w/s/ws10-green_main_1.jpg'),(10638,73,0,1521,'Karissa V-Neck Tee-XL-Green'),(10639,106,0,1522,'container2'),(10640,124,0,1522,'0'),(10641,121,0,1522,'karissa-v-neck-tee-xl-red'),(10642,87,0,1522,'/w/s/ws10-red_main_1.jpg'),(10643,88,0,1522,'/w/s/ws10-red_main_1.jpg'),(10644,89,0,1522,'/w/s/ws10-red_main_1.jpg'),(10645,73,0,1522,'Karissa V-Neck Tee-XL-Red'),(10646,106,0,1523,'container2'),(10647,124,0,1523,'0'),(10648,121,0,1523,'karissa-v-neck-tee-xl-yellow'),(10649,87,0,1523,'/w/s/ws10-yellow_main_1.jpg'),(10650,88,0,1523,'/w/s/ws10-yellow_main_1.jpg'),(10651,89,0,1523,'/w/s/ws10-yellow_main_1.jpg'),(10652,73,0,1523,'Karissa V-Neck Tee-XL-Yellow'),(10653,106,0,1524,'container2'),(10654,124,0,1524,'0'),(10655,121,0,1524,'karissa-v-neck-tee'),(10656,87,0,1524,'/w/s/ws10-red_main_1.jpg'),(10657,88,0,1524,'/w/s/ws10-red_main_1.jpg'),(10658,89,0,1524,'/w/s/ws10-red_main_1.jpg'),(10659,73,0,1524,'Karissa V-Neck Tee'),(10660,106,0,1525,'container2'),(10661,124,0,1525,'0'),(10662,121,0,1525,'diva-gym-tee-xs-green'),(10663,87,0,1525,'/w/s/ws11-green_main_1.jpg'),(10664,88,0,1525,'/w/s/ws11-green_main_1.jpg'),(10665,89,0,1525,'/w/s/ws11-green_main_1.jpg'),(10666,73,0,1525,'Diva Gym Tee-XS-Green'),(10667,106,0,1526,'container2'),(10668,124,0,1526,'0'),(10669,121,0,1526,'diva-gym-tee-xs-orange'),(10670,87,0,1526,'/w/s/ws11-orange_main_1.jpg'),(10671,88,0,1526,'/w/s/ws11-orange_main_1.jpg'),(10672,89,0,1526,'/w/s/ws11-orange_main_1.jpg'),(10673,73,0,1526,'Diva Gym Tee-XS-Orange'),(10674,106,0,1527,'container2'),(10675,124,0,1527,'0'),(10676,121,0,1527,'diva-gym-tee-xs-yellow'),(10677,87,0,1527,'/w/s/ws11-yellow_main_1.jpg'),(10678,88,0,1527,'/w/s/ws11-yellow_main_1.jpg'),(10679,89,0,1527,'/w/s/ws11-yellow_main_1.jpg'),(10680,73,0,1527,'Diva Gym Tee-XS-Yellow'),(10681,106,0,1528,'container2'),(10682,124,0,1528,'0'),(10683,121,0,1528,'diva-gym-tee-s-green'),(10684,87,0,1528,'/w/s/ws11-green_main_1.jpg'),(10685,88,0,1528,'/w/s/ws11-green_main_1.jpg'),(10686,89,0,1528,'/w/s/ws11-green_main_1.jpg'),(10687,73,0,1528,'Diva Gym Tee-S-Green'),(10688,106,0,1529,'container2'),(10689,124,0,1529,'0'),(10690,121,0,1529,'diva-gym-tee-s-orange'),(10691,87,0,1529,'/w/s/ws11-orange_main_1.jpg'),(10692,88,0,1529,'/w/s/ws11-orange_main_1.jpg'),(10693,89,0,1529,'/w/s/ws11-orange_main_1.jpg'),(10694,73,0,1529,'Diva Gym Tee-S-Orange'),(10695,106,0,1530,'container2'),(10696,124,0,1530,'0'),(10697,121,0,1530,'diva-gym-tee-s-yellow'),(10698,87,0,1530,'/w/s/ws11-yellow_main_1.jpg'),(10699,88,0,1530,'/w/s/ws11-yellow_main_1.jpg'),(10700,89,0,1530,'/w/s/ws11-yellow_main_1.jpg'),(10701,73,0,1530,'Diva Gym Tee-S-Yellow'),(10702,106,0,1531,'container2'),(10703,124,0,1531,'0'),(10704,121,0,1531,'diva-gym-tee-m-green'),(10705,87,0,1531,'/w/s/ws11-green_main_1.jpg'),(10706,88,0,1531,'/w/s/ws11-green_main_1.jpg'),(10707,89,0,1531,'/w/s/ws11-green_main_1.jpg'),(10708,73,0,1531,'Diva Gym Tee-M-Green'),(10709,106,0,1532,'container2'),(10710,124,0,1532,'0'),(10711,121,0,1532,'diva-gym-tee-m-orange'),(10712,87,0,1532,'/w/s/ws11-orange_main_1.jpg'),(10713,88,0,1532,'/w/s/ws11-orange_main_1.jpg'),(10714,89,0,1532,'/w/s/ws11-orange_main_1.jpg'),(10715,73,0,1532,'Diva Gym Tee-M-Orange'),(10716,106,0,1533,'container2'),(10717,124,0,1533,'0'),(10718,121,0,1533,'diva-gym-tee-m-yellow'),(10719,87,0,1533,'/w/s/ws11-yellow_main_1.jpg'),(10720,88,0,1533,'/w/s/ws11-yellow_main_1.jpg'),(10721,89,0,1533,'/w/s/ws11-yellow_main_1.jpg'),(10722,73,0,1533,'Diva Gym Tee-M-Yellow'),(10723,106,0,1534,'container2'),(10724,124,0,1534,'0'),(10725,121,0,1534,'diva-gym-tee-l-green'),(10726,87,0,1534,'/w/s/ws11-green_main_1.jpg'),(10727,88,0,1534,'/w/s/ws11-green_main_1.jpg'),(10728,89,0,1534,'/w/s/ws11-green_main_1.jpg'),(10729,73,0,1534,'Diva Gym Tee-L-Green'),(10730,106,0,1535,'container2'),(10731,124,0,1535,'0'),(10732,121,0,1535,'diva-gym-tee-l-orange'),(10733,87,0,1535,'/w/s/ws11-orange_main_1.jpg'),(10734,88,0,1535,'/w/s/ws11-orange_main_1.jpg'),(10735,89,0,1535,'/w/s/ws11-orange_main_1.jpg'),(10736,73,0,1535,'Diva Gym Tee-L-Orange'),(10737,106,0,1536,'container2'),(10738,124,0,1536,'0'),(10739,121,0,1536,'diva-gym-tee-l-yellow'),(10740,87,0,1536,'/w/s/ws11-yellow_main_1.jpg'),(10741,88,0,1536,'/w/s/ws11-yellow_main_1.jpg'),(10742,89,0,1536,'/w/s/ws11-yellow_main_1.jpg'),(10743,73,0,1536,'Diva Gym Tee-L-Yellow'),(10744,106,0,1537,'container2'),(10745,124,0,1537,'0'),(10746,121,0,1537,'diva-gym-tee-xl-green'),(10747,87,0,1537,'/w/s/ws11-green_main_1.jpg'),(10748,88,0,1537,'/w/s/ws11-green_main_1.jpg'),(10749,89,0,1537,'/w/s/ws11-green_main_1.jpg'),(10750,73,0,1537,'Diva Gym Tee-XL-Green'),(10751,106,0,1538,'container2'),(10752,124,0,1538,'0'),(10753,121,0,1538,'diva-gym-tee-xl-orange'),(10754,87,0,1538,'/w/s/ws11-orange_main_1.jpg'),(10755,88,0,1538,'/w/s/ws11-orange_main_1.jpg'),(10756,89,0,1538,'/w/s/ws11-orange_main_1.jpg'),(10757,73,0,1538,'Diva Gym Tee-XL-Orange'),(10758,106,0,1539,'container2'),(10759,124,0,1539,'0'),(10760,121,0,1539,'diva-gym-tee-xl-yellow'),(10761,87,0,1539,'/w/s/ws11-yellow_main_1.jpg'),(10762,88,0,1539,'/w/s/ws11-yellow_main_1.jpg'),(10763,89,0,1539,'/w/s/ws11-yellow_main_1.jpg'),(10764,73,0,1539,'Diva Gym Tee-XL-Yellow'),(10765,106,0,1540,'container2'),(10766,124,0,1540,'0'),(10767,121,0,1540,'diva-gym-tee'),(10768,87,0,1540,'/w/s/ws11-yellow_main_1.jpg'),(10769,88,0,1540,'/w/s/ws11-yellow_main_1.jpg'),(10770,89,0,1540,'/w/s/ws11-yellow_main_1.jpg'),(10771,73,0,1540,'Diva Gym Tee'),(10772,106,0,1541,'container2'),(10773,124,0,1541,'0'),(10774,121,0,1541,'radiant-tee-xs-blue'),(10775,87,0,1541,'/w/s/ws12-blue_main_1.jpg'),(10776,88,0,1541,'/w/s/ws12-blue_main_1.jpg'),(10777,89,0,1541,'/w/s/ws12-blue_main_1.jpg'),(10778,73,0,1541,'Radiant Tee-XS-Blue'),(10779,106,0,1542,'container2'),(10780,124,0,1542,'0'),(10781,121,0,1542,'radiant-tee-xs-orange'),(10782,87,0,1542,'/w/s/ws12-orange_main_1.jpg'),(10783,88,0,1542,'/w/s/ws12-orange_main_1.jpg'),(10784,89,0,1542,'/w/s/ws12-orange_main_1.jpg'),(10785,73,0,1542,'Radiant Tee-XS-Orange'),(10786,106,0,1543,'container2'),(10787,124,0,1543,'0'),(10788,121,0,1543,'radiant-tee-xs-purple'),(10789,87,0,1543,'/w/s/ws12-purple_main_1.jpg'),(10790,88,0,1543,'/w/s/ws12-purple_main_1.jpg'),(10791,89,0,1543,'/w/s/ws12-purple_main_1.jpg'),(10792,73,0,1543,'Radiant Tee-XS-Purple'),(10793,106,0,1544,'container2'),(10794,124,0,1544,'0'),(10795,121,0,1544,'radiant-tee-s-blue'),(10796,87,0,1544,'/w/s/ws12-blue_main_1.jpg'),(10797,88,0,1544,'/w/s/ws12-blue_main_1.jpg'),(10798,89,0,1544,'/w/s/ws12-blue_main_1.jpg'),(10799,73,0,1544,'Radiant Tee-S-Blue'),(10800,106,0,1545,'container2'),(10801,124,0,1545,'0'),(10802,121,0,1545,'radiant-tee-s-orange'),(10803,87,0,1545,'/w/s/ws12-orange_main_1.jpg'),(10804,88,0,1545,'/w/s/ws12-orange_main_1.jpg'),(10805,89,0,1545,'/w/s/ws12-orange_main_1.jpg'),(10806,73,0,1545,'Radiant Tee-S-Orange'),(10807,106,0,1546,'container2'),(10808,124,0,1546,'0'),(10809,121,0,1546,'radiant-tee-s-purple'),(10810,87,0,1546,'/w/s/ws12-purple_main_1.jpg'),(10811,88,0,1546,'/w/s/ws12-purple_main_1.jpg'),(10812,89,0,1546,'/w/s/ws12-purple_main_1.jpg'),(10813,73,0,1546,'Radiant Tee-S-Purple'),(10814,106,0,1547,'container2'),(10815,124,0,1547,'0'),(10816,121,0,1547,'radiant-tee-m-blue'),(10817,87,0,1547,'/w/s/ws12-blue_main_2.jpg'),(10818,88,0,1547,'/w/s/ws12-blue_main_2.jpg'),(10819,89,0,1547,'/w/s/ws12-blue_main_2.jpg'),(10820,73,0,1547,'Radiant Tee-M-Blue'),(10821,106,0,1548,'container2'),(10822,124,0,1548,'0'),(10823,121,0,1548,'radiant-tee-m-orange'),(10824,87,0,1548,'/w/s/ws12-orange_main_2.jpg'),(10825,88,0,1548,'/w/s/ws12-orange_main_2.jpg'),(10826,89,0,1548,'/w/s/ws12-orange_main_2.jpg'),(10827,73,0,1548,'Radiant Tee-M-Orange'),(10828,106,0,1549,'container2'),(10829,124,0,1549,'0'),(10830,121,0,1549,'radiant-tee-m-purple'),(10831,87,0,1549,'/w/s/ws12-purple_main_2.jpg'),(10832,88,0,1549,'/w/s/ws12-purple_main_2.jpg'),(10833,89,0,1549,'/w/s/ws12-purple_main_2.jpg'),(10834,73,0,1549,'Radiant Tee-M-Purple'),(10835,106,0,1550,'container2'),(10836,124,0,1550,'0'),(10837,121,0,1550,'radiant-tee-l-blue'),(10838,87,0,1550,'/w/s/ws12-blue_main_2.jpg'),(10839,88,0,1550,'/w/s/ws12-blue_main_2.jpg'),(10840,89,0,1550,'/w/s/ws12-blue_main_2.jpg'),(10841,73,0,1550,'Radiant Tee-L-Blue'),(10842,106,0,1551,'container2'),(10843,124,0,1551,'0'),(10844,121,0,1551,'radiant-tee-l-orange'),(10845,87,0,1551,'/w/s/ws12-orange_main_2.jpg'),(10846,88,0,1551,'/w/s/ws12-orange_main_2.jpg'),(10847,89,0,1551,'/w/s/ws12-orange_main_2.jpg'),(10848,73,0,1551,'Radiant Tee-L-Orange'),(10849,106,0,1552,'container2'),(10850,124,0,1552,'0'),(10851,121,0,1552,'radiant-tee-l-purple'),(10852,87,0,1552,'/w/s/ws12-purple_main_2.jpg'),(10853,88,0,1552,'/w/s/ws12-purple_main_2.jpg'),(10854,89,0,1552,'/w/s/ws12-purple_main_2.jpg'),(10855,73,0,1552,'Radiant Tee-L-Purple'),(10856,106,0,1553,'container2'),(10857,124,0,1553,'0'),(10858,121,0,1553,'radiant-tee-xl-blue'),(10859,87,0,1553,'/w/s/ws12-blue_main_2.jpg'),(10860,88,0,1553,'/w/s/ws12-blue_main_2.jpg'),(10861,89,0,1553,'/w/s/ws12-blue_main_2.jpg'),(10862,73,0,1553,'Radiant Tee-XL-Blue'),(10863,106,0,1554,'container2'),(10864,124,0,1554,'0'),(10865,121,0,1554,'radiant-tee-xl-orange'),(10866,87,0,1554,'/w/s/ws12-orange_main_2.jpg'),(10867,88,0,1554,'/w/s/ws12-orange_main_2.jpg'),(10868,89,0,1554,'/w/s/ws12-orange_main_2.jpg'),(10869,73,0,1554,'Radiant Tee-XL-Orange'),(10870,106,0,1555,'container2'),(10871,124,0,1555,'0'),(10872,121,0,1555,'radiant-tee-xl-purple'),(10873,87,0,1555,'/w/s/ws12-purple_main_2.jpg'),(10874,88,0,1555,'/w/s/ws12-purple_main_2.jpg'),(10875,89,0,1555,'/w/s/ws12-purple_main_2.jpg'),(10876,73,0,1555,'Radiant Tee-XL-Purple'),(10877,106,0,1556,'container2'),(10878,124,0,1556,'0'),(10879,121,0,1556,'radiant-tee'),(10880,87,0,1556,'/w/s/ws12-orange_main_2.jpg'),(10881,88,0,1556,'/w/s/ws12-orange_main_2.jpg'),(10882,89,0,1556,'/w/s/ws12-orange_main_2.jpg'),(10883,73,0,1556,'Radiant Tee'),(10884,106,0,1557,'container2'),(10885,124,0,1557,'0'),(10886,121,0,1557,'gwyn-endurance-tee-xs-black'),(10887,87,0,1557,'/w/s/ws01-black_main_1.jpg'),(10888,88,0,1557,'/w/s/ws01-black_main_1.jpg'),(10889,89,0,1557,'/w/s/ws01-black_main_1.jpg'),(10890,73,0,1557,'Gwyn Endurance Tee-XS-Black'),(10891,106,0,1558,'container2'),(10892,124,0,1558,'0'),(10893,121,0,1558,'gwyn-endurance-tee-xs-green'),(10894,87,0,1558,'/w/s/ws01-green_main_1.jpg'),(10895,88,0,1558,'/w/s/ws01-green_main_1.jpg'),(10896,89,0,1558,'/w/s/ws01-green_main_1.jpg'),(10897,73,0,1558,'Gwyn Endurance Tee-XS-Green'),(10898,106,0,1559,'container2'),(10899,124,0,1559,'0'),(10900,121,0,1559,'gwyn-endurance-tee-xs-yellow'),(10901,87,0,1559,'/w/s/ws01-yellow_main_1.jpg'),(10902,88,0,1559,'/w/s/ws01-yellow_main_1.jpg'),(10903,89,0,1559,'/w/s/ws01-yellow_main_1.jpg'),(10904,73,0,1559,'Gwyn Endurance Tee-XS-Yellow'),(10905,106,0,1560,'container2'),(10906,124,0,1560,'0'),(10907,121,0,1560,'gwyn-endurance-tee-s-black'),(10908,87,0,1560,'/w/s/ws01-black_main_1.jpg'),(10909,88,0,1560,'/w/s/ws01-black_main_1.jpg'),(10910,89,0,1560,'/w/s/ws01-black_main_1.jpg'),(10911,73,0,1560,'Gwyn Endurance Tee-S-Black'),(10912,106,0,1561,'container2'),(10913,124,0,1561,'0'),(10914,121,0,1561,'gwyn-endurance-tee-s-green'),(10915,87,0,1561,'/w/s/ws01-green_main_1.jpg'),(10916,88,0,1561,'/w/s/ws01-green_main_1.jpg'),(10917,89,0,1561,'/w/s/ws01-green_main_1.jpg'),(10918,73,0,1561,'Gwyn Endurance Tee-S-Green'),(10919,106,0,1562,'container2'),(10920,124,0,1562,'0'),(10921,121,0,1562,'gwyn-endurance-tee-s-yellow'),(10922,87,0,1562,'/w/s/ws01-yellow_main_1.jpg'),(10923,88,0,1562,'/w/s/ws01-yellow_main_1.jpg'),(10924,89,0,1562,'/w/s/ws01-yellow_main_1.jpg'),(10925,73,0,1562,'Gwyn Endurance Tee-S-Yellow'),(10926,106,0,1563,'container2'),(10927,124,0,1563,'0'),(10928,121,0,1563,'gwyn-endurance-tee-m-black'),(10929,87,0,1563,'/w/s/ws01-black_main_1.jpg'),(10930,88,0,1563,'/w/s/ws01-black_main_1.jpg'),(10931,89,0,1563,'/w/s/ws01-black_main_1.jpg'),(10932,73,0,1563,'Gwyn Endurance Tee-M-Black'),(10933,106,0,1564,'container2'),(10934,124,0,1564,'0'),(10935,121,0,1564,'gwyn-endurance-tee-m-green'),(10936,87,0,1564,'/w/s/ws01-green_main_1.jpg'),(10937,88,0,1564,'/w/s/ws01-green_main_1.jpg'),(10938,89,0,1564,'/w/s/ws01-green_main_1.jpg'),(10939,73,0,1564,'Gwyn Endurance Tee-M-Green'),(10940,106,0,1565,'container2'),(10941,124,0,1565,'0'),(10942,121,0,1565,'gwyn-endurance-tee-m-yellow'),(10943,87,0,1565,'/w/s/ws01-yellow_main_1.jpg'),(10944,88,0,1565,'/w/s/ws01-yellow_main_1.jpg'),(10945,89,0,1565,'/w/s/ws01-yellow_main_1.jpg'),(10946,73,0,1565,'Gwyn Endurance Tee-M-Yellow'),(10947,106,0,1566,'container2'),(10948,124,0,1566,'0'),(10949,121,0,1566,'gwyn-endurance-tee-l-black'),(10950,87,0,1566,'/w/s/ws01-black_main_1.jpg'),(10951,88,0,1566,'/w/s/ws01-black_main_1.jpg'),(10952,89,0,1566,'/w/s/ws01-black_main_1.jpg'),(10953,73,0,1566,'Gwyn Endurance Tee-L-Black'),(10954,106,0,1567,'container2'),(10955,124,0,1567,'0'),(10956,121,0,1567,'gwyn-endurance-tee-l-green'),(10957,87,0,1567,'/w/s/ws01-green_main_1.jpg'),(10958,88,0,1567,'/w/s/ws01-green_main_1.jpg'),(10959,89,0,1567,'/w/s/ws01-green_main_1.jpg'),(10960,73,0,1567,'Gwyn Endurance Tee-L-Green'),(10961,106,0,1568,'container2'),(10962,124,0,1568,'0'),(10963,121,0,1568,'gwyn-endurance-tee-l-yellow'),(10964,87,0,1568,'/w/s/ws01-yellow_main_1.jpg'),(10965,88,0,1568,'/w/s/ws01-yellow_main_1.jpg'),(10966,89,0,1568,'/w/s/ws01-yellow_main_1.jpg'),(10967,73,0,1568,'Gwyn Endurance Tee-L-Yellow'),(10968,106,0,1569,'container2'),(10969,124,0,1569,'0'),(10970,121,0,1569,'gwyn-endurance-tee-xl-black'),(10971,87,0,1569,'/w/s/ws01-black_main_1.jpg'),(10972,88,0,1569,'/w/s/ws01-black_main_1.jpg'),(10973,89,0,1569,'/w/s/ws01-black_main_1.jpg'),(10974,73,0,1569,'Gwyn Endurance Tee-XL-Black'),(10975,106,0,1570,'container2'),(10976,124,0,1570,'0'),(10977,121,0,1570,'gwyn-endurance-tee-xl-green'),(10978,87,0,1570,'/w/s/ws01-green_main_1.jpg'),(10979,88,0,1570,'/w/s/ws01-green_main_1.jpg'),(10980,89,0,1570,'/w/s/ws01-green_main_1.jpg'),(10981,73,0,1570,'Gwyn Endurance Tee-XL-Green'),(10982,106,0,1571,'container2'),(10983,124,0,1571,'0'),(10984,121,0,1571,'gwyn-endurance-tee-xl-yellow'),(10985,87,0,1571,'/w/s/ws01-yellow_main_1.jpg'),(10986,88,0,1571,'/w/s/ws01-yellow_main_1.jpg'),(10987,89,0,1571,'/w/s/ws01-yellow_main_1.jpg'),(10988,73,0,1571,'Gwyn Endurance Tee-XL-Yellow'),(10989,106,0,1572,'container2'),(10990,124,0,1572,'0'),(10991,121,0,1572,'gwyn-endurance-tee'),(10992,87,0,1572,'/w/s/ws01-black_main_1.jpg'),(10993,88,0,1572,'/w/s/ws01-black_main_1.jpg'),(10994,89,0,1572,'/w/s/ws01-black_main_1.jpg'),(10995,73,0,1572,'Gwyn Endurance Tee'),(10996,106,0,1573,'container2'),(10997,124,0,1573,'0'),(10998,121,0,1573,'desiree-fitness-tee-xs-black'),(10999,87,0,1573,'/w/s/ws05-black_main_1.jpg'),(11000,88,0,1573,'/w/s/ws05-black_main_1.jpg'),(11001,89,0,1573,'/w/s/ws05-black_main_1.jpg'),(11002,73,0,1573,'Desiree Fitness Tee-XS-Black'),(11003,106,0,1574,'container2'),(11004,124,0,1574,'0'),(11005,121,0,1574,'desiree-fitness-tee-xs-orange'),(11006,87,0,1574,'/w/s/ws05-orange_main_1.jpg'),(11007,88,0,1574,'/w/s/ws05-orange_main_1.jpg'),(11008,89,0,1574,'/w/s/ws05-orange_main_1.jpg'),(11009,73,0,1574,'Desiree Fitness Tee-XS-Orange'),(11010,106,0,1575,'container2'),(11011,124,0,1575,'0'),(11012,121,0,1575,'desiree-fitness-tee-xs-yellow'),(11013,87,0,1575,'/w/s/ws05-yellow_main_1.jpg'),(11014,88,0,1575,'/w/s/ws05-yellow_main_1.jpg'),(11015,89,0,1575,'/w/s/ws05-yellow_main_1.jpg'),(11016,73,0,1575,'Desiree Fitness Tee-XS-Yellow'),(11017,106,0,1576,'container2'),(11018,124,0,1576,'0'),(11019,121,0,1576,'desiree-fitness-tee-s-black'),(11020,87,0,1576,'/w/s/ws05-black_main_1.jpg'),(11021,88,0,1576,'/w/s/ws05-black_main_1.jpg'),(11022,89,0,1576,'/w/s/ws05-black_main_1.jpg'),(11023,73,0,1576,'Desiree Fitness Tee-S-Black'),(11024,106,0,1577,'container2'),(11025,124,0,1577,'0'),(11026,121,0,1577,'desiree-fitness-tee-s-orange'),(11027,87,0,1577,'/w/s/ws05-orange_main_1.jpg'),(11028,88,0,1577,'/w/s/ws05-orange_main_1.jpg'),(11029,89,0,1577,'/w/s/ws05-orange_main_1.jpg'),(11030,73,0,1577,'Desiree Fitness Tee-S-Orange'),(11031,106,0,1578,'container2'),(11032,124,0,1578,'0'),(11033,121,0,1578,'desiree-fitness-tee-s-yellow'),(11034,87,0,1578,'/w/s/ws05-yellow_main_1.jpg'),(11035,88,0,1578,'/w/s/ws05-yellow_main_1.jpg'),(11036,89,0,1578,'/w/s/ws05-yellow_main_1.jpg'),(11037,73,0,1578,'Desiree Fitness Tee-S-Yellow'),(11038,106,0,1579,'container2'),(11039,124,0,1579,'0'),(11040,121,0,1579,'desiree-fitness-tee-m-black'),(11041,87,0,1579,'/w/s/ws05-black_main_1.jpg'),(11042,88,0,1579,'/w/s/ws05-black_main_1.jpg'),(11043,89,0,1579,'/w/s/ws05-black_main_1.jpg'),(11044,73,0,1579,'Desiree Fitness Tee-M-Black'),(11045,106,0,1580,'container2'),(11046,124,0,1580,'0'),(11047,121,0,1580,'desiree-fitness-tee-m-orange'),(11048,87,0,1580,'/w/s/ws05-orange_main_1.jpg'),(11049,88,0,1580,'/w/s/ws05-orange_main_1.jpg'),(11050,89,0,1580,'/w/s/ws05-orange_main_1.jpg'),(11051,73,0,1580,'Desiree Fitness Tee-M-Orange'),(11052,106,0,1581,'container2'),(11053,124,0,1581,'0'),(11054,121,0,1581,'desiree-fitness-tee-m-yellow'),(11055,87,0,1581,'/w/s/ws05-yellow_main_1.jpg'),(11056,88,0,1581,'/w/s/ws05-yellow_main_1.jpg'),(11057,89,0,1581,'/w/s/ws05-yellow_main_1.jpg'),(11058,73,0,1581,'Desiree Fitness Tee-M-Yellow'),(11059,106,0,1582,'container2'),(11060,124,0,1582,'0'),(11061,121,0,1582,'desiree-fitness-tee-l-black'),(11062,87,0,1582,'/w/s/ws05-black_main_1.jpg'),(11063,88,0,1582,'/w/s/ws05-black_main_1.jpg'),(11064,89,0,1582,'/w/s/ws05-black_main_1.jpg'),(11065,73,0,1582,'Desiree Fitness Tee-L-Black'),(11066,106,0,1583,'container2'),(11067,124,0,1583,'0'),(11068,121,0,1583,'desiree-fitness-tee-l-orange'),(11069,87,0,1583,'/w/s/ws05-orange_main_1.jpg'),(11070,88,0,1583,'/w/s/ws05-orange_main_1.jpg'),(11071,89,0,1583,'/w/s/ws05-orange_main_1.jpg'),(11072,73,0,1583,'Desiree Fitness Tee-L-Orange'),(11073,106,0,1584,'container2'),(11074,124,0,1584,'0'),(11075,121,0,1584,'desiree-fitness-tee-l-yellow'),(11076,87,0,1584,'/w/s/ws05-yellow_main_1.jpg'),(11077,88,0,1584,'/w/s/ws05-yellow_main_1.jpg'),(11078,89,0,1584,'/w/s/ws05-yellow_main_1.jpg'),(11079,73,0,1584,'Desiree Fitness Tee-L-Yellow'),(11080,106,0,1585,'container2'),(11081,124,0,1585,'0'),(11082,121,0,1585,'desiree-fitness-tee-xl-black'),(11083,87,0,1585,'/w/s/ws05-black_main_1.jpg'),(11084,88,0,1585,'/w/s/ws05-black_main_1.jpg'),(11085,89,0,1585,'/w/s/ws05-black_main_1.jpg'),(11086,73,0,1585,'Desiree Fitness Tee-XL-Black'),(11087,106,0,1586,'container2'),(11088,124,0,1586,'0'),(11089,121,0,1586,'desiree-fitness-tee-xl-orange'),(11090,87,0,1586,'/w/s/ws05-orange_main_1.jpg'),(11091,88,0,1586,'/w/s/ws05-orange_main_1.jpg'),(11092,89,0,1586,'/w/s/ws05-orange_main_1.jpg'),(11093,73,0,1586,'Desiree Fitness Tee-XL-Orange'),(11094,106,0,1587,'container2'),(11095,124,0,1587,'0'),(11096,121,0,1587,'desiree-fitness-tee-xl-yellow'),(11097,87,0,1587,'/w/s/ws05-yellow_main_1.jpg'),(11098,88,0,1587,'/w/s/ws05-yellow_main_1.jpg'),(11099,89,0,1587,'/w/s/ws05-yellow_main_1.jpg'),(11100,73,0,1587,'Desiree Fitness Tee-XL-Yellow'),(11101,106,0,1588,'container2'),(11102,124,0,1588,'0'),(11103,121,0,1588,'desiree-fitness-tee'),(11104,87,0,1588,'/w/s/ws05-black_main_1.jpg'),(11105,88,0,1588,'/w/s/ws05-black_main_1.jpg'),(11106,89,0,1588,'/w/s/ws05-black_main_1.jpg'),(11107,73,0,1588,'Desiree Fitness Tee'),(11108,106,0,1589,'container2'),(11109,124,0,1589,'0'),(11110,121,0,1589,'electra-bra-top-xs-black'),(11111,87,0,1589,'/w/b/wb01-black_main_1.jpg'),(11112,88,0,1589,'/w/b/wb01-black_main_1.jpg'),(11113,89,0,1589,'/w/b/wb01-black_main_1.jpg'),(11114,73,0,1589,'Electra Bra Top-XS-Black'),(11115,106,0,1590,'container2'),(11116,124,0,1590,'0'),(11117,121,0,1590,'electra-bra-top-xs-gray'),(11118,87,0,1590,'/w/b/wb01-gray_main_1.jpg'),(11119,88,0,1590,'/w/b/wb01-gray_main_1.jpg'),(11120,89,0,1590,'/w/b/wb01-gray_main_1.jpg'),(11121,73,0,1590,'Electra Bra Top-XS-Gray'),(11122,106,0,1591,'container2'),(11123,124,0,1591,'0'),(11124,121,0,1591,'electra-bra-top-xs-purple'),(11125,87,0,1591,'/w/b/wb01-purple_main_1.jpg'),(11126,88,0,1591,'/w/b/wb01-purple_main_1.jpg'),(11127,89,0,1591,'/w/b/wb01-purple_main_1.jpg'),(11128,73,0,1591,'Electra Bra Top-XS-Purple'),(11129,106,0,1592,'container2'),(11130,124,0,1592,'0'),(11131,121,0,1592,'electra-bra-top-s-black'),(11132,87,0,1592,'/w/b/wb01-black_main_1.jpg'),(11133,88,0,1592,'/w/b/wb01-black_main_1.jpg'),(11134,89,0,1592,'/w/b/wb01-black_main_1.jpg'),(11135,73,0,1592,'Electra Bra Top-S-Black'),(11136,106,0,1593,'container2'),(11137,124,0,1593,'0'),(11138,121,0,1593,'electra-bra-top-s-gray'),(11139,87,0,1593,'/w/b/wb01-gray_main_1.jpg'),(11140,88,0,1593,'/w/b/wb01-gray_main_1.jpg'),(11141,89,0,1593,'/w/b/wb01-gray_main_1.jpg'),(11142,73,0,1593,'Electra Bra Top-S-Gray'),(11143,106,0,1594,'container2'),(11144,124,0,1594,'0'),(11145,121,0,1594,'electra-bra-top-s-purple'),(11146,87,0,1594,'/w/b/wb01-purple_main_1.jpg'),(11147,88,0,1594,'/w/b/wb01-purple_main_1.jpg'),(11148,89,0,1594,'/w/b/wb01-purple_main_1.jpg'),(11149,73,0,1594,'Electra Bra Top-S-Purple'),(11150,106,0,1595,'container2'),(11151,124,0,1595,'0'),(11152,121,0,1595,'electra-bra-top-m-black'),(11153,87,0,1595,'/w/b/wb01-black_main_1.jpg'),(11154,88,0,1595,'/w/b/wb01-black_main_1.jpg'),(11155,89,0,1595,'/w/b/wb01-black_main_1.jpg'),(11156,73,0,1595,'Electra Bra Top-M-Black'),(11157,106,0,1596,'container2'),(11158,124,0,1596,'0'),(11159,121,0,1596,'electra-bra-top-m-gray'),(11160,87,0,1596,'/w/b/wb01-gray_main_1.jpg'),(11161,88,0,1596,'/w/b/wb01-gray_main_1.jpg'),(11162,89,0,1596,'/w/b/wb01-gray_main_1.jpg'),(11163,73,0,1596,'Electra Bra Top-M-Gray'),(11164,106,0,1597,'container2'),(11165,124,0,1597,'0'),(11166,121,0,1597,'electra-bra-top-m-purple'),(11167,87,0,1597,'/w/b/wb01-purple_main_1.jpg'),(11168,88,0,1597,'/w/b/wb01-purple_main_1.jpg'),(11169,89,0,1597,'/w/b/wb01-purple_main_1.jpg'),(11170,73,0,1597,'Electra Bra Top-M-Purple'),(11171,106,0,1598,'container2'),(11172,124,0,1598,'0'),(11173,121,0,1598,'electra-bra-top-l-black'),(11174,87,0,1598,'/w/b/wb01-black_main_1.jpg'),(11175,88,0,1598,'/w/b/wb01-black_main_1.jpg'),(11176,89,0,1598,'/w/b/wb01-black_main_1.jpg'),(11177,73,0,1598,'Electra Bra Top-L-Black'),(11178,106,0,1599,'container2'),(11179,124,0,1599,'0'),(11180,121,0,1599,'electra-bra-top-l-gray'),(11181,87,0,1599,'/w/b/wb01-gray_main_1.jpg'),(11182,88,0,1599,'/w/b/wb01-gray_main_1.jpg'),(11183,89,0,1599,'/w/b/wb01-gray_main_1.jpg'),(11184,73,0,1599,'Electra Bra Top-L-Gray'),(11185,106,0,1600,'container2'),(11186,124,0,1600,'0'),(11187,121,0,1600,'electra-bra-top-l-purple'),(11188,87,0,1600,'/w/b/wb01-purple_main_1.jpg'),(11189,88,0,1600,'/w/b/wb01-purple_main_1.jpg'),(11190,89,0,1600,'/w/b/wb01-purple_main_1.jpg'),(11191,73,0,1600,'Electra Bra Top-L-Purple'),(11192,106,0,1601,'container2'),(11193,124,0,1601,'0'),(11194,121,0,1601,'electra-bra-top-xl-black'),(11195,87,0,1601,'/w/b/wb01-black_main_1.jpg'),(11196,88,0,1601,'/w/b/wb01-black_main_1.jpg'),(11197,89,0,1601,'/w/b/wb01-black_main_1.jpg'),(11198,73,0,1601,'Electra Bra Top-XL-Black'),(11199,106,0,1602,'container2'),(11200,124,0,1602,'0'),(11201,121,0,1602,'electra-bra-top-xl-gray'),(11202,87,0,1602,'/w/b/wb01-gray_main_1.jpg'),(11203,88,0,1602,'/w/b/wb01-gray_main_1.jpg'),(11204,89,0,1602,'/w/b/wb01-gray_main_1.jpg'),(11205,73,0,1602,'Electra Bra Top-XL-Gray'),(11206,106,0,1603,'container2'),(11207,124,0,1603,'0'),(11208,121,0,1603,'electra-bra-top-xl-purple'),(11209,87,0,1603,'/w/b/wb01-purple_main_1.jpg'),(11210,88,0,1603,'/w/b/wb01-purple_main_1.jpg'),(11211,89,0,1603,'/w/b/wb01-purple_main_1.jpg'),(11212,73,0,1603,'Electra Bra Top-XL-Purple'),(11213,106,0,1604,'container2'),(11214,124,0,1604,'0'),(11215,121,0,1604,'electra-bra-top'),(11216,87,0,1604,'/w/b/wb01-gray_main_1.jpg'),(11217,88,0,1604,'/w/b/wb01-gray_main_1.jpg'),(11218,89,0,1604,'/w/b/wb01-gray_main_1.jpg'),(11219,73,0,1604,'Electra Bra Top'),(11220,106,0,1605,'container2'),(11221,124,0,1605,'0'),(11222,121,0,1605,'erica-evercool-sports-bra-xs-blue'),(11223,87,0,1605,'/w/b/wb02-blue_main_1.jpg'),(11224,88,0,1605,'/w/b/wb02-blue_main_1.jpg'),(11225,89,0,1605,'/w/b/wb02-blue_main_1.jpg'),(11226,73,0,1605,'Erica Evercool Sports Bra-XS-Blue'),(11227,106,0,1606,'container2'),(11228,124,0,1606,'0'),(11229,121,0,1606,'erica-evercool-sports-bra-xs-orange'),(11230,87,0,1606,'/w/b/wb02-orange_main_1.jpg'),(11231,88,0,1606,'/w/b/wb02-orange_main_1.jpg'),(11232,89,0,1606,'/w/b/wb02-orange_main_1.jpg'),(11233,73,0,1606,'Erica Evercool Sports Bra-XS-Orange'),(11234,106,0,1607,'container2'),(11235,124,0,1607,'0'),(11236,121,0,1607,'erica-evercool-sports-bra-xs-yellow'),(11237,87,0,1607,'/w/b/wb02-yellow_main_1.jpg'),(11238,88,0,1607,'/w/b/wb02-yellow_main_1.jpg'),(11239,89,0,1607,'/w/b/wb02-yellow_main_1.jpg'),(11240,73,0,1607,'Erica Evercool Sports Bra-XS-Yellow'),(11241,106,0,1608,'container2'),(11242,124,0,1608,'0'),(11243,121,0,1608,'erica-evercool-sports-bra-s-blue'),(11244,87,0,1608,'/w/b/wb02-blue_main_1.jpg'),(11245,88,0,1608,'/w/b/wb02-blue_main_1.jpg'),(11246,89,0,1608,'/w/b/wb02-blue_main_1.jpg'),(11247,73,0,1608,'Erica Evercool Sports Bra-S-Blue'),(11248,106,0,1609,'container2'),(11249,124,0,1609,'0'),(11250,121,0,1609,'erica-evercool-sports-bra-s-orange'),(11251,87,0,1609,'/w/b/wb02-orange_main_1.jpg'),(11252,88,0,1609,'/w/b/wb02-orange_main_1.jpg'),(11253,89,0,1609,'/w/b/wb02-orange_main_1.jpg'),(11254,73,0,1609,'Erica Evercool Sports Bra-S-Orange'),(11255,106,0,1610,'container2'),(11256,124,0,1610,'0'),(11257,121,0,1610,'erica-evercool-sports-bra-s-yellow'),(11258,87,0,1610,'/w/b/wb02-yellow_main_1.jpg'),(11259,88,0,1610,'/w/b/wb02-yellow_main_1.jpg'),(11260,89,0,1610,'/w/b/wb02-yellow_main_1.jpg'),(11261,73,0,1610,'Erica Evercool Sports Bra-S-Yellow'),(11262,106,0,1611,'container2'),(11263,124,0,1611,'0'),(11264,121,0,1611,'erica-evercool-sports-bra-m-blue'),(11265,87,0,1611,'/w/b/wb02-blue_main_1.jpg'),(11266,88,0,1611,'/w/b/wb02-blue_main_1.jpg'),(11267,89,0,1611,'/w/b/wb02-blue_main_1.jpg'),(11268,73,0,1611,'Erica Evercool Sports Bra-M-Blue'),(11269,106,0,1612,'container2'),(11270,124,0,1612,'0'),(11271,121,0,1612,'erica-evercool-sports-bra-m-orange'),(11272,87,0,1612,'/w/b/wb02-orange_main_1.jpg'),(11273,88,0,1612,'/w/b/wb02-orange_main_1.jpg'),(11274,89,0,1612,'/w/b/wb02-orange_main_1.jpg'),(11275,73,0,1612,'Erica Evercool Sports Bra-M-Orange'),(11276,106,0,1613,'container2'),(11277,124,0,1613,'0'),(11278,121,0,1613,'erica-evercool-sports-bra-m-yellow'),(11279,87,0,1613,'/w/b/wb02-yellow_main_1.jpg'),(11280,88,0,1613,'/w/b/wb02-yellow_main_1.jpg'),(11281,89,0,1613,'/w/b/wb02-yellow_main_1.jpg'),(11282,73,0,1613,'Erica Evercool Sports Bra-M-Yellow'),(11283,106,0,1614,'container2'),(11284,124,0,1614,'0'),(11285,121,0,1614,'erica-evercool-sports-bra-l-blue'),(11286,87,0,1614,'/w/b/wb02-blue_main_1.jpg'),(11287,88,0,1614,'/w/b/wb02-blue_main_1.jpg'),(11288,89,0,1614,'/w/b/wb02-blue_main_1.jpg'),(11289,73,0,1614,'Erica Evercool Sports Bra-L-Blue'),(11290,106,0,1615,'container2'),(11291,124,0,1615,'0'),(11292,121,0,1615,'erica-evercool-sports-bra-l-orange'),(11293,87,0,1615,'/w/b/wb02-orange_main_1.jpg'),(11294,88,0,1615,'/w/b/wb02-orange_main_1.jpg'),(11295,89,0,1615,'/w/b/wb02-orange_main_1.jpg'),(11296,73,0,1615,'Erica Evercool Sports Bra-L-Orange'),(11297,106,0,1616,'container2'),(11298,124,0,1616,'0'),(11299,121,0,1616,'erica-evercool-sports-bra-l-yellow'),(11300,87,0,1616,'/w/b/wb02-yellow_main_1.jpg'),(11301,88,0,1616,'/w/b/wb02-yellow_main_1.jpg'),(11302,89,0,1616,'/w/b/wb02-yellow_main_1.jpg'),(11303,73,0,1616,'Erica Evercool Sports Bra-L-Yellow'),(11304,106,0,1617,'container2'),(11305,124,0,1617,'0'),(11306,121,0,1617,'erica-evercool-sports-bra-xl-blue'),(11307,87,0,1617,'/w/b/wb02-blue_main_1.jpg'),(11308,88,0,1617,'/w/b/wb02-blue_main_1.jpg'),(11309,89,0,1617,'/w/b/wb02-blue_main_1.jpg'),(11310,73,0,1617,'Erica Evercool Sports Bra-XL-Blue'),(11311,106,0,1618,'container2'),(11312,124,0,1618,'0'),(11313,121,0,1618,'erica-evercool-sports-bra-xl-orange'),(11314,87,0,1618,'/w/b/wb02-orange_main_1.jpg'),(11315,88,0,1618,'/w/b/wb02-orange_main_1.jpg'),(11316,89,0,1618,'/w/b/wb02-orange_main_1.jpg'),(11317,73,0,1618,'Erica Evercool Sports Bra-XL-Orange'),(11318,106,0,1619,'container2'),(11319,124,0,1619,'0'),(11320,121,0,1619,'erica-evercool-sports-bra-xl-yellow'),(11321,87,0,1619,'/w/b/wb02-yellow_main_1.jpg'),(11322,88,0,1619,'/w/b/wb02-yellow_main_1.jpg'),(11323,89,0,1619,'/w/b/wb02-yellow_main_1.jpg'),(11324,73,0,1619,'Erica Evercool Sports Bra-XL-Yellow'),(11325,106,0,1620,'container2'),(11326,124,0,1620,'0'),(11327,121,0,1620,'erica-evercool-sports-bra'),(11328,87,0,1620,'/w/b/wb02-blue_main_1.jpg'),(11329,88,0,1620,'/w/b/wb02-blue_main_1.jpg'),(11330,89,0,1620,'/w/b/wb02-blue_main_1.jpg'),(11331,73,0,1620,'Erica Evercool Sports Bra'),(11332,106,0,1621,'container2'),(11333,124,0,1621,'0'),(11334,121,0,1621,'celeste-sports-bra-xs-green'),(11335,87,0,1621,'/w/b/wb03-green_main_1.jpg'),(11336,88,0,1621,'/w/b/wb03-green_main_1.jpg'),(11337,89,0,1621,'/w/b/wb03-green_main_1.jpg'),(11338,73,0,1621,'Celeste Sports Bra-XS-Green'),(11339,106,0,1622,'container2'),(11340,124,0,1622,'0'),(11341,121,0,1622,'celeste-sports-bra-xs-red'),(11342,87,0,1622,'/w/b/wb03-red_main_1.jpg'),(11343,88,0,1622,'/w/b/wb03-red_main_1.jpg'),(11344,89,0,1622,'/w/b/wb03-red_main_1.jpg'),(11345,73,0,1622,'Celeste Sports Bra-XS-Red'),(11346,106,0,1623,'container2'),(11347,124,0,1623,'0'),(11348,121,0,1623,'celeste-sports-bra-xs-yellow'),(11349,87,0,1623,'/w/b/wb03-yellow_main_1.jpg'),(11350,88,0,1623,'/w/b/wb03-yellow_main_1.jpg'),(11351,89,0,1623,'/w/b/wb03-yellow_main_1.jpg'),(11352,73,0,1623,'Celeste Sports Bra-XS-Yellow'),(11353,106,0,1624,'container2'),(11354,124,0,1624,'0'),(11355,121,0,1624,'celeste-sports-bra-s-green'),(11356,87,0,1624,'/w/b/wb03-green_main_1.jpg'),(11357,88,0,1624,'/w/b/wb03-green_main_1.jpg'),(11358,89,0,1624,'/w/b/wb03-green_main_1.jpg'),(11359,73,0,1624,'Celeste Sports Bra-S-Green'),(11360,106,0,1625,'container2'),(11361,124,0,1625,'0'),(11362,121,0,1625,'celeste-sports-bra-s-red'),(11363,87,0,1625,'/w/b/wb03-red_main_1.jpg'),(11364,88,0,1625,'/w/b/wb03-red_main_1.jpg'),(11365,89,0,1625,'/w/b/wb03-red_main_1.jpg'),(11366,73,0,1625,'Celeste Sports Bra-S-Red'),(11367,106,0,1626,'container2'),(11368,124,0,1626,'0'),(11369,121,0,1626,'celeste-sports-bra-s-yellow'),(11370,87,0,1626,'/w/b/wb03-yellow_main_1.jpg'),(11371,88,0,1626,'/w/b/wb03-yellow_main_1.jpg'),(11372,89,0,1626,'/w/b/wb03-yellow_main_1.jpg'),(11373,73,0,1626,'Celeste Sports Bra-S-Yellow'),(11374,106,0,1627,'container2'),(11375,124,0,1627,'0'),(11376,121,0,1627,'celeste-sports-bra-m-green'),(11377,87,0,1627,'/w/b/wb03-green_main_1.jpg'),(11378,88,0,1627,'/w/b/wb03-green_main_1.jpg'),(11379,89,0,1627,'/w/b/wb03-green_main_1.jpg'),(11380,73,0,1627,'Celeste Sports Bra-M-Green'),(11381,106,0,1628,'container2'),(11382,124,0,1628,'0'),(11383,121,0,1628,'celeste-sports-bra-m-red'),(11384,87,0,1628,'/w/b/wb03-red_main_1.jpg'),(11385,88,0,1628,'/w/b/wb03-red_main_1.jpg'),(11386,89,0,1628,'/w/b/wb03-red_main_1.jpg'),(11387,73,0,1628,'Celeste Sports Bra-M-Red'),(11388,106,0,1629,'container2'),(11389,124,0,1629,'0'),(11390,121,0,1629,'celeste-sports-bra-m-yellow'),(11391,87,0,1629,'/w/b/wb03-yellow_main_1.jpg'),(11392,88,0,1629,'/w/b/wb03-yellow_main_1.jpg'),(11393,89,0,1629,'/w/b/wb03-yellow_main_1.jpg'),(11394,73,0,1629,'Celeste Sports Bra-M-Yellow'),(11395,106,0,1630,'container2'),(11396,124,0,1630,'0'),(11397,121,0,1630,'celeste-sports-bra-l-green'),(11398,87,0,1630,'/w/b/wb03-green_main_1.jpg'),(11399,88,0,1630,'/w/b/wb03-green_main_1.jpg'),(11400,89,0,1630,'/w/b/wb03-green_main_1.jpg'),(11401,73,0,1630,'Celeste Sports Bra-L-Green'),(11402,106,0,1631,'container2'),(11403,124,0,1631,'0'),(11404,121,0,1631,'celeste-sports-bra-l-red'),(11405,87,0,1631,'/w/b/wb03-red_main_1.jpg'),(11406,88,0,1631,'/w/b/wb03-red_main_1.jpg'),(11407,89,0,1631,'/w/b/wb03-red_main_1.jpg'),(11408,73,0,1631,'Celeste Sports Bra-L-Red'),(11409,106,0,1632,'container2'),(11410,124,0,1632,'0'),(11411,121,0,1632,'celeste-sports-bra-l-yellow'),(11412,87,0,1632,'/w/b/wb03-yellow_main_1.jpg'),(11413,88,0,1632,'/w/b/wb03-yellow_main_1.jpg'),(11414,89,0,1632,'/w/b/wb03-yellow_main_1.jpg'),(11415,73,0,1632,'Celeste Sports Bra-L-Yellow'),(11416,106,0,1633,'container2'),(11417,124,0,1633,'0'),(11418,121,0,1633,'celeste-sports-bra-xl-green'),(11419,87,0,1633,'/w/b/wb03-green_main_1.jpg'),(11420,88,0,1633,'/w/b/wb03-green_main_1.jpg'),(11421,89,0,1633,'/w/b/wb03-green_main_1.jpg'),(11422,73,0,1633,'Celeste Sports Bra-XL-Green'),(11423,106,0,1634,'container2'),(11424,124,0,1634,'0'),(11425,121,0,1634,'celeste-sports-bra-xl-red'),(11426,87,0,1634,'/w/b/wb03-red_main_1.jpg'),(11427,88,0,1634,'/w/b/wb03-red_main_1.jpg'),(11428,89,0,1634,'/w/b/wb03-red_main_1.jpg'),(11429,73,0,1634,'Celeste Sports Bra-XL-Red'),(11430,106,0,1635,'container2'),(11431,124,0,1635,'0'),(11432,121,0,1635,'celeste-sports-bra-xl-yellow'),(11433,87,0,1635,'/w/b/wb03-yellow_main_1.jpg'),(11434,88,0,1635,'/w/b/wb03-yellow_main_1.jpg'),(11435,89,0,1635,'/w/b/wb03-yellow_main_1.jpg'),(11436,73,0,1635,'Celeste Sports Bra-XL-Yellow'),(11437,106,0,1636,'container2'),(11438,124,0,1636,'0'),(11439,121,0,1636,'celeste-sports-bra'),(11440,87,0,1636,'/w/b/wb03-green_main_1.jpg'),(11441,88,0,1636,'/w/b/wb03-green_main_1.jpg'),(11442,89,0,1636,'/w/b/wb03-green_main_1.jpg'),(11443,73,0,1636,'Celeste Sports Bra'),(11444,106,0,1637,'container2'),(11445,124,0,1637,'0'),(11446,121,0,1637,'prima-compete-bra-top-xs-blue'),(11447,87,0,1637,'/w/b/wb04-blue_main_1.jpg'),(11448,88,0,1637,'/w/b/wb04-blue_main_1.jpg'),(11449,89,0,1637,'/w/b/wb04-blue_main_1.jpg'),(11450,73,0,1637,'Prima Compete Bra Top-XS-Blue'),(11451,106,0,1638,'container2'),(11452,124,0,1638,'0'),(11453,121,0,1638,'prima-compete-bra-top-xs-purple'),(11454,87,0,1638,'/w/b/wb04-purple_main_1.jpg'),(11455,88,0,1638,'/w/b/wb04-purple_main_1.jpg'),(11456,89,0,1638,'/w/b/wb04-purple_main_1.jpg'),(11457,73,0,1638,'Prima Compete Bra Top-XS-Purple'),(11458,106,0,1639,'container2'),(11459,124,0,1639,'0'),(11460,121,0,1639,'prima-compete-bra-top-xs-yellow'),(11461,87,0,1639,'/w/b/wb04-yellow_main_1.jpg'),(11462,88,0,1639,'/w/b/wb04-yellow_main_1.jpg'),(11463,89,0,1639,'/w/b/wb04-yellow_main_1.jpg'),(11464,73,0,1639,'Prima Compete Bra Top-XS-Yellow'),(11465,106,0,1640,'container2'),(11466,124,0,1640,'0'),(11467,121,0,1640,'prima-compete-bra-top-s-blue'),(11468,87,0,1640,'/w/b/wb04-blue_main_1.jpg'),(11469,88,0,1640,'/w/b/wb04-blue_main_1.jpg'),(11470,89,0,1640,'/w/b/wb04-blue_main_1.jpg'),(11471,73,0,1640,'Prima Compete Bra Top-S-Blue'),(11472,106,0,1641,'container2'),(11473,124,0,1641,'0'),(11474,121,0,1641,'prima-compete-bra-top-s-purple'),(11475,87,0,1641,'/w/b/wb04-purple_main_1.jpg'),(11476,88,0,1641,'/w/b/wb04-purple_main_1.jpg'),(11477,89,0,1641,'/w/b/wb04-purple_main_1.jpg'),(11478,73,0,1641,'Prima Compete Bra Top-S-Purple'),(11479,106,0,1642,'container2'),(11480,124,0,1642,'0'),(11481,121,0,1642,'prima-compete-bra-top-s-yellow'),(11482,87,0,1642,'/w/b/wb04-yellow_main_1.jpg'),(11483,88,0,1642,'/w/b/wb04-yellow_main_1.jpg'),(11484,89,0,1642,'/w/b/wb04-yellow_main_1.jpg'),(11485,73,0,1642,'Prima Compete Bra Top-S-Yellow'),(11486,106,0,1643,'container2'),(11487,124,0,1643,'0'),(11488,121,0,1643,'prima-compete-bra-top-m-blue'),(11489,87,0,1643,'/w/b/wb04-blue_main_1.jpg'),(11490,88,0,1643,'/w/b/wb04-blue_main_1.jpg'),(11491,89,0,1643,'/w/b/wb04-blue_main_1.jpg'),(11492,73,0,1643,'Prima Compete Bra Top-M-Blue'),(11493,106,0,1644,'container2'),(11494,124,0,1644,'0'),(11495,121,0,1644,'prima-compete-bra-top-m-purple'),(11496,87,0,1644,'/w/b/wb04-purple_main_1.jpg'),(11497,88,0,1644,'/w/b/wb04-purple_main_1.jpg'),(11498,89,0,1644,'/w/b/wb04-purple_main_1.jpg'),(11499,73,0,1644,'Prima Compete Bra Top-M-Purple'),(11500,106,0,1645,'container2'),(11501,124,0,1645,'0'),(11502,121,0,1645,'prima-compete-bra-top-m-yellow'),(11503,87,0,1645,'/w/b/wb04-yellow_main_1.jpg'),(11504,88,0,1645,'/w/b/wb04-yellow_main_1.jpg'),(11505,89,0,1645,'/w/b/wb04-yellow_main_1.jpg'),(11506,73,0,1645,'Prima Compete Bra Top-M-Yellow'),(11507,106,0,1646,'container2'),(11508,124,0,1646,'0'),(11509,121,0,1646,'prima-compete-bra-top-l-blue'),(11510,87,0,1646,'/w/b/wb04-blue_main_1.jpg'),(11511,88,0,1646,'/w/b/wb04-blue_main_1.jpg'),(11512,89,0,1646,'/w/b/wb04-blue_main_1.jpg'),(11513,73,0,1646,'Prima Compete Bra Top-L-Blue'),(11514,106,0,1647,'container2'),(11515,124,0,1647,'0'),(11516,121,0,1647,'prima-compete-bra-top-l-purple'),(11517,87,0,1647,'/w/b/wb04-purple_main_2.jpg'),(11518,88,0,1647,'/w/b/wb04-purple_main_2.jpg'),(11519,89,0,1647,'/w/b/wb04-purple_main_2.jpg'),(11520,73,0,1647,'Prima Compete Bra Top-L-Purple'),(11521,106,0,1648,'container2'),(11522,124,0,1648,'0'),(11523,121,0,1648,'prima-compete-bra-top-l-yellow'),(11524,87,0,1648,'/w/b/wb04-yellow_main_2.jpg'),(11525,88,0,1648,'/w/b/wb04-yellow_main_2.jpg'),(11526,89,0,1648,'/w/b/wb04-yellow_main_2.jpg'),(11527,73,0,1648,'Prima Compete Bra Top-L-Yellow'),(11528,106,0,1649,'container2'),(11529,124,0,1649,'0'),(11530,121,0,1649,'prima-compete-bra-top-xl-blue'),(11531,87,0,1649,'/w/b/wb04-blue_main_2.jpg'),(11532,88,0,1649,'/w/b/wb04-blue_main_2.jpg'),(11533,89,0,1649,'/w/b/wb04-blue_main_2.jpg'),(11534,73,0,1649,'Prima Compete Bra Top-XL-Blue'),(11535,106,0,1650,'container2'),(11536,124,0,1650,'0'),(11537,121,0,1650,'prima-compete-bra-top-xl-purple'),(11538,87,0,1650,'/w/b/wb04-purple_main_2.jpg'),(11539,88,0,1650,'/w/b/wb04-purple_main_2.jpg'),(11540,89,0,1650,'/w/b/wb04-purple_main_2.jpg'),(11541,73,0,1650,'Prima Compete Bra Top-XL-Purple'),(11542,106,0,1651,'container2'),(11543,124,0,1651,'0'),(11544,121,0,1651,'prima-compete-bra-top-xl-yellow'),(11545,87,0,1651,'/w/b/wb04-yellow_main_2.jpg'),(11546,88,0,1651,'/w/b/wb04-yellow_main_2.jpg'),(11547,89,0,1651,'/w/b/wb04-yellow_main_2.jpg'),(11548,73,0,1651,'Prima Compete Bra Top-XL-Yellow'),(11549,106,0,1652,'container2'),(11550,124,0,1652,'0'),(11551,121,0,1652,'prima-compete-bra-top'),(11552,87,0,1652,'/w/b/wb04-blue_main_2.jpg'),(11553,88,0,1652,'/w/b/wb04-blue_main_2.jpg'),(11554,89,0,1652,'/w/b/wb04-blue_main_2.jpg'),(11555,73,0,1652,'Prima Compete Bra Top'),(11556,106,0,1653,'container2'),(11557,124,0,1653,'0'),(11558,121,0,1653,'lucia-cross-fit-bra-xs-black'),(11559,87,0,1653,'/w/b/wb05-black_main_1.jpg'),(11560,88,0,1653,'/w/b/wb05-black_main_1.jpg'),(11561,89,0,1653,'/w/b/wb05-black_main_1.jpg'),(11562,73,0,1653,'Lucia Cross-Fit Bra -XS-Black'),(11563,106,0,1654,'container2'),(11564,124,0,1654,'0'),(11565,121,0,1654,'lucia-cross-fit-bra-xs-orange'),(11566,87,0,1654,'/w/b/wb05-orange_main_1.jpg'),(11567,88,0,1654,'/w/b/wb05-orange_main_1.jpg'),(11568,89,0,1654,'/w/b/wb05-orange_main_1.jpg'),(11569,73,0,1654,'Lucia Cross-Fit Bra -XS-Orange'),(11570,106,0,1655,'container2'),(11571,124,0,1655,'0'),(11572,121,0,1655,'lucia-cross-fit-bra-xs-purple'),(11573,87,0,1655,'/w/b/wb05-purple_main_1.jpg'),(11574,88,0,1655,'/w/b/wb05-purple_main_1.jpg'),(11575,89,0,1655,'/w/b/wb05-purple_main_1.jpg'),(11576,73,0,1655,'Lucia Cross-Fit Bra -XS-Purple'),(11577,106,0,1656,'container2'),(11578,124,0,1656,'0'),(11579,121,0,1656,'lucia-cross-fit-bra-s-black'),(11580,87,0,1656,'/w/b/wb05-black_main_1.jpg'),(11581,88,0,1656,'/w/b/wb05-black_main_1.jpg'),(11582,89,0,1656,'/w/b/wb05-black_main_1.jpg'),(11583,73,0,1656,'Lucia Cross-Fit Bra -S-Black'),(11584,106,0,1657,'container2'),(11585,124,0,1657,'0'),(11586,121,0,1657,'lucia-cross-fit-bra-s-orange'),(11587,87,0,1657,'/w/b/wb05-orange_main_1.jpg'),(11588,88,0,1657,'/w/b/wb05-orange_main_1.jpg'),(11589,89,0,1657,'/w/b/wb05-orange_main_1.jpg'),(11590,73,0,1657,'Lucia Cross-Fit Bra -S-Orange'),(11591,106,0,1658,'container2'),(11592,124,0,1658,'0'),(11593,121,0,1658,'lucia-cross-fit-bra-s-purple'),(11594,87,0,1658,'/w/b/wb05-purple_main_1.jpg'),(11595,88,0,1658,'/w/b/wb05-purple_main_1.jpg'),(11596,89,0,1658,'/w/b/wb05-purple_main_1.jpg'),(11597,73,0,1658,'Lucia Cross-Fit Bra -S-Purple'),(11598,106,0,1659,'container2'),(11599,124,0,1659,'0'),(11600,121,0,1659,'lucia-cross-fit-bra-m-black'),(11601,87,0,1659,'/w/b/wb05-black_main_1.jpg'),(11602,88,0,1659,'/w/b/wb05-black_main_1.jpg'),(11603,89,0,1659,'/w/b/wb05-black_main_1.jpg'),(11604,73,0,1659,'Lucia Cross-Fit Bra -M-Black'),(11605,106,0,1660,'container2'),(11606,124,0,1660,'0'),(11607,121,0,1660,'lucia-cross-fit-bra-m-orange'),(11608,87,0,1660,'/w/b/wb05-orange_main_1.jpg'),(11609,88,0,1660,'/w/b/wb05-orange_main_1.jpg'),(11610,89,0,1660,'/w/b/wb05-orange_main_1.jpg'),(11611,73,0,1660,'Lucia Cross-Fit Bra -M-Orange'),(11612,106,0,1661,'container2'),(11613,124,0,1661,'0'),(11614,121,0,1661,'lucia-cross-fit-bra-m-purple'),(11615,87,0,1661,'/w/b/wb05-purple_main_1.jpg'),(11616,88,0,1661,'/w/b/wb05-purple_main_1.jpg'),(11617,89,0,1661,'/w/b/wb05-purple_main_1.jpg'),(11618,73,0,1661,'Lucia Cross-Fit Bra -M-Purple'),(11619,106,0,1662,'container2'),(11620,124,0,1662,'0'),(11621,121,0,1662,'lucia-cross-fit-bra-l-black'),(11622,87,0,1662,'/w/b/wb05-black_main_1.jpg'),(11623,88,0,1662,'/w/b/wb05-black_main_1.jpg'),(11624,89,0,1662,'/w/b/wb05-black_main_1.jpg'),(11625,73,0,1662,'Lucia Cross-Fit Bra -L-Black'),(11626,106,0,1663,'container2'),(11627,124,0,1663,'0'),(11628,121,0,1663,'lucia-cross-fit-bra-l-orange'),(11629,87,0,1663,'/w/b/wb05-orange_main_1.jpg'),(11630,88,0,1663,'/w/b/wb05-orange_main_1.jpg'),(11631,89,0,1663,'/w/b/wb05-orange_main_1.jpg'),(11632,73,0,1663,'Lucia Cross-Fit Bra -L-Orange'),(11633,106,0,1664,'container2'),(11634,124,0,1664,'0'),(11635,121,0,1664,'lucia-cross-fit-bra-l-purple'),(11636,87,0,1664,'/w/b/wb05-purple_main_1.jpg'),(11637,88,0,1664,'/w/b/wb05-purple_main_1.jpg'),(11638,89,0,1664,'/w/b/wb05-purple_main_1.jpg'),(11639,73,0,1664,'Lucia Cross-Fit Bra -L-Purple'),(11640,106,0,1665,'container2'),(11641,124,0,1665,'0'),(11642,121,0,1665,'lucia-cross-fit-bra-xl-black'),(11643,87,0,1665,'/w/b/wb05-black_main_1.jpg'),(11644,88,0,1665,'/w/b/wb05-black_main_1.jpg'),(11645,89,0,1665,'/w/b/wb05-black_main_1.jpg'),(11646,73,0,1665,'Lucia Cross-Fit Bra -XL-Black'),(11647,106,0,1666,'container2'),(11648,124,0,1666,'0'),(11649,121,0,1666,'lucia-cross-fit-bra-xl-orange'),(11650,87,0,1666,'/w/b/wb05-orange_main_1.jpg'),(11651,88,0,1666,'/w/b/wb05-orange_main_1.jpg'),(11652,89,0,1666,'/w/b/wb05-orange_main_1.jpg'),(11653,73,0,1666,'Lucia Cross-Fit Bra -XL-Orange'),(11654,106,0,1667,'container2'),(11655,124,0,1667,'0'),(11656,121,0,1667,'lucia-cross-fit-bra-xl-purple'),(11657,87,0,1667,'/w/b/wb05-purple_main_1.jpg'),(11658,88,0,1667,'/w/b/wb05-purple_main_1.jpg'),(11659,89,0,1667,'/w/b/wb05-purple_main_1.jpg'),(11660,73,0,1667,'Lucia Cross-Fit Bra -XL-Purple'),(11661,106,0,1668,'container2'),(11662,124,0,1668,'0'),(11663,121,0,1668,'lucia-cross-fit-bra'),(11664,87,0,1668,'/w/b/wb05-black_main_1.jpg'),(11665,88,0,1668,'/w/b/wb05-black_main_1.jpg'),(11666,89,0,1668,'/w/b/wb05-black_main_1.jpg'),(11667,73,0,1668,'Lucia Cross-Fit Bra '),(11668,106,0,1669,'container2'),(11669,124,0,1669,'0'),(11670,121,0,1669,'bella-tank-xs-black'),(11671,87,0,1669,'/w/t/wt01-black_main_1.jpg'),(11672,88,0,1669,'/w/t/wt01-black_main_1.jpg'),(11673,89,0,1669,'/w/t/wt01-black_main_1.jpg'),(11674,73,0,1669,'Bella Tank-XS-Black'),(11675,106,0,1670,'container2'),(11676,124,0,1670,'0'),(11677,121,0,1670,'bella-tank-xs-blue'),(11678,87,0,1670,'/w/t/wt01-blue_main_1.jpg'),(11679,88,0,1670,'/w/t/wt01-blue_main_1.jpg'),(11680,89,0,1670,'/w/t/wt01-blue_main_1.jpg'),(11681,73,0,1670,'Bella Tank-XS-Blue'),(11682,106,0,1671,'container2'),(11683,124,0,1671,'0'),(11684,121,0,1671,'bella-tank-xs-orange'),(11685,87,0,1671,'/w/t/wt01-orange_main_1.jpg'),(11686,88,0,1671,'/w/t/wt01-orange_main_1.jpg'),(11687,89,0,1671,'/w/t/wt01-orange_main_1.jpg'),(11688,73,0,1671,'Bella Tank-XS-Orange'),(11689,106,0,1672,'container2'),(11690,124,0,1672,'0'),(11691,121,0,1672,'bella-tank-s-black'),(11692,87,0,1672,'/w/t/wt01-black_main_1.jpg'),(11693,88,0,1672,'/w/t/wt01-black_main_1.jpg'),(11694,89,0,1672,'/w/t/wt01-black_main_1.jpg'),(11695,73,0,1672,'Bella Tank-S-Black'),(11696,106,0,1673,'container2'),(11697,124,0,1673,'0'),(11698,121,0,1673,'bella-tank-s-blue'),(11699,87,0,1673,'/w/t/wt01-blue_main_1.jpg'),(11700,88,0,1673,'/w/t/wt01-blue_main_1.jpg'),(11701,89,0,1673,'/w/t/wt01-blue_main_1.jpg'),(11702,73,0,1673,'Bella Tank-S-Blue'),(11703,106,0,1674,'container2'),(11704,124,0,1674,'0'),(11705,121,0,1674,'bella-tank-s-orange'),(11706,87,0,1674,'/w/t/wt01-orange_main_1.jpg'),(11707,88,0,1674,'/w/t/wt01-orange_main_1.jpg'),(11708,89,0,1674,'/w/t/wt01-orange_main_1.jpg'),(11709,73,0,1674,'Bella Tank-S-Orange'),(11710,106,0,1675,'container2'),(11711,124,0,1675,'0'),(11712,121,0,1675,'bella-tank-m-black'),(11713,87,0,1675,'/w/t/wt01-black_main_1.jpg'),(11714,88,0,1675,'/w/t/wt01-black_main_1.jpg'),(11715,89,0,1675,'/w/t/wt01-black_main_1.jpg'),(11716,73,0,1675,'Bella Tank-M-Black'),(11717,106,0,1676,'container2'),(11718,124,0,1676,'0'),(11719,121,0,1676,'bella-tank-m-blue'),(11720,87,0,1676,'/w/t/wt01-blue_main_1.jpg'),(11721,88,0,1676,'/w/t/wt01-blue_main_1.jpg'),(11722,89,0,1676,'/w/t/wt01-blue_main_1.jpg'),(11723,73,0,1676,'Bella Tank-M-Blue'),(11724,106,0,1677,'container2'),(11725,124,0,1677,'0'),(11726,121,0,1677,'bella-tank-m-orange'),(11727,87,0,1677,'/w/t/wt01-orange_main_1.jpg'),(11728,88,0,1677,'/w/t/wt01-orange_main_1.jpg'),(11729,89,0,1677,'/w/t/wt01-orange_main_1.jpg'),(11730,73,0,1677,'Bella Tank-M-Orange'),(11731,106,0,1678,'container2'),(11732,124,0,1678,'0'),(11733,121,0,1678,'bella-tank-l-black'),(11734,87,0,1678,'/w/t/wt01-black_main_1.jpg'),(11735,88,0,1678,'/w/t/wt01-black_main_1.jpg'),(11736,89,0,1678,'/w/t/wt01-black_main_1.jpg'),(11737,73,0,1678,'Bella Tank-L-Black'),(11738,106,0,1679,'container2'),(11739,124,0,1679,'0'),(11740,121,0,1679,'bella-tank-l-blue'),(11741,87,0,1679,'/w/t/wt01-blue_main_1.jpg'),(11742,88,0,1679,'/w/t/wt01-blue_main_1.jpg'),(11743,89,0,1679,'/w/t/wt01-blue_main_1.jpg'),(11744,73,0,1679,'Bella Tank-L-Blue'),(11745,106,0,1680,'container2'),(11746,124,0,1680,'0'),(11747,121,0,1680,'bella-tank-l-orange'),(11748,87,0,1680,'/w/t/wt01-orange_main_1.jpg'),(11749,88,0,1680,'/w/t/wt01-orange_main_1.jpg'),(11750,89,0,1680,'/w/t/wt01-orange_main_1.jpg'),(11751,73,0,1680,'Bella Tank-L-Orange'),(11752,106,0,1681,'container2'),(11753,124,0,1681,'0'),(11754,121,0,1681,'bella-tank-xl-black'),(11755,87,0,1681,'/w/t/wt01-black_main_1.jpg'),(11756,88,0,1681,'/w/t/wt01-black_main_1.jpg'),(11757,89,0,1681,'/w/t/wt01-black_main_1.jpg'),(11758,73,0,1681,'Bella Tank-XL-Black'),(11759,106,0,1682,'container2'),(11760,124,0,1682,'0'),(11761,121,0,1682,'bella-tank-xl-blue'),(11762,87,0,1682,'/w/t/wt01-blue_main_1.jpg'),(11763,88,0,1682,'/w/t/wt01-blue_main_1.jpg'),(11764,89,0,1682,'/w/t/wt01-blue_main_1.jpg'),(11765,73,0,1682,'Bella Tank-XL-Blue'),(11766,106,0,1683,'container2'),(11767,124,0,1683,'0'),(11768,121,0,1683,'bella-tank-xl-orange'),(11769,87,0,1683,'/w/t/wt01-orange_main_1.jpg'),(11770,88,0,1683,'/w/t/wt01-orange_main_1.jpg'),(11771,89,0,1683,'/w/t/wt01-orange_main_1.jpg'),(11772,73,0,1683,'Bella Tank-XL-Orange'),(11773,106,0,1684,'container2'),(11774,124,0,1684,'0'),(11775,121,0,1684,'bella-tank'),(11776,87,0,1684,'/w/t/wt01-blue_main_1.jpg'),(11777,88,0,1684,'/w/t/wt01-blue_main_1.jpg'),(11778,89,0,1684,'/w/t/wt01-blue_main_1.jpg'),(11779,73,0,1684,'Bella Tank'),(11780,106,0,1685,'container2'),(11781,124,0,1685,'0'),(11782,121,0,1685,'zoe-tank-xs-green'),(11783,87,0,1685,'/w/t/wt02-green_main_1.jpg'),(11784,88,0,1685,'/w/t/wt02-green_main_1.jpg'),(11785,89,0,1685,'/w/t/wt02-green_main_1.jpg'),(11786,73,0,1685,'Zoe Tank-XS-Green'),(11787,106,0,1686,'container2'),(11788,124,0,1686,'0'),(11789,121,0,1686,'zoe-tank-xs-orange'),(11790,87,0,1686,'/w/t/wt02-orange_main_1.jpg'),(11791,88,0,1686,'/w/t/wt02-orange_main_1.jpg'),(11792,89,0,1686,'/w/t/wt02-orange_main_1.jpg'),(11793,73,0,1686,'Zoe Tank-XS-Orange'),(11794,106,0,1687,'container2'),(11795,124,0,1687,'0'),(11796,121,0,1687,'zoe-tank-xs-yellow'),(11797,87,0,1687,'/w/t/wt02-yellow_main_1.jpg'),(11798,88,0,1687,'/w/t/wt02-yellow_main_1.jpg'),(11799,89,0,1687,'/w/t/wt02-yellow_main_1.jpg'),(11800,73,0,1687,'Zoe Tank-XS-Yellow'),(11801,106,0,1688,'container2'),(11802,124,0,1688,'0'),(11803,121,0,1688,'zoe-tank-s-green'),(11804,87,0,1688,'/w/t/wt02-green_main_1.jpg'),(11805,88,0,1688,'/w/t/wt02-green_main_1.jpg'),(11806,89,0,1688,'/w/t/wt02-green_main_1.jpg'),(11807,73,0,1688,'Zoe Tank-S-Green'),(11808,106,0,1689,'container2'),(11809,124,0,1689,'0'),(11810,121,0,1689,'zoe-tank-s-orange'),(11811,87,0,1689,'/w/t/wt02-orange_main_1.jpg'),(11812,88,0,1689,'/w/t/wt02-orange_main_1.jpg'),(11813,89,0,1689,'/w/t/wt02-orange_main_1.jpg'),(11814,73,0,1689,'Zoe Tank-S-Orange'),(11815,106,0,1690,'container2'),(11816,124,0,1690,'0'),(11817,121,0,1690,'zoe-tank-s-yellow'),(11818,87,0,1690,'/w/t/wt02-yellow_main_1.jpg'),(11819,88,0,1690,'/w/t/wt02-yellow_main_1.jpg'),(11820,89,0,1690,'/w/t/wt02-yellow_main_1.jpg'),(11821,73,0,1690,'Zoe Tank-S-Yellow'),(11822,106,0,1691,'container2'),(11823,124,0,1691,'0'),(11824,121,0,1691,'zoe-tank-m-green'),(11825,87,0,1691,'/w/t/wt02-green_main_1.jpg'),(11826,88,0,1691,'/w/t/wt02-green_main_1.jpg'),(11827,89,0,1691,'/w/t/wt02-green_main_1.jpg'),(11828,73,0,1691,'Zoe Tank-M-Green'),(11829,106,0,1692,'container2'),(11830,124,0,1692,'0'),(11831,121,0,1692,'zoe-tank-m-orange'),(11832,87,0,1692,'/w/t/wt02-orange_main_1.jpg'),(11833,88,0,1692,'/w/t/wt02-orange_main_1.jpg'),(11834,89,0,1692,'/w/t/wt02-orange_main_1.jpg'),(11835,73,0,1692,'Zoe Tank-M-Orange'),(11836,106,0,1693,'container2'),(11837,124,0,1693,'0'),(11838,121,0,1693,'zoe-tank-m-yellow'),(11839,87,0,1693,'/w/t/wt02-yellow_main_1.jpg'),(11840,88,0,1693,'/w/t/wt02-yellow_main_1.jpg'),(11841,89,0,1693,'/w/t/wt02-yellow_main_1.jpg'),(11842,73,0,1693,'Zoe Tank-M-Yellow'),(11843,106,0,1694,'container2'),(11844,124,0,1694,'0'),(11845,121,0,1694,'zoe-tank-l-green'),(11846,87,0,1694,'/w/t/wt02-green_main_1.jpg'),(11847,88,0,1694,'/w/t/wt02-green_main_1.jpg'),(11848,89,0,1694,'/w/t/wt02-green_main_1.jpg'),(11849,73,0,1694,'Zoe Tank-L-Green'),(11850,106,0,1695,'container2'),(11851,124,0,1695,'0'),(11852,121,0,1695,'zoe-tank-l-orange'),(11853,87,0,1695,'/w/t/wt02-orange_main_1.jpg'),(11854,88,0,1695,'/w/t/wt02-orange_main_1.jpg'),(11855,89,0,1695,'/w/t/wt02-orange_main_1.jpg'),(11856,73,0,1695,'Zoe Tank-L-Orange'),(11857,106,0,1696,'container2'),(11858,124,0,1696,'0'),(11859,121,0,1696,'zoe-tank-l-yellow'),(11860,87,0,1696,'/w/t/wt02-yellow_main_1.jpg'),(11861,88,0,1696,'/w/t/wt02-yellow_main_1.jpg'),(11862,89,0,1696,'/w/t/wt02-yellow_main_1.jpg'),(11863,73,0,1696,'Zoe Tank-L-Yellow'),(11864,106,0,1697,'container2'),(11865,124,0,1697,'0'),(11866,121,0,1697,'zoe-tank-xl-green'),(11867,87,0,1697,'/w/t/wt02-green_main_1.jpg'),(11868,88,0,1697,'/w/t/wt02-green_main_1.jpg'),(11869,89,0,1697,'/w/t/wt02-green_main_1.jpg'),(11870,73,0,1697,'Zoe Tank-XL-Green'),(11871,106,0,1698,'container2'),(11872,124,0,1698,'0'),(11873,121,0,1698,'zoe-tank-xl-orange'),(11874,87,0,1698,'/w/t/wt02-orange_main_1.jpg'),(11875,88,0,1698,'/w/t/wt02-orange_main_1.jpg'),(11876,89,0,1698,'/w/t/wt02-orange_main_1.jpg'),(11877,73,0,1698,'Zoe Tank-XL-Orange'),(11878,106,0,1699,'container2'),(11879,124,0,1699,'0'),(11880,121,0,1699,'zoe-tank-xl-yellow'),(11881,87,0,1699,'/w/t/wt02-yellow_main_1.jpg'),(11882,88,0,1699,'/w/t/wt02-yellow_main_1.jpg'),(11883,89,0,1699,'/w/t/wt02-yellow_main_1.jpg'),(11884,73,0,1699,'Zoe Tank-XL-Yellow'),(11885,106,0,1700,'container2'),(11886,124,0,1700,'0'),(11887,121,0,1700,'zoe-tank'),(11888,87,0,1700,'/w/t/wt02-orange_main_1.jpg'),(11889,88,0,1700,'/w/t/wt02-orange_main_1.jpg'),(11890,89,0,1700,'/w/t/wt02-orange_main_1.jpg'),(11891,73,0,1700,'Zoe Tank'),(11892,106,0,1701,'container2'),(11893,124,0,1701,'0'),(11894,121,0,1701,'nora-practice-tank-xs-orange'),(11895,87,0,1701,'/w/t/wt03-orange_main_1.jpg'),(11896,88,0,1701,'/w/t/wt03-orange_main_1.jpg'),(11897,89,0,1701,'/w/t/wt03-orange_main_1.jpg'),(11898,73,0,1701,'Nora Practice Tank-XS-Orange'),(11899,106,0,1702,'container2'),(11900,124,0,1702,'0'),(11901,121,0,1702,'nora-practice-tank-xs-purple'),(11902,87,0,1702,'/w/t/wt03-purple_main_1.jpg'),(11903,88,0,1702,'/w/t/wt03-purple_main_1.jpg'),(11904,89,0,1702,'/w/t/wt03-purple_main_1.jpg'),(11905,73,0,1702,'Nora Practice Tank-XS-Purple'),(11906,106,0,1703,'container2'),(11907,124,0,1703,'0'),(11908,121,0,1703,'nora-practice-tank-xs-red'),(11909,87,0,1703,'/w/t/wt03-red_main_1.jpg'),(11910,88,0,1703,'/w/t/wt03-red_main_1.jpg'),(11911,89,0,1703,'/w/t/wt03-red_main_1.jpg'),(11912,73,0,1703,'Nora Practice Tank-XS-Red'),(11913,106,0,1704,'container2'),(11914,124,0,1704,'0'),(11915,121,0,1704,'nora-practice-tank-s-orange'),(11916,87,0,1704,'/w/t/wt03-orange_main_1.jpg'),(11917,88,0,1704,'/w/t/wt03-orange_main_1.jpg'),(11918,89,0,1704,'/w/t/wt03-orange_main_1.jpg'),(11919,73,0,1704,'Nora Practice Tank-S-Orange'),(11920,106,0,1705,'container2'),(11921,124,0,1705,'0'),(11922,121,0,1705,'nora-practice-tank-s-purple'),(11923,87,0,1705,'/w/t/wt03-purple_main_1.jpg'),(11924,88,0,1705,'/w/t/wt03-purple_main_1.jpg'),(11925,89,0,1705,'/w/t/wt03-purple_main_1.jpg'),(11926,73,0,1705,'Nora Practice Tank-S-Purple'),(11927,106,0,1706,'container2'),(11928,124,0,1706,'0'),(11929,121,0,1706,'nora-practice-tank-s-red'),(11930,87,0,1706,'/w/t/wt03-red_main_1.jpg'),(11931,88,0,1706,'/w/t/wt03-red_main_1.jpg'),(11932,89,0,1706,'/w/t/wt03-red_main_1.jpg'),(11933,73,0,1706,'Nora Practice Tank-S-Red'),(11934,106,0,1707,'container2'),(11935,124,0,1707,'0'),(11936,121,0,1707,'nora-practice-tank-m-orange'),(11937,87,0,1707,'/w/t/wt03-orange_main_1.jpg'),(11938,88,0,1707,'/w/t/wt03-orange_main_1.jpg'),(11939,89,0,1707,'/w/t/wt03-orange_main_1.jpg'),(11940,73,0,1707,'Nora Practice Tank-M-Orange'),(11941,106,0,1708,'container2'),(11942,124,0,1708,'0'),(11943,121,0,1708,'nora-practice-tank-m-purple'),(11944,87,0,1708,'/w/t/wt03-purple_main_1.jpg'),(11945,88,0,1708,'/w/t/wt03-purple_main_1.jpg'),(11946,89,0,1708,'/w/t/wt03-purple_main_1.jpg'),(11947,73,0,1708,'Nora Practice Tank-M-Purple'),(11948,106,0,1709,'container2'),(11949,124,0,1709,'0'),(11950,121,0,1709,'nora-practice-tank-m-red'),(11951,87,0,1709,'/w/t/wt03-red_main_1.jpg'),(11952,88,0,1709,'/w/t/wt03-red_main_1.jpg'),(11953,89,0,1709,'/w/t/wt03-red_main_1.jpg'),(11954,73,0,1709,'Nora Practice Tank-M-Red'),(11955,106,0,1710,'container2'),(11956,124,0,1710,'0'),(11957,121,0,1710,'nora-practice-tank-l-orange'),(11958,87,0,1710,'/w/t/wt03-orange_main_1.jpg'),(11959,88,0,1710,'/w/t/wt03-orange_main_1.jpg'),(11960,89,0,1710,'/w/t/wt03-orange_main_1.jpg'),(11961,73,0,1710,'Nora Practice Tank-L-Orange'),(11962,106,0,1711,'container2'),(11963,124,0,1711,'0'),(11964,121,0,1711,'nora-practice-tank-l-purple'),(11965,87,0,1711,'/w/t/wt03-purple_main_1.jpg'),(11966,88,0,1711,'/w/t/wt03-purple_main_1.jpg'),(11967,89,0,1711,'/w/t/wt03-purple_main_1.jpg'),(11968,73,0,1711,'Nora Practice Tank-L-Purple'),(11969,106,0,1712,'container2'),(11970,124,0,1712,'0'),(11971,121,0,1712,'nora-practice-tank-l-red'),(11972,87,0,1712,'/w/t/wt03-red_main_1.jpg'),(11973,88,0,1712,'/w/t/wt03-red_main_1.jpg'),(11974,89,0,1712,'/w/t/wt03-red_main_1.jpg'),(11975,73,0,1712,'Nora Practice Tank-L-Red'),(11976,106,0,1713,'container2'),(11977,124,0,1713,'0'),(11978,121,0,1713,'nora-practice-tank-xl-orange'),(11979,87,0,1713,'/w/t/wt03-orange_main_1.jpg'),(11980,88,0,1713,'/w/t/wt03-orange_main_1.jpg'),(11981,89,0,1713,'/w/t/wt03-orange_main_1.jpg'),(11982,73,0,1713,'Nora Practice Tank-XL-Orange'),(11983,106,0,1714,'container2'),(11984,124,0,1714,'0'),(11985,121,0,1714,'nora-practice-tank-xl-purple'),(11986,87,0,1714,'/w/t/wt03-purple_main_1.jpg'),(11987,88,0,1714,'/w/t/wt03-purple_main_1.jpg'),(11988,89,0,1714,'/w/t/wt03-purple_main_1.jpg'),(11989,73,0,1714,'Nora Practice Tank-XL-Purple'),(11990,106,0,1715,'container2'),(11991,124,0,1715,'0'),(11992,121,0,1715,'nora-practice-tank-xl-red'),(11993,87,0,1715,'/w/t/wt03-red_main_1.jpg'),(11994,88,0,1715,'/w/t/wt03-red_main_1.jpg'),(11995,89,0,1715,'/w/t/wt03-red_main_1.jpg'),(11996,73,0,1715,'Nora Practice Tank-XL-Red'),(11997,106,0,1716,'container2'),(11998,124,0,1716,'0'),(11999,121,0,1716,'nora-practice-tank'),(12000,87,0,1716,'/w/t/wt03-red_main_1.jpg'),(12001,88,0,1716,'/w/t/wt03-red_main_1.jpg'),(12002,89,0,1716,'/w/t/wt03-red_main_1.jpg'),(12003,73,0,1716,'Nora Practice Tank'),(12004,106,0,1717,'container2'),(12005,124,0,1717,'0'),(12006,121,0,1717,'nona-fitness-tank-xs-blue'),(12007,87,0,1717,'/w/t/wt04-blue_main_1.jpg'),(12008,88,0,1717,'/w/t/wt04-blue_main_1.jpg'),(12009,89,0,1717,'/w/t/wt04-blue_main_1.jpg'),(12010,73,0,1717,'Nona Fitness Tank-XS-Blue'),(12011,106,0,1718,'container2'),(12012,124,0,1718,'0'),(12013,121,0,1718,'nona-fitness-tank-xs-purple'),(12014,87,0,1718,'/w/t/wt04-purple_main_1.jpg'),(12015,88,0,1718,'/w/t/wt04-purple_main_1.jpg'),(12016,89,0,1718,'/w/t/wt04-purple_main_1.jpg'),(12017,73,0,1718,'Nona Fitness Tank-XS-Purple'),(12018,106,0,1719,'container2'),(12019,124,0,1719,'0'),(12020,121,0,1719,'nona-fitness-tank-xs-red'),(12021,87,0,1719,'/w/t/wt04-red_main_1.jpg'),(12022,88,0,1719,'/w/t/wt04-red_main_1.jpg'),(12023,89,0,1719,'/w/t/wt04-red_main_1.jpg'),(12024,73,0,1719,'Nona Fitness Tank-XS-Red'),(12025,106,0,1720,'container2'),(12026,124,0,1720,'0'),(12027,121,0,1720,'nona-fitness-tank-s-blue'),(12028,87,0,1720,'/w/t/wt04-blue_main_1.jpg'),(12029,88,0,1720,'/w/t/wt04-blue_main_1.jpg'),(12030,89,0,1720,'/w/t/wt04-blue_main_1.jpg'),(12031,73,0,1720,'Nona Fitness Tank-S-Blue'),(12032,106,0,1721,'container2'),(12033,124,0,1721,'0'),(12034,121,0,1721,'nona-fitness-tank-s-purple'),(12035,87,0,1721,'/w/t/wt04-purple_main_1.jpg'),(12036,88,0,1721,'/w/t/wt04-purple_main_1.jpg'),(12037,89,0,1721,'/w/t/wt04-purple_main_1.jpg'),(12038,73,0,1721,'Nona Fitness Tank-S-Purple'),(12039,106,0,1722,'container2'),(12040,124,0,1722,'0'),(12041,121,0,1722,'nona-fitness-tank-s-red'),(12042,87,0,1722,'/w/t/wt04-red_main_1.jpg'),(12043,88,0,1722,'/w/t/wt04-red_main_1.jpg'),(12044,89,0,1722,'/w/t/wt04-red_main_1.jpg'),(12045,73,0,1722,'Nona Fitness Tank-S-Red'),(12046,106,0,1723,'container2'),(12047,124,0,1723,'0'),(12048,121,0,1723,'nona-fitness-tank-m-blue'),(12049,87,0,1723,'/w/t/wt04-blue_main_1.jpg'),(12050,88,0,1723,'/w/t/wt04-blue_main_1.jpg'),(12051,89,0,1723,'/w/t/wt04-blue_main_1.jpg'),(12052,73,0,1723,'Nona Fitness Tank-M-Blue'),(12053,106,0,1724,'container2'),(12054,124,0,1724,'0'),(12055,121,0,1724,'nona-fitness-tank-m-purple'),(12056,87,0,1724,'/w/t/wt04-purple_main_1.jpg'),(12057,88,0,1724,'/w/t/wt04-purple_main_1.jpg'),(12058,89,0,1724,'/w/t/wt04-purple_main_1.jpg'),(12059,73,0,1724,'Nona Fitness Tank-M-Purple'),(12060,106,0,1725,'container2'),(12061,124,0,1725,'0'),(12062,121,0,1725,'nona-fitness-tank-m-red'),(12063,87,0,1725,'/w/t/wt04-red_main_1.jpg'),(12064,88,0,1725,'/w/t/wt04-red_main_1.jpg'),(12065,89,0,1725,'/w/t/wt04-red_main_1.jpg'),(12066,73,0,1725,'Nona Fitness Tank-M-Red'),(12067,106,0,1726,'container2'),(12068,124,0,1726,'0'),(12069,121,0,1726,'nona-fitness-tank-l-blue'),(12070,87,0,1726,'/w/t/wt04-blue_main_1.jpg'),(12071,88,0,1726,'/w/t/wt04-blue_main_1.jpg'),(12072,89,0,1726,'/w/t/wt04-blue_main_1.jpg'),(12073,73,0,1726,'Nona Fitness Tank-L-Blue'),(12074,106,0,1727,'container2'),(12075,124,0,1727,'0'),(12076,121,0,1727,'nona-fitness-tank-l-purple'),(12077,87,0,1727,'/w/t/wt04-purple_main_1.jpg'),(12078,88,0,1727,'/w/t/wt04-purple_main_1.jpg'),(12079,89,0,1727,'/w/t/wt04-purple_main_1.jpg'),(12080,73,0,1727,'Nona Fitness Tank-L-Purple'),(12081,106,0,1728,'container2'),(12082,124,0,1728,'0'),(12083,121,0,1728,'nona-fitness-tank-l-red'),(12084,87,0,1728,'/w/t/wt04-red_main_1.jpg'),(12085,88,0,1728,'/w/t/wt04-red_main_1.jpg'),(12086,89,0,1728,'/w/t/wt04-red_main_1.jpg'),(12087,73,0,1728,'Nona Fitness Tank-L-Red'),(12088,106,0,1729,'container2'),(12089,124,0,1729,'0'),(12090,121,0,1729,'nona-fitness-tank-xl-blue'),(12091,87,0,1729,'/w/t/wt04-blue_main_1.jpg'),(12092,88,0,1729,'/w/t/wt04-blue_main_1.jpg'),(12093,89,0,1729,'/w/t/wt04-blue_main_1.jpg'),(12094,73,0,1729,'Nona Fitness Tank-XL-Blue'),(12095,106,0,1730,'container2'),(12096,124,0,1730,'0'),(12097,121,0,1730,'nona-fitness-tank-xl-purple'),(12098,87,0,1730,'/w/t/wt04-purple_main_1.jpg'),(12099,88,0,1730,'/w/t/wt04-purple_main_1.jpg'),(12100,89,0,1730,'/w/t/wt04-purple_main_1.jpg'),(12101,73,0,1730,'Nona Fitness Tank-XL-Purple'),(12102,106,0,1731,'container2'),(12103,124,0,1731,'0'),(12104,121,0,1731,'nona-fitness-tank-xl-red'),(12105,87,0,1731,'/w/t/wt04-red_main_1.jpg'),(12106,88,0,1731,'/w/t/wt04-red_main_1.jpg'),(12107,89,0,1731,'/w/t/wt04-red_main_1.jpg'),(12108,73,0,1731,'Nona Fitness Tank-XL-Red'),(12109,106,0,1732,'container2'),(12110,124,0,1732,'0'),(12111,121,0,1732,'nona-fitness-tank'),(12112,87,0,1732,'/w/t/wt04-blue_main_1.jpg'),(12113,88,0,1732,'/w/t/wt04-blue_main_1.jpg'),(12114,89,0,1732,'/w/t/wt04-blue_main_1.jpg'),(12115,73,0,1732,'Nona Fitness Tank'),(12116,106,0,1733,'container2'),(12117,124,0,1733,'0'),(12118,121,0,1733,'leah-yoga-top-xs-orange'),(12119,87,0,1733,'/w/t/wt05-orange_main_1.jpg'),(12120,88,0,1733,'/w/t/wt05-orange_main_1.jpg'),(12121,89,0,1733,'/w/t/wt05-orange_main_1.jpg'),(12122,73,0,1733,'Leah Yoga Top-XS-Orange'),(12123,106,0,1734,'container2'),(12124,124,0,1734,'0'),(12125,121,0,1734,'leah-yoga-top-xs-purple'),(12126,87,0,1734,'/w/t/wt05-purple_main_1.jpg'),(12127,88,0,1734,'/w/t/wt05-purple_main_1.jpg'),(12128,89,0,1734,'/w/t/wt05-purple_main_1.jpg'),(12129,73,0,1734,'Leah Yoga Top-XS-Purple'),(12130,106,0,1735,'container2'),(12131,124,0,1735,'0'),(12132,121,0,1735,'leah-yoga-top-xs-white'),(12133,87,0,1735,'/w/t/wt05-white_main_1.jpg'),(12134,88,0,1735,'/w/t/wt05-white_main_1.jpg'),(12135,89,0,1735,'/w/t/wt05-white_main_1.jpg'),(12136,73,0,1735,'Leah Yoga Top-XS-White'),(12137,106,0,1736,'container2'),(12138,124,0,1736,'0'),(12139,121,0,1736,'leah-yoga-top-s-orange'),(12140,87,0,1736,'/w/t/wt05-orange_main_1.jpg'),(12141,88,0,1736,'/w/t/wt05-orange_main_1.jpg'),(12142,89,0,1736,'/w/t/wt05-orange_main_1.jpg'),(12143,73,0,1736,'Leah Yoga Top-S-Orange'),(12144,106,0,1737,'container2'),(12145,124,0,1737,'0'),(12146,121,0,1737,'leah-yoga-top-s-purple'),(12147,87,0,1737,'/w/t/wt05-purple_main_1.jpg'),(12148,88,0,1737,'/w/t/wt05-purple_main_1.jpg'),(12149,89,0,1737,'/w/t/wt05-purple_main_1.jpg'),(12150,73,0,1737,'Leah Yoga Top-S-Purple'),(12151,106,0,1738,'container2'),(12152,124,0,1738,'0'),(12153,121,0,1738,'leah-yoga-top-s-white'),(12154,87,0,1738,'/w/t/wt05-white_main_1.jpg'),(12155,88,0,1738,'/w/t/wt05-white_main_1.jpg'),(12156,89,0,1738,'/w/t/wt05-white_main_1.jpg'),(12157,73,0,1738,'Leah Yoga Top-S-White'),(12158,106,0,1739,'container2'),(12159,124,0,1739,'0'),(12160,121,0,1739,'leah-yoga-top-m-orange'),(12161,87,0,1739,'/w/t/wt05-orange_main_1.jpg'),(12162,88,0,1739,'/w/t/wt05-orange_main_1.jpg'),(12163,89,0,1739,'/w/t/wt05-orange_main_1.jpg'),(12164,73,0,1739,'Leah Yoga Top-M-Orange'),(12165,106,0,1740,'container2'),(12166,124,0,1740,'0'),(12167,121,0,1740,'leah-yoga-top-m-purple'),(12168,87,0,1740,'/w/t/wt05-purple_main_1.jpg'),(12169,88,0,1740,'/w/t/wt05-purple_main_1.jpg'),(12170,89,0,1740,'/w/t/wt05-purple_main_1.jpg'),(12171,73,0,1740,'Leah Yoga Top-M-Purple'),(12172,106,0,1741,'container2'),(12173,124,0,1741,'0'),(12174,121,0,1741,'leah-yoga-top-m-white'),(12175,87,0,1741,'/w/t/wt05-white_main_1.jpg'),(12176,88,0,1741,'/w/t/wt05-white_main_1.jpg'),(12177,89,0,1741,'/w/t/wt05-white_main_1.jpg'),(12178,73,0,1741,'Leah Yoga Top-M-White'),(12179,106,0,1742,'container2'),(12180,124,0,1742,'0'),(12181,121,0,1742,'leah-yoga-top-l-orange'),(12182,87,0,1742,'/w/t/wt05-orange_main_1.jpg'),(12183,88,0,1742,'/w/t/wt05-orange_main_1.jpg'),(12184,89,0,1742,'/w/t/wt05-orange_main_1.jpg'),(12185,73,0,1742,'Leah Yoga Top-L-Orange'),(12186,106,0,1743,'container2'),(12187,124,0,1743,'0'),(12188,121,0,1743,'leah-yoga-top-l-purple'),(12189,87,0,1743,'/w/t/wt05-purple_main_1.jpg'),(12190,88,0,1743,'/w/t/wt05-purple_main_1.jpg'),(12191,89,0,1743,'/w/t/wt05-purple_main_1.jpg'),(12192,73,0,1743,'Leah Yoga Top-L-Purple'),(12193,106,0,1744,'container2'),(12194,124,0,1744,'0'),(12195,121,0,1744,'leah-yoga-top-l-white'),(12196,87,0,1744,'/w/t/wt05-white_main_1.jpg'),(12197,88,0,1744,'/w/t/wt05-white_main_1.jpg'),(12198,89,0,1744,'/w/t/wt05-white_main_1.jpg'),(12199,73,0,1744,'Leah Yoga Top-L-White'),(12200,106,0,1745,'container2'),(12201,124,0,1745,'0'),(12202,121,0,1745,'leah-yoga-top-xl-orange'),(12203,87,0,1745,'/w/t/wt05-orange_main_1.jpg'),(12204,88,0,1745,'/w/t/wt05-orange_main_1.jpg'),(12205,89,0,1745,'/w/t/wt05-orange_main_1.jpg'),(12206,73,0,1745,'Leah Yoga Top-XL-Orange'),(12207,106,0,1746,'container2'),(12208,124,0,1746,'0'),(12209,121,0,1746,'leah-yoga-top-xl-purple'),(12210,87,0,1746,'/w/t/wt05-purple_main_1.jpg'),(12211,88,0,1746,'/w/t/wt05-purple_main_1.jpg'),(12212,89,0,1746,'/w/t/wt05-purple_main_1.jpg'),(12213,73,0,1746,'Leah Yoga Top-XL-Purple'),(12214,106,0,1747,'container2'),(12215,124,0,1747,'0'),(12216,121,0,1747,'leah-yoga-top-xl-white'),(12217,87,0,1747,'/w/t/wt05-white_main_2.jpg'),(12218,88,0,1747,'/w/t/wt05-white_main_2.jpg'),(12219,89,0,1747,'/w/t/wt05-white_main_2.jpg'),(12220,73,0,1747,'Leah Yoga Top-XL-White'),(12221,106,0,1748,'container2'),(12222,124,0,1748,'0'),(12223,121,0,1748,'leah-yoga-top'),(12224,87,0,1748,'/w/t/wt05-purple_main_2.jpg'),(12225,88,0,1748,'/w/t/wt05-purple_main_2.jpg'),(12226,89,0,1748,'/w/t/wt05-purple_main_2.jpg'),(12227,73,0,1748,'Leah Yoga Top'),(12228,106,0,1749,'container2'),(12229,124,0,1749,'0'),(12230,121,0,1749,'chloe-compete-tank-xs-blue'),(12231,87,0,1749,'/w/t/wt06-blue_main_1.jpg'),(12232,88,0,1749,'/w/t/wt06-blue_main_1.jpg'),(12233,89,0,1749,'/w/t/wt06-blue_main_1.jpg'),(12234,73,0,1749,'Chloe Compete Tank-XS-Blue'),(12235,106,0,1750,'container2'),(12236,124,0,1750,'0'),(12237,121,0,1750,'chloe-compete-tank-xs-red'),(12238,87,0,1750,'/w/t/wt06-red_main_1.jpg'),(12239,88,0,1750,'/w/t/wt06-red_main_1.jpg'),(12240,89,0,1750,'/w/t/wt06-red_main_1.jpg'),(12241,73,0,1750,'Chloe Compete Tank-XS-Red'),(12242,106,0,1751,'container2'),(12243,124,0,1751,'0'),(12244,121,0,1751,'chloe-compete-tank-xs-yellow'),(12245,87,0,1751,'/w/t/wt06-yellow_main_1.jpg'),(12246,88,0,1751,'/w/t/wt06-yellow_main_1.jpg'),(12247,89,0,1751,'/w/t/wt06-yellow_main_1.jpg'),(12248,73,0,1751,'Chloe Compete Tank-XS-Yellow'),(12249,106,0,1752,'container2'),(12250,124,0,1752,'0'),(12251,121,0,1752,'chloe-compete-tank-s-blue'),(12252,87,0,1752,'/w/t/wt06-blue_main_1.jpg'),(12253,88,0,1752,'/w/t/wt06-blue_main_1.jpg'),(12254,89,0,1752,'/w/t/wt06-blue_main_1.jpg'),(12255,73,0,1752,'Chloe Compete Tank-S-Blue'),(12256,106,0,1753,'container2'),(12257,124,0,1753,'0'),(12258,121,0,1753,'chloe-compete-tank-s-red'),(12259,87,0,1753,'/w/t/wt06-red_main_1.jpg'),(12260,88,0,1753,'/w/t/wt06-red_main_1.jpg'),(12261,89,0,1753,'/w/t/wt06-red_main_1.jpg'),(12262,73,0,1753,'Chloe Compete Tank-S-Red'),(12263,106,0,1754,'container2'),(12264,124,0,1754,'0'),(12265,121,0,1754,'chloe-compete-tank-s-yellow'),(12266,87,0,1754,'/w/t/wt06-yellow_main_1.jpg'),(12267,88,0,1754,'/w/t/wt06-yellow_main_1.jpg'),(12268,89,0,1754,'/w/t/wt06-yellow_main_1.jpg'),(12269,73,0,1754,'Chloe Compete Tank-S-Yellow'),(12270,106,0,1755,'container2'),(12271,124,0,1755,'0'),(12272,121,0,1755,'chloe-compete-tank-m-blue'),(12273,87,0,1755,'/w/t/wt06-blue_main_1.jpg'),(12274,88,0,1755,'/w/t/wt06-blue_main_1.jpg'),(12275,89,0,1755,'/w/t/wt06-blue_main_1.jpg'),(12276,73,0,1755,'Chloe Compete Tank-M-Blue'),(12277,106,0,1756,'container2'),(12278,124,0,1756,'0'),(12279,121,0,1756,'chloe-compete-tank-m-red'),(12280,87,0,1756,'/w/t/wt06-red_main_1.jpg'),(12281,88,0,1756,'/w/t/wt06-red_main_1.jpg'),(12282,89,0,1756,'/w/t/wt06-red_main_1.jpg'),(12283,73,0,1756,'Chloe Compete Tank-M-Red'),(12284,106,0,1757,'container2'),(12285,124,0,1757,'0'),(12286,121,0,1757,'chloe-compete-tank-m-yellow'),(12287,87,0,1757,'/w/t/wt06-yellow_main_1.jpg'),(12288,88,0,1757,'/w/t/wt06-yellow_main_1.jpg'),(12289,89,0,1757,'/w/t/wt06-yellow_main_1.jpg'),(12290,73,0,1757,'Chloe Compete Tank-M-Yellow'),(12291,106,0,1758,'container2'),(12292,124,0,1758,'0'),(12293,121,0,1758,'chloe-compete-tank-l-blue'),(12294,87,0,1758,'/w/t/wt06-blue_main_1.jpg'),(12295,88,0,1758,'/w/t/wt06-blue_main_1.jpg'),(12296,89,0,1758,'/w/t/wt06-blue_main_1.jpg'),(12297,73,0,1758,'Chloe Compete Tank-L-Blue'),(12298,106,0,1759,'container2'),(12299,124,0,1759,'0'),(12300,121,0,1759,'chloe-compete-tank-l-red'),(12301,87,0,1759,'/w/t/wt06-red_main_1.jpg'),(12302,88,0,1759,'/w/t/wt06-red_main_1.jpg'),(12303,89,0,1759,'/w/t/wt06-red_main_1.jpg'),(12304,73,0,1759,'Chloe Compete Tank-L-Red'),(12305,106,0,1760,'container2'),(12306,124,0,1760,'0'),(12307,121,0,1760,'chloe-compete-tank-l-yellow'),(12308,87,0,1760,'/w/t/wt06-yellow_main_1.jpg'),(12309,88,0,1760,'/w/t/wt06-yellow_main_1.jpg'),(12310,89,0,1760,'/w/t/wt06-yellow_main_1.jpg'),(12311,73,0,1760,'Chloe Compete Tank-L-Yellow'),(12312,106,0,1761,'container2'),(12313,124,0,1761,'0'),(12314,121,0,1761,'chloe-compete-tank-xl-blue'),(12315,87,0,1761,'/w/t/wt06-blue_main_1.jpg'),(12316,88,0,1761,'/w/t/wt06-blue_main_1.jpg'),(12317,89,0,1761,'/w/t/wt06-blue_main_1.jpg'),(12318,73,0,1761,'Chloe Compete Tank-XL-Blue'),(12319,106,0,1762,'container2'),(12320,124,0,1762,'0'),(12321,121,0,1762,'chloe-compete-tank-xl-red'),(12322,87,0,1762,'/w/t/wt06-red_main_1.jpg'),(12323,88,0,1762,'/w/t/wt06-red_main_1.jpg'),(12324,89,0,1762,'/w/t/wt06-red_main_1.jpg'),(12325,73,0,1762,'Chloe Compete Tank-XL-Red'),(12326,106,0,1763,'container2'),(12327,124,0,1763,'0'),(12328,121,0,1763,'chloe-compete-tank-xl-yellow'),(12329,87,0,1763,'/w/t/wt06-yellow_main_1.jpg'),(12330,88,0,1763,'/w/t/wt06-yellow_main_1.jpg'),(12331,89,0,1763,'/w/t/wt06-yellow_main_1.jpg'),(12332,73,0,1763,'Chloe Compete Tank-XL-Yellow'),(12333,106,0,1764,'container2'),(12334,124,0,1764,'0'),(12335,121,0,1764,'chloe-compete-tank'),(12336,87,0,1764,'/w/t/wt06-blue_main_1.jpg'),(12337,88,0,1764,'/w/t/wt06-blue_main_1.jpg'),(12338,89,0,1764,'/w/t/wt06-blue_main_1.jpg'),(12339,73,0,1764,'Chloe Compete Tank'),(12340,106,0,1765,'container2'),(12341,124,0,1765,'0'),(12342,121,0,1765,'maya-tunic-xs-green'),(12343,87,0,1765,'/w/t/wt07-green_main_1.jpg'),(12344,88,0,1765,'/w/t/wt07-green_main_1.jpg'),(12345,89,0,1765,'/w/t/wt07-green_main_1.jpg'),(12346,73,0,1765,'Maya Tunic-XS-Green'),(12347,106,0,1766,'container2'),(12348,124,0,1766,'0'),(12349,121,0,1766,'maya-tunic-xs-white'),(12350,87,0,1766,'/w/t/wt07-white_main_1.jpg'),(12351,88,0,1766,'/w/t/wt07-white_main_1.jpg'),(12352,89,0,1766,'/w/t/wt07-white_main_1.jpg'),(12353,73,0,1766,'Maya Tunic-XS-White'),(12354,106,0,1767,'container2'),(12355,124,0,1767,'0'),(12356,121,0,1767,'maya-tunic-xs-yellow'),(12357,87,0,1767,'/w/t/wt07-yellow_main_1.jpg'),(12358,88,0,1767,'/w/t/wt07-yellow_main_1.jpg'),(12359,89,0,1767,'/w/t/wt07-yellow_main_1.jpg'),(12360,73,0,1767,'Maya Tunic-XS-Yellow'),(12361,106,0,1768,'container2'),(12362,124,0,1768,'0'),(12363,121,0,1768,'maya-tunic-s-green'),(12364,87,0,1768,'/w/t/wt07-green_main_1.jpg'),(12365,88,0,1768,'/w/t/wt07-green_main_1.jpg'),(12366,89,0,1768,'/w/t/wt07-green_main_1.jpg'),(12367,73,0,1768,'Maya Tunic-S-Green'),(12368,106,0,1769,'container2'),(12369,124,0,1769,'0'),(12370,121,0,1769,'maya-tunic-s-white'),(12371,87,0,1769,'/w/t/wt07-white_main_1.jpg'),(12372,88,0,1769,'/w/t/wt07-white_main_1.jpg'),(12373,89,0,1769,'/w/t/wt07-white_main_1.jpg'),(12374,73,0,1769,'Maya Tunic-S-White'),(12375,106,0,1770,'container2'),(12376,124,0,1770,'0'),(12377,121,0,1770,'maya-tunic-s-yellow'),(12378,87,0,1770,'/w/t/wt07-yellow_main_1.jpg'),(12379,88,0,1770,'/w/t/wt07-yellow_main_1.jpg'),(12380,89,0,1770,'/w/t/wt07-yellow_main_1.jpg'),(12381,73,0,1770,'Maya Tunic-S-Yellow'),(12382,106,0,1771,'container2'),(12383,124,0,1771,'0'),(12384,121,0,1771,'maya-tunic-m-green'),(12385,87,0,1771,'/w/t/wt07-green_main_1.jpg'),(12386,88,0,1771,'/w/t/wt07-green_main_1.jpg'),(12387,89,0,1771,'/w/t/wt07-green_main_1.jpg'),(12388,73,0,1771,'Maya Tunic-M-Green'),(12389,106,0,1772,'container2'),(12390,124,0,1772,'0'),(12391,121,0,1772,'maya-tunic-m-white'),(12392,87,0,1772,'/w/t/wt07-white_main_1.jpg'),(12393,88,0,1772,'/w/t/wt07-white_main_1.jpg'),(12394,89,0,1772,'/w/t/wt07-white_main_1.jpg'),(12395,73,0,1772,'Maya Tunic-M-White'),(12396,106,0,1773,'container2'),(12397,124,0,1773,'0'),(12398,121,0,1773,'maya-tunic-m-yellow'),(12399,87,0,1773,'/w/t/wt07-yellow_main_1.jpg'),(12400,88,0,1773,'/w/t/wt07-yellow_main_1.jpg'),(12401,89,0,1773,'/w/t/wt07-yellow_main_1.jpg'),(12402,73,0,1773,'Maya Tunic-M-Yellow'),(12403,106,0,1774,'container2'),(12404,124,0,1774,'0'),(12405,121,0,1774,'maya-tunic-l-green'),(12406,87,0,1774,'/w/t/wt07-green_main_1.jpg'),(12407,88,0,1774,'/w/t/wt07-green_main_1.jpg'),(12408,89,0,1774,'/w/t/wt07-green_main_1.jpg'),(12409,73,0,1774,'Maya Tunic-L-Green'),(12410,106,0,1775,'container2'),(12411,124,0,1775,'0'),(12412,121,0,1775,'maya-tunic-l-white'),(12413,87,0,1775,'/w/t/wt07-white_main_1.jpg'),(12414,88,0,1775,'/w/t/wt07-white_main_1.jpg'),(12415,89,0,1775,'/w/t/wt07-white_main_1.jpg'),(12416,73,0,1775,'Maya Tunic-L-White'),(12417,106,0,1776,'container2'),(12418,124,0,1776,'0'),(12419,121,0,1776,'maya-tunic-l-yellow'),(12420,87,0,1776,'/w/t/wt07-yellow_main_1.jpg'),(12421,88,0,1776,'/w/t/wt07-yellow_main_1.jpg'),(12422,89,0,1776,'/w/t/wt07-yellow_main_1.jpg'),(12423,73,0,1776,'Maya Tunic-L-Yellow'),(12424,106,0,1777,'container2'),(12425,124,0,1777,'0'),(12426,121,0,1777,'maya-tunic-xl-green'),(12427,87,0,1777,'/w/t/wt07-green_main_1.jpg'),(12428,88,0,1777,'/w/t/wt07-green_main_1.jpg'),(12429,89,0,1777,'/w/t/wt07-green_main_1.jpg'),(12430,73,0,1777,'Maya Tunic-XL-Green'),(12431,106,0,1778,'container2'),(12432,124,0,1778,'0'),(12433,121,0,1778,'maya-tunic-xl-white'),(12434,87,0,1778,'/w/t/wt07-white_main_1.jpg'),(12435,88,0,1778,'/w/t/wt07-white_main_1.jpg'),(12436,89,0,1778,'/w/t/wt07-white_main_1.jpg'),(12437,73,0,1778,'Maya Tunic-XL-White'),(12438,106,0,1779,'container2'),(12439,124,0,1779,'0'),(12440,121,0,1779,'maya-tunic-xl-yellow'),(12441,87,0,1779,'/w/t/wt07-yellow_main_1.jpg'),(12442,88,0,1779,'/w/t/wt07-yellow_main_1.jpg'),(12443,89,0,1779,'/w/t/wt07-yellow_main_1.jpg'),(12444,73,0,1779,'Maya Tunic-XL-Yellow'),(12445,106,0,1780,'container2'),(12446,124,0,1780,'0'),(12447,121,0,1780,'maya-tunic'),(12448,87,0,1780,'/w/t/wt07-green_main_1.jpg'),(12449,88,0,1780,'/w/t/wt07-green_main_1.jpg'),(12450,89,0,1780,'/w/t/wt07-green_main_1.jpg'),(12451,73,0,1780,'Maya Tunic'),(12452,106,0,1781,'container2'),(12453,124,0,1781,'0'),(12454,121,0,1781,'antonia-racer-tank-xs-black'),(12455,87,0,1781,'/w/t/wt08-black_main_1.jpg'),(12456,88,0,1781,'/w/t/wt08-black_main_1.jpg'),(12457,89,0,1781,'/w/t/wt08-black_main_1.jpg'),(12458,73,0,1781,'Antonia Racer Tank-XS-Black'),(12459,106,0,1782,'container2'),(12460,124,0,1782,'0'),(12461,121,0,1782,'antonia-racer-tank-xs-purple'),(12462,87,0,1782,'/w/t/wt08-purple_main_1.jpg'),(12463,88,0,1782,'/w/t/wt08-purple_main_1.jpg'),(12464,89,0,1782,'/w/t/wt08-purple_main_1.jpg'),(12465,73,0,1782,'Antonia Racer Tank-XS-Purple'),(12466,106,0,1783,'container2'),(12467,124,0,1783,'0'),(12468,121,0,1783,'antonia-racer-tank-xs-yellow'),(12469,87,0,1783,'/w/t/wt08-yellow_main_1.jpg'),(12470,88,0,1783,'/w/t/wt08-yellow_main_1.jpg'),(12471,89,0,1783,'/w/t/wt08-yellow_main_1.jpg'),(12472,73,0,1783,'Antonia Racer Tank-XS-Yellow'),(12473,106,0,1784,'container2'),(12474,124,0,1784,'0'),(12475,121,0,1784,'antonia-racer-tank-s-black'),(12476,87,0,1784,'/w/t/wt08-black_main_1.jpg'),(12477,88,0,1784,'/w/t/wt08-black_main_1.jpg'),(12478,89,0,1784,'/w/t/wt08-black_main_1.jpg'),(12479,73,0,1784,'Antonia Racer Tank-S-Black'),(12480,106,0,1785,'container2'),(12481,124,0,1785,'0'),(12482,121,0,1785,'antonia-racer-tank-s-purple'),(12483,87,0,1785,'/w/t/wt08-purple_main_1.jpg'),(12484,88,0,1785,'/w/t/wt08-purple_main_1.jpg'),(12485,89,0,1785,'/w/t/wt08-purple_main_1.jpg'),(12486,73,0,1785,'Antonia Racer Tank-S-Purple'),(12487,106,0,1786,'container2'),(12488,124,0,1786,'0'),(12489,121,0,1786,'antonia-racer-tank-s-yellow'),(12490,87,0,1786,'/w/t/wt08-yellow_main_1.jpg'),(12491,88,0,1786,'/w/t/wt08-yellow_main_1.jpg'),(12492,89,0,1786,'/w/t/wt08-yellow_main_1.jpg'),(12493,73,0,1786,'Antonia Racer Tank-S-Yellow'),(12494,106,0,1787,'container2'),(12495,124,0,1787,'0'),(12496,121,0,1787,'antonia-racer-tank-m-black'),(12497,87,0,1787,'/w/t/wt08-black_main_1.jpg'),(12498,88,0,1787,'/w/t/wt08-black_main_1.jpg'),(12499,89,0,1787,'/w/t/wt08-black_main_1.jpg'),(12500,73,0,1787,'Antonia Racer Tank-M-Black'),(12501,106,0,1788,'container2'),(12502,124,0,1788,'0'),(12503,121,0,1788,'antonia-racer-tank-m-purple'),(12504,87,0,1788,'/w/t/wt08-purple_main_1.jpg'),(12505,88,0,1788,'/w/t/wt08-purple_main_1.jpg'),(12506,89,0,1788,'/w/t/wt08-purple_main_1.jpg'),(12507,73,0,1788,'Antonia Racer Tank-M-Purple'),(12508,106,0,1789,'container2'),(12509,124,0,1789,'0'),(12510,121,0,1789,'antonia-racer-tank-m-yellow'),(12511,87,0,1789,'/w/t/wt08-yellow_main_1.jpg'),(12512,88,0,1789,'/w/t/wt08-yellow_main_1.jpg'),(12513,89,0,1789,'/w/t/wt08-yellow_main_1.jpg'),(12514,73,0,1789,'Antonia Racer Tank-M-Yellow'),(12515,106,0,1790,'container2'),(12516,124,0,1790,'0'),(12517,121,0,1790,'antonia-racer-tank-l-black'),(12518,87,0,1790,'/w/t/wt08-black_main_1.jpg'),(12519,88,0,1790,'/w/t/wt08-black_main_1.jpg'),(12520,89,0,1790,'/w/t/wt08-black_main_1.jpg'),(12521,73,0,1790,'Antonia Racer Tank-L-Black'),(12522,106,0,1791,'container2'),(12523,124,0,1791,'0'),(12524,121,0,1791,'antonia-racer-tank-l-purple'),(12525,87,0,1791,'/w/t/wt08-purple_main_1.jpg'),(12526,88,0,1791,'/w/t/wt08-purple_main_1.jpg'),(12527,89,0,1791,'/w/t/wt08-purple_main_1.jpg'),(12528,73,0,1791,'Antonia Racer Tank-L-Purple'),(12529,106,0,1792,'container2'),(12530,124,0,1792,'0'),(12531,121,0,1792,'antonia-racer-tank-l-yellow'),(12532,87,0,1792,'/w/t/wt08-yellow_main_1.jpg'),(12533,88,0,1792,'/w/t/wt08-yellow_main_1.jpg'),(12534,89,0,1792,'/w/t/wt08-yellow_main_1.jpg'),(12535,73,0,1792,'Antonia Racer Tank-L-Yellow'),(12536,106,0,1793,'container2'),(12537,124,0,1793,'0'),(12538,121,0,1793,'antonia-racer-tank-xl-black'),(12539,87,0,1793,'/w/t/wt08-black_main_1.jpg'),(12540,88,0,1793,'/w/t/wt08-black_main_1.jpg'),(12541,89,0,1793,'/w/t/wt08-black_main_1.jpg'),(12542,73,0,1793,'Antonia Racer Tank-XL-Black'),(12543,106,0,1794,'container2'),(12544,124,0,1794,'0'),(12545,121,0,1794,'antonia-racer-tank-xl-purple'),(12546,87,0,1794,'/w/t/wt08-purple_main_1.jpg'),(12547,88,0,1794,'/w/t/wt08-purple_main_1.jpg'),(12548,89,0,1794,'/w/t/wt08-purple_main_1.jpg'),(12549,73,0,1794,'Antonia Racer Tank-XL-Purple'),(12550,106,0,1795,'container2'),(12551,124,0,1795,'0'),(12552,121,0,1795,'antonia-racer-tank-xl-yellow'),(12553,87,0,1795,'/w/t/wt08-yellow_main_1.jpg'),(12554,88,0,1795,'/w/t/wt08-yellow_main_1.jpg'),(12555,89,0,1795,'/w/t/wt08-yellow_main_1.jpg'),(12556,73,0,1795,'Antonia Racer Tank-XL-Yellow'),(12557,106,0,1796,'container2'),(12558,124,0,1796,'0'),(12559,121,0,1796,'antonia-racer-tank'),(12560,87,0,1796,'/w/t/wt08-black_main_1.jpg'),(12561,88,0,1796,'/w/t/wt08-black_main_1.jpg'),(12562,89,0,1796,'/w/t/wt08-black_main_1.jpg'),(12563,73,0,1796,'Antonia Racer Tank'),(12564,106,0,1797,'container2'),(12565,124,0,1797,'0'),(12566,121,0,1797,'breathe-easy-tank-xs-purple'),(12567,87,0,1797,'/w/t/wt09-purple_main_1.jpg'),(12568,88,0,1797,'/w/t/wt09-purple_main_1.jpg'),(12569,89,0,1797,'/w/t/wt09-purple_main_1.jpg'),(12570,73,0,1797,'Breathe-Easy Tank-XS-Purple'),(12571,106,0,1798,'container2'),(12572,124,0,1798,'0'),(12573,121,0,1798,'breathe-easy-tank-xs-white'),(12574,87,0,1798,'/w/t/wt09-white_main_1.jpg'),(12575,88,0,1798,'/w/t/wt09-white_main_1.jpg'),(12576,89,0,1798,'/w/t/wt09-white_main_1.jpg'),(12577,73,0,1798,'Breathe-Easy Tank-XS-White'),(12578,106,0,1799,'container2'),(12579,124,0,1799,'0'),(12580,121,0,1799,'breathe-easy-tank-xs-yellow'),(12581,87,0,1799,'/w/t/wt09-yellow_main_1.jpg'),(12582,88,0,1799,'/w/t/wt09-yellow_main_1.jpg'),(12583,89,0,1799,'/w/t/wt09-yellow_main_1.jpg'),(12584,73,0,1799,'Breathe-Easy Tank-XS-Yellow'),(12585,106,0,1800,'container2'),(12586,124,0,1800,'0'),(12587,121,0,1800,'breathe-easy-tank-s-purple'),(12588,87,0,1800,'/w/t/wt09-purple_main_1.jpg'),(12589,88,0,1800,'/w/t/wt09-purple_main_1.jpg'),(12590,89,0,1800,'/w/t/wt09-purple_main_1.jpg'),(12591,73,0,1800,'Breathe-Easy Tank-S-Purple'),(12592,106,0,1801,'container2'),(12593,124,0,1801,'0'),(12594,121,0,1801,'breathe-easy-tank-s-white'),(12595,87,0,1801,'/w/t/wt09-white_main_1.jpg'),(12596,88,0,1801,'/w/t/wt09-white_main_1.jpg'),(12597,89,0,1801,'/w/t/wt09-white_main_1.jpg'),(12598,73,0,1801,'Breathe-Easy Tank-S-White'),(12599,106,0,1802,'container2'),(12600,124,0,1802,'0'),(12601,121,0,1802,'breathe-easy-tank-s-yellow'),(12602,87,0,1802,'/w/t/wt09-yellow_main_1.jpg'),(12603,88,0,1802,'/w/t/wt09-yellow_main_1.jpg'),(12604,89,0,1802,'/w/t/wt09-yellow_main_1.jpg'),(12605,73,0,1802,'Breathe-Easy Tank-S-Yellow'),(12606,106,0,1803,'container2'),(12607,124,0,1803,'0'),(12608,121,0,1803,'breathe-easy-tank-m-purple'),(12609,87,0,1803,'/w/t/wt09-purple_main_1.jpg'),(12610,88,0,1803,'/w/t/wt09-purple_main_1.jpg'),(12611,89,0,1803,'/w/t/wt09-purple_main_1.jpg'),(12612,73,0,1803,'Breathe-Easy Tank-M-Purple'),(12613,106,0,1804,'container2'),(12614,124,0,1804,'0'),(12615,121,0,1804,'breathe-easy-tank-m-white'),(12616,87,0,1804,'/w/t/wt09-white_main_1.jpg'),(12617,88,0,1804,'/w/t/wt09-white_main_1.jpg'),(12618,89,0,1804,'/w/t/wt09-white_main_1.jpg'),(12619,73,0,1804,'Breathe-Easy Tank-M-White'),(12620,106,0,1805,'container2'),(12621,124,0,1805,'0'),(12622,121,0,1805,'breathe-easy-tank-m-yellow'),(12623,87,0,1805,'/w/t/wt09-yellow_main_1.jpg'),(12624,88,0,1805,'/w/t/wt09-yellow_main_1.jpg'),(12625,89,0,1805,'/w/t/wt09-yellow_main_1.jpg'),(12626,73,0,1805,'Breathe-Easy Tank-M-Yellow'),(12627,106,0,1806,'container2'),(12628,124,0,1806,'0'),(12629,121,0,1806,'breathe-easy-tank-l-purple'),(12630,87,0,1806,'/w/t/wt09-purple_main_1.jpg'),(12631,88,0,1806,'/w/t/wt09-purple_main_1.jpg'),(12632,89,0,1806,'/w/t/wt09-purple_main_1.jpg'),(12633,73,0,1806,'Breathe-Easy Tank-L-Purple'),(12634,106,0,1807,'container2'),(12635,124,0,1807,'0'),(12636,121,0,1807,'breathe-easy-tank-l-white'),(12637,87,0,1807,'/w/t/wt09-white_main_1.jpg'),(12638,88,0,1807,'/w/t/wt09-white_main_1.jpg'),(12639,89,0,1807,'/w/t/wt09-white_main_1.jpg'),(12640,73,0,1807,'Breathe-Easy Tank-L-White'),(12641,106,0,1808,'container2'),(12642,124,0,1808,'0'),(12643,121,0,1808,'breathe-easy-tank-l-yellow'),(12644,87,0,1808,'/w/t/wt09-yellow_main_1.jpg'),(12645,88,0,1808,'/w/t/wt09-yellow_main_1.jpg'),(12646,89,0,1808,'/w/t/wt09-yellow_main_1.jpg'),(12647,73,0,1808,'Breathe-Easy Tank-L-Yellow'),(12648,106,0,1809,'container2'),(12649,124,0,1809,'0'),(12650,121,0,1809,'breathe-easy-tank-xl-purple'),(12651,87,0,1809,'/w/t/wt09-purple_main_1.jpg'),(12652,88,0,1809,'/w/t/wt09-purple_main_1.jpg'),(12653,89,0,1809,'/w/t/wt09-purple_main_1.jpg'),(12654,73,0,1809,'Breathe-Easy Tank-XL-Purple'),(12655,106,0,1810,'container2'),(12656,124,0,1810,'0'),(12657,121,0,1810,'breathe-easy-tank-xl-white'),(12658,87,0,1810,'/w/t/wt09-white_main_1.jpg'),(12659,88,0,1810,'/w/t/wt09-white_main_1.jpg'),(12660,89,0,1810,'/w/t/wt09-white_main_1.jpg'),(12661,73,0,1810,'Breathe-Easy Tank-XL-White'),(12662,106,0,1811,'container2'),(12663,124,0,1811,'0'),(12664,121,0,1811,'breathe-easy-tank-xl-yellow'),(12665,87,0,1811,'/w/t/wt09-yellow_main_1.jpg'),(12666,88,0,1811,'/w/t/wt09-yellow_main_1.jpg'),(12667,89,0,1811,'/w/t/wt09-yellow_main_1.jpg'),(12668,73,0,1811,'Breathe-Easy Tank-XL-Yellow'),(12669,106,0,1812,'container2'),(12670,124,0,1812,'0'),(12671,121,0,1812,'breathe-easy-tank'),(12672,87,0,1812,'/w/t/wt09-white_main_1.jpg'),(12673,88,0,1812,'/w/t/wt09-white_main_1.jpg'),(12674,89,0,1812,'/w/t/wt09-white_main_1.jpg'),(12675,73,0,1812,'Breathe-Easy Tank'),(12676,106,0,1813,'container2'),(12677,124,0,1813,'0'),(12678,121,0,1813,'karmen-yoga-pant-28-black'),(12679,87,0,1813,'/w/p/wp01-black_main_1.jpg'),(12680,88,0,1813,'/w/p/wp01-black_main_1.jpg'),(12681,89,0,1813,'/w/p/wp01-black_main_1.jpg'),(12682,73,0,1813,'Karmen Yoga Pant-28-Black'),(12683,106,0,1814,'container2'),(12684,124,0,1814,'0'),(12685,121,0,1814,'karmen-yoga-pant-28-gray'),(12686,87,0,1814,'/w/p/wp01-gray_main_1.jpg'),(12687,88,0,1814,'/w/p/wp01-gray_main_1.jpg'),(12688,89,0,1814,'/w/p/wp01-gray_main_1.jpg'),(12689,73,0,1814,'Karmen Yoga Pant-28-Gray'),(12690,106,0,1815,'container2'),(12691,124,0,1815,'0'),(12692,121,0,1815,'karmen-yoga-pant-28-white'),(12693,87,0,1815,'/w/p/wp01-white_main_1.jpg'),(12694,88,0,1815,'/w/p/wp01-white_main_1.jpg'),(12695,89,0,1815,'/w/p/wp01-white_main_1.jpg'),(12696,73,0,1815,'Karmen Yoga Pant-28-White'),(12697,106,0,1816,'container2'),(12698,124,0,1816,'0'),(12699,121,0,1816,'karmen-yoga-pant-29-black'),(12700,87,0,1816,'/w/p/wp01-black_main_1.jpg'),(12701,88,0,1816,'/w/p/wp01-black_main_1.jpg'),(12702,89,0,1816,'/w/p/wp01-black_main_1.jpg'),(12703,73,0,1816,'Karmen Yoga Pant-29-Black'),(12704,106,0,1817,'container2'),(12705,124,0,1817,'0'),(12706,121,0,1817,'karmen-yoga-pant-29-gray'),(12707,87,0,1817,'/w/p/wp01-gray_main_1.jpg'),(12708,88,0,1817,'/w/p/wp01-gray_main_1.jpg'),(12709,89,0,1817,'/w/p/wp01-gray_main_1.jpg'),(12710,73,0,1817,'Karmen Yoga Pant-29-Gray'),(12711,106,0,1818,'container2'),(12712,124,0,1818,'0'),(12713,121,0,1818,'karmen-yoga-pant-29-white'),(12714,87,0,1818,'/w/p/wp01-white_main_1.jpg'),(12715,88,0,1818,'/w/p/wp01-white_main_1.jpg'),(12716,89,0,1818,'/w/p/wp01-white_main_1.jpg'),(12717,73,0,1818,'Karmen Yoga Pant-29-White'),(12718,106,0,1819,'container2'),(12719,124,0,1819,'0'),(12720,121,0,1819,'karmen-yoga-pant'),(12721,87,0,1819,'/w/p/wp01-gray_main_1.jpg'),(12722,88,0,1819,'/w/p/wp01-gray_main_1.jpg'),(12723,89,0,1819,'/w/p/wp01-gray_main_1.jpg'),(12724,73,0,1819,'Karmen Yoga Pant'),(12725,106,0,1820,'container2'),(12726,124,0,1820,'0'),(12727,121,0,1820,'emma-leggings-28-blue'),(12728,87,0,1820,'/w/p/wp02-blue_main_1.jpg'),(12729,88,0,1820,'/w/p/wp02-blue_main_1.jpg'),(12730,89,0,1820,'/w/p/wp02-blue_main_1.jpg'),(12731,73,0,1820,'Emma Leggings-28-Blue'),(12732,106,0,1821,'container2'),(12733,124,0,1821,'0'),(12734,121,0,1821,'emma-leggings-28-purple'),(12735,87,0,1821,'/w/p/wp02-purple_main_1.jpg'),(12736,88,0,1821,'/w/p/wp02-purple_main_1.jpg'),(12737,89,0,1821,'/w/p/wp02-purple_main_1.jpg'),(12738,73,0,1821,'Emma Leggings-28-Purple'),(12739,106,0,1822,'container2'),(12740,124,0,1822,'0'),(12741,121,0,1822,'emma-leggings-28-red'),(12742,87,0,1822,'/w/p/wp02-red_main_1.jpg'),(12743,88,0,1822,'/w/p/wp02-red_main_1.jpg'),(12744,89,0,1822,'/w/p/wp02-red_main_1.jpg'),(12745,73,0,1822,'Emma Leggings-28-Red'),(12746,106,0,1823,'container2'),(12747,124,0,1823,'0'),(12748,121,0,1823,'emma-leggings-29-blue'),(12749,87,0,1823,'/w/p/wp02-blue_main_1.jpg'),(12750,88,0,1823,'/w/p/wp02-blue_main_1.jpg'),(12751,89,0,1823,'/w/p/wp02-blue_main_1.jpg'),(12752,73,0,1823,'Emma Leggings-29-Blue'),(12753,106,0,1824,'container2'),(12754,124,0,1824,'0'),(12755,121,0,1824,'emma-leggings-29-purple'),(12756,87,0,1824,'/w/p/wp02-purple_main_1.jpg'),(12757,88,0,1824,'/w/p/wp02-purple_main_1.jpg'),(12758,89,0,1824,'/w/p/wp02-purple_main_1.jpg'),(12759,73,0,1824,'Emma Leggings-29-Purple'),(12760,106,0,1825,'container2'),(12761,124,0,1825,'0'),(12762,121,0,1825,'emma-leggings-29-red'),(12763,87,0,1825,'/w/p/wp02-red_main_1.jpg'),(12764,88,0,1825,'/w/p/wp02-red_main_1.jpg'),(12765,89,0,1825,'/w/p/wp02-red_main_1.jpg'),(12766,73,0,1825,'Emma Leggings-29-Red'),(12767,106,0,1826,'container2'),(12768,124,0,1826,'0'),(12769,121,0,1826,'emma-leggings'),(12770,87,0,1826,'/w/p/wp02-blue_main_1.jpg'),(12771,88,0,1826,'/w/p/wp02-blue_main_1.jpg'),(12772,89,0,1826,'/w/p/wp02-blue_main_1.jpg'),(12773,73,0,1826,'Emma Leggings'),(12774,106,0,1827,'container2'),(12775,124,0,1827,'0'),(12776,121,0,1827,'ida-workout-parachute-pant-28-black'),(12777,87,0,1827,'/w/p/wp03-black_main_1.jpg'),(12778,88,0,1827,'/w/p/wp03-black_main_1.jpg'),(12779,89,0,1827,'/w/p/wp03-black_main_1.jpg'),(12780,73,0,1827,'Ida Workout Parachute Pant-28-Black'),(12781,106,0,1828,'container2'),(12782,124,0,1828,'0'),(12783,121,0,1828,'ida-workout-parachute-pant-28-blue'),(12784,87,0,1828,'/w/p/wp03-blue_main_1.jpg'),(12785,88,0,1828,'/w/p/wp03-blue_main_1.jpg'),(12786,89,0,1828,'/w/p/wp03-blue_main_1.jpg'),(12787,73,0,1828,'Ida Workout Parachute Pant-28-Blue'),(12788,106,0,1829,'container2'),(12789,124,0,1829,'0'),(12790,121,0,1829,'ida-workout-parachute-pant-28-purple'),(12791,87,0,1829,'/w/p/wp03-purple_main_1.jpg'),(12792,88,0,1829,'/w/p/wp03-purple_main_1.jpg'),(12793,89,0,1829,'/w/p/wp03-purple_main_1.jpg'),(12794,73,0,1829,'Ida Workout Parachute Pant-28-Purple'),(12795,106,0,1830,'container2'),(12796,124,0,1830,'0'),(12797,121,0,1830,'ida-workout-parachute-pant-29-black'),(12798,87,0,1830,'/w/p/wp03-black_main_1.jpg'),(12799,88,0,1830,'/w/p/wp03-black_main_1.jpg'),(12800,89,0,1830,'/w/p/wp03-black_main_1.jpg'),(12801,73,0,1830,'Ida Workout Parachute Pant-29-Black'),(12802,106,0,1831,'container2'),(12803,124,0,1831,'0'),(12804,121,0,1831,'ida-workout-parachute-pant-29-blue'),(12805,87,0,1831,'/w/p/wp03-blue_main_1.jpg'),(12806,88,0,1831,'/w/p/wp03-blue_main_1.jpg'),(12807,89,0,1831,'/w/p/wp03-blue_main_1.jpg'),(12808,73,0,1831,'Ida Workout Parachute Pant-29-Blue'),(12809,106,0,1832,'container2'),(12810,124,0,1832,'0'),(12811,121,0,1832,'ida-workout-parachute-pant-29-purple'),(12812,87,0,1832,'/w/p/wp03-purple_main_1.jpg'),(12813,88,0,1832,'/w/p/wp03-purple_main_1.jpg'),(12814,89,0,1832,'/w/p/wp03-purple_main_1.jpg'),(12815,73,0,1832,'Ida Workout Parachute Pant-29-Purple'),(12816,106,0,1833,'container2'),(12817,124,0,1833,'0'),(12818,121,0,1833,'ida-workout-parachute-pant'),(12819,87,0,1833,'/w/p/wp03-blue_main_1.jpg'),(12820,88,0,1833,'/w/p/wp03-blue_main_1.jpg'),(12821,89,0,1833,'/w/p/wp03-blue_main_1.jpg'),(12822,73,0,1833,'Ida Workout Parachute Pant'),(12823,106,0,1834,'container2'),(12824,124,0,1834,'0'),(12825,121,0,1834,'cora-parachute-pant-28-black'),(12826,87,0,1834,'/w/p/wp04-black_main_1.jpg'),(12827,88,0,1834,'/w/p/wp04-black_main_1.jpg'),(12828,89,0,1834,'/w/p/wp04-black_main_1.jpg'),(12829,73,0,1834,'Cora Parachute Pant-28-Black'),(12830,106,0,1835,'container2'),(12831,124,0,1835,'0'),(12832,121,0,1835,'cora-parachute-pant-28-blue'),(12833,87,0,1835,'/w/p/wp04-blue_main_1.jpg'),(12834,88,0,1835,'/w/p/wp04-blue_main_1.jpg'),(12835,89,0,1835,'/w/p/wp04-blue_main_1.jpg'),(12836,73,0,1835,'Cora Parachute Pant-28-Blue'),(12837,106,0,1836,'container2'),(12838,124,0,1836,'0'),(12839,121,0,1836,'cora-parachute-pant-28-white'),(12840,87,0,1836,'/w/p/wp04-white_main_1.jpg'),(12841,88,0,1836,'/w/p/wp04-white_main_1.jpg'),(12842,89,0,1836,'/w/p/wp04-white_main_1.jpg'),(12843,73,0,1836,'Cora Parachute Pant-28-White'),(12844,106,0,1837,'container2'),(12845,124,0,1837,'0'),(12846,121,0,1837,'cora-parachute-pant-29-black'),(12847,87,0,1837,'/w/p/wp04-black_main_1.jpg'),(12848,88,0,1837,'/w/p/wp04-black_main_1.jpg'),(12849,89,0,1837,'/w/p/wp04-black_main_1.jpg'),(12850,73,0,1837,'Cora Parachute Pant-29-Black'),(12851,106,0,1838,'container2'),(12852,124,0,1838,'0'),(12853,121,0,1838,'cora-parachute-pant-29-blue'),(12854,87,0,1838,'/w/p/wp04-blue_main_1.jpg'),(12855,88,0,1838,'/w/p/wp04-blue_main_1.jpg'),(12856,89,0,1838,'/w/p/wp04-blue_main_1.jpg'),(12857,73,0,1838,'Cora Parachute Pant-29-Blue'),(12858,106,0,1839,'container2'),(12859,124,0,1839,'0'),(12860,121,0,1839,'cora-parachute-pant-29-white'),(12861,87,0,1839,'/w/p/wp04-white_main_1.jpg'),(12862,88,0,1839,'/w/p/wp04-white_main_1.jpg'),(12863,89,0,1839,'/w/p/wp04-white_main_1.jpg'),(12864,73,0,1839,'Cora Parachute Pant-29-White'),(12865,106,0,1840,'container2'),(12866,124,0,1840,'0'),(12867,121,0,1840,'cora-parachute-pant'),(12868,87,0,1840,'/w/p/wp04-blue_main_1.jpg'),(12869,88,0,1840,'/w/p/wp04-blue_main_1.jpg'),(12870,89,0,1840,'/w/p/wp04-blue_main_1.jpg'),(12871,73,0,1840,'Cora Parachute Pant'),(12872,106,0,1841,'container2'),(12873,124,0,1841,'0'),(12874,121,0,1841,'sahara-leggings-28-blue'),(12875,87,0,1841,'/w/p/wp05-blue_main_1.jpg'),(12876,88,0,1841,'/w/p/wp05-blue_main_1.jpg'),(12877,89,0,1841,'/w/p/wp05-blue_main_1.jpg'),(12878,73,0,1841,'Sahara Leggings-28-Blue'),(12879,106,0,1842,'container2'),(12880,124,0,1842,'0'),(12881,121,0,1842,'sahara-leggings-28-gray'),(12882,87,0,1842,'/w/p/wp05-gray_main_1.jpg'),(12883,88,0,1842,'/w/p/wp05-gray_main_1.jpg'),(12884,89,0,1842,'/w/p/wp05-gray_main_1.jpg'),(12885,73,0,1842,'Sahara Leggings-28-Gray'),(12886,106,0,1843,'container2'),(12887,124,0,1843,'0'),(12888,121,0,1843,'sahara-leggings-28-red'),(12889,87,0,1843,'/w/p/wp05-red_main_1.jpg'),(12890,88,0,1843,'/w/p/wp05-red_main_1.jpg'),(12891,89,0,1843,'/w/p/wp05-red_main_1.jpg'),(12892,73,0,1843,'Sahara Leggings-28-Red'),(12893,106,0,1844,'container2'),(12894,124,0,1844,'0'),(12895,121,0,1844,'sahara-leggings-29-blue'),(12896,87,0,1844,'/w/p/wp05-blue_main_1.jpg'),(12897,88,0,1844,'/w/p/wp05-blue_main_1.jpg'),(12898,89,0,1844,'/w/p/wp05-blue_main_1.jpg'),(12899,73,0,1844,'Sahara Leggings-29-Blue'),(12900,106,0,1845,'container2'),(12901,124,0,1845,'0'),(12902,121,0,1845,'sahara-leggings-29-gray'),(12903,87,0,1845,'/w/p/wp05-gray_main_1.jpg'),(12904,88,0,1845,'/w/p/wp05-gray_main_1.jpg'),(12905,89,0,1845,'/w/p/wp05-gray_main_1.jpg'),(12906,73,0,1845,'Sahara Leggings-29-Gray'),(12907,106,0,1846,'container2'),(12908,124,0,1846,'0'),(12909,121,0,1846,'sahara-leggings-29-red'),(12910,87,0,1846,'/w/p/wp05-red_main_1.jpg'),(12911,88,0,1846,'/w/p/wp05-red_main_1.jpg'),(12912,89,0,1846,'/w/p/wp05-red_main_1.jpg'),(12913,73,0,1846,'Sahara Leggings-29-Red'),(12914,106,0,1847,'container2'),(12915,124,0,1847,'0'),(12916,121,0,1847,'sahara-leggings'),(12917,87,0,1847,'/w/p/wp05-gray_main_2.jpg'),(12918,88,0,1847,'/w/p/wp05-gray_main_2.jpg'),(12919,89,0,1847,'/w/p/wp05-gray_main_2.jpg'),(12920,73,0,1847,'Sahara Leggings'),(12921,106,0,1848,'container2'),(12922,124,0,1848,'0'),(12923,121,0,1848,'diana-tights-28-black'),(12924,87,0,1848,'/w/p/wp06-black_main_1.jpg'),(12925,88,0,1848,'/w/p/wp06-black_main_1.jpg'),(12926,89,0,1848,'/w/p/wp06-black_main_1.jpg'),(12927,73,0,1848,'Diana Tights-28-Black'),(12928,106,0,1849,'container2'),(12929,124,0,1849,'0'),(12930,121,0,1849,'diana-tights-28-blue'),(12931,87,0,1849,'/w/p/wp06-blue_main_1.jpg'),(12932,88,0,1849,'/w/p/wp06-blue_main_1.jpg'),(12933,89,0,1849,'/w/p/wp06-blue_main_1.jpg'),(12934,73,0,1849,'Diana Tights-28-Blue'),(12935,106,0,1850,'container2'),(12936,124,0,1850,'0'),(12937,121,0,1850,'diana-tights-28-orange'),(12938,87,0,1850,'/w/p/wp06-orange_main_1.jpg'),(12939,88,0,1850,'/w/p/wp06-orange_main_1.jpg'),(12940,89,0,1850,'/w/p/wp06-orange_main_1.jpg'),(12941,73,0,1850,'Diana Tights-28-Orange'),(12942,106,0,1851,'container2'),(12943,124,0,1851,'0'),(12944,121,0,1851,'diana-tights-29-black'),(12945,87,0,1851,'/w/p/wp06-black_main_1.jpg'),(12946,88,0,1851,'/w/p/wp06-black_main_1.jpg'),(12947,89,0,1851,'/w/p/wp06-black_main_1.jpg'),(12948,73,0,1851,'Diana Tights-29-Black'),(12949,106,0,1852,'container2'),(12950,124,0,1852,'0'),(12951,121,0,1852,'diana-tights-29-blue'),(12952,87,0,1852,'/w/p/wp06-blue_main_1.jpg'),(12953,88,0,1852,'/w/p/wp06-blue_main_1.jpg'),(12954,89,0,1852,'/w/p/wp06-blue_main_1.jpg'),(12955,73,0,1852,'Diana Tights-29-Blue'),(12956,106,0,1853,'container2'),(12957,124,0,1853,'0'),(12958,121,0,1853,'diana-tights-29-orange'),(12959,87,0,1853,'/w/p/wp06-orange_main_1.jpg'),(12960,88,0,1853,'/w/p/wp06-orange_main_1.jpg'),(12961,89,0,1853,'/w/p/wp06-orange_main_1.jpg'),(12962,73,0,1853,'Diana Tights-29-Orange'),(12963,106,0,1854,'container2'),(12964,124,0,1854,'0'),(12965,121,0,1854,'diana-tights'),(12966,87,0,1854,'/w/p/wp06-black_main_1.jpg'),(12967,88,0,1854,'/w/p/wp06-black_main_1.jpg'),(12968,89,0,1854,'/w/p/wp06-black_main_1.jpg'),(12969,73,0,1854,'Diana Tights'),(12970,106,0,1855,'container2'),(12971,124,0,1855,'0'),(12972,121,0,1855,'aeon-capri-28-black'),(12973,87,0,1855,'/w/p/wp07-black_main_1.jpg'),(12974,88,0,1855,'/w/p/wp07-black_main_1.jpg'),(12975,89,0,1855,'/w/p/wp07-black_main_1.jpg'),(12976,73,0,1855,'Aeon Capri-28-Black'),(12977,106,0,1856,'container2'),(12978,124,0,1856,'0'),(12979,121,0,1856,'aeon-capri-28-blue'),(12980,87,0,1856,'/w/p/wp07-blue_main_1.jpg'),(12981,88,0,1856,'/w/p/wp07-blue_main_1.jpg'),(12982,89,0,1856,'/w/p/wp07-blue_main_1.jpg'),(12983,73,0,1856,'Aeon Capri-28-Blue'),(12984,106,0,1857,'container2'),(12985,124,0,1857,'0'),(12986,121,0,1857,'aeon-capri-28-orange'),(12987,87,0,1857,'/w/p/wp07-orange_main_1.jpg'),(12988,88,0,1857,'/w/p/wp07-orange_main_1.jpg'),(12989,89,0,1857,'/w/p/wp07-orange_main_1.jpg'),(12990,73,0,1857,'Aeon Capri-28-Orange'),(12991,106,0,1858,'container2'),(12992,124,0,1858,'0'),(12993,121,0,1858,'aeon-capri-29-black'),(12994,87,0,1858,'/w/p/wp07-black_main_1.jpg'),(12995,88,0,1858,'/w/p/wp07-black_main_1.jpg'),(12996,89,0,1858,'/w/p/wp07-black_main_1.jpg'),(12997,73,0,1858,'Aeon Capri-29-Black'),(12998,106,0,1859,'container2'),(12999,124,0,1859,'0'),(13000,121,0,1859,'aeon-capri-29-blue'),(13001,87,0,1859,'/w/p/wp07-blue_main_1.jpg'),(13002,88,0,1859,'/w/p/wp07-blue_main_1.jpg'),(13003,89,0,1859,'/w/p/wp07-blue_main_1.jpg'),(13004,73,0,1859,'Aeon Capri-29-Blue'),(13005,106,0,1860,'container2'),(13006,124,0,1860,'0'),(13007,121,0,1860,'aeon-capri-29-orange'),(13008,87,0,1860,'/w/p/wp07-orange_main_1.jpg'),(13009,88,0,1860,'/w/p/wp07-orange_main_1.jpg'),(13010,89,0,1860,'/w/p/wp07-orange_main_1.jpg'),(13011,73,0,1860,'Aeon Capri-29-Orange'),(13012,106,0,1861,'container2'),(13013,124,0,1861,'0'),(13014,121,0,1861,'aeon-capri'),(13015,87,0,1861,'/w/p/wp07-black_main_1.jpg'),(13016,88,0,1861,'/w/p/wp07-black_main_1.jpg'),(13017,89,0,1861,'/w/p/wp07-black_main_1.jpg'),(13018,73,0,1861,'Aeon Capri'),(13019,106,0,1862,'container2'),(13020,124,0,1862,'0'),(13021,121,0,1862,'bardot-capri-28-black'),(13022,87,0,1862,'/w/p/wp08-black_main_1.jpg'),(13023,88,0,1862,'/w/p/wp08-black_main_1.jpg'),(13024,89,0,1862,'/w/p/wp08-black_main_1.jpg'),(13025,73,0,1862,'Bardot Capri-28-Black'),(13026,106,0,1863,'container2'),(13027,124,0,1863,'0'),(13028,121,0,1863,'bardot-capri-28-green'),(13029,87,0,1863,'/w/p/wp08-green_main_1.jpg'),(13030,88,0,1863,'/w/p/wp08-green_main_1.jpg'),(13031,89,0,1863,'/w/p/wp08-green_main_1.jpg'),(13032,73,0,1863,'Bardot Capri-28-Green'),(13033,106,0,1864,'container2'),(13034,124,0,1864,'0'),(13035,121,0,1864,'bardot-capri-28-red'),(13036,87,0,1864,'/w/p/wp08-red_main_1.jpg'),(13037,88,0,1864,'/w/p/wp08-red_main_1.jpg'),(13038,89,0,1864,'/w/p/wp08-red_main_1.jpg'),(13039,73,0,1864,'Bardot Capri-28-Red'),(13040,106,0,1865,'container2'),(13041,124,0,1865,'0'),(13042,121,0,1865,'bardot-capri-29-black'),(13043,87,0,1865,'/w/p/wp08-black_main_1.jpg'),(13044,88,0,1865,'/w/p/wp08-black_main_1.jpg'),(13045,89,0,1865,'/w/p/wp08-black_main_1.jpg'),(13046,73,0,1865,'Bardot Capri-29-Black'),(13047,106,0,1866,'container2'),(13048,124,0,1866,'0'),(13049,121,0,1866,'bardot-capri-29-green'),(13050,87,0,1866,'/w/p/wp08-green_main_1.jpg'),(13051,88,0,1866,'/w/p/wp08-green_main_1.jpg'),(13052,89,0,1866,'/w/p/wp08-green_main_1.jpg'),(13053,73,0,1866,'Bardot Capri-29-Green'),(13054,106,0,1867,'container2'),(13055,124,0,1867,'0'),(13056,121,0,1867,'bardot-capri-29-red'),(13057,87,0,1867,'/w/p/wp08-red_main_1.jpg'),(13058,88,0,1867,'/w/p/wp08-red_main_1.jpg'),(13059,89,0,1867,'/w/p/wp08-red_main_1.jpg'),(13060,73,0,1867,'Bardot Capri-29-Red'),(13061,106,0,1868,'container2'),(13062,124,0,1868,'0'),(13063,121,0,1868,'bardot-capri'),(13064,87,0,1868,'/w/p/wp08-black_main_1.jpg'),(13065,88,0,1868,'/w/p/wp08-black_main_1.jpg'),(13066,89,0,1868,'/w/p/wp08-black_main_1.jpg'),(13067,73,0,1868,'Bardot Capri'),(13068,106,0,1869,'container2'),(13069,124,0,1869,'0'),(13070,121,0,1869,'carina-basic-capri-28-black'),(13071,87,0,1869,'/w/p/wp09-black_main_1.jpg'),(13072,88,0,1869,'/w/p/wp09-black_main_1.jpg'),(13073,89,0,1869,'/w/p/wp09-black_main_1.jpg'),(13074,73,0,1869,'Carina Basic Capri-28-Black'),(13075,106,0,1870,'container2'),(13076,124,0,1870,'0'),(13077,121,0,1870,'carina-basic-capri-28-blue'),(13078,87,0,1870,'/w/p/wp09-blue_main_1.jpg'),(13079,88,0,1870,'/w/p/wp09-blue_main_1.jpg'),(13080,89,0,1870,'/w/p/wp09-blue_main_1.jpg'),(13081,73,0,1870,'Carina Basic Capri-28-Blue'),(13082,106,0,1871,'container2'),(13083,124,0,1871,'0'),(13084,121,0,1871,'carina-basic-capri-28-purple'),(13085,87,0,1871,'/w/p/wp09-purple_main_1.jpg'),(13086,88,0,1871,'/w/p/wp09-purple_main_1.jpg'),(13087,89,0,1871,'/w/p/wp09-purple_main_1.jpg'),(13088,73,0,1871,'Carina Basic Capri-28-Purple'),(13089,106,0,1872,'container2'),(13090,124,0,1872,'0'),(13091,121,0,1872,'carina-basic-capri-29-black'),(13092,87,0,1872,'/w/p/wp09-black_main_1.jpg'),(13093,88,0,1872,'/w/p/wp09-black_main_1.jpg'),(13094,89,0,1872,'/w/p/wp09-black_main_1.jpg'),(13095,73,0,1872,'Carina Basic Capri-29-Black'),(13096,106,0,1873,'container2'),(13097,124,0,1873,'0'),(13098,121,0,1873,'carina-basic-capri-29-blue'),(13099,87,0,1873,'/w/p/wp09-blue_main_1.jpg'),(13100,88,0,1873,'/w/p/wp09-blue_main_1.jpg'),(13101,89,0,1873,'/w/p/wp09-blue_main_1.jpg'),(13102,73,0,1873,'Carina Basic Capri-29-Blue'),(13103,106,0,1874,'container2'),(13104,124,0,1874,'0'),(13105,121,0,1874,'carina-basic-capri-29-purple'),(13106,87,0,1874,'/w/p/wp09-purple_main_1.jpg'),(13107,88,0,1874,'/w/p/wp09-purple_main_1.jpg'),(13108,89,0,1874,'/w/p/wp09-purple_main_1.jpg'),(13109,73,0,1874,'Carina Basic Capri-29-Purple'),(13110,106,0,1875,'container2'),(13111,124,0,1875,'0'),(13112,121,0,1875,'carina-basic-capri'),(13113,87,0,1875,'/w/p/wp09-black_main_1.jpg'),(13114,88,0,1875,'/w/p/wp09-black_main_1.jpg'),(13115,89,0,1875,'/w/p/wp09-black_main_1.jpg'),(13116,73,0,1875,'Carina Basic Capri'),(13117,106,0,1876,'container2'),(13118,124,0,1876,'0'),(13119,121,0,1876,'daria-bikram-pant-28-black'),(13120,87,0,1876,'/w/p/wp10-black_main_1.jpg'),(13121,88,0,1876,'/w/p/wp10-black_main_1.jpg'),(13122,89,0,1876,'/w/p/wp10-black_main_1.jpg'),(13123,73,0,1876,'Daria Bikram Pant-28-Black'),(13124,106,0,1877,'container2'),(13125,124,0,1877,'0'),(13126,121,0,1877,'daria-bikram-pant-28-gray'),(13127,87,0,1877,'/w/p/wp10-gray_main_1.jpg'),(13128,88,0,1877,'/w/p/wp10-gray_main_1.jpg'),(13129,89,0,1877,'/w/p/wp10-gray_main_1.jpg'),(13130,73,0,1877,'Daria Bikram Pant-28-Gray'),(13131,106,0,1878,'container2'),(13132,124,0,1878,'0'),(13133,121,0,1878,'daria-bikram-pant-28-white'),(13134,87,0,1878,'/w/p/wp10-white_main_1.jpg'),(13135,88,0,1878,'/w/p/wp10-white_main_1.jpg'),(13136,89,0,1878,'/w/p/wp10-white_main_1.jpg'),(13137,73,0,1878,'Daria Bikram Pant-28-White'),(13138,106,0,1879,'container2'),(13139,124,0,1879,'0'),(13140,121,0,1879,'daria-bikram-pant-29-black'),(13141,87,0,1879,'/w/p/wp10-black_main_1.jpg'),(13142,88,0,1879,'/w/p/wp10-black_main_1.jpg'),(13143,89,0,1879,'/w/p/wp10-black_main_1.jpg'),(13144,73,0,1879,'Daria Bikram Pant-29-Black'),(13145,106,0,1880,'container2'),(13146,124,0,1880,'0'),(13147,121,0,1880,'daria-bikram-pant-29-gray'),(13148,87,0,1880,'/w/p/wp10-gray_main_1.jpg'),(13149,88,0,1880,'/w/p/wp10-gray_main_1.jpg'),(13150,89,0,1880,'/w/p/wp10-gray_main_1.jpg'),(13151,73,0,1880,'Daria Bikram Pant-29-Gray'),(13152,106,0,1881,'container2'),(13153,124,0,1881,'0'),(13154,121,0,1881,'daria-bikram-pant-29-white'),(13155,87,0,1881,'/w/p/wp10-white_main_1.jpg'),(13156,88,0,1881,'/w/p/wp10-white_main_1.jpg'),(13157,89,0,1881,'/w/p/wp10-white_main_1.jpg'),(13158,73,0,1881,'Daria Bikram Pant-29-White'),(13159,106,0,1882,'container2'),(13160,124,0,1882,'0'),(13161,121,0,1882,'daria-bikram-pant'),(13162,87,0,1882,'/w/p/wp10-gray_main_1.jpg'),(13163,88,0,1882,'/w/p/wp10-gray_main_1.jpg'),(13164,89,0,1882,'/w/p/wp10-gray_main_1.jpg'),(13165,73,0,1882,'Daria Bikram Pant'),(13166,106,0,1883,'container2'),(13167,124,0,1883,'0'),(13168,121,0,1883,'sylvia-capri-28-blue'),(13169,87,0,1883,'/w/p/wp11-blue_main_1.jpg'),(13170,88,0,1883,'/w/p/wp11-blue_main_1.jpg'),(13171,89,0,1883,'/w/p/wp11-blue_main_1.jpg'),(13172,73,0,1883,'Sylvia Capri-28-Blue'),(13173,106,0,1884,'container2'),(13174,124,0,1884,'0'),(13175,121,0,1884,'sylvia-capri-28-green'),(13176,87,0,1884,'/w/p/wp11-green_main_1.jpg'),(13177,88,0,1884,'/w/p/wp11-green_main_1.jpg'),(13178,89,0,1884,'/w/p/wp11-green_main_1.jpg'),(13179,73,0,1884,'Sylvia Capri-28-Green'),(13180,106,0,1885,'container2'),(13181,124,0,1885,'0'),(13182,121,0,1885,'sylvia-capri-28-red'),(13183,87,0,1885,'/w/p/wp11-red_main_1.jpg'),(13184,88,0,1885,'/w/p/wp11-red_main_1.jpg'),(13185,89,0,1885,'/w/p/wp11-red_main_1.jpg'),(13186,73,0,1885,'Sylvia Capri-28-Red'),(13187,106,0,1886,'container2'),(13188,124,0,1886,'0'),(13189,121,0,1886,'sylvia-capri-29-blue'),(13190,87,0,1886,'/w/p/wp11-blue_main_1.jpg'),(13191,88,0,1886,'/w/p/wp11-blue_main_1.jpg'),(13192,89,0,1886,'/w/p/wp11-blue_main_1.jpg'),(13193,73,0,1886,'Sylvia Capri-29-Blue'),(13194,106,0,1887,'container2'),(13195,124,0,1887,'0'),(13196,121,0,1887,'sylvia-capri-29-green'),(13197,87,0,1887,'/w/p/wp11-green_main_1.jpg'),(13198,88,0,1887,'/w/p/wp11-green_main_1.jpg'),(13199,89,0,1887,'/w/p/wp11-green_main_1.jpg'),(13200,73,0,1887,'Sylvia Capri-29-Green'),(13201,106,0,1888,'container2'),(13202,124,0,1888,'0'),(13203,121,0,1888,'sylvia-capri-29-red'),(13204,87,0,1888,'/w/p/wp11-red_main_1.jpg'),(13205,88,0,1888,'/w/p/wp11-red_main_1.jpg'),(13206,89,0,1888,'/w/p/wp11-red_main_1.jpg'),(13207,73,0,1888,'Sylvia Capri-29-Red'),(13208,106,0,1889,'container2'),(13209,124,0,1889,'0'),(13210,121,0,1889,'sylvia-capri'),(13211,87,0,1889,'/w/p/wp11-green_main_1.jpg'),(13212,88,0,1889,'/w/p/wp11-green_main_1.jpg'),(13213,89,0,1889,'/w/p/wp11-green_main_1.jpg'),(13214,73,0,1889,'Sylvia Capri'),(13215,106,0,1890,'container2'),(13216,124,0,1890,'0'),(13217,121,0,1890,'deirdre-relaxed-fit-capri-28-blue'),(13218,87,0,1890,'/w/p/wp12-blue_main_1.jpg'),(13219,88,0,1890,'/w/p/wp12-blue_main_1.jpg'),(13220,89,0,1890,'/w/p/wp12-blue_main_1.jpg'),(13221,73,0,1890,'Deirdre Relaxed-Fit Capri-28-Blue'),(13222,106,0,1891,'container2'),(13223,124,0,1891,'0'),(13224,121,0,1891,'deirdre-relaxed-fit-capri-28-gray'),(13225,87,0,1891,'/w/p/wp12-gray_main_1.jpg'),(13226,88,0,1891,'/w/p/wp12-gray_main_1.jpg'),(13227,89,0,1891,'/w/p/wp12-gray_main_1.jpg'),(13228,73,0,1891,'Deirdre Relaxed-Fit Capri-28-Gray'),(13229,106,0,1892,'container2'),(13230,124,0,1892,'0'),(13231,121,0,1892,'deirdre-relaxed-fit-capri-28-green'),(13232,87,0,1892,'/w/p/wp12-green_main_1.jpg'),(13233,88,0,1892,'/w/p/wp12-green_main_1.jpg'),(13234,89,0,1892,'/w/p/wp12-green_main_1.jpg'),(13235,73,0,1892,'Deirdre Relaxed-Fit Capri-28-Green'),(13236,106,0,1893,'container2'),(13237,124,0,1893,'0'),(13238,121,0,1893,'deirdre-relaxed-fit-capri-29-blue'),(13239,87,0,1893,'/w/p/wp12-blue_main_1.jpg'),(13240,88,0,1893,'/w/p/wp12-blue_main_1.jpg'),(13241,89,0,1893,'/w/p/wp12-blue_main_1.jpg'),(13242,73,0,1893,'Deirdre Relaxed-Fit Capri-29-Blue'),(13243,106,0,1894,'container2'),(13244,124,0,1894,'0'),(13245,121,0,1894,'deirdre-relaxed-fit-capri-29-gray'),(13246,87,0,1894,'/w/p/wp12-gray_main_1.jpg'),(13247,88,0,1894,'/w/p/wp12-gray_main_1.jpg'),(13248,89,0,1894,'/w/p/wp12-gray_main_1.jpg'),(13249,73,0,1894,'Deirdre Relaxed-Fit Capri-29-Gray'),(13250,106,0,1895,'container2'),(13251,124,0,1895,'0'),(13252,121,0,1895,'deirdre-relaxed-fit-capri-29-green'),(13253,87,0,1895,'/w/p/wp12-green_main_1.jpg'),(13254,88,0,1895,'/w/p/wp12-green_main_1.jpg'),(13255,89,0,1895,'/w/p/wp12-green_main_1.jpg'),(13256,73,0,1895,'Deirdre Relaxed-Fit Capri-29-Green'),(13257,106,0,1896,'container2'),(13258,124,0,1896,'0'),(13259,121,0,1896,'deirdre-relaxed-fit-capri'),(13260,87,0,1896,'/w/p/wp12-gray_main_1.jpg'),(13261,88,0,1896,'/w/p/wp12-gray_main_1.jpg'),(13262,89,0,1896,'/w/p/wp12-gray_main_1.jpg'),(13263,73,0,1896,'Deirdre Relaxed-Fit Capri'),(13264,106,0,1897,'container2'),(13265,124,0,1897,'0'),(13266,121,0,1897,'portia-capri-28-blue'),(13267,87,0,1897,'/w/p/wp13-blue_main_1.jpg'),(13268,88,0,1897,'/w/p/wp13-blue_main_1.jpg'),(13269,89,0,1897,'/w/p/wp13-blue_main_1.jpg'),(13270,73,0,1897,'Portia Capri-28-Blue'),(13271,106,0,1898,'container2'),(13272,124,0,1898,'0'),(13273,121,0,1898,'portia-capri-28-green'),(13274,87,0,1898,'/w/p/wp13-green_main_1.jpg'),(13275,88,0,1898,'/w/p/wp13-green_main_1.jpg'),(13276,89,0,1898,'/w/p/wp13-green_main_1.jpg'),(13277,73,0,1898,'Portia Capri-28-Green'),(13278,106,0,1899,'container2'),(13279,124,0,1899,'0'),(13280,121,0,1899,'portia-capri-28-orange'),(13281,87,0,1899,'/w/p/wp13-orange_main_1.jpg'),(13282,88,0,1899,'/w/p/wp13-orange_main_1.jpg'),(13283,89,0,1899,'/w/p/wp13-orange_main_1.jpg'),(13284,73,0,1899,'Portia Capri-28-Orange'),(13285,106,0,1900,'container2'),(13286,124,0,1900,'0'),(13287,121,0,1900,'portia-capri-29-blue'),(13288,87,0,1900,'/w/p/wp13-blue_main_1.jpg'),(13289,88,0,1900,'/w/p/wp13-blue_main_1.jpg'),(13290,89,0,1900,'/w/p/wp13-blue_main_1.jpg'),(13291,73,0,1900,'Portia Capri-29-Blue'),(13292,106,0,1901,'container2'),(13293,124,0,1901,'0'),(13294,121,0,1901,'portia-capri-29-green'),(13295,87,0,1901,'/w/p/wp13-green_main_1.jpg'),(13296,88,0,1901,'/w/p/wp13-green_main_1.jpg'),(13297,89,0,1901,'/w/p/wp13-green_main_1.jpg'),(13298,73,0,1901,'Portia Capri-29-Green'),(13299,106,0,1902,'container2'),(13300,124,0,1902,'0'),(13301,121,0,1902,'portia-capri-29-orange'),(13302,87,0,1902,'/w/p/wp13-orange_main_1.jpg'),(13303,88,0,1902,'/w/p/wp13-orange_main_1.jpg'),(13304,89,0,1902,'/w/p/wp13-orange_main_1.jpg'),(13305,73,0,1902,'Portia Capri-29-Orange'),(13306,106,0,1903,'container2'),(13307,124,0,1903,'0'),(13308,121,0,1903,'portia-capri'),(13309,87,0,1903,'/w/p/wp13-orange_main_1.jpg'),(13310,88,0,1903,'/w/p/wp13-orange_main_1.jpg'),(13311,89,0,1903,'/w/p/wp13-orange_main_1.jpg'),(13312,73,0,1903,'Portia Capri'),(13313,106,0,1904,'container2'),(13314,124,0,1904,'0'),(13315,121,0,1904,'fiona-fitness-short-28-black'),(13316,87,0,1904,'/w/s/wsh01-black_main_1.jpg'),(13317,88,0,1904,'/w/s/wsh01-black_main_1.jpg'),(13318,89,0,1904,'/w/s/wsh01-black_main_1.jpg'),(13319,73,0,1904,'Fiona Fitness Short-28-Black'),(13320,106,0,1905,'container2'),(13321,124,0,1905,'0'),(13322,121,0,1905,'fiona-fitness-short-28-green'),(13323,87,0,1905,'/w/s/wsh01-green_main_1.jpg'),(13324,88,0,1905,'/w/s/wsh01-green_main_1.jpg'),(13325,89,0,1905,'/w/s/wsh01-green_main_1.jpg'),(13326,73,0,1905,'Fiona Fitness Short-28-Green'),(13327,106,0,1906,'container2'),(13328,124,0,1906,'0'),(13329,121,0,1906,'fiona-fitness-short-28-red'),(13330,87,0,1906,'/w/s/wsh01-red_main_1.jpg'),(13331,88,0,1906,'/w/s/wsh01-red_main_1.jpg'),(13332,89,0,1906,'/w/s/wsh01-red_main_1.jpg'),(13333,73,0,1906,'Fiona Fitness Short-28-Red'),(13334,106,0,1907,'container2'),(13335,124,0,1907,'0'),(13336,121,0,1907,'fiona-fitness-short-29-black'),(13337,87,0,1907,'/w/s/wsh01-black_main_1.jpg'),(13338,88,0,1907,'/w/s/wsh01-black_main_1.jpg'),(13339,89,0,1907,'/w/s/wsh01-black_main_1.jpg'),(13340,73,0,1907,'Fiona Fitness Short-29-Black'),(13341,106,0,1908,'container2'),(13342,124,0,1908,'0'),(13343,121,0,1908,'fiona-fitness-short-29-green'),(13344,87,0,1908,'/w/s/wsh01-green_main_1.jpg'),(13345,88,0,1908,'/w/s/wsh01-green_main_1.jpg'),(13346,89,0,1908,'/w/s/wsh01-green_main_1.jpg'),(13347,73,0,1908,'Fiona Fitness Short-29-Green'),(13348,106,0,1909,'container2'),(13349,124,0,1909,'0'),(13350,121,0,1909,'fiona-fitness-short-29-red'),(13351,87,0,1909,'/w/s/wsh01-red_main_1.jpg'),(13352,88,0,1909,'/w/s/wsh01-red_main_1.jpg'),(13353,89,0,1909,'/w/s/wsh01-red_main_1.jpg'),(13354,73,0,1909,'Fiona Fitness Short-29-Red'),(13355,106,0,1910,'container2'),(13356,124,0,1910,'0'),(13357,121,0,1910,'fiona-fitness-short-30-black'),(13358,87,0,1910,'/w/s/wsh01-black_main_1.jpg'),(13359,88,0,1910,'/w/s/wsh01-black_main_1.jpg'),(13360,89,0,1910,'/w/s/wsh01-black_main_1.jpg'),(13361,73,0,1910,'Fiona Fitness Short-30-Black'),(13362,106,0,1911,'container2'),(13363,124,0,1911,'0'),(13364,121,0,1911,'fiona-fitness-short-30-green'),(13365,87,0,1911,'/w/s/wsh01-green_main_1.jpg'),(13366,88,0,1911,'/w/s/wsh01-green_main_1.jpg'),(13367,89,0,1911,'/w/s/wsh01-green_main_1.jpg'),(13368,73,0,1911,'Fiona Fitness Short-30-Green'),(13369,106,0,1912,'container2'),(13370,124,0,1912,'0'),(13371,121,0,1912,'fiona-fitness-short-30-red'),(13372,87,0,1912,'/w/s/wsh01-red_main_1.jpg'),(13373,88,0,1912,'/w/s/wsh01-red_main_1.jpg'),(13374,89,0,1912,'/w/s/wsh01-red_main_1.jpg'),(13375,73,0,1912,'Fiona Fitness Short-30-Red'),(13376,106,0,1913,'container2'),(13377,124,0,1913,'0'),(13378,121,0,1913,'fiona-fitness-short-31-black'),(13379,87,0,1913,'/w/s/wsh01-black_main_1.jpg'),(13380,88,0,1913,'/w/s/wsh01-black_main_1.jpg'),(13381,89,0,1913,'/w/s/wsh01-black_main_1.jpg'),(13382,73,0,1913,'Fiona Fitness Short-31-Black'),(13383,106,0,1914,'container2'),(13384,124,0,1914,'0'),(13385,121,0,1914,'fiona-fitness-short-31-green'),(13386,87,0,1914,'/w/s/wsh01-green_main_1.jpg'),(13387,88,0,1914,'/w/s/wsh01-green_main_1.jpg'),(13388,89,0,1914,'/w/s/wsh01-green_main_1.jpg'),(13389,73,0,1914,'Fiona Fitness Short-31-Green'),(13390,106,0,1915,'container2'),(13391,124,0,1915,'0'),(13392,121,0,1915,'fiona-fitness-short-31-red'),(13393,87,0,1915,'/w/s/wsh01-red_main_1.jpg'),(13394,88,0,1915,'/w/s/wsh01-red_main_1.jpg'),(13395,89,0,1915,'/w/s/wsh01-red_main_1.jpg'),(13396,73,0,1915,'Fiona Fitness Short-31-Red'),(13397,106,0,1916,'container2'),(13398,124,0,1916,'0'),(13399,121,0,1916,'fiona-fitness-short-32-black'),(13400,87,0,1916,'/w/s/wsh01-black_main_1.jpg'),(13401,88,0,1916,'/w/s/wsh01-black_main_1.jpg'),(13402,89,0,1916,'/w/s/wsh01-black_main_1.jpg'),(13403,73,0,1916,'Fiona Fitness Short-32-Black'),(13404,106,0,1917,'container2'),(13405,124,0,1917,'0'),(13406,121,0,1917,'fiona-fitness-short-32-green'),(13407,87,0,1917,'/w/s/wsh01-green_main_1.jpg'),(13408,88,0,1917,'/w/s/wsh01-green_main_1.jpg'),(13409,89,0,1917,'/w/s/wsh01-green_main_1.jpg'),(13410,73,0,1917,'Fiona Fitness Short-32-Green'),(13411,106,0,1918,'container2'),(13412,124,0,1918,'0'),(13413,121,0,1918,'fiona-fitness-short-32-red'),(13414,87,0,1918,'/w/s/wsh01-red_main_1.jpg'),(13415,88,0,1918,'/w/s/wsh01-red_main_1.jpg'),(13416,89,0,1918,'/w/s/wsh01-red_main_1.jpg'),(13417,73,0,1918,'Fiona Fitness Short-32-Red'),(13418,106,0,1919,'container2'),(13419,124,0,1919,'0'),(13420,121,0,1919,'fiona-fitness-short'),(13421,87,0,1919,'/w/s/wsh01-black_main_1.jpg'),(13422,88,0,1919,'/w/s/wsh01-black_main_1.jpg'),(13423,89,0,1919,'/w/s/wsh01-black_main_1.jpg'),(13424,73,0,1919,'Fiona Fitness Short'),(13425,106,0,1920,'container2'),(13426,124,0,1920,'0'),(13427,121,0,1920,'maxima-drawstring-short-28-gray'),(13428,87,0,1920,'/w/s/wsh02-gray_main_1.jpg'),(13429,88,0,1920,'/w/s/wsh02-gray_main_1.jpg'),(13430,89,0,1920,'/w/s/wsh02-gray_main_1.jpg'),(13431,73,0,1920,'Maxima Drawstring Short-28-Gray'),(13432,106,0,1921,'container2'),(13433,124,0,1921,'0'),(13434,121,0,1921,'maxima-drawstring-short-28-orange'),(13435,87,0,1921,'/w/s/wsh02-orange_main_1.jpg'),(13436,88,0,1921,'/w/s/wsh02-orange_main_1.jpg'),(13437,89,0,1921,'/w/s/wsh02-orange_main_1.jpg'),(13438,73,0,1921,'Maxima Drawstring Short-28-Orange'),(13439,106,0,1922,'container2'),(13440,124,0,1922,'0'),(13441,121,0,1922,'maxima-drawstring-short-28-yellow'),(13442,87,0,1922,'/w/s/wsh02-yellow_main_1.jpg'),(13443,88,0,1922,'/w/s/wsh02-yellow_main_1.jpg'),(13444,89,0,1922,'/w/s/wsh02-yellow_main_1.jpg'),(13445,73,0,1922,'Maxima Drawstring Short-28-Yellow'),(13446,106,0,1923,'container2'),(13447,124,0,1923,'0'),(13448,121,0,1923,'maxima-drawstring-short-29-gray'),(13449,87,0,1923,'/w/s/wsh02-gray_main_1.jpg'),(13450,88,0,1923,'/w/s/wsh02-gray_main_1.jpg'),(13451,89,0,1923,'/w/s/wsh02-gray_main_1.jpg'),(13452,73,0,1923,'Maxima Drawstring Short-29-Gray'),(13453,106,0,1924,'container2'),(13454,124,0,1924,'0'),(13455,121,0,1924,'maxima-drawstring-short-29-orange'),(13456,87,0,1924,'/w/s/wsh02-orange_main_1.jpg'),(13457,88,0,1924,'/w/s/wsh02-orange_main_1.jpg'),(13458,89,0,1924,'/w/s/wsh02-orange_main_1.jpg'),(13459,73,0,1924,'Maxima Drawstring Short-29-Orange'),(13460,106,0,1925,'container2'),(13461,124,0,1925,'0'),(13462,121,0,1925,'maxima-drawstring-short-29-yellow'),(13463,87,0,1925,'/w/s/wsh02-yellow_main_1.jpg'),(13464,88,0,1925,'/w/s/wsh02-yellow_main_1.jpg'),(13465,89,0,1925,'/w/s/wsh02-yellow_main_1.jpg'),(13466,73,0,1925,'Maxima Drawstring Short-29-Yellow'),(13467,106,0,1926,'container2'),(13468,124,0,1926,'0'),(13469,121,0,1926,'maxima-drawstring-short-30-gray'),(13470,87,0,1926,'/w/s/wsh02-gray_main_1.jpg'),(13471,88,0,1926,'/w/s/wsh02-gray_main_1.jpg'),(13472,89,0,1926,'/w/s/wsh02-gray_main_1.jpg'),(13473,73,0,1926,'Maxima Drawstring Short-30-Gray'),(13474,106,0,1927,'container2'),(13475,124,0,1927,'0'),(13476,121,0,1927,'maxima-drawstring-short-30-orange'),(13477,87,0,1927,'/w/s/wsh02-orange_main_1.jpg'),(13478,88,0,1927,'/w/s/wsh02-orange_main_1.jpg'),(13479,89,0,1927,'/w/s/wsh02-orange_main_1.jpg'),(13480,73,0,1927,'Maxima Drawstring Short-30-Orange'),(13481,106,0,1928,'container2'),(13482,124,0,1928,'0'),(13483,121,0,1928,'maxima-drawstring-short-30-yellow'),(13484,87,0,1928,'/w/s/wsh02-yellow_main_1.jpg'),(13485,88,0,1928,'/w/s/wsh02-yellow_main_1.jpg'),(13486,89,0,1928,'/w/s/wsh02-yellow_main_1.jpg'),(13487,73,0,1928,'Maxima Drawstring Short-30-Yellow'),(13488,106,0,1929,'container2'),(13489,124,0,1929,'0'),(13490,121,0,1929,'maxima-drawstring-short-31-gray'),(13491,87,0,1929,'/w/s/wsh02-gray_main_1.jpg'),(13492,88,0,1929,'/w/s/wsh02-gray_main_1.jpg'),(13493,89,0,1929,'/w/s/wsh02-gray_main_1.jpg'),(13494,73,0,1929,'Maxima Drawstring Short-31-Gray'),(13495,106,0,1930,'container2'),(13496,124,0,1930,'0'),(13497,121,0,1930,'maxima-drawstring-short-31-orange'),(13498,87,0,1930,'/w/s/wsh02-orange_main_1.jpg'),(13499,88,0,1930,'/w/s/wsh02-orange_main_1.jpg'),(13500,89,0,1930,'/w/s/wsh02-orange_main_1.jpg'),(13501,73,0,1930,'Maxima Drawstring Short-31-Orange'),(13502,106,0,1931,'container2'),(13503,124,0,1931,'0'),(13504,121,0,1931,'maxima-drawstring-short-31-yellow'),(13505,87,0,1931,'/w/s/wsh02-yellow_main_1.jpg'),(13506,88,0,1931,'/w/s/wsh02-yellow_main_1.jpg'),(13507,89,0,1931,'/w/s/wsh02-yellow_main_1.jpg'),(13508,73,0,1931,'Maxima Drawstring Short-31-Yellow'),(13509,106,0,1932,'container2'),(13510,124,0,1932,'0'),(13511,121,0,1932,'maxima-drawstring-short-32-gray'),(13512,87,0,1932,'/w/s/wsh02-gray_main_1.jpg'),(13513,88,0,1932,'/w/s/wsh02-gray_main_1.jpg'),(13514,89,0,1932,'/w/s/wsh02-gray_main_1.jpg'),(13515,73,0,1932,'Maxima Drawstring Short-32-Gray'),(13516,106,0,1933,'container2'),(13517,124,0,1933,'0'),(13518,121,0,1933,'maxima-drawstring-short-32-orange'),(13519,87,0,1933,'/w/s/wsh02-orange_main_1.jpg'),(13520,88,0,1933,'/w/s/wsh02-orange_main_1.jpg'),(13521,89,0,1933,'/w/s/wsh02-orange_main_1.jpg'),(13522,73,0,1933,'Maxima Drawstring Short-32-Orange'),(13523,106,0,1934,'container2'),(13524,124,0,1934,'0'),(13525,121,0,1934,'maxima-drawstring-short-32-yellow'),(13526,87,0,1934,'/w/s/wsh02-yellow_main_1.jpg'),(13527,88,0,1934,'/w/s/wsh02-yellow_main_1.jpg'),(13528,89,0,1934,'/w/s/wsh02-yellow_main_1.jpg'),(13529,73,0,1934,'Maxima Drawstring Short-32-Yellow'),(13530,106,0,1935,'container2'),(13531,124,0,1935,'0'),(13532,121,0,1935,'maxima-drawstring-short'),(13533,87,0,1935,'/w/s/wsh02-gray_main_1.jpg'),(13534,88,0,1935,'/w/s/wsh02-gray_main_1.jpg'),(13535,89,0,1935,'/w/s/wsh02-gray_main_1.jpg'),(13536,73,0,1935,'Maxima Drawstring Short'),(13537,106,0,1936,'container2'),(13538,124,0,1936,'0'),(13539,121,0,1936,'gwen-drawstring-bike-short-28-blue'),(13540,87,0,1936,'/w/s/wsh03-blue_main_1.jpg'),(13541,88,0,1936,'/w/s/wsh03-blue_main_1.jpg'),(13542,89,0,1936,'/w/s/wsh03-blue_main_1.jpg'),(13543,73,0,1936,'Gwen Drawstring Bike Short-28-Blue'),(13544,106,0,1937,'container2'),(13545,124,0,1937,'0'),(13546,121,0,1937,'gwen-drawstring-bike-short-28-gray'),(13547,87,0,1937,'/w/s/wsh03-gray_main_1.jpg'),(13548,88,0,1937,'/w/s/wsh03-gray_main_1.jpg'),(13549,89,0,1937,'/w/s/wsh03-gray_main_1.jpg'),(13550,73,0,1937,'Gwen Drawstring Bike Short-28-Gray'),(13551,106,0,1938,'container2'),(13552,124,0,1938,'0'),(13553,121,0,1938,'gwen-drawstring-bike-short-28-orange'),(13554,87,0,1938,'/w/s/wsh03-orange_main_1.jpg'),(13555,88,0,1938,'/w/s/wsh03-orange_main_1.jpg'),(13556,89,0,1938,'/w/s/wsh03-orange_main_1.jpg'),(13557,73,0,1938,'Gwen Drawstring Bike Short-28-Orange'),(13558,106,0,1939,'container2'),(13559,124,0,1939,'0'),(13560,121,0,1939,'gwen-drawstring-bike-short-29-blue'),(13561,87,0,1939,'/w/s/wsh03-blue_main_1.jpg'),(13562,88,0,1939,'/w/s/wsh03-blue_main_1.jpg'),(13563,89,0,1939,'/w/s/wsh03-blue_main_1.jpg'),(13564,73,0,1939,'Gwen Drawstring Bike Short-29-Blue'),(13565,106,0,1940,'container2'),(13566,124,0,1940,'0'),(13567,121,0,1940,'gwen-drawstring-bike-short-29-gray'),(13568,87,0,1940,'/w/s/wsh03-gray_main_1.jpg'),(13569,88,0,1940,'/w/s/wsh03-gray_main_1.jpg'),(13570,89,0,1940,'/w/s/wsh03-gray_main_1.jpg'),(13571,73,0,1940,'Gwen Drawstring Bike Short-29-Gray'),(13572,106,0,1941,'container2'),(13573,124,0,1941,'0'),(13574,121,0,1941,'gwen-drawstring-bike-short-29-orange'),(13575,87,0,1941,'/w/s/wsh03-orange_main_1.jpg'),(13576,88,0,1941,'/w/s/wsh03-orange_main_1.jpg'),(13577,89,0,1941,'/w/s/wsh03-orange_main_1.jpg'),(13578,73,0,1941,'Gwen Drawstring Bike Short-29-Orange'),(13579,106,0,1942,'container2'),(13580,124,0,1942,'0'),(13581,121,0,1942,'gwen-drawstring-bike-short-30-blue'),(13582,87,0,1942,'/w/s/wsh03-blue_main_1.jpg'),(13583,88,0,1942,'/w/s/wsh03-blue_main_1.jpg'),(13584,89,0,1942,'/w/s/wsh03-blue_main_1.jpg'),(13585,73,0,1942,'Gwen Drawstring Bike Short-30-Blue'),(13586,106,0,1943,'container2'),(13587,124,0,1943,'0'),(13588,121,0,1943,'gwen-drawstring-bike-short-30-gray'),(13589,87,0,1943,'/w/s/wsh03-gray_main_1.jpg'),(13590,88,0,1943,'/w/s/wsh03-gray_main_1.jpg'),(13591,89,0,1943,'/w/s/wsh03-gray_main_1.jpg'),(13592,73,0,1943,'Gwen Drawstring Bike Short-30-Gray'),(13593,106,0,1944,'container2'),(13594,124,0,1944,'0'),(13595,121,0,1944,'gwen-drawstring-bike-short-30-orange'),(13596,87,0,1944,'/w/s/wsh03-orange_main_1.jpg'),(13597,88,0,1944,'/w/s/wsh03-orange_main_1.jpg'),(13598,89,0,1944,'/w/s/wsh03-orange_main_1.jpg'),(13599,73,0,1944,'Gwen Drawstring Bike Short-30-Orange'),(13600,106,0,1945,'container2'),(13601,124,0,1945,'0'),(13602,121,0,1945,'gwen-drawstring-bike-short-31-blue'),(13603,87,0,1945,'/w/s/wsh03-blue_main_1.jpg'),(13604,88,0,1945,'/w/s/wsh03-blue_main_1.jpg'),(13605,89,0,1945,'/w/s/wsh03-blue_main_1.jpg'),(13606,73,0,1945,'Gwen Drawstring Bike Short-31-Blue'),(13607,106,0,1946,'container2'),(13608,124,0,1946,'0'),(13609,121,0,1946,'gwen-drawstring-bike-short-31-gray'),(13610,87,0,1946,'/w/s/wsh03-gray_main_1.jpg'),(13611,88,0,1946,'/w/s/wsh03-gray_main_1.jpg'),(13612,89,0,1946,'/w/s/wsh03-gray_main_1.jpg'),(13613,73,0,1946,'Gwen Drawstring Bike Short-31-Gray'),(13614,106,0,1947,'container2'),(13615,124,0,1947,'0'),(13616,121,0,1947,'gwen-drawstring-bike-short-31-orange'),(13617,87,0,1947,'/w/s/wsh03-orange_main_2.jpg'),(13618,88,0,1947,'/w/s/wsh03-orange_main_2.jpg'),(13619,89,0,1947,'/w/s/wsh03-orange_main_2.jpg'),(13620,73,0,1947,'Gwen Drawstring Bike Short-31-Orange'),(13621,106,0,1948,'container2'),(13622,124,0,1948,'0'),(13623,121,0,1948,'gwen-drawstring-bike-short-32-blue'),(13624,87,0,1948,'/w/s/wsh03-blue_main_2.jpg'),(13625,88,0,1948,'/w/s/wsh03-blue_main_2.jpg'),(13626,89,0,1948,'/w/s/wsh03-blue_main_2.jpg'),(13627,73,0,1948,'Gwen Drawstring Bike Short-32-Blue'),(13628,106,0,1949,'container2'),(13629,124,0,1949,'0'),(13630,121,0,1949,'gwen-drawstring-bike-short-32-gray'),(13631,87,0,1949,'/w/s/wsh03-gray_main_2.jpg'),(13632,88,0,1949,'/w/s/wsh03-gray_main_2.jpg'),(13633,89,0,1949,'/w/s/wsh03-gray_main_2.jpg'),(13634,73,0,1949,'Gwen Drawstring Bike Short-32-Gray'),(13635,106,0,1950,'container2'),(13636,124,0,1950,'0'),(13637,121,0,1950,'gwen-drawstring-bike-short-32-orange'),(13638,87,0,1950,'/w/s/wsh03-orange_main_2.jpg'),(13639,88,0,1950,'/w/s/wsh03-orange_main_2.jpg'),(13640,89,0,1950,'/w/s/wsh03-orange_main_2.jpg'),(13641,73,0,1950,'Gwen Drawstring Bike Short-32-Orange'),(13642,106,0,1951,'container2'),(13643,124,0,1951,'0'),(13644,121,0,1951,'gwen-drawstring-bike-short'),(13645,87,0,1951,'/w/s/wsh03-gray_main_2.jpg'),(13646,88,0,1951,'/w/s/wsh03-gray_main_2.jpg'),(13647,89,0,1951,'/w/s/wsh03-gray_main_2.jpg'),(13648,73,0,1951,'Gwen Drawstring Bike Short'),(13649,106,0,1952,'container2'),(13650,124,0,1952,'0'),(13651,121,0,1952,'artemis-running-short-28-black'),(13652,87,0,1952,'/w/s/wsh04-black_main_1.jpg'),(13653,88,0,1952,'/w/s/wsh04-black_main_1.jpg'),(13654,89,0,1952,'/w/s/wsh04-black_main_1.jpg'),(13655,73,0,1952,'Artemis Running Short-28-Black'),(13656,106,0,1953,'container2'),(13657,124,0,1953,'0'),(13658,121,0,1953,'artemis-running-short-28-green'),(13659,87,0,1953,'/w/s/wsh04-green_main_1.jpg'),(13660,88,0,1953,'/w/s/wsh04-green_main_1.jpg'),(13661,89,0,1953,'/w/s/wsh04-green_main_1.jpg'),(13662,73,0,1953,'Artemis Running Short-28-Green'),(13663,106,0,1954,'container2'),(13664,124,0,1954,'0'),(13665,121,0,1954,'artemis-running-short-28-orange'),(13666,87,0,1954,'/w/s/wsh04-orange_main_1.jpg'),(13667,88,0,1954,'/w/s/wsh04-orange_main_1.jpg'),(13668,89,0,1954,'/w/s/wsh04-orange_main_1.jpg'),(13669,73,0,1954,'Artemis Running Short-28-Orange'),(13670,106,0,1955,'container2'),(13671,124,0,1955,'0'),(13672,121,0,1955,'artemis-running-short-29-black'),(13673,87,0,1955,'/w/s/wsh04-black_main_1.jpg'),(13674,88,0,1955,'/w/s/wsh04-black_main_1.jpg'),(13675,89,0,1955,'/w/s/wsh04-black_main_1.jpg'),(13676,73,0,1955,'Artemis Running Short-29-Black'),(13677,106,0,1956,'container2'),(13678,124,0,1956,'0'),(13679,121,0,1956,'artemis-running-short-29-green'),(13680,87,0,1956,'/w/s/wsh04-green_main_1.jpg'),(13681,88,0,1956,'/w/s/wsh04-green_main_1.jpg'),(13682,89,0,1956,'/w/s/wsh04-green_main_1.jpg'),(13683,73,0,1956,'Artemis Running Short-29-Green'),(13684,106,0,1957,'container2'),(13685,124,0,1957,'0'),(13686,121,0,1957,'artemis-running-short-29-orange'),(13687,87,0,1957,'/w/s/wsh04-orange_main_1.jpg'),(13688,88,0,1957,'/w/s/wsh04-orange_main_1.jpg'),(13689,89,0,1957,'/w/s/wsh04-orange_main_1.jpg'),(13690,73,0,1957,'Artemis Running Short-29-Orange'),(13691,106,0,1958,'container2'),(13692,124,0,1958,'0'),(13693,121,0,1958,'artemis-running-short-30-black'),(13694,87,0,1958,'/w/s/wsh04-black_main_1.jpg'),(13695,88,0,1958,'/w/s/wsh04-black_main_1.jpg'),(13696,89,0,1958,'/w/s/wsh04-black_main_1.jpg'),(13697,73,0,1958,'Artemis Running Short-30-Black'),(13698,106,0,1959,'container2'),(13699,124,0,1959,'0'),(13700,121,0,1959,'artemis-running-short-30-green'),(13701,87,0,1959,'/w/s/wsh04-green_main_1.jpg'),(13702,88,0,1959,'/w/s/wsh04-green_main_1.jpg'),(13703,89,0,1959,'/w/s/wsh04-green_main_1.jpg'),(13704,73,0,1959,'Artemis Running Short-30-Green'),(13705,106,0,1960,'container2'),(13706,124,0,1960,'0'),(13707,121,0,1960,'artemis-running-short-30-orange'),(13708,87,0,1960,'/w/s/wsh04-orange_main_1.jpg'),(13709,88,0,1960,'/w/s/wsh04-orange_main_1.jpg'),(13710,89,0,1960,'/w/s/wsh04-orange_main_1.jpg'),(13711,73,0,1960,'Artemis Running Short-30-Orange'),(13712,106,0,1961,'container2'),(13713,124,0,1961,'0'),(13714,121,0,1961,'artemis-running-short-31-black'),(13715,87,0,1961,'/w/s/wsh04-black_main_1.jpg'),(13716,88,0,1961,'/w/s/wsh04-black_main_1.jpg'),(13717,89,0,1961,'/w/s/wsh04-black_main_1.jpg'),(13718,73,0,1961,'Artemis Running Short-31-Black'),(13719,106,0,1962,'container2'),(13720,124,0,1962,'0'),(13721,121,0,1962,'artemis-running-short-31-green'),(13722,87,0,1962,'/w/s/wsh04-green_main_1.jpg'),(13723,88,0,1962,'/w/s/wsh04-green_main_1.jpg'),(13724,89,0,1962,'/w/s/wsh04-green_main_1.jpg'),(13725,73,0,1962,'Artemis Running Short-31-Green'),(13726,106,0,1963,'container2'),(13727,124,0,1963,'0'),(13728,121,0,1963,'artemis-running-short-31-orange'),(13729,87,0,1963,'/w/s/wsh04-orange_main_1.jpg'),(13730,88,0,1963,'/w/s/wsh04-orange_main_1.jpg'),(13731,89,0,1963,'/w/s/wsh04-orange_main_1.jpg'),(13732,73,0,1963,'Artemis Running Short-31-Orange'),(13733,106,0,1964,'container2'),(13734,124,0,1964,'0'),(13735,121,0,1964,'artemis-running-short-32-black'),(13736,87,0,1964,'/w/s/wsh04-black_main_1.jpg'),(13737,88,0,1964,'/w/s/wsh04-black_main_1.jpg'),(13738,89,0,1964,'/w/s/wsh04-black_main_1.jpg'),(13739,73,0,1964,'Artemis Running Short-32-Black'),(13740,106,0,1965,'container2'),(13741,124,0,1965,'0'),(13742,121,0,1965,'artemis-running-short-32-green'),(13743,87,0,1965,'/w/s/wsh04-green_main_1.jpg'),(13744,88,0,1965,'/w/s/wsh04-green_main_1.jpg'),(13745,89,0,1965,'/w/s/wsh04-green_main_1.jpg'),(13746,73,0,1965,'Artemis Running Short-32-Green'),(13747,106,0,1966,'container2'),(13748,124,0,1966,'0'),(13749,121,0,1966,'artemis-running-short-32-orange'),(13750,87,0,1966,'/w/s/wsh04-orange_main_1.jpg'),(13751,88,0,1966,'/w/s/wsh04-orange_main_1.jpg'),(13752,89,0,1966,'/w/s/wsh04-orange_main_1.jpg'),(13753,73,0,1966,'Artemis Running Short-32-Orange'),(13754,106,0,1967,'container2'),(13755,124,0,1967,'0'),(13756,121,0,1967,'artemis-running-short'),(13757,87,0,1967,'/w/s/wsh04-black_main_1.jpg'),(13758,88,0,1967,'/w/s/wsh04-black_main_1.jpg'),(13759,89,0,1967,'/w/s/wsh04-black_main_1.jpg'),(13760,73,0,1967,'Artemis Running Short'),(13761,106,0,1968,'container2'),(13762,124,0,1968,'0'),(13763,121,0,1968,'bess-yoga-short-28-blue'),(13764,87,0,1968,'/w/s/wsh05-blue_main_1.jpg'),(13765,88,0,1968,'/w/s/wsh05-blue_main_1.jpg'),(13766,89,0,1968,'/w/s/wsh05-blue_main_1.jpg'),(13767,73,0,1968,'Bess Yoga Short-28-Blue'),(13768,106,0,1969,'container2'),(13769,124,0,1969,'0'),(13770,121,0,1969,'bess-yoga-short-28-purple'),(13771,87,0,1969,'/w/s/wsh05-purple_main_1.jpg'),(13772,88,0,1969,'/w/s/wsh05-purple_main_1.jpg'),(13773,89,0,1969,'/w/s/wsh05-purple_main_1.jpg'),(13774,73,0,1969,'Bess Yoga Short-28-Purple'),(13775,106,0,1970,'container2'),(13776,124,0,1970,'0'),(13777,121,0,1970,'bess-yoga-short-28-yellow'),(13778,87,0,1970,'/w/s/wsh05-yellow_main_1.jpg'),(13779,88,0,1970,'/w/s/wsh05-yellow_main_1.jpg'),(13780,89,0,1970,'/w/s/wsh05-yellow_main_1.jpg'),(13781,73,0,1970,'Bess Yoga Short-28-Yellow'),(13782,106,0,1971,'container2'),(13783,124,0,1971,'0'),(13784,121,0,1971,'bess-yoga-short-29-blue'),(13785,87,0,1971,'/w/s/wsh05-blue_main_1.jpg'),(13786,88,0,1971,'/w/s/wsh05-blue_main_1.jpg'),(13787,89,0,1971,'/w/s/wsh05-blue_main_1.jpg'),(13788,73,0,1971,'Bess Yoga Short-29-Blue'),(13789,106,0,1972,'container2'),(13790,124,0,1972,'0'),(13791,121,0,1972,'bess-yoga-short-29-purple'),(13792,87,0,1972,'/w/s/wsh05-purple_main_1.jpg'),(13793,88,0,1972,'/w/s/wsh05-purple_main_1.jpg'),(13794,89,0,1972,'/w/s/wsh05-purple_main_1.jpg'),(13795,73,0,1972,'Bess Yoga Short-29-Purple'),(13796,106,0,1973,'container2'),(13797,124,0,1973,'0'),(13798,121,0,1973,'bess-yoga-short-29-yellow'),(13799,87,0,1973,'/w/s/wsh05-yellow_main_1.jpg'),(13800,88,0,1973,'/w/s/wsh05-yellow_main_1.jpg'),(13801,89,0,1973,'/w/s/wsh05-yellow_main_1.jpg'),(13802,73,0,1973,'Bess Yoga Short-29-Yellow'),(13803,106,0,1974,'container2'),(13804,124,0,1974,'0'),(13805,121,0,1974,'bess-yoga-short-30-blue'),(13806,87,0,1974,'/w/s/wsh05-blue_main_1.jpg'),(13807,88,0,1974,'/w/s/wsh05-blue_main_1.jpg'),(13808,89,0,1974,'/w/s/wsh05-blue_main_1.jpg'),(13809,73,0,1974,'Bess Yoga Short-30-Blue'),(13810,106,0,1975,'container2'),(13811,124,0,1975,'0'),(13812,121,0,1975,'bess-yoga-short-30-purple'),(13813,87,0,1975,'/w/s/wsh05-purple_main_1.jpg'),(13814,88,0,1975,'/w/s/wsh05-purple_main_1.jpg'),(13815,89,0,1975,'/w/s/wsh05-purple_main_1.jpg'),(13816,73,0,1975,'Bess Yoga Short-30-Purple'),(13817,106,0,1976,'container2'),(13818,124,0,1976,'0'),(13819,121,0,1976,'bess-yoga-short-30-yellow'),(13820,87,0,1976,'/w/s/wsh05-yellow_main_1.jpg'),(13821,88,0,1976,'/w/s/wsh05-yellow_main_1.jpg'),(13822,89,0,1976,'/w/s/wsh05-yellow_main_1.jpg'),(13823,73,0,1976,'Bess Yoga Short-30-Yellow'),(13824,106,0,1977,'container2'),(13825,124,0,1977,'0'),(13826,121,0,1977,'bess-yoga-short-31-blue'),(13827,87,0,1977,'/w/s/wsh05-blue_main_1.jpg'),(13828,88,0,1977,'/w/s/wsh05-blue_main_1.jpg'),(13829,89,0,1977,'/w/s/wsh05-blue_main_1.jpg'),(13830,73,0,1977,'Bess Yoga Short-31-Blue'),(13831,106,0,1978,'container2'),(13832,124,0,1978,'0'),(13833,121,0,1978,'bess-yoga-short-31-purple'),(13834,87,0,1978,'/w/s/wsh05-purple_main_1.jpg'),(13835,88,0,1978,'/w/s/wsh05-purple_main_1.jpg'),(13836,89,0,1978,'/w/s/wsh05-purple_main_1.jpg'),(13837,73,0,1978,'Bess Yoga Short-31-Purple'),(13838,106,0,1979,'container2'),(13839,124,0,1979,'0'),(13840,121,0,1979,'bess-yoga-short-31-yellow'),(13841,87,0,1979,'/w/s/wsh05-yellow_main_1.jpg'),(13842,88,0,1979,'/w/s/wsh05-yellow_main_1.jpg'),(13843,89,0,1979,'/w/s/wsh05-yellow_main_1.jpg'),(13844,73,0,1979,'Bess Yoga Short-31-Yellow'),(13845,106,0,1980,'container2'),(13846,124,0,1980,'0'),(13847,121,0,1980,'bess-yoga-short-32-blue'),(13848,87,0,1980,'/w/s/wsh05-blue_main_1.jpg'),(13849,88,0,1980,'/w/s/wsh05-blue_main_1.jpg'),(13850,89,0,1980,'/w/s/wsh05-blue_main_1.jpg'),(13851,73,0,1980,'Bess Yoga Short-32-Blue'),(13852,106,0,1981,'container2'),(13853,124,0,1981,'0'),(13854,121,0,1981,'bess-yoga-short-32-purple'),(13855,87,0,1981,'/w/s/wsh05-purple_main_1.jpg'),(13856,88,0,1981,'/w/s/wsh05-purple_main_1.jpg'),(13857,89,0,1981,'/w/s/wsh05-purple_main_1.jpg'),(13858,73,0,1981,'Bess Yoga Short-32-Purple'),(13859,106,0,1982,'container2'),(13860,124,0,1982,'0'),(13861,121,0,1982,'bess-yoga-short-32-yellow'),(13862,87,0,1982,'/w/s/wsh05-yellow_main_1.jpg'),(13863,88,0,1982,'/w/s/wsh05-yellow_main_1.jpg'),(13864,89,0,1982,'/w/s/wsh05-yellow_main_1.jpg'),(13865,73,0,1982,'Bess Yoga Short-32-Yellow'),(13866,106,0,1983,'container2'),(13867,124,0,1983,'0'),(13868,121,0,1983,'bess-yoga-short'),(13869,87,0,1983,'/w/s/wsh05-blue_main_1.jpg'),(13870,88,0,1983,'/w/s/wsh05-blue_main_1.jpg'),(13871,89,0,1983,'/w/s/wsh05-blue_main_1.jpg'),(13872,73,0,1983,'Bess Yoga Short'),(13873,106,0,1984,'container2'),(13874,124,0,1984,'0'),(13875,121,0,1984,'angel-light-running-short-28-gray'),(13876,87,0,1984,'/w/s/wsh06-gray_main_1.jpg'),(13877,88,0,1984,'/w/s/wsh06-gray_main_1.jpg'),(13878,89,0,1984,'/w/s/wsh06-gray_main_1.jpg'),(13879,73,0,1984,'Angel Light Running Short-28-Gray'),(13880,106,0,1985,'container2'),(13881,124,0,1985,'0'),(13882,121,0,1985,'angel-light-running-short-28-orange'),(13883,87,0,1985,'/w/s/wsh06-orange_main_1.jpg'),(13884,88,0,1985,'/w/s/wsh06-orange_main_1.jpg'),(13885,89,0,1985,'/w/s/wsh06-orange_main_1.jpg'),(13886,73,0,1985,'Angel Light Running Short-28-Orange'),(13887,106,0,1986,'container2'),(13888,124,0,1986,'0'),(13889,121,0,1986,'angel-light-running-short-28-purple'),(13890,87,0,1986,'/w/s/wsh06-purple_main_1.jpg'),(13891,88,0,1986,'/w/s/wsh06-purple_main_1.jpg'),(13892,89,0,1986,'/w/s/wsh06-purple_main_1.jpg'),(13893,73,0,1986,'Angel Light Running Short-28-Purple'),(13894,106,0,1987,'container2'),(13895,124,0,1987,'0'),(13896,121,0,1987,'angel-light-running-short-29-gray'),(13897,87,0,1987,'/w/s/wsh06-gray_main_1.jpg'),(13898,88,0,1987,'/w/s/wsh06-gray_main_1.jpg'),(13899,89,0,1987,'/w/s/wsh06-gray_main_1.jpg'),(13900,73,0,1987,'Angel Light Running Short-29-Gray'),(13901,106,0,1988,'container2'),(13902,124,0,1988,'0'),(13903,121,0,1988,'angel-light-running-short-29-orange'),(13904,87,0,1988,'/w/s/wsh06-orange_main_1.jpg'),(13905,88,0,1988,'/w/s/wsh06-orange_main_1.jpg'),(13906,89,0,1988,'/w/s/wsh06-orange_main_1.jpg'),(13907,73,0,1988,'Angel Light Running Short-29-Orange'),(13908,106,0,1989,'container2'),(13909,124,0,1989,'0'),(13910,121,0,1989,'angel-light-running-short-29-purple'),(13911,87,0,1989,'/w/s/wsh06-purple_main_1.jpg'),(13912,88,0,1989,'/w/s/wsh06-purple_main_1.jpg'),(13913,89,0,1989,'/w/s/wsh06-purple_main_1.jpg'),(13914,73,0,1989,'Angel Light Running Short-29-Purple'),(13915,106,0,1990,'container2'),(13916,124,0,1990,'0'),(13917,121,0,1990,'angel-light-running-short'),(13918,87,0,1990,'/w/s/wsh06-gray_main_1.jpg'),(13919,88,0,1990,'/w/s/wsh06-gray_main_1.jpg'),(13920,89,0,1990,'/w/s/wsh06-gray_main_1.jpg'),(13921,73,0,1990,'Angel Light Running Short'),(13922,106,0,1991,'container2'),(13923,124,0,1991,'0'),(13924,121,0,1991,'echo-fit-compression-short-28-black'),(13925,87,0,1991,'/w/s/wsh07-black_main_1.jpg'),(13926,88,0,1991,'/w/s/wsh07-black_main_1.jpg'),(13927,89,0,1991,'/w/s/wsh07-black_main_1.jpg'),(13928,73,0,1991,'Echo Fit Compression Short-28-Black'),(13929,106,0,1992,'container2'),(13930,124,0,1992,'0'),(13931,121,0,1992,'echo-fit-compression-short-28-blue'),(13932,87,0,1992,'/w/s/wsh07-blue_main_1.jpg'),(13933,88,0,1992,'/w/s/wsh07-blue_main_1.jpg'),(13934,89,0,1992,'/w/s/wsh07-blue_main_1.jpg'),(13935,73,0,1992,'Echo Fit Compression Short-28-Blue'),(13936,106,0,1993,'container2'),(13937,124,0,1993,'0'),(13938,121,0,1993,'echo-fit-compression-short-28-purple'),(13939,87,0,1993,'/w/s/wsh07-purple_main_1.jpg'),(13940,88,0,1993,'/w/s/wsh07-purple_main_1.jpg'),(13941,89,0,1993,'/w/s/wsh07-purple_main_1.jpg'),(13942,73,0,1993,'Echo Fit Compression Short-28-Purple'),(13943,106,0,1994,'container2'),(13944,124,0,1994,'0'),(13945,121,0,1994,'echo-fit-compression-short-29-black'),(13946,87,0,1994,'/w/s/wsh07-black_main_1.jpg'),(13947,88,0,1994,'/w/s/wsh07-black_main_1.jpg'),(13948,89,0,1994,'/w/s/wsh07-black_main_1.jpg'),(13949,73,0,1994,'Echo Fit Compression Short-29-Black'),(13950,106,0,1995,'container2'),(13951,124,0,1995,'0'),(13952,121,0,1995,'echo-fit-compression-short-29-blue'),(13953,87,0,1995,'/w/s/wsh07-blue_main_1.jpg'),(13954,88,0,1995,'/w/s/wsh07-blue_main_1.jpg'),(13955,89,0,1995,'/w/s/wsh07-blue_main_1.jpg'),(13956,73,0,1995,'Echo Fit Compression Short-29-Blue'),(13957,106,0,1996,'container2'),(13958,124,0,1996,'0'),(13959,121,0,1996,'echo-fit-compression-short-29-purple'),(13960,87,0,1996,'/w/s/wsh07-purple_main_1.jpg'),(13961,88,0,1996,'/w/s/wsh07-purple_main_1.jpg'),(13962,89,0,1996,'/w/s/wsh07-purple_main_1.jpg'),(13963,73,0,1996,'Echo Fit Compression Short-29-Purple'),(13964,106,0,1997,'container2'),(13965,124,0,1997,'0'),(13966,121,0,1997,'echo-fit-compression-short'),(13967,87,0,1997,'/w/s/wsh07-black_main_1.jpg'),(13968,88,0,1997,'/w/s/wsh07-black_main_1.jpg'),(13969,89,0,1997,'/w/s/wsh07-black_main_1.jpg'),(13970,73,0,1997,'Echo Fit Compression Short'),(13971,106,0,1998,'container2'),(13972,124,0,1998,'0'),(13973,121,0,1998,'sybil-running-short-28-purple'),(13974,87,0,1998,'/w/s/wsh08-purple_main_1.jpg'),(13975,88,0,1998,'/w/s/wsh08-purple_main_1.jpg'),(13976,89,0,1998,'/w/s/wsh08-purple_main_1.jpg'),(13977,73,0,1998,'Sybil Running Short-28-Purple'),(13978,106,0,1999,'container2'),(13979,124,0,1999,'0'),(13980,121,0,1999,'sybil-running-short-29-purple'),(13981,87,0,1999,'/w/s/wsh08-purple_main_1.jpg'),(13982,88,0,1999,'/w/s/wsh08-purple_main_1.jpg'),(13983,89,0,1999,'/w/s/wsh08-purple_main_1.jpg'),(13984,73,0,1999,'Sybil Running Short-29-Purple'),(13985,106,0,2000,'container2'),(13986,124,0,2000,'0'),(13987,121,0,2000,'sybil-running-short-30-purple'),(13988,87,0,2000,'/w/s/wsh08-purple_main_1.jpg'),(13989,88,0,2000,'/w/s/wsh08-purple_main_1.jpg'),(13990,89,0,2000,'/w/s/wsh08-purple_main_1.jpg'),(13991,73,0,2000,'Sybil Running Short-30-Purple'),(13992,106,0,2001,'container2'),(13993,124,0,2001,'0'),(13994,121,0,2001,'sybil-running-short-31-purple'),(13995,87,0,2001,'/w/s/wsh08-purple_main_1.jpg'),(13996,88,0,2001,'/w/s/wsh08-purple_main_1.jpg'),(13997,89,0,2001,'/w/s/wsh08-purple_main_1.jpg'),(13998,73,0,2001,'Sybil Running Short-31-Purple'),(13999,106,0,2002,'container2'),(14000,124,0,2002,'0'),(14001,121,0,2002,'sybil-running-short-32-purple'),(14002,87,0,2002,'/w/s/wsh08-purple_main_1.jpg'),(14003,88,0,2002,'/w/s/wsh08-purple_main_1.jpg'),(14004,89,0,2002,'/w/s/wsh08-purple_main_1.jpg'),(14005,73,0,2002,'Sybil Running Short-32-Purple'),(14006,106,0,2003,'container2'),(14007,124,0,2003,'0'),(14008,121,0,2003,'sybil-running-short'),(14009,87,0,2003,'/w/s/wsh08-purple_main_1.jpg'),(14010,88,0,2003,'/w/s/wsh08-purple_main_1.jpg'),(14011,89,0,2003,'/w/s/wsh08-purple_main_1.jpg'),(14012,73,0,2003,'Sybil Running Short'),(14013,106,0,2004,'container2'),(14014,124,0,2004,'0'),(14015,121,0,2004,'mimi-all-purpose-short-28-gray'),(14016,87,0,2004,'/w/s/wsh09-gray_main_1.jpg'),(14017,88,0,2004,'/w/s/wsh09-gray_main_1.jpg'),(14018,89,0,2004,'/w/s/wsh09-gray_main_1.jpg'),(14019,73,0,2004,'Mimi All-Purpose Short-28-Gray'),(14020,106,0,2005,'container2'),(14021,124,0,2005,'0'),(14022,121,0,2005,'mimi-all-purpose-short-28-green'),(14023,87,0,2005,'/w/s/wsh09-green_main_1.jpg'),(14024,88,0,2005,'/w/s/wsh09-green_main_1.jpg'),(14025,89,0,2005,'/w/s/wsh09-green_main_1.jpg'),(14026,73,0,2005,'Mimi All-Purpose Short-28-Green'),(14027,106,0,2006,'container2'),(14028,124,0,2006,'0'),(14029,121,0,2006,'mimi-all-purpose-short-28-white'),(14030,87,0,2006,'/w/s/wsh09-white_main_1.jpg'),(14031,88,0,2006,'/w/s/wsh09-white_main_1.jpg'),(14032,89,0,2006,'/w/s/wsh09-white_main_1.jpg'),(14033,73,0,2006,'Mimi All-Purpose Short-28-White'),(14034,106,0,2007,'container2'),(14035,124,0,2007,'0'),(14036,121,0,2007,'mimi-all-purpose-short-29-gray'),(14037,87,0,2007,'/w/s/wsh09-gray_main_1.jpg'),(14038,88,0,2007,'/w/s/wsh09-gray_main_1.jpg'),(14039,89,0,2007,'/w/s/wsh09-gray_main_1.jpg'),(14040,73,0,2007,'Mimi All-Purpose Short-29-Gray'),(14041,106,0,2008,'container2'),(14042,124,0,2008,'0'),(14043,121,0,2008,'mimi-all-purpose-short-29-green'),(14044,87,0,2008,'/w/s/wsh09-green_main_1.jpg'),(14045,88,0,2008,'/w/s/wsh09-green_main_1.jpg'),(14046,89,0,2008,'/w/s/wsh09-green_main_1.jpg'),(14047,73,0,2008,'Mimi All-Purpose Short-29-Green'),(14048,106,0,2009,'container2'),(14049,124,0,2009,'0'),(14050,121,0,2009,'mimi-all-purpose-short-29-white'),(14051,87,0,2009,'/w/s/wsh09-white_main_1.jpg'),(14052,88,0,2009,'/w/s/wsh09-white_main_1.jpg'),(14053,89,0,2009,'/w/s/wsh09-white_main_1.jpg'),(14054,73,0,2009,'Mimi All-Purpose Short-29-White'),(14055,106,0,2010,'container2'),(14056,124,0,2010,'0'),(14057,121,0,2010,'mimi-all-purpose-short'),(14058,87,0,2010,'/w/s/wsh09-gray_main_1.jpg'),(14059,88,0,2010,'/w/s/wsh09-gray_main_1.jpg'),(14060,89,0,2010,'/w/s/wsh09-gray_main_1.jpg'),(14061,73,0,2010,'Mimi All-Purpose Short'),(14062,106,0,2011,'container2'),(14063,124,0,2011,'0'),(14064,121,0,2011,'ana-running-short-28-black'),(14065,87,0,2011,'/w/s/wsh10-black_main_1.jpg'),(14066,88,0,2011,'/w/s/wsh10-black_main_1.jpg'),(14067,89,0,2011,'/w/s/wsh10-black_main_1.jpg'),(14068,73,0,2011,'Ana Running Short-28-Black'),(14069,106,0,2012,'container2'),(14070,124,0,2012,'0'),(14071,121,0,2012,'ana-running-short-28-orange'),(14072,87,0,2012,'/w/s/wsh10-orange_main_1.jpg'),(14073,88,0,2012,'/w/s/wsh10-orange_main_1.jpg'),(14074,89,0,2012,'/w/s/wsh10-orange_main_1.jpg'),(14075,73,0,2012,'Ana Running Short-28-Orange'),(14076,106,0,2013,'container2'),(14077,124,0,2013,'0'),(14078,121,0,2013,'ana-running-short-28-white'),(14079,87,0,2013,'/w/s/wsh10-white_main_1.jpg'),(14080,88,0,2013,'/w/s/wsh10-white_main_1.jpg'),(14081,89,0,2013,'/w/s/wsh10-white_main_1.jpg'),(14082,73,0,2013,'Ana Running Short-28-White'),(14083,106,0,2014,'container2'),(14084,124,0,2014,'0'),(14085,121,0,2014,'ana-running-short-29-black'),(14086,87,0,2014,'/w/s/wsh10-black_main_1.jpg'),(14087,88,0,2014,'/w/s/wsh10-black_main_1.jpg'),(14088,89,0,2014,'/w/s/wsh10-black_main_1.jpg'),(14089,73,0,2014,'Ana Running Short-29-Black'),(14090,106,0,2015,'container2'),(14091,124,0,2015,'0'),(14092,121,0,2015,'ana-running-short-29-orange'),(14093,87,0,2015,'/w/s/wsh10-orange_main_1.jpg'),(14094,88,0,2015,'/w/s/wsh10-orange_main_1.jpg'),(14095,89,0,2015,'/w/s/wsh10-orange_main_1.jpg'),(14096,73,0,2015,'Ana Running Short-29-Orange'),(14097,106,0,2016,'container2'),(14098,124,0,2016,'0'),(14099,121,0,2016,'ana-running-short-29-white'),(14100,87,0,2016,'/w/s/wsh10-white_main_1.jpg'),(14101,88,0,2016,'/w/s/wsh10-white_main_1.jpg'),(14102,89,0,2016,'/w/s/wsh10-white_main_1.jpg'),(14103,73,0,2016,'Ana Running Short-29-White'),(14104,106,0,2017,'container2'),(14105,124,0,2017,'0'),(14106,121,0,2017,'ana-running-short'),(14107,87,0,2017,'/w/s/wsh10-black_main_1.jpg'),(14108,88,0,2017,'/w/s/wsh10-black_main_1.jpg'),(14109,89,0,2017,'/w/s/wsh10-black_main_1.jpg'),(14110,73,0,2017,'Ana Running Short'),(14111,106,0,2018,'container2'),(14112,124,0,2018,'0'),(14113,121,0,2018,'ina-compression-short-28-blue'),(14114,87,0,2018,'/w/s/wsh11-blue_main_1.jpg'),(14115,88,0,2018,'/w/s/wsh11-blue_main_1.jpg'),(14116,89,0,2018,'/w/s/wsh11-blue_main_1.jpg'),(14117,73,0,2018,'Ina Compression Short-28-Blue'),(14118,106,0,2019,'container2'),(14119,124,0,2019,'0'),(14120,121,0,2019,'ina-compression-short-28-orange'),(14121,87,0,2019,'/w/s/wsh11-orange_main_1.jpg'),(14122,88,0,2019,'/w/s/wsh11-orange_main_1.jpg'),(14123,89,0,2019,'/w/s/wsh11-orange_main_1.jpg'),(14124,73,0,2019,'Ina Compression Short-28-Orange'),(14125,106,0,2020,'container2'),(14126,124,0,2020,'0'),(14127,121,0,2020,'ina-compression-short-28-red'),(14128,87,0,2020,'/w/s/wsh11-red_main_1.jpg'),(14129,88,0,2020,'/w/s/wsh11-red_main_1.jpg'),(14130,89,0,2020,'/w/s/wsh11-red_main_1.jpg'),(14131,73,0,2020,'Ina Compression Short-28-Red'),(14132,106,0,2021,'container2'),(14133,124,0,2021,'0'),(14134,121,0,2021,'ina-compression-short-29-blue'),(14135,87,0,2021,'/w/s/wsh11-blue_main_1.jpg'),(14136,88,0,2021,'/w/s/wsh11-blue_main_1.jpg'),(14137,89,0,2021,'/w/s/wsh11-blue_main_1.jpg'),(14138,73,0,2021,'Ina Compression Short-29-Blue'),(14139,106,0,2022,'container2'),(14140,124,0,2022,'0'),(14141,121,0,2022,'ina-compression-short-29-orange'),(14142,87,0,2022,'/w/s/wsh11-orange_main_1.jpg'),(14143,88,0,2022,'/w/s/wsh11-orange_main_1.jpg'),(14144,89,0,2022,'/w/s/wsh11-orange_main_1.jpg'),(14145,73,0,2022,'Ina Compression Short-29-Orange'),(14146,106,0,2023,'container2'),(14147,124,0,2023,'0'),(14148,121,0,2023,'ina-compression-short-29-red'),(14149,87,0,2023,'/w/s/wsh11-red_main_1.jpg'),(14150,88,0,2023,'/w/s/wsh11-red_main_1.jpg'),(14151,89,0,2023,'/w/s/wsh11-red_main_1.jpg'),(14152,73,0,2023,'Ina Compression Short-29-Red'),(14153,106,0,2024,'container2'),(14154,124,0,2024,'0'),(14155,121,0,2024,'ina-compression-short'),(14156,87,0,2024,'/w/s/wsh11-blue_main_1.jpg'),(14157,88,0,2024,'/w/s/wsh11-blue_main_1.jpg'),(14158,89,0,2024,'/w/s/wsh11-blue_main_1.jpg'),(14159,73,0,2024,'Ina Compression Short'),(14160,106,0,2025,'container2'),(14161,124,0,2025,'0'),(14162,121,0,2025,'erika-running-short-28-green'),(14163,87,0,2025,'/w/s/wsh12-green_main_1.jpg'),(14164,88,0,2025,'/w/s/wsh12-green_main_1.jpg'),(14165,89,0,2025,'/w/s/wsh12-green_main_1.jpg'),(14166,73,0,2025,'Erika Running Short-28-Green'),(14167,106,0,2026,'container2'),(14168,124,0,2026,'0'),(14169,121,0,2026,'erika-running-short-28-purple'),(14170,87,0,2026,'/w/s/wsh12-purple_main_1.jpg'),(14171,88,0,2026,'/w/s/wsh12-purple_main_1.jpg'),(14172,89,0,2026,'/w/s/wsh12-purple_main_1.jpg'),(14173,73,0,2026,'Erika Running Short-28-Purple'),(14174,106,0,2027,'container2'),(14175,124,0,2027,'0'),(14176,121,0,2027,'erika-running-short-28-red'),(14177,87,0,2027,'/w/s/wsh12-red_main_1.jpg'),(14178,88,0,2027,'/w/s/wsh12-red_main_1.jpg'),(14179,89,0,2027,'/w/s/wsh12-red_main_1.jpg'),(14180,73,0,2027,'Erika Running Short-28-Red'),(14181,106,0,2028,'container2'),(14182,124,0,2028,'0'),(14183,121,0,2028,'erika-running-short-29-green'),(14184,87,0,2028,'/w/s/wsh12-green_main_1.jpg'),(14185,88,0,2028,'/w/s/wsh12-green_main_1.jpg'),(14186,89,0,2028,'/w/s/wsh12-green_main_1.jpg'),(14187,73,0,2028,'Erika Running Short-29-Green'),(14188,106,0,2029,'container2'),(14189,124,0,2029,'0'),(14190,121,0,2029,'erika-running-short-29-purple'),(14191,87,0,2029,'/w/s/wsh12-purple_main_1.jpg'),(14192,88,0,2029,'/w/s/wsh12-purple_main_1.jpg'),(14193,89,0,2029,'/w/s/wsh12-purple_main_1.jpg'),(14194,73,0,2029,'Erika Running Short-29-Purple'),(14195,106,0,2030,'container2'),(14196,124,0,2030,'0'),(14197,121,0,2030,'erika-running-short-29-red'),(14198,87,0,2030,'/w/s/wsh12-red_main_1.jpg'),(14199,88,0,2030,'/w/s/wsh12-red_main_1.jpg'),(14200,89,0,2030,'/w/s/wsh12-red_main_1.jpg'),(14201,73,0,2030,'Erika Running Short-29-Red'),(14202,106,0,2031,'container2'),(14203,124,0,2031,'0'),(14204,121,0,2031,'erika-running-short-30-green'),(14205,87,0,2031,'/w/s/wsh12-green_main_1.jpg'),(14206,88,0,2031,'/w/s/wsh12-green_main_1.jpg'),(14207,89,0,2031,'/w/s/wsh12-green_main_1.jpg'),(14208,73,0,2031,'Erika Running Short-30-Green'),(14209,106,0,2032,'container2'),(14210,124,0,2032,'0'),(14211,121,0,2032,'erika-running-short-30-purple'),(14212,87,0,2032,'/w/s/wsh12-purple_main_1.jpg'),(14213,88,0,2032,'/w/s/wsh12-purple_main_1.jpg'),(14214,89,0,2032,'/w/s/wsh12-purple_main_1.jpg'),(14215,73,0,2032,'Erika Running Short-30-Purple'),(14216,106,0,2033,'container2'),(14217,124,0,2033,'0'),(14218,121,0,2033,'erika-running-short-30-red'),(14219,87,0,2033,'/w/s/wsh12-red_main_1.jpg'),(14220,88,0,2033,'/w/s/wsh12-red_main_1.jpg'),(14221,89,0,2033,'/w/s/wsh12-red_main_1.jpg'),(14222,73,0,2033,'Erika Running Short-30-Red'),(14223,106,0,2034,'container2'),(14224,124,0,2034,'0'),(14225,121,0,2034,'erika-running-short-31-green'),(14226,87,0,2034,'/w/s/wsh12-green_main_1.jpg'),(14227,88,0,2034,'/w/s/wsh12-green_main_1.jpg'),(14228,89,0,2034,'/w/s/wsh12-green_main_1.jpg'),(14229,73,0,2034,'Erika Running Short-31-Green'),(14230,106,0,2035,'container2'),(14231,124,0,2035,'0'),(14232,121,0,2035,'erika-running-short-31-purple'),(14233,87,0,2035,'/w/s/wsh12-purple_main_1.jpg'),(14234,88,0,2035,'/w/s/wsh12-purple_main_1.jpg'),(14235,89,0,2035,'/w/s/wsh12-purple_main_1.jpg'),(14236,73,0,2035,'Erika Running Short-31-Purple'),(14237,106,0,2036,'container2'),(14238,124,0,2036,'0'),(14239,121,0,2036,'erika-running-short-31-red'),(14240,87,0,2036,'/w/s/wsh12-red_main_1.jpg'),(14241,88,0,2036,'/w/s/wsh12-red_main_1.jpg'),(14242,89,0,2036,'/w/s/wsh12-red_main_1.jpg'),(14243,73,0,2036,'Erika Running Short-31-Red'),(14244,106,0,2037,'container2'),(14245,124,0,2037,'0'),(14246,121,0,2037,'erika-running-short-32-green'),(14247,87,0,2037,'/w/s/wsh12-green_main_1.jpg'),(14248,88,0,2037,'/w/s/wsh12-green_main_1.jpg'),(14249,89,0,2037,'/w/s/wsh12-green_main_1.jpg'),(14250,73,0,2037,'Erika Running Short-32-Green'),(14251,106,0,2038,'container2'),(14252,124,0,2038,'0'),(14253,121,0,2038,'erika-running-short-32-purple'),(14254,87,0,2038,'/w/s/wsh12-purple_main_1.jpg'),(14255,88,0,2038,'/w/s/wsh12-purple_main_1.jpg'),(14256,89,0,2038,'/w/s/wsh12-purple_main_1.jpg'),(14257,73,0,2038,'Erika Running Short-32-Purple'),(14258,106,0,2039,'container2'),(14259,124,0,2039,'0'),(14260,121,0,2039,'erika-running-short-32-red'),(14261,87,0,2039,'/w/s/wsh12-red_main_1.jpg'),(14262,88,0,2039,'/w/s/wsh12-red_main_1.jpg'),(14263,89,0,2039,'/w/s/wsh12-red_main_1.jpg'),(14264,73,0,2039,'Erika Running Short-32-Red'),(14265,106,0,2040,'container2'),(14266,124,0,2040,'0'),(14267,121,0,2040,'erika-running-short'),(14268,87,0,2040,'/w/s/wsh12-green_main_1.jpg'),(14269,88,0,2040,'/w/s/wsh12-green_main_1.jpg'),(14270,89,0,2040,'/w/s/wsh12-green_main_1.jpg'),(14271,73,0,2040,'Erika Running Short'),(14272,124,1,1220,'1'),(14273,106,1,1220,'container2'),(14274,124,1,1236,'1'),(14275,106,1,1236,'container2'),(14276,124,1,1252,'1'),(14277,106,1,1252,'container2'),(14278,124,1,1268,'1'),(14279,106,1,1268,'container2'),(14280,124,1,1284,'1'),(14281,106,1,1284,'container2'),(14282,124,1,1380,'1'),(14283,106,1,1380,'container2'),(14284,124,1,1300,'1'),(14285,106,1,1300,'container2'),(14286,124,1,1316,'1'),(14287,106,1,1316,'container2'),(14288,124,1,1332,'1'),(14289,106,1,1332,'container2'),(14290,124,1,1348,'1'),(14291,106,1,1348,'container2'),(14292,124,1,1364,'1'),(14293,106,1,1364,'container2'),(14294,124,1,1396,'1'),(14295,106,1,1396,'container2');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_frontend_action`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_frontend_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_frontend_action` (
  `action_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Action ID',
  `type_id` varchar(64) NOT NULL COMMENT 'Type of product action',
  `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `added_at` bigint NOT NULL COMMENT 'Added At',
  PRIMARY KEY (`action_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_FRONTEND_ACTION_VISITOR_ID_PRD_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_FRONTEND_ACTION_CSTR_ID_PRD_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`),
  KEY `[[DBPREFIX]]CAT_PRD_FRONTEND_ACTION_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_FRONTEND_ACTION_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_FRONTEND_ACTION_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Frontend Action Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_frontend_action`
--

LOCK TABLES `[[dbprefix]]catalog_product_frontend_action` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_frontend_action` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_frontend_action` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` int unsigned NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_index_eav` VALUES (1,99,1,4,1),(2,99,1,4,2),(3,99,1,4,3),(4,99,1,4,4),(5,99,1,4,5),(6,99,1,4,6),(7,99,1,4,7),(8,99,1,4,8),(9,99,1,4,9),(10,99,1,4,10),(11,99,1,4,11),(12,99,1,4,12),(13,99,1,4,13),(14,99,1,4,14),(15,99,1,4,15),(16,99,1,4,16),(17,99,1,4,17),(18,99,1,4,18),(19,99,1,4,19),(20,99,1,4,20),(21,99,1,4,21),(22,99,1,4,22),(23,99,1,4,23),(36,99,1,4,36),(37,99,1,4,37),(38,99,1,4,38),(39,99,1,4,39),(40,99,1,4,40),(41,99,1,4,41),(42,99,1,4,42),(43,99,1,4,43),(44,99,1,4,44),(45,99,1,4,21),(45,99,1,4,22),(45,99,1,4,45),(46,99,1,4,46),(62,99,1,4,62),(78,99,1,4,78),(94,99,1,4,94),(110,99,1,4,110),(126,99,1,4,126),(142,99,1,4,142),(158,99,1,4,158),(174,99,1,4,174),(190,99,1,4,190),(206,99,1,4,206),(222,99,1,4,222),(238,99,1,4,238),(254,99,1,4,254),(270,99,1,4,270),(286,99,1,4,286),(302,99,1,4,302),(318,99,1,4,318),(334,99,1,4,334),(350,99,1,4,350),(366,99,1,4,366),(382,99,1,4,382),(398,99,1,4,398),(414,99,1,4,414),(430,99,1,4,430),(446,99,1,4,446),(462,99,1,4,462),(478,99,1,4,478),(494,99,1,4,494),(510,99,1,4,510),(526,99,1,4,526),(542,99,1,4,542),(558,99,1,4,558),(574,99,1,4,574),(590,99,1,4,590),(606,99,1,4,606),(622,99,1,4,622),(638,99,1,4,638),(654,99,1,4,654),(670,99,1,4,670),(676,99,1,4,676),(682,99,1,4,682),(688,99,1,4,688),(694,99,1,4,694),(700,99,1,4,700),(706,99,1,4,706),(712,99,1,4,712),(718,99,1,4,718),(724,99,1,4,724),(737,99,1,4,737),(750,99,1,4,750),(763,99,1,4,763),(776,99,1,4,776),(789,99,1,4,789),(802,99,1,4,802),(815,99,1,4,815),(828,99,1,4,828),(841,99,1,4,841),(854,99,1,4,854),(867,99,1,4,867),(880,99,1,4,880),(893,99,1,4,893),(898,99,1,4,898),(911,99,1,4,911),(924,99,1,4,924),(937,99,1,4,937),(950,99,1,4,950),(963,99,1,4,963),(976,99,1,4,976),(989,99,1,4,989),(1002,99,1,4,1002),(1015,99,1,4,1015),(1028,99,1,4,1028),(1044,99,1,4,1044),(1060,99,1,4,1060),(1076,99,1,4,1076),(1092,99,1,4,1092),(1108,99,1,4,1108),(1114,99,1,4,1114),(1130,99,1,4,1130),(1146,99,1,4,1146),(1162,99,1,4,1162),(1178,99,1,4,1178),(1194,99,1,4,1194),(1210,99,1,4,1210),(1220,99,1,4,1220),(1236,99,1,4,1236),(1252,99,1,4,1252),(1268,99,1,4,1268),(1284,99,1,4,1284),(1300,99,1,4,1300),(1316,99,1,4,1316),(1332,99,1,4,1332),(1348,99,1,4,1348),(1364,99,1,4,1364),(1380,99,1,4,1380),(1396,99,1,4,1396),(1412,99,1,4,1412),(1428,99,1,4,1428),(1444,99,1,4,1444),(1460,99,1,4,1460),(1476,99,1,4,1476),(1492,99,1,4,1492),(1508,99,1,4,1508),(1524,99,1,4,1524),(1540,99,1,4,1540),(1556,99,1,4,1556),(1572,99,1,4,1572),(1588,99,1,4,1588),(1604,99,1,4,1604),(1620,99,1,4,1620),(1636,99,1,4,1636),(1652,99,1,4,1652),(1668,99,1,4,1668),(1684,99,1,4,1684),(1700,99,1,4,1700),(1716,99,1,4,1716),(1732,99,1,4,1732),(1748,99,1,4,1748),(1764,99,1,4,1764),(1780,99,1,4,1780),(1796,99,1,4,1796),(1812,99,1,4,1812),(1819,99,1,4,1819),(1826,99,1,4,1826),(1833,99,1,4,1833),(1840,99,1,4,1840),(1847,99,1,4,1847),(1854,99,1,4,1854),(1861,99,1,4,1861),(1868,99,1,4,1868),(1875,99,1,4,1875),(1882,99,1,4,1882),(1889,99,1,4,1889),(1896,99,1,4,1896),(1903,99,1,4,1903),(1919,99,1,4,1919),(1935,99,1,4,1935),(1951,99,1,4,1951),(1967,99,1,4,1967),(1983,99,1,4,1983),(1990,99,1,4,1990),(1997,99,1,4,1997),(2003,99,1,4,2003),(2010,99,1,4,2010),(2017,99,1,4,2017),(2024,99,1,4,2024),(2040,99,1,4,2040),(2,135,1,11,2),(2,135,1,18,2),(2,135,1,21,2),(2,135,1,23,2),(3,135,1,11,3),(3,135,1,18,3),(3,135,1,19,3),(3,135,1,20,3),(3,135,1,21,3),(3,135,1,22,3),(3,135,1,23,3),(4,135,1,11,4),(4,135,1,19,4),(4,135,1,22,4),(5,135,1,22,5),(5,135,1,23,5),(6,135,1,8,6),(6,135,1,18,6),(6,135,1,20,6),(7,135,1,11,7),(7,135,1,19,7),(7,135,1,22,7),(8,135,1,8,8),(8,135,1,11,8),(9,135,1,8,9),(9,135,1,11,9),(9,135,1,20,9),(10,135,1,8,10),(10,135,1,11,10),(11,135,1,11,11),(11,135,1,18,11),(11,135,1,20,11),(11,135,1,23,11),(12,135,1,8,12),(12,135,1,11,12),(12,135,1,20,12),(13,135,1,19,13),(13,135,1,22,13),(14,135,1,8,14),(14,135,1,20,14),(14,135,1,23,14),(16,135,1,11,16),(16,135,1,16,16),(16,135,1,17,16),(17,135,1,11,17),(18,135,1,11,18),(19,135,1,11,19),(19,135,1,16,19),(20,135,1,11,20),(21,135,1,8,21),(21,135,1,9,21),(21,135,1,11,21),(21,135,1,17,21),(22,135,1,8,22),(22,135,1,11,22),(23,135,1,11,23),(36,135,1,5,36),(36,135,1,9,36),(36,135,1,11,36),(36,135,1,17,36),(37,135,1,9,37),(37,135,1,16,37),(38,135,1,5,38),(38,135,1,9,38),(38,135,1,11,38),(38,135,1,16,38),(38,135,1,17,38),(39,135,1,9,39),(40,135,1,5,40),(40,135,1,11,40),(40,135,1,16,40),(40,135,1,17,40),(41,135,1,9,41),(42,135,1,9,42),(42,135,1,17,42),(43,135,1,5,43),(43,135,1,9,43),(43,135,1,11,43),(43,135,1,16,43),(44,135,1,11,44),(44,135,1,16,44),(45,135,1,8,21),(45,135,1,8,22),(45,135,1,8,45),(45,135,1,9,21),(45,135,1,11,21),(45,135,1,11,22),(45,135,1,11,45),(45,135,1,17,21),(46,135,1,8,46),(2,136,1,27,2),(2,136,1,29,2),(2,136,1,30,2),(3,136,1,24,3),(4,136,1,27,4),(4,136,1,28,4),(5,136,1,27,5),(5,136,1,28,5),(5,136,1,29,5),(6,136,1,24,6),(6,136,1,28,6),(7,136,1,25,7),(7,136,1,26,7),(8,136,1,29,8),(8,136,1,30,8),(9,136,1,29,9),(9,136,1,30,9),(10,136,1,29,10),(10,136,1,30,10),(11,136,1,24,11),(11,136,1,28,11),(12,136,1,24,12),(12,136,1,28,12),(12,136,1,29,12),(13,136,1,26,13),(14,136,1,27,14),(14,136,1,28,14),(2,137,1,32,2),(2,137,1,33,2),(2,137,1,36,2),(2,137,1,38,2),(3,137,1,37,3),(3,137,1,38,3),(4,137,1,37,4),(4,137,1,38,4),(5,137,1,35,5),(5,137,1,37,5),(5,137,1,41,5),(6,137,1,31,6),(6,137,1,37,6),(6,137,1,38,6),(7,137,1,37,7),(7,137,1,38,7),(8,137,1,37,8),(8,137,1,38,8),(9,137,1,37,9),(9,137,1,38,9),(9,137,1,39,9),(11,137,1,36,11),(11,137,1,37,11),(11,137,1,38,11),(12,137,1,36,12),(12,137,1,37,12),(12,137,1,38,12),(13,137,1,35,13),(13,137,1,37,13),(13,137,1,38,13),(14,137,1,37,14),(14,137,1,38,14),(15,137,1,44,15),(16,137,1,44,16),(17,137,1,35,17),(17,137,1,44,17),(18,137,1,45,18),(18,137,1,46,18),(19,137,1,44,19),(19,137,1,45,19),(20,137,1,35,20),(20,137,1,44,20),(20,137,1,45,20),(21,137,1,42,21),(22,137,1,42,22),(23,137,1,35,23),(23,137,1,44,23),(23,137,1,45,23),(36,137,1,44,36),(36,137,1,45,36),(37,137,1,43,37),(37,137,1,45,37),(37,137,1,48,37),(38,137,1,43,38),(38,137,1,44,38),(38,137,1,48,38),(39,137,1,35,39),(39,137,1,44,39),(40,137,1,45,40),(41,137,1,47,41),(42,137,1,48,42),(43,137,1,44,43),(43,137,1,45,43),(43,137,1,48,43),(44,137,1,43,44),(44,137,1,45,44),(44,137,1,48,44),(45,137,1,42,21),(45,137,1,42,22),(46,137,1,32,46),(46,137,1,44,46),(62,137,1,158,62),(78,137,1,37,78),(78,137,1,144,78),(78,137,1,158,78),(94,137,1,153,94),(110,137,1,153,110),(126,137,1,37,126),(126,137,1,38,126),(126,137,1,158,126),(142,137,1,37,142),(142,137,1,38,142),(142,137,1,158,142),(158,137,1,38,158),(158,137,1,144,158),(158,137,1,145,158),(174,137,1,37,174),(174,137,1,38,174),(174,137,1,153,174),(190,137,1,37,190),(190,137,1,155,190),(190,137,1,158,190),(206,137,1,147,206),(206,137,1,158,206),(222,137,1,144,222),(222,137,1,153,222),(238,137,1,38,238),(238,137,1,144,238),(254,137,1,142,254),(254,137,1,144,254),(270,137,1,38,270),(270,137,1,144,270),(270,137,1,147,270),(286,137,1,38,286),(286,137,1,144,286),(286,137,1,147,286),(302,137,1,33,302),(302,137,1,37,302),(302,137,1,144,302),(318,137,1,38,318),(334,137,1,38,334),(334,137,1,150,334),(350,137,1,38,350),(350,137,1,142,350),(350,137,1,148,350),(366,137,1,37,366),(366,137,1,38,366),(382,137,1,37,382),(382,137,1,38,382),(382,137,1,142,382),(398,137,1,37,398),(398,137,1,144,398),(398,137,1,145,398),(414,137,1,37,414),(414,137,1,38,414),(430,137,1,38,430),(430,137,1,144,430),(430,137,1,158,430),(446,137,1,33,446),(446,137,1,38,446),(446,137,1,151,446),(462,137,1,148,462),(462,137,1,152,462),(462,137,1,153,462),(478,137,1,38,478),(478,137,1,147,478),(494,137,1,38,494),(494,137,1,142,494),(494,137,1,153,494),(510,137,1,38,510),(510,137,1,142,510),(510,137,1,153,510),(526,137,1,38,526),(526,137,1,142,526),(542,137,1,38,542),(542,137,1,153,542),(558,137,1,38,558),(574,137,1,33,574),(574,137,1,39,574),(574,137,1,147,574),(590,137,1,33,590),(590,137,1,151,590),(606,137,1,142,606),(606,137,1,152,606),(606,137,1,153,606),(622,137,1,38,622),(622,137,1,153,622),(638,137,1,33,638),(638,137,1,38,638),(638,137,1,151,638),(654,137,1,148,654),(654,137,1,152,654),(654,137,1,153,654),(670,137,1,38,670),(670,137,1,147,670),(676,137,1,38,676),(676,137,1,142,676),(676,137,1,153,676),(682,137,1,38,682),(682,137,1,142,682),(682,137,1,153,682),(688,137,1,38,688),(688,137,1,142,688),(694,137,1,38,694),(694,137,1,153,694),(700,137,1,38,700),(706,137,1,38,706),(712,137,1,142,712),(712,137,1,152,712),(712,137,1,153,712),(718,137,1,38,718),(718,137,1,153,718),(724,137,1,38,724),(724,137,1,147,724),(737,137,1,144,737),(737,137,1,145,737),(737,137,1,155,737),(737,137,1,158,737),(750,137,1,38,750),(750,137,1,147,750),(750,137,1,150,750),(763,137,1,38,763),(763,137,1,39,763),(763,137,1,150,763),(763,137,1,155,763),(763,137,1,158,763),(776,137,1,147,776),(776,137,1,150,776),(776,137,1,158,776),(789,137,1,38,789),(789,137,1,39,789),(789,137,1,153,789),(802,137,1,38,802),(802,137,1,144,802),(802,137,1,145,802),(802,137,1,153,802),(802,137,1,158,802),(815,137,1,38,815),(815,137,1,39,815),(815,137,1,142,815),(815,137,1,158,815),(828,137,1,144,828),(828,137,1,147,828),(828,137,1,150,828),(828,137,1,158,828),(841,137,1,38,841),(841,137,1,39,841),(841,137,1,144,841),(841,137,1,155,841),(854,137,1,37,854),(854,137,1,150,854),(854,137,1,153,854),(867,137,1,142,867),(867,137,1,150,867),(867,137,1,158,867),(880,137,1,33,880),(880,137,1,38,880),(880,137,1,150,880),(893,137,1,37,893),(893,137,1,38,893),(893,137,1,155,893),(893,137,1,158,893),(898,137,1,38,898),(898,137,1,39,898),(911,137,1,38,911),(911,137,1,142,911),(924,137,1,37,924),(924,137,1,38,924),(924,137,1,155,924),(937,137,1,38,937),(937,137,1,39,937),(937,137,1,155,937),(937,137,1,157,937),(937,137,1,158,937),(950,137,1,37,950),(950,137,1,38,950),(950,137,1,39,950),(963,137,1,36,963),(963,137,1,38,963),(963,137,1,39,963),(963,137,1,155,963),(976,137,1,38,976),(976,137,1,147,976),(989,137,1,33,989),(989,137,1,37,989),(989,137,1,147,989),(989,137,1,150,989),(1002,137,1,148,1002),(1002,137,1,150,1002),(1015,137,1,148,1015),(1015,137,1,150,1015),(1028,137,1,36,1028),(1028,137,1,147,1028),(1028,137,1,150,1028),(1044,137,1,150,1044),(1044,137,1,158,1044),(1060,137,1,37,1060),(1060,137,1,158,1060),(1076,137,1,33,1076),(1076,137,1,38,1076),(1076,137,1,144,1076),(1092,137,1,146,1092),(1092,137,1,150,1092),(1108,137,1,38,1108),(1108,137,1,150,1108),(1114,137,1,33,1114),(1114,137,1,38,1114),(1130,137,1,33,1130),(1130,137,1,38,1130),(1146,137,1,33,1146),(1146,137,1,37,1146),(1146,137,1,150,1146),(1162,137,1,33,1162),(1178,137,1,33,1178),(1178,137,1,38,1178),(1178,137,1,150,1178),(1194,137,1,38,1194),(1194,137,1,144,1194),(1194,137,1,150,1194),(1210,137,1,144,1210),(1210,137,1,155,1210),(1220,137,1,142,1220),(1220,137,1,144,1220),(1220,137,1,158,1220),(1236,137,1,38,1236),(1236,137,1,150,1236),(1236,137,1,155,1236),(1252,137,1,38,1252),(1252,137,1,144,1252),(1268,137,1,37,1268),(1268,137,1,38,1268),(1268,137,1,155,1268),(1284,137,1,147,1284),(1284,137,1,148,1284),(1284,137,1,158,1284),(1300,137,1,37,1300),(1300,137,1,38,1300),(1300,137,1,150,1300),(1300,137,1,155,1300),(1316,137,1,33,1316),(1316,137,1,150,1316),(1332,137,1,38,1332),(1348,137,1,37,1348),(1348,137,1,38,1348),(1348,137,1,155,1348),(1364,137,1,36,1364),(1364,137,1,37,1364),(1364,137,1,148,1364),(1364,137,1,155,1364),(1380,137,1,142,1380),(1380,137,1,144,1380),(1396,137,1,33,1396),(1396,137,1,37,1396),(1396,137,1,142,1396),(1412,137,1,33,1412),(1412,137,1,145,1412),(1428,137,1,38,1428),(1428,137,1,148,1428),(1428,137,1,150,1428),(1428,137,1,154,1428),(1444,137,1,33,1444),(1460,137,1,152,1460),(1460,137,1,153,1460),(1476,137,1,38,1476),(1476,137,1,142,1476),(1492,137,1,33,1492),(1492,137,1,148,1492),(1508,137,1,153,1508),(1524,137,1,33,1524),(1524,137,1,152,1524),(1540,137,1,38,1540),(1540,137,1,142,1540),(1556,137,1,145,1556),(1556,137,1,150,1556),(1556,137,1,153,1556),(1572,137,1,38,1572),(1572,137,1,151,1572),(1588,137,1,38,1588),(1588,137,1,151,1588),(1604,137,1,38,1604),(1604,137,1,152,1604),(1604,137,1,153,1604),(1620,137,1,148,1620),(1620,137,1,152,1620),(1636,137,1,142,1636),(1636,137,1,153,1636),(1652,137,1,150,1652),(1652,137,1,152,1652),(1652,137,1,153,1652),(1668,137,1,37,1668),(1668,137,1,38,1668),(1668,137,1,149,1668),(1684,137,1,153,1684),(1700,137,1,33,1700),(1700,137,1,142,1700),(1716,137,1,148,1716),(1716,137,1,153,1716),(1732,137,1,33,1732),(1732,137,1,150,1732),(1748,137,1,33,1748),(1748,137,1,38,1748),(1764,137,1,36,1764),(1764,137,1,37,1764),(1764,137,1,38,1764),(1780,137,1,142,1780),(1780,137,1,153,1780),(1796,137,1,37,1796),(1796,137,1,38,1796),(1796,137,1,151,1796),(1812,137,1,33,1812),(1812,137,1,142,1812),(1819,137,1,153,1819),(1819,137,1,155,1819),(1826,137,1,142,1826),(1826,137,1,153,1826),(1833,137,1,37,1833),(1833,137,1,147,1833),(1833,137,1,150,1833),(1840,137,1,37,1840),(1840,137,1,147,1840),(1840,137,1,150,1840),(1847,137,1,147,1847),(1847,137,1,153,1847),(1854,137,1,38,1854),(1854,137,1,149,1854),(1854,137,1,150,1854),(1861,137,1,149,1861),(1861,137,1,153,1861),(1861,137,1,155,1861),(1868,137,1,39,1868),(1868,137,1,149,1868),(1868,137,1,150,1868),(1875,137,1,33,1875),(1875,137,1,150,1875),(1882,137,1,150,1882),(1882,137,1,153,1882),(1889,137,1,38,1889),(1889,137,1,148,1889),(1889,137,1,153,1889),(1896,137,1,39,1896),(1896,137,1,142,1896),(1896,137,1,153,1896),(1903,137,1,153,1903),(1919,137,1,150,1919),(1919,137,1,153,1919),(1935,137,1,33,1935),(1935,137,1,38,1935),(1951,137,1,147,1951),(1951,137,1,153,1951),(1967,137,1,150,1967),(1967,137,1,158,1967),(1983,137,1,33,1983),(1983,137,1,36,1983),(1983,137,1,155,1983),(1990,137,1,36,1990),(1990,137,1,38,1990),(1990,137,1,142,1990),(1997,137,1,148,1997),(1997,137,1,150,1997),(1997,137,1,158,1997),(2003,137,1,33,2003),(2003,137,1,36,2003),(2003,137,1,142,2003),(2010,137,1,37,2010),(2010,137,1,38,2010),(2010,137,1,153,2010),(2017,137,1,38,2017),(2017,137,1,153,2017),(2017,137,1,155,2017),(2024,137,1,147,2024),(2024,137,1,150,2024),(2040,137,1,38,2040),(2040,137,1,150,2040),(2040,137,1,153,2040),(2,138,1,61,2),(2,138,1,62,2),(2,138,1,65,2),(2,138,1,66,2),(2,138,1,67,2),(3,138,1,61,3),(3,138,1,64,3),(3,138,1,65,3),(4,138,1,61,4),(4,138,1,63,4),(4,138,1,64,4),(4,138,1,65,4),(4,138,1,66,4),(5,138,1,61,5),(5,138,1,62,5),(5,138,1,66,5),(5,138,1,67,5),(6,138,1,61,6),(6,138,1,64,6),(6,138,1,65,6),(7,138,1,61,7),(7,138,1,64,7),(7,138,1,68,7),(8,138,1,64,8),(8,138,1,66,8),(9,138,1,61,9),(9,138,1,64,9),(9,138,1,66,9),(10,138,1,61,10),(10,138,1,62,10),(10,138,1,66,10),(10,138,1,67,10),(11,138,1,61,11),(11,138,1,64,11),(11,138,1,65,11),(12,138,1,61,12),(12,138,1,64,12),(12,138,1,65,12),(13,138,1,64,13),(14,138,1,61,14),(14,138,1,62,14),(14,138,1,63,14),(14,138,1,65,14),(14,138,1,66,14),(14,138,1,67,14),(2,139,1,72,2),(2,139,1,74,2),(2,139,1,75,2),(2,139,1,78,2),(3,139,1,72,3),(3,139,1,74,3),(3,139,1,75,3),(3,139,1,77,3),(3,139,1,78,3),(4,139,1,74,4),(4,139,1,75,4),(4,139,1,77,4),(4,139,1,78,4),(4,139,1,79,4),(5,139,1,73,5),(5,139,1,75,5),(5,139,1,78,5),(6,139,1,71,6),(6,139,1,72,6),(6,139,1,74,6),(6,139,1,75,6),(7,139,1,70,7),(7,139,1,76,7),(7,139,1,79,7),(8,139,1,74,8),(8,139,1,77,8),(8,139,1,79,8),(9,139,1,74,9),(9,139,1,75,9),(9,139,1,77,9),(10,139,1,72,10),(10,139,1,75,10),(11,139,1,72,11),(11,139,1,75,11),(11,139,1,77,11),(11,139,1,78,11),(11,139,1,79,11),(12,139,1,71,12),(12,139,1,72,12),(12,139,1,75,12),(12,139,1,78,12),(13,139,1,74,13),(13,139,1,79,13),(14,139,1,74,14),(14,139,1,75,14),(14,139,1,78,14),(14,139,1,79,14),(16,140,1,80,16),(16,140,1,81,16),(16,140,1,84,16),(17,140,1,80,17),(17,140,1,81,17),(17,140,1,84,17),(18,140,1,80,18),(18,140,1,81,18),(18,140,1,84,18),(19,140,1,80,19),(19,140,1,81,19),(19,140,1,84,19),(20,140,1,80,20),(20,140,1,81,20),(20,140,1,84,20),(21,140,1,80,21),(21,140,1,81,21),(21,140,1,84,21),(22,140,1,80,22),(22,140,1,81,22),(22,140,1,84,22),(23,140,1,80,23),(23,140,1,81,23),(23,140,1,84,23),(36,140,1,80,36),(37,140,1,80,37),(38,140,1,80,38),(38,140,1,81,38),(38,140,1,84,38),(39,140,1,80,39),(40,140,1,80,40),(41,140,1,81,41),(42,140,1,81,42),(43,140,1,81,43),(44,140,1,81,44),(45,140,1,80,21),(45,140,1,80,22),(45,140,1,80,45),(45,140,1,81,21),(45,140,1,81,22),(45,140,1,81,45),(45,140,1,84,21),(45,140,1,84,22),(45,140,1,84,45),(46,140,1,80,46),(46,140,1,81,46),(46,140,1,84,46),(16,141,1,85,16),(16,141,1,87,16),(17,141,1,85,17),(17,141,1,87,17),(18,141,1,85,18),(18,141,1,87,18),(19,141,1,87,19),(20,141,1,85,20),(20,141,1,87,20),(21,141,1,87,21),(22,141,1,87,22),(23,141,1,87,23),(36,141,1,86,36),(36,141,1,87,36),(36,141,1,90,36),(37,141,1,86,37),(37,141,1,87,37),(37,141,1,90,37),(38,141,1,86,38),(38,141,1,87,38),(38,141,1,90,38),(39,141,1,86,39),(39,141,1,88,39),(39,141,1,90,39),(40,141,1,86,40),(40,141,1,87,40),(40,141,1,90,40),(41,141,1,86,41),(41,141,1,88,41),(41,141,1,90,41),(42,141,1,86,42),(42,141,1,87,42),(42,141,1,90,42),(43,141,1,86,43),(43,141,1,87,43),(43,141,1,90,43),(44,141,1,86,44),(44,141,1,87,44),(44,141,1,90,44),(45,141,1,87,21),(45,141,1,87,22),(45,141,1,87,45),(46,141,1,87,46),(62,143,1,1,62),(78,143,1,0,78),(94,143,1,1,94),(110,143,1,1,110),(126,143,1,0,126),(142,143,1,0,142),(158,143,1,0,158),(174,143,1,0,174),(190,143,1,0,190),(206,143,1,0,206),(222,143,1,0,222),(238,143,1,0,238),(254,143,1,0,254),(270,143,1,0,270),(286,143,1,0,286),(302,143,1,1,302),(318,143,1,0,318),(334,143,1,0,334),(350,143,1,0,350),(366,143,1,0,366),(382,143,1,0,382),(398,143,1,1,398),(414,143,1,0,414),(430,143,1,0,430),(446,143,1,0,446),(462,143,1,1,462),(478,143,1,0,478),(494,143,1,0,494),(510,143,1,0,510),(526,143,1,0,526),(542,143,1,0,542),(558,143,1,0,558),(574,143,1,0,574),(590,143,1,0,590),(606,143,1,0,606),(622,143,1,0,622),(638,143,1,0,638),(654,143,1,0,654),(670,143,1,0,670),(676,143,1,0,676),(682,143,1,0,682),(688,143,1,0,688),(694,143,1,1,694),(700,143,1,0,700),(706,143,1,0,706),(712,143,1,0,712),(718,143,1,1,718),(724,143,1,0,724),(737,143,1,0,737),(750,143,1,0,750),(763,143,1,0,763),(776,143,1,0,776),(789,143,1,0,789),(802,143,1,1,802),(815,143,1,0,815),(828,143,1,0,828),(841,143,1,0,841),(854,143,1,0,854),(867,143,1,0,867),(880,143,1,0,880),(893,143,1,0,893),(898,143,1,0,898),(911,143,1,0,911),(924,143,1,0,924),(937,143,1,0,937),(950,143,1,0,950),(963,143,1,0,963),(976,143,1,0,976),(989,143,1,0,989),(1002,143,1,0,1002),(1015,143,1,0,1015),(1028,143,1,0,1028),(1044,143,1,0,1044),(1060,143,1,0,1060),(1076,143,1,0,1076),(1092,143,1,0,1092),(1108,143,1,0,1108),(1114,143,1,0,1114),(1130,143,1,0,1130),(1146,143,1,0,1146),(1162,143,1,1,1162),(1178,143,1,0,1178),(1194,143,1,0,1194),(1210,143,1,1,1210),(1220,143,1,1,1220),(1236,143,1,0,1236),(1252,143,1,0,1252),(1268,143,1,0,1268),(1284,143,1,0,1284),(1300,143,1,0,1300),(1316,143,1,1,1316),(1332,143,1,1,1332),(1348,143,1,0,1348),(1364,143,1,0,1364),(1380,143,1,0,1380),(1396,143,1,0,1396),(1412,143,1,0,1412),(1428,143,1,0,1428),(1444,143,1,1,1444),(1460,143,1,1,1460),(1476,143,1,0,1476),(1492,143,1,0,1492),(1508,143,1,1,1508),(1524,143,1,0,1524),(1540,143,1,0,1540),(1556,143,1,1,1556),(1572,143,1,0,1572),(1588,143,1,0,1588),(1604,143,1,1,1604),(1620,143,1,0,1620),(1636,143,1,0,1636),(1652,143,1,0,1652),(1668,143,1,0,1668),(1684,143,1,1,1684),(1700,143,1,0,1700),(1716,143,1,0,1716),(1732,143,1,1,1732),(1748,143,1,0,1748),(1764,143,1,0,1764),(1780,143,1,0,1780),(1796,143,1,0,1796),(1812,143,1,0,1812),(1819,143,1,1,1819),(1826,143,1,0,1826),(1833,143,1,0,1833),(1840,143,1,0,1840),(1847,143,1,0,1847),(1854,143,1,0,1854),(1861,143,1,0,1861),(1868,143,1,0,1868),(1875,143,1,0,1875),(1882,143,1,1,1882),(1889,143,1,0,1889),(1896,143,1,1,1896),(1903,143,1,1,1903),(1919,143,1,1,1919),(1935,143,1,0,1935),(1951,143,1,1,1951),(1967,143,1,0,1967),(1983,143,1,0,1983),(1990,143,1,0,1990),(1997,143,1,0,1997),(2003,143,1,0,2003),(2010,143,1,0,2010),(2017,143,1,1,2017),(2024,143,1,0,2024),(2040,143,1,0,2040),(14,144,1,1,14),(62,144,1,0,62),(78,144,1,0,78),(94,144,1,0,94),(110,144,1,1,110),(126,144,1,0,126),(142,144,1,0,142),(158,144,1,0,158),(174,144,1,0,174),(190,144,1,0,190),(206,144,1,1,206),(222,144,1,0,222),(238,144,1,0,238),(254,144,1,1,254),(270,144,1,1,270),(286,144,1,1,286),(302,144,1,0,302),(318,144,1,0,318),(334,144,1,0,334),(350,144,1,0,350),(366,144,1,0,366),(382,144,1,1,382),(398,144,1,0,398),(414,144,1,0,414),(430,144,1,0,430),(446,144,1,1,446),(462,144,1,1,462),(478,144,1,0,478),(494,144,1,1,494),(510,144,1,0,510),(526,144,1,1,526),(542,144,1,0,542),(558,144,1,0,558),(574,144,1,0,574),(590,144,1,0,590),(606,144,1,0,606),(622,144,1,0,622),(638,144,1,0,638),(654,144,1,0,654),(670,144,1,0,670),(676,144,1,1,676),(682,144,1,1,682),(688,144,1,1,688),(694,144,1,0,694),(700,144,1,0,700),(706,144,1,0,706),(712,144,1,0,712),(718,144,1,0,718),(724,144,1,0,724),(737,144,1,0,737),(750,144,1,1,750),(763,144,1,0,763),(776,144,1,0,776),(789,144,1,0,789),(802,144,1,0,802),(815,144,1,0,815),(828,144,1,0,828),(841,144,1,1,841),(854,144,1,0,854),(867,144,1,1,867),(880,144,1,0,880),(893,144,1,0,893),(898,144,1,0,898),(911,144,1,1,911),(924,144,1,0,924),(937,144,1,1,937),(950,144,1,0,950),(963,144,1,1,963),(976,144,1,0,976),(989,144,1,1,989),(1002,144,1,0,1002),(1015,144,1,0,1015),(1028,144,1,0,1028),(1044,144,1,0,1044),(1060,144,1,0,1060),(1076,144,1,0,1076),(1092,144,1,0,1092),(1108,144,1,0,1108),(1114,144,1,0,1114),(1130,144,1,0,1130),(1146,144,1,1,1146),(1162,144,1,0,1162),(1178,144,1,0,1178),(1194,144,1,0,1194),(1210,144,1,1,1210),(1220,144,1,0,1220),(1236,144,1,0,1236),(1252,144,1,0,1252),(1268,144,1,1,1268),(1284,144,1,0,1284),(1300,144,1,0,1300),(1316,144,1,0,1316),(1332,144,1,0,1332),(1348,144,1,1,1348),(1364,144,1,0,1364),(1380,144,1,1,1380),(1396,144,1,1,1396),(1412,144,1,0,1412),(1428,144,1,1,1428),(1444,144,1,0,1444),(1460,144,1,0,1460),(1476,144,1,1,1476),(1492,144,1,0,1492),(1508,144,1,0,1508),(1524,144,1,1,1524),(1540,144,1,0,1540),(1556,144,1,1,1556),(1572,144,1,0,1572),(1588,144,1,0,1588),(1604,144,1,0,1604),(1620,144,1,0,1620),(1636,144,1,1,1636),(1652,144,1,0,1652),(1668,144,1,0,1668),(1684,144,1,0,1684),(1700,144,1,0,1700),(1716,144,1,0,1716),(1732,144,1,1,1732),(1748,144,1,0,1748),(1764,144,1,0,1764),(1780,144,1,1,1780),(1796,144,1,1,1796),(1812,144,1,1,1812),(1819,144,1,1,1819),(1826,144,1,1,1826),(1833,144,1,0,1833),(1840,144,1,0,1840),(1847,144,1,0,1847),(1854,144,1,0,1854),(1861,144,1,1,1861),(1868,144,1,0,1868),(1875,144,1,0,1875),(1882,144,1,0,1882),(1889,144,1,0,1889),(1896,144,1,1,1896),(1903,144,1,0,1903),(1919,144,1,0,1919),(1935,144,1,0,1935),(1951,144,1,1,1951),(1967,144,1,0,1967),(1983,144,1,0,1983),(1990,144,1,0,1990),(1997,144,1,0,1997),(2003,144,1,1,2003),(2010,144,1,0,2010),(2017,144,1,0,2017),(2024,144,1,1,2024),(2040,144,1,0,2040),(2,145,1,1,2),(10,145,1,1,10),(11,145,1,1,11),(16,145,1,1,16),(19,145,1,1,19),(62,145,1,0,62),(78,145,1,0,78),(94,145,1,1,94),(110,145,1,0,110),(126,145,1,0,126),(142,145,1,0,142),(158,145,1,0,158),(174,145,1,0,174),(190,145,1,1,190),(206,145,1,0,206),(222,145,1,0,222),(238,145,1,0,238),(254,145,1,1,254),(270,145,1,0,270),(286,145,1,0,286),(302,145,1,0,302),(318,145,1,0,318),(334,145,1,1,334),(350,145,1,0,350),(366,145,1,0,366),(382,145,1,0,382),(398,145,1,1,398),(414,145,1,0,414),(430,145,1,0,430),(446,145,1,0,446),(462,145,1,0,462),(478,145,1,1,478),(494,145,1,0,494),(510,145,1,0,510),(526,145,1,1,526),(542,145,1,0,542),(558,145,1,0,558),(574,145,1,0,574),(590,145,1,0,590),(606,145,1,0,606),(622,145,1,1,622),(638,145,1,0,638),(654,145,1,0,654),(670,145,1,0,670),(676,145,1,1,676),(682,145,1,0,682),(688,145,1,0,688),(694,145,1,0,694),(700,145,1,1,700),(706,145,1,0,706),(712,145,1,0,712),(718,145,1,0,718),(724,145,1,0,724),(737,145,1,0,737),(750,145,1,0,750),(763,145,1,0,763),(776,145,1,0,776),(789,145,1,0,789),(802,145,1,0,802),(815,145,1,0,815),(828,145,1,0,828),(841,145,1,1,841),(854,145,1,1,854),(867,145,1,1,867),(880,145,1,0,880),(893,145,1,1,893),(898,145,1,0,898),(911,145,1,0,911),(924,145,1,0,924),(937,145,1,0,937),(950,145,1,0,950),(963,145,1,1,963),(976,145,1,0,976),(989,145,1,0,989),(1002,145,1,0,1002),(1015,145,1,0,1015),(1028,145,1,0,1028),(1044,145,1,1,1044),(1060,145,1,0,1060),(1076,145,1,0,1076),(1092,145,1,0,1092),(1108,145,1,0,1108),(1114,145,1,0,1114),(1130,145,1,1,1130),(1146,145,1,0,1146),(1162,145,1,0,1162),(1178,145,1,0,1178),(1194,145,1,1,1194),(1210,145,1,0,1210),(1220,145,1,1,1220),(1236,145,1,0,1236),(1252,145,1,0,1252),(1268,145,1,0,1268),(1284,145,1,0,1284),(1300,145,1,0,1300),(1316,145,1,1,1316),(1332,145,1,1,1332),(1348,145,1,0,1348),(1364,145,1,0,1364),(1380,145,1,0,1380),(1396,145,1,0,1396),(1412,145,1,0,1412),(1428,145,1,0,1428),(1444,145,1,0,1444),(1460,145,1,0,1460),(1476,145,1,1,1476),(1492,145,1,0,1492),(1508,145,1,0,1508),(1524,145,1,0,1524),(1540,145,1,1,1540),(1556,145,1,0,1556),(1572,145,1,0,1572),(1588,145,1,0,1588),(1604,145,1,0,1604),(1620,145,1,0,1620),(1636,145,1,0,1636),(1652,145,1,0,1652),(1668,145,1,0,1668),(1684,145,1,0,1684),(1700,145,1,0,1700),(1716,145,1,1,1716),(1732,145,1,0,1732),(1748,145,1,1,1748),(1764,145,1,0,1764),(1780,145,1,0,1780),(1796,145,1,0,1796),(1812,145,1,1,1812),(1819,145,1,0,1819),(1826,145,1,0,1826),(1833,145,1,0,1833),(1840,145,1,0,1840),(1847,145,1,1,1847),(1854,145,1,1,1854),(1861,145,1,0,1861),(1868,145,1,0,1868),(1875,145,1,0,1875),(1882,145,1,0,1882),(1889,145,1,0,1889),(1896,145,1,0,1896),(1903,145,1,1,1903),(1919,145,1,0,1919),(1935,145,1,0,1935),(1951,145,1,0,1951),(1967,145,1,0,1967),(1983,145,1,0,1983),(1990,145,1,0,1990),(1997,145,1,0,1997),(2003,145,1,0,2003),(2010,145,1,0,2010),(2017,145,1,0,2017),(2024,145,1,1,2024),(2040,145,1,1,2040),(4,146,1,1,4),(5,146,1,1,5),(13,146,1,1,13),(19,146,1,1,19),(38,146,1,1,38),(39,146,1,1,39),(40,146,1,1,40),(44,146,1,1,44),(62,146,1,0,62),(78,146,1,1,78),(94,146,1,1,94),(110,146,1,0,110),(126,146,1,0,126),(142,146,1,0,142),(158,146,1,1,158),(174,146,1,0,174),(190,146,1,0,190),(206,146,1,0,206),(222,146,1,0,222),(238,146,1,0,238),(254,146,1,0,254),(270,146,1,0,270),(286,146,1,1,286),(302,146,1,0,302),(318,146,1,0,318),(334,146,1,0,334),(350,146,1,0,350),(366,146,1,0,366),(382,146,1,0,382),(398,146,1,0,398),(414,146,1,1,414),(430,146,1,0,430),(446,146,1,1,446),(462,146,1,0,462),(478,146,1,0,478),(494,146,1,0,494),(510,146,1,1,510),(526,146,1,0,526),(542,146,1,1,542),(558,146,1,0,558),(574,146,1,0,574),(590,146,1,0,590),(606,146,1,0,606),(622,146,1,1,622),(638,146,1,0,638),(654,146,1,0,654),(670,146,1,0,670),(676,146,1,1,676),(682,146,1,0,682),(688,146,1,0,688),(694,146,1,0,694),(700,146,1,1,700),(706,146,1,1,706),(712,146,1,0,712),(718,146,1,0,718),(724,146,1,0,724),(737,146,1,0,737),(750,146,1,0,750),(763,146,1,1,763),(776,146,1,0,776),(789,146,1,1,789),(802,146,1,0,802),(815,146,1,1,815),(828,146,1,1,828),(841,146,1,1,841),(854,146,1,0,854),(867,146,1,0,867),(880,146,1,0,880),(893,146,1,0,893),(898,146,1,0,898),(911,146,1,0,911),(924,146,1,0,924),(937,146,1,0,937),(950,146,1,1,950),(963,146,1,0,963),(976,146,1,0,976),(989,146,1,0,989),(1002,146,1,1,1002),(1015,146,1,0,1015),(1028,146,1,0,1028),(1044,146,1,1,1044),(1060,146,1,0,1060),(1076,146,1,0,1076),(1092,146,1,0,1092),(1108,146,1,0,1108),(1114,146,1,0,1114),(1130,146,1,1,1130),(1146,146,1,0,1146),(1162,146,1,0,1162),(1178,146,1,1,1178),(1194,146,1,0,1194),(1210,146,1,0,1210),(1220,146,1,1,1220),(1236,146,1,0,1236),(1252,146,1,0,1252),(1268,146,1,1,1268),(1284,146,1,0,1284),(1300,146,1,0,1300),(1316,146,1,0,1316),(1332,146,1,0,1332),(1348,146,1,1,1348),(1364,146,1,1,1364),(1380,146,1,0,1380),(1396,146,1,0,1396),(1412,146,1,1,1412),(1428,146,1,0,1428),(1444,146,1,1,1444),(1460,146,1,1,1460),(1476,146,1,1,1476),(1492,146,1,0,1492),(1508,146,1,0,1508),(1524,146,1,0,1524),(1540,146,1,0,1540),(1556,146,1,0,1556),(1572,146,1,0,1572),(1588,146,1,0,1588),(1604,146,1,0,1604),(1620,146,1,0,1620),(1636,146,1,1,1636),(1652,146,1,0,1652),(1668,146,1,0,1668),(1684,146,1,0,1684),(1700,146,1,0,1700),(1716,146,1,1,1716),(1732,146,1,0,1732),(1748,146,1,0,1748),(1764,146,1,0,1764),(1780,146,1,0,1780),(1796,146,1,0,1796),(1812,146,1,0,1812),(1819,146,1,0,1819),(1826,146,1,0,1826),(1833,146,1,1,1833),(1840,146,1,0,1840),(1847,146,1,0,1847),(1854,146,1,0,1854),(1861,146,1,0,1861),(1868,146,1,0,1868),(1875,146,1,0,1875),(1882,146,1,0,1882),(1889,146,1,0,1889),(1896,146,1,0,1896),(1903,146,1,0,1903),(1919,146,1,1,1919),(1935,146,1,0,1935),(1951,146,1,1,1951),(1967,146,1,0,1967),(1983,146,1,0,1983),(1990,146,1,0,1990),(1997,146,1,1,1997),(2003,146,1,0,2003),(2010,146,1,0,2010),(2017,146,1,0,2017),(2024,146,1,0,2024),(2040,146,1,0,2040),(2,147,1,1,2),(10,147,1,1,10),(11,147,1,1,11),(16,147,1,1,16),(41,147,1,1,41),(42,147,1,1,42),(62,147,1,1,62),(78,147,1,0,78),(94,147,1,0,94),(110,147,1,1,110),(126,147,1,0,126),(142,147,1,0,142),(158,147,1,0,158),(174,147,1,0,174),(190,147,1,0,190),(206,147,1,1,206),(222,147,1,0,222),(238,147,1,0,238),(254,147,1,0,254),(270,147,1,1,270),(286,147,1,0,286),(302,147,1,0,302),(318,147,1,0,318),(334,147,1,0,334),(350,147,1,0,350),(366,147,1,0,366),(382,147,1,1,382),(398,147,1,0,398),(414,147,1,0,414),(430,147,1,0,430),(446,147,1,0,446),(462,147,1,0,462),(478,147,1,0,478),(494,147,1,1,494),(510,147,1,0,510),(526,147,1,0,526),(542,147,1,0,542),(558,147,1,0,558),(574,147,1,1,574),(590,147,1,0,590),(606,147,1,0,606),(622,147,1,0,622),(638,147,1,0,638),(654,147,1,0,654),(670,147,1,0,670),(676,147,1,0,676),(682,147,1,0,682),(688,147,1,0,688),(694,147,1,0,694),(700,147,1,0,700),(706,147,1,0,706),(712,147,1,1,712),(718,147,1,1,718),(724,147,1,1,724),(737,147,1,0,737),(750,147,1,0,750),(763,147,1,0,763),(776,147,1,0,776),(789,147,1,0,789),(802,147,1,0,802),(815,147,1,0,815),(828,147,1,0,828),(841,147,1,0,841),(854,147,1,0,854),(867,147,1,0,867),(880,147,1,0,880),(893,147,1,0,893),(898,147,1,0,898),(911,147,1,0,911),(924,147,1,0,924),(937,147,1,0,937),(950,147,1,0,950),(963,147,1,1,963),(976,147,1,1,976),(989,147,1,0,989),(1002,147,1,0,1002),(1015,147,1,0,1015),(1028,147,1,1,1028),(1044,147,1,0,1044),(1060,147,1,1,1060),(1076,147,1,0,1076),(1092,147,1,0,1092),(1108,147,1,0,1108),(1114,147,1,0,1114),(1130,147,1,0,1130),(1146,147,1,1,1146),(1162,147,1,0,1162),(1178,147,1,0,1178),(1194,147,1,0,1194),(1210,147,1,0,1210),(1220,147,1,0,1220),(1236,147,1,1,1236),(1252,147,1,0,1252),(1268,147,1,0,1268),(1284,147,1,0,1284),(1300,147,1,0,1300),(1316,147,1,1,1316),(1332,147,1,0,1332),(1348,147,1,0,1348),(1364,147,1,0,1364),(1380,147,1,1,1380),(1396,147,1,1,1396),(1412,147,1,0,1412),(1428,147,1,0,1428),(1444,147,1,0,1444),(1460,147,1,0,1460),(1476,147,1,0,1476),(1492,147,1,1,1492),(1508,147,1,1,1508),(1524,147,1,0,1524),(1540,147,1,1,1540),(1556,147,1,0,1556),(1572,147,1,0,1572),(1588,147,1,0,1588),(1604,147,1,1,1604),(1620,147,1,0,1620),(1636,147,1,0,1636),(1652,147,1,0,1652),(1668,147,1,0,1668),(1684,147,1,0,1684),(1700,147,1,0,1700),(1716,147,1,0,1716),(1732,147,1,0,1732),(1748,147,1,0,1748),(1764,147,1,0,1764),(1780,147,1,0,1780),(1796,147,1,1,1796),(1812,147,1,1,1812),(1819,147,1,0,1819),(1826,147,1,0,1826),(1833,147,1,0,1833),(1840,147,1,0,1840),(1847,147,1,0,1847),(1854,147,1,0,1854),(1861,147,1,0,1861),(1868,147,1,0,1868),(1875,147,1,0,1875),(1882,147,1,0,1882),(1889,147,1,0,1889),(1896,147,1,0,1896),(1903,147,1,0,1903),(1919,147,1,0,1919),(1935,147,1,1,1935),(1951,147,1,0,1951),(1967,147,1,0,1967),(1983,147,1,1,1983),(1990,147,1,0,1990),(1997,147,1,0,1997),(2003,147,1,0,2003),(2010,147,1,0,2010),(2017,147,1,0,2017),(2024,147,1,0,2024),(2040,147,1,0,2040),(737,150,1,112,737),(737,150,1,114,737),(737,150,1,115,737),(750,150,1,114,750),(750,150,1,115,750),(763,150,1,112,763),(763,150,1,114,763),(763,150,1,115,763),(776,150,1,112,776),(776,150,1,114,776),(776,150,1,115,776),(789,150,1,104,789),(789,150,1,115,789),(802,150,1,112,802),(802,150,1,115,802),(815,150,1,112,815),(815,150,1,114,815),(815,150,1,115,815),(828,150,1,104,828),(828,150,1,108,828),(828,150,1,112,828),(828,150,1,114,828),(828,150,1,115,828),(841,150,1,104,841),(841,150,1,107,841),(841,150,1,108,841),(841,150,1,112,841),(841,150,1,114,841),(854,150,1,108,854),(854,150,1,114,854),(854,150,1,115,854),(867,150,1,112,867),(867,150,1,114,867),(867,150,1,115,867),(880,150,1,108,880),(880,150,1,114,880),(880,150,1,115,880),(893,150,1,104,893),(893,150,1,115,893),(898,150,1,104,898),(898,150,1,115,898),(911,150,1,104,911),(911,150,1,115,911),(924,150,1,104,924),(924,150,1,115,924),(937,150,1,104,937),(937,150,1,115,937),(950,150,1,104,950),(950,150,1,107,950),(950,150,1,115,950),(963,150,1,104,963),(963,150,1,107,963),(963,150,1,115,963),(976,150,1,104,976),(976,150,1,115,976),(989,150,1,104,989),(989,150,1,115,989),(1002,150,1,104,1002),(1002,150,1,115,1002),(1015,150,1,104,1015),(1015,150,1,107,1015),(1015,150,1,115,1015),(1028,150,1,104,1028),(1028,150,1,107,1028),(1028,150,1,113,1028),(1028,150,1,115,1028),(1819,150,1,112,1819),(1826,150,1,112,1826),(1833,150,1,109,1833),(1833,150,1,114,1833),(1840,150,1,109,1840),(1840,150,1,114,1840),(1847,150,1,108,1847),(1847,150,1,112,1847),(1847,150,1,114,1847),(1854,150,1,106,1854),(1854,150,1,108,1854),(1861,150,1,106,1861),(1868,150,1,106,1868),(1868,150,1,108,1868),(1875,150,1,106,1875),(1875,150,1,107,1875),(1875,150,1,108,1875),(1882,150,1,106,1882),(1889,150,1,106,1889),(1896,150,1,106,1896),(1903,150,1,106,1903),(1919,150,1,104,1919),(1919,150,1,105,1919),(1935,150,1,105,1935),(1951,150,1,104,1951),(1951,150,1,105,1951),(1951,150,1,111,1951),(1967,150,1,105,1967),(1983,150,1,105,1983),(1990,150,1,105,1990),(1990,150,1,111,1990),(1997,150,1,104,1997),(1997,150,1,107,1997),(1997,150,1,111,1997),(2003,150,1,105,2003),(2010,150,1,105,2010),(2017,150,1,105,2017),(2024,150,1,104,2024),(2024,150,1,107,2024),(2024,150,1,111,2024),(2040,150,1,105,2040),(2040,150,1,111,2040),(270,151,1,119,270),(270,151,1,120,270),(270,151,1,122,270),(270,151,1,123,270),(270,151,1,125,270),(270,151,1,127,270),(270,151,1,129,270),(286,151,1,116,286),(286,151,1,122,286),(286,151,1,123,286),(286,151,1,125,286),(286,151,1,127,286),(302,151,1,116,302),(302,151,1,124,302),(302,151,1,127,302),(318,151,1,119,318),(318,151,1,120,318),(318,151,1,122,318),(318,151,1,124,318),(318,151,1,128,318),(334,151,1,124,334),(334,151,1,127,334),(334,151,1,128,334),(350,151,1,117,350),(350,151,1,119,350),(350,151,1,122,350),(350,151,1,125,350),(350,151,1,127,350),(366,151,1,119,366),(366,151,1,122,366),(366,151,1,123,366),(366,151,1,125,366),(366,151,1,127,366),(382,151,1,116,382),(382,151,1,121,382),(382,151,1,123,382),(382,151,1,125,382),(382,151,1,128,382),(398,151,1,116,398),(398,151,1,119,398),(398,151,1,124,398),(398,151,1,128,398),(414,151,1,119,414),(414,151,1,120,414),(414,151,1,123,414),(414,151,1,125,414),(414,151,1,128,414),(430,151,1,116,430),(430,151,1,121,430),(430,151,1,124,430),(430,151,1,127,430),(446,151,1,135,446),(462,151,1,135,462),(478,151,1,135,478),(494,151,1,135,494),(510,151,1,135,510),(526,151,1,135,526),(542,151,1,135,542),(558,151,1,135,558),(574,151,1,135,574),(590,151,1,135,590),(606,151,1,135,606),(622,151,1,135,622),(638,151,1,134,638),(654,151,1,134,654),(670,151,1,134,670),(676,151,1,134,676),(682,151,1,134,682),(688,151,1,134,688),(694,151,1,134,694),(700,151,1,134,700),(706,151,1,134,706),(712,151,1,134,712),(718,151,1,134,718),(724,151,1,134,724),(1044,151,1,136,1044),(1044,151,1,137,1044),(1060,151,1,136,1060),(1060,151,1,137,1060),(1076,151,1,132,1076),(1076,151,1,136,1076),(1092,151,1,132,1092),(1092,151,1,136,1092),(1108,151,1,128,1108),(1108,151,1,137,1108),(1114,151,1,128,1114),(1114,151,1,137,1114),(1130,151,1,128,1130),(1130,151,1,132,1130),(1130,151,1,137,1130),(1146,151,1,128,1146),(1146,151,1,137,1146),(1162,151,1,136,1162),(1162,151,1,137,1162),(1178,151,1,128,1178),(1178,151,1,137,1178),(1194,151,1,132,1194),(1194,151,1,136,1194),(1210,151,1,128,1210),(1210,151,1,132,1210),(1210,151,1,137,1210),(1220,151,1,117,1220),(1220,151,1,120,1220),(1220,151,1,124,1220),(1220,151,1,128,1220),(1236,151,1,117,1236),(1236,151,1,119,1236),(1236,151,1,124,1236),(1236,151,1,136,1236),(1252,151,1,117,1252),(1252,151,1,124,1252),(1252,151,1,125,1252),(1252,151,1,127,1252),(1252,151,1,136,1252),(1268,151,1,117,1268),(1268,151,1,119,1268),(1268,151,1,128,1268),(1284,151,1,116,1284),(1284,151,1,117,1284),(1284,151,1,120,1284),(1284,151,1,124,1284),(1284,151,1,125,1284),(1284,151,1,128,1284),(1300,151,1,116,1300),(1300,151,1,117,1300),(1300,151,1,120,1300),(1300,151,1,124,1300),(1300,151,1,128,1300),(1316,151,1,117,1316),(1316,151,1,119,1316),(1316,151,1,122,1316),(1316,151,1,123,1316),(1316,151,1,125,1316),(1316,151,1,127,1316),(1332,151,1,117,1332),(1332,151,1,119,1332),(1332,151,1,120,1332),(1332,151,1,124,1332),(1332,151,1,127,1332),(1348,151,1,116,1348),(1348,151,1,117,1348),(1348,151,1,122,1348),(1348,151,1,123,1348),(1348,151,1,125,1348),(1348,151,1,128,1348),(1364,151,1,117,1364),(1364,151,1,119,1364),(1364,151,1,120,1364),(1364,151,1,124,1364),(1364,151,1,127,1364),(1364,151,1,129,1364),(1364,151,1,136,1364),(1380,151,1,116,1380),(1380,151,1,117,1380),(1380,151,1,121,1380),(1380,151,1,123,1380),(1380,151,1,128,1380),(1380,151,1,129,1380),(1396,151,1,117,1396),(1396,151,1,119,1396),(1396,151,1,124,1396),(1396,151,1,127,1396),(1396,151,1,136,1396),(1412,151,1,135,1412),(1428,151,1,135,1428),(1444,151,1,135,1444),(1460,151,1,135,1460),(1476,151,1,135,1476),(1492,151,1,135,1492),(1508,151,1,135,1508),(1524,151,1,135,1524),(1540,151,1,135,1540),(1556,151,1,135,1556),(1572,151,1,135,1572),(1588,151,1,135,1588),(1604,151,1,130,1604),(1620,151,1,130,1620),(1636,151,1,130,1636),(1652,151,1,130,1652),(1668,151,1,130,1668),(1684,151,1,134,1684),(1700,151,1,134,1700),(1716,151,1,134,1716),(1732,151,1,134,1732),(1748,151,1,134,1748),(1748,151,1,141,1748),(1764,151,1,134,1764),(1780,151,1,134,1780),(1796,151,1,134,1796),(1812,151,1,134,1812),(62,154,1,194,62),(78,154,1,196,78),(94,154,1,196,94),(110,154,1,196,110),(126,154,1,194,126),(142,154,1,196,142),(158,154,1,194,158),(174,154,1,196,174),(190,154,1,196,190),(206,154,1,196,206),(222,154,1,194,222),(238,154,1,198,238),(254,154,1,196,254),(270,154,1,196,270),(286,154,1,196,286),(302,154,1,196,302),(318,154,1,196,318),(334,154,1,196,334),(350,154,1,196,350),(366,154,1,196,366),(382,154,1,196,382),(398,154,1,196,398),(414,154,1,196,414),(430,154,1,196,430),(446,154,1,196,446),(462,154,1,196,462),(478,154,1,196,478),(494,154,1,196,494),(510,154,1,196,510),(526,154,1,196,526),(542,154,1,196,542),(558,154,1,196,558),(574,154,1,196,574),(590,154,1,196,590),(606,154,1,196,606),(622,154,1,196,622),(638,154,1,196,638),(654,154,1,196,654),(670,154,1,196,670),(676,154,1,196,676),(682,154,1,196,682),(688,154,1,196,688),(694,154,1,196,694),(700,154,1,196,700),(706,154,1,196,706),(712,154,1,196,712),(718,154,1,196,718),(724,154,1,196,724),(737,154,1,196,737),(750,154,1,196,750),(763,154,1,196,763),(776,154,1,196,776),(789,154,1,196,789),(802,154,1,196,802),(815,154,1,196,815),(828,154,1,196,828),(841,154,1,196,841),(854,154,1,196,854),(867,154,1,196,867),(880,154,1,196,880),(893,154,1,196,893),(898,154,1,196,898),(911,154,1,196,911),(924,154,1,196,924),(937,154,1,196,937),(937,154,1,198,937),(950,154,1,196,950),(963,154,1,196,963),(963,154,1,198,963),(976,154,1,196,976),(989,154,1,196,989),(1002,154,1,196,1002),(1015,154,1,196,1015),(1028,154,1,196,1028),(1044,154,1,196,1044),(1060,154,1,196,1060),(1076,154,1,196,1076),(1092,154,1,196,1092),(1108,154,1,196,1108),(1114,154,1,196,1114),(1130,154,1,196,1130),(1146,154,1,196,1146),(1162,154,1,194,1162),(1178,154,1,196,1178),(1194,154,1,196,1194),(1210,154,1,196,1210),(1220,154,1,196,1220),(1236,154,1,196,1236),(1252,154,1,196,1252),(1268,154,1,196,1268),(1284,154,1,196,1284),(1300,154,1,194,1300),(1316,154,1,196,1316),(1332,154,1,196,1332),(1348,154,1,196,1348),(1364,154,1,196,1364),(1380,154,1,196,1380),(1396,154,1,196,1396),(1412,154,1,196,1412),(1428,154,1,196,1428),(1444,154,1,196,1444),(1460,154,1,196,1460),(1476,154,1,196,1476),(1492,154,1,196,1492),(1508,154,1,196,1508),(1524,154,1,196,1524),(1540,154,1,196,1540),(1556,154,1,196,1556),(1572,154,1,196,1572),(1588,154,1,196,1588),(1604,154,1,196,1604),(1620,154,1,196,1620),(1636,154,1,196,1636),(1652,154,1,196,1652),(1668,154,1,193,1668),(1684,154,1,196,1684),(1700,154,1,196,1700),(1716,154,1,196,1716),(1732,154,1,198,1732),(1748,154,1,196,1748),(1764,154,1,196,1764),(1780,154,1,196,1780),(1796,154,1,196,1796),(1812,154,1,196,1812),(1819,154,1,196,1819),(1826,154,1,196,1826),(1833,154,1,194,1833),(1840,154,1,196,1840),(1847,154,1,196,1847),(1854,154,1,196,1854),(1861,154,1,194,1861),(1868,154,1,194,1868),(1875,154,1,196,1875),(1882,154,1,194,1882),(1889,154,1,198,1889),(1896,154,1,194,1896),(1903,154,1,196,1903),(1919,154,1,196,1919),(1935,154,1,196,1935),(1951,154,1,196,1951),(1967,154,1,197,1967),(1983,154,1,197,1983),(1990,154,1,196,1990),(1997,154,1,196,1997),(2003,154,1,197,2003),(2010,154,1,197,2010),(2017,154,1,197,2017),(2024,154,1,196,2024),(2040,154,1,195,2040),(62,155,1,201,62),(62,155,1,203,62),(62,155,1,204,62),(62,155,1,207,62),(62,155,1,209,62),(78,155,1,201,78),(78,155,1,203,78),(78,155,1,204,78),(78,155,1,207,78),(78,155,1,209,78),(94,155,1,201,94),(94,155,1,203,94),(94,155,1,204,94),(94,155,1,207,94),(94,155,1,209,94),(110,155,1,201,110),(110,155,1,203,110),(110,155,1,204,110),(110,155,1,207,110),(110,155,1,209,110),(126,155,1,203,126),(142,155,1,201,142),(142,155,1,203,142),(142,155,1,204,142),(142,155,1,207,142),(158,155,1,207,158),(174,155,1,203,174),(174,155,1,209,174),(190,155,1,207,190),(190,155,1,209,190),(206,155,1,201,206),(206,155,1,203,206),(206,155,1,204,206),(206,155,1,207,206),(222,155,1,201,222),(222,155,1,203,222),(222,155,1,204,222),(222,155,1,207,222),(222,155,1,209,222),(238,155,1,201,238),(238,155,1,203,238),(238,155,1,204,238),(238,155,1,207,238),(238,155,1,209,238),(254,155,1,201,254),(254,155,1,203,254),(254,155,1,204,254),(254,155,1,207,254),(254,155,1,209,254),(270,155,1,203,270),(270,155,1,206,270),(270,155,1,207,270),(270,155,1,209,270),(286,155,1,203,286),(286,155,1,206,286),(286,155,1,207,286),(286,155,1,209,286),(302,155,1,202,302),(302,155,1,203,302),(302,155,1,207,302),(302,155,1,209,302),(302,155,1,210,302),(318,155,1,201,318),(318,155,1,203,318),(318,155,1,206,318),(318,155,1,207,318),(318,155,1,209,318),(334,155,1,202,334),(334,155,1,203,334),(334,155,1,209,334),(334,155,1,210,334),(350,155,1,203,350),(350,155,1,205,350),(350,155,1,206,350),(350,155,1,207,350),(350,155,1,209,350),(366,155,1,201,366),(366,155,1,203,366),(366,155,1,205,366),(366,155,1,206,366),(366,155,1,207,366),(366,155,1,209,366),(382,155,1,201,382),(382,155,1,207,382),(382,155,1,209,382),(382,155,1,210,382),(398,155,1,201,398),(398,155,1,204,398),(398,155,1,205,398),(398,155,1,207,398),(398,155,1,208,398),(414,155,1,203,414),(414,155,1,205,414),(414,155,1,207,414),(414,155,1,209,414),(430,155,1,201,430),(430,155,1,203,430),(430,155,1,204,430),(430,155,1,207,430),(446,155,1,201,446),(446,155,1,204,446),(446,155,1,208,446),(462,155,1,201,462),(462,155,1,204,462),(462,155,1,208,462),(478,155,1,201,478),(478,155,1,204,478),(478,155,1,208,478),(494,155,1,201,494),(494,155,1,204,494),(494,155,1,208,494),(510,155,1,201,510),(510,155,1,204,510),(510,155,1,208,510),(526,155,1,201,526),(526,155,1,204,526),(526,155,1,208,526),(542,155,1,201,542),(542,155,1,204,542),(542,155,1,208,542),(558,155,1,201,558),(558,155,1,204,558),(558,155,1,208,558),(574,155,1,201,574),(574,155,1,204,574),(574,155,1,208,574),(590,155,1,201,590),(590,155,1,204,590),(590,155,1,208,590),(606,155,1,201,606),(606,155,1,203,606),(606,155,1,204,606),(606,155,1,208,606),(622,155,1,201,622),(622,155,1,203,622),(622,155,1,204,622),(622,155,1,208,622),(638,155,1,201,638),(638,155,1,204,638),(638,155,1,208,638),(654,155,1,201,654),(654,155,1,204,654),(654,155,1,208,654),(670,155,1,201,670),(670,155,1,204,670),(670,155,1,208,670),(676,155,1,201,676),(676,155,1,204,676),(676,155,1,208,676),(682,155,1,201,682),(682,155,1,204,682),(682,155,1,208,682),(688,155,1,201,688),(688,155,1,204,688),(688,155,1,208,688),(694,155,1,201,694),(694,155,1,204,694),(694,155,1,208,694),(700,155,1,201,700),(700,155,1,204,700),(700,155,1,208,700),(706,155,1,201,706),(706,155,1,204,706),(706,155,1,208,706),(712,155,1,201,712),(712,155,1,204,712),(712,155,1,208,712),(718,155,1,201,718),(718,155,1,204,718),(718,155,1,208,718),(724,155,1,201,724),(724,155,1,204,724),(724,155,1,208,724),(737,155,1,203,737),(737,155,1,207,737),(750,155,1,202,750),(750,155,1,203,750),(750,155,1,210,750),(763,155,1,201,763),(763,155,1,203,763),(763,155,1,204,763),(763,155,1,209,763),(763,155,1,210,763),(776,155,1,201,776),(776,155,1,202,776),(776,155,1,203,776),(776,155,1,207,776),(776,155,1,209,776),(776,155,1,210,776),(789,155,1,207,789),(789,155,1,209,789),(789,155,1,210,789),(802,155,1,201,802),(802,155,1,202,802),(802,155,1,203,802),(802,155,1,205,802),(802,155,1,209,802),(802,155,1,210,802),(815,155,1,201,815),(815,155,1,202,815),(815,155,1,203,815),(815,155,1,207,815),(815,155,1,210,815),(828,155,1,201,828),(828,155,1,203,828),(828,155,1,207,828),(828,155,1,209,828),(828,155,1,210,828),(841,155,1,201,841),(841,155,1,202,841),(841,155,1,203,841),(841,155,1,209,841),(841,155,1,210,841),(854,155,1,203,854),(854,155,1,204,854),(854,155,1,205,854),(854,155,1,209,854),(854,155,1,210,854),(867,155,1,201,867),(867,155,1,202,867),(867,155,1,203,867),(867,155,1,204,867),(867,155,1,205,867),(867,155,1,206,867),(867,155,1,207,867),(867,155,1,209,867),(880,155,1,203,880),(880,155,1,204,880),(880,155,1,205,880),(880,155,1,207,880),(880,155,1,209,880),(880,155,1,210,880),(893,155,1,201,893),(893,155,1,204,893),(893,155,1,211,893),(898,155,1,201,898),(898,155,1,204,898),(898,155,1,208,898),(911,155,1,201,911),(911,155,1,207,911),(911,155,1,208,911),(924,155,1,204,924),(924,155,1,205,924),(924,155,1,207,924),(924,155,1,208,924),(924,155,1,211,924),(937,155,1,204,937),(937,155,1,207,937),(937,155,1,208,937),(950,155,1,201,950),(950,155,1,204,950),(950,155,1,208,950),(950,155,1,211,950),(963,155,1,204,963),(963,155,1,207,963),(963,155,1,208,963),(976,155,1,201,976),(976,155,1,204,976),(976,155,1,211,976),(989,155,1,204,989),(989,155,1,208,989),(989,155,1,211,989),(1002,155,1,204,1002),(1002,155,1,208,1002),(1002,155,1,211,1002),(1015,155,1,201,1015),(1015,155,1,204,1015),(1015,155,1,207,1015),(1015,155,1,208,1015),(1015,155,1,211,1015),(1028,155,1,204,1028),(1028,155,1,208,1028),(1028,155,1,211,1028),(1044,155,1,201,1044),(1044,155,1,203,1044),(1044,155,1,205,1044),(1044,155,1,207,1044),(1060,155,1,201,1060),(1060,155,1,203,1060),(1060,155,1,205,1060),(1060,155,1,207,1060),(1076,155,1,204,1076),(1076,155,1,205,1076),(1076,155,1,207,1076),(1092,155,1,201,1092),(1092,155,1,203,1092),(1092,155,1,207,1092),(1108,155,1,204,1108),(1108,155,1,205,1108),(1108,155,1,207,1108),(1114,155,1,201,1114),(1114,155,1,202,1114),(1114,155,1,203,1114),(1114,155,1,207,1114),(1114,155,1,209,1114),(1114,155,1,210,1114),(1130,155,1,203,1130),(1130,155,1,204,1130),(1130,155,1,205,1130),(1146,155,1,201,1146),(1146,155,1,203,1146),(1146,155,1,204,1146),(1146,155,1,205,1146),(1146,155,1,207,1146),(1162,155,1,204,1162),(1162,155,1,205,1162),(1162,155,1,207,1162),(1162,155,1,208,1162),(1178,155,1,203,1178),(1178,155,1,207,1178),(1194,155,1,203,1194),(1194,155,1,204,1194),(1194,155,1,205,1194),(1210,155,1,202,1210),(1210,155,1,203,1210),(1210,155,1,210,1210),(1220,155,1,201,1220),(1220,155,1,205,1220),(1220,155,1,207,1220),(1220,155,1,209,1220),(1236,155,1,204,1236),(1236,155,1,205,1236),(1236,155,1,207,1236),(1252,155,1,201,1252),(1252,155,1,203,1252),(1252,155,1,204,1252),(1252,155,1,205,1252),(1252,155,1,207,1252),(1268,155,1,203,1268),(1268,155,1,207,1268),(1268,155,1,209,1268),(1268,155,1,210,1268),(1284,155,1,202,1284),(1284,155,1,203,1284),(1284,155,1,207,1284),(1284,155,1,210,1284),(1300,155,1,203,1300),(1300,155,1,205,1300),(1300,155,1,206,1300),(1300,155,1,207,1300),(1300,155,1,209,1300),(1316,155,1,201,1316),(1316,155,1,203,1316),(1316,155,1,205,1316),(1316,155,1,207,1316),(1316,155,1,210,1316),(1332,155,1,203,1332),(1332,155,1,205,1332),(1332,155,1,207,1332),(1332,155,1,209,1332),(1348,155,1,203,1348),(1348,155,1,205,1348),(1348,155,1,206,1348),(1348,155,1,207,1348),(1348,155,1,209,1348),(1364,155,1,204,1364),(1364,155,1,205,1364),(1364,155,1,207,1364),(1380,155,1,202,1380),(1380,155,1,203,1380),(1380,155,1,207,1380),(1380,155,1,209,1380),(1380,155,1,210,1380),(1396,155,1,207,1396),(1396,155,1,208,1396),(1396,155,1,209,1396),(1412,155,1,204,1412),(1412,155,1,208,1412),(1428,155,1,204,1428),(1428,155,1,208,1428),(1444,155,1,204,1444),(1444,155,1,208,1444),(1460,155,1,204,1460),(1460,155,1,208,1460),(1476,155,1,204,1476),(1476,155,1,208,1476),(1492,155,1,204,1492),(1492,155,1,208,1492),(1508,155,1,204,1508),(1508,155,1,208,1508),(1524,155,1,204,1524),(1524,155,1,208,1524),(1540,155,1,204,1540),(1540,155,1,208,1540),(1556,155,1,204,1556),(1556,155,1,208,1556),(1572,155,1,204,1572),(1572,155,1,208,1572),(1588,155,1,204,1588),(1588,155,1,208,1588),(1604,155,1,204,1604),(1604,155,1,208,1604),(1620,155,1,204,1620),(1620,155,1,208,1620),(1636,155,1,204,1636),(1636,155,1,208,1636),(1652,155,1,204,1652),(1652,155,1,208,1652),(1668,155,1,204,1668),(1668,155,1,208,1668),(1684,155,1,204,1684),(1684,155,1,208,1684),(1700,155,1,204,1700),(1700,155,1,208,1700),(1716,155,1,204,1716),(1716,155,1,208,1716),(1732,155,1,204,1732),(1732,155,1,208,1732),(1748,155,1,204,1748),(1748,155,1,208,1748),(1764,155,1,204,1764),(1764,155,1,208,1764),(1780,155,1,204,1780),(1780,155,1,208,1780),(1796,155,1,204,1796),(1796,155,1,208,1796),(1812,155,1,204,1812),(1812,155,1,208,1812),(1819,155,1,204,1819),(1819,155,1,205,1819),(1826,155,1,203,1826),(1826,155,1,204,1826),(1826,155,1,205,1826),(1826,155,1,207,1826),(1833,155,1,204,1833),(1833,155,1,205,1833),(1833,155,1,207,1833),(1833,155,1,208,1833),(1833,155,1,211,1833),(1840,155,1,204,1840),(1840,155,1,205,1840),(1840,155,1,207,1840),(1840,155,1,208,1840),(1840,155,1,211,1840),(1847,155,1,203,1847),(1847,155,1,204,1847),(1847,155,1,207,1847),(1854,155,1,201,1854),(1854,155,1,203,1854),(1854,155,1,204,1854),(1854,155,1,205,1854),(1854,155,1,207,1854),(1854,155,1,208,1854),(1861,155,1,204,1861),(1861,155,1,205,1861),(1861,155,1,211,1861),(1868,155,1,204,1868),(1868,155,1,205,1868),(1868,155,1,208,1868),(1868,155,1,211,1868),(1875,155,1,201,1875),(1875,155,1,204,1875),(1875,155,1,205,1875),(1875,155,1,207,1875),(1875,155,1,208,1875),(1882,155,1,201,1882),(1882,155,1,204,1882),(1882,155,1,205,1882),(1882,155,1,207,1882),(1882,155,1,208,1882),(1889,155,1,204,1889),(1896,155,1,204,1896),(1896,155,1,205,1896),(1896,155,1,211,1896),(1903,155,1,204,1903),(1903,155,1,205,1903),(1903,155,1,211,1903),(1919,155,1,204,1919),(1919,155,1,205,1919),(1919,155,1,208,1919),(1919,155,1,211,1919),(1935,155,1,204,1935),(1935,155,1,205,1935),(1935,155,1,208,1935),(1935,155,1,211,1935),(1951,155,1,201,1951),(1951,155,1,204,1951),(1951,155,1,211,1951),(1967,155,1,201,1967),(1967,155,1,204,1967),(1967,155,1,205,1967),(1967,155,1,208,1967),(1967,155,1,211,1967),(1983,155,1,201,1983),(1983,155,1,208,1983),(1983,155,1,211,1983),(1990,155,1,201,1990),(1990,155,1,204,1990),(1990,155,1,211,1990),(1997,155,1,201,1997),(1997,155,1,204,1997),(1997,155,1,205,1997),(1997,155,1,208,1997),(1997,155,1,211,1997),(2003,155,1,204,2003),(2003,155,1,211,2003),(2010,155,1,205,2010),(2010,155,1,208,2010),(2017,155,1,201,2017),(2017,155,1,208,2017),(2024,155,1,201,2024),(2024,155,1,208,2024),(2024,155,1,211,2024),(2040,155,1,205,2040),(2040,155,1,208,2040),(2040,155,1,211,2040);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_decimal` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_decimal_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_decimal_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_decimal_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_decimal_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_decimal_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_decimal_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_decimal_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_decimal_replica` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_decimal_replica`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_decimal_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_decimal_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_decimal_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_decimal_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_decimal_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_decimal_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_decimal_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` int unsigned NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_replica` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` int unsigned NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_replica`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_replica` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_index_eav_replica` VALUES (21,99,1,4,21),(22,99,1,4,22),(44,99,1,4,44),(45,99,1,4,21),(45,99,1,4,22),(45,99,1,4,45),(46,99,1,4,46),(1220,99,1,4,1220),(1236,99,1,4,1236),(1252,99,1,4,1252),(1268,99,1,4,1268),(1284,99,1,4,1284),(1300,99,1,4,1300),(1316,99,1,4,1316),(1332,99,1,4,1332),(1348,99,1,4,1348),(1364,99,1,4,1364),(1380,99,1,4,1380),(1396,99,1,4,1396),(21,135,1,8,21),(21,135,1,9,21),(21,135,1,11,21),(21,135,1,17,21),(22,135,1,8,22),(22,135,1,11,22),(44,135,1,11,44),(44,135,1,16,44),(45,135,1,8,21),(45,135,1,8,22),(45,135,1,8,45),(45,135,1,9,21),(45,135,1,11,21),(45,135,1,11,22),(45,135,1,11,45),(45,135,1,17,21),(46,135,1,8,46),(21,137,1,42,21),(22,137,1,42,22),(44,137,1,43,44),(44,137,1,45,44),(44,137,1,48,44),(45,137,1,42,21),(45,137,1,42,22),(46,137,1,32,46),(46,137,1,44,46),(1220,137,1,142,1220),(1220,137,1,144,1220),(1220,137,1,158,1220),(1236,137,1,38,1236),(1236,137,1,150,1236),(1236,137,1,155,1236),(1252,137,1,38,1252),(1252,137,1,144,1252),(1268,137,1,37,1268),(1268,137,1,38,1268),(1268,137,1,155,1268),(1284,137,1,147,1284),(1284,137,1,148,1284),(1284,137,1,158,1284),(1300,137,1,37,1300),(1300,137,1,38,1300),(1300,137,1,150,1300),(1300,137,1,155,1300),(1316,137,1,33,1316),(1316,137,1,150,1316),(1332,137,1,38,1332),(1348,137,1,37,1348),(1348,137,1,38,1348),(1348,137,1,155,1348),(1364,137,1,36,1364),(1364,137,1,37,1364),(1364,137,1,148,1364),(1364,137,1,155,1364),(1380,137,1,142,1380),(1380,137,1,144,1380),(1396,137,1,33,1396),(1396,137,1,37,1396),(1396,137,1,142,1396),(21,140,1,80,21),(21,140,1,81,21),(21,140,1,84,21),(22,140,1,80,22),(22,140,1,81,22),(22,140,1,84,22),(44,140,1,81,44),(45,140,1,80,21),(45,140,1,80,22),(45,140,1,80,45),(45,140,1,81,21),(45,140,1,81,22),(45,140,1,81,45),(45,140,1,84,21),(45,140,1,84,22),(45,140,1,84,45),(46,140,1,80,46),(46,140,1,81,46),(46,140,1,84,46),(21,141,1,87,21),(22,141,1,87,22),(44,141,1,86,44),(44,141,1,87,44),(44,141,1,90,44),(45,141,1,87,21),(45,141,1,87,22),(45,141,1,87,45),(46,141,1,87,46),(1220,143,1,1,1220),(1236,143,1,0,1236),(1252,143,1,0,1252),(1268,143,1,0,1268),(1284,143,1,0,1284),(1300,143,1,0,1300),(1316,143,1,1,1316),(1332,143,1,1,1332),(1348,143,1,0,1348),(1364,143,1,0,1364),(1380,143,1,0,1380),(1396,143,1,0,1396),(1220,144,1,0,1220),(1236,144,1,0,1236),(1252,144,1,0,1252),(1268,144,1,1,1268),(1284,144,1,0,1284),(1300,144,1,0,1300),(1316,144,1,0,1316),(1332,144,1,0,1332),(1348,144,1,1,1348),(1364,144,1,0,1364),(1380,144,1,1,1380),(1396,144,1,1,1396),(1220,145,1,1,1220),(1236,145,1,0,1236),(1252,145,1,0,1252),(1268,145,1,0,1268),(1284,145,1,0,1284),(1300,145,1,0,1300),(1316,145,1,1,1316),(1332,145,1,1,1332),(1348,145,1,0,1348),(1364,145,1,0,1364),(1380,145,1,0,1380),(1396,145,1,0,1396),(44,146,1,1,44),(1220,146,1,1,1220),(1236,146,1,0,1236),(1252,146,1,0,1252),(1268,146,1,1,1268),(1284,146,1,0,1284),(1300,146,1,0,1300),(1316,146,1,0,1316),(1332,146,1,0,1332),(1348,146,1,1,1348),(1364,146,1,1,1364),(1380,146,1,0,1380),(1396,146,1,0,1396),(1220,147,1,0,1220),(1236,147,1,1,1236),(1252,147,1,0,1252),(1268,147,1,0,1268),(1284,147,1,0,1284),(1300,147,1,0,1300),(1316,147,1,1,1316),(1332,147,1,0,1332),(1348,147,1,0,1348),(1364,147,1,0,1364),(1380,147,1,1,1380),(1396,147,1,1,1396),(1220,151,1,117,1220),(1220,151,1,120,1220),(1220,151,1,124,1220),(1220,151,1,128,1220),(1236,151,1,117,1236),(1236,151,1,119,1236),(1236,151,1,124,1236),(1236,151,1,136,1236),(1252,151,1,117,1252),(1252,151,1,124,1252),(1252,151,1,125,1252),(1252,151,1,127,1252),(1252,151,1,136,1252),(1268,151,1,117,1268),(1268,151,1,119,1268),(1268,151,1,128,1268),(1284,151,1,116,1284),(1284,151,1,117,1284),(1284,151,1,120,1284),(1284,151,1,124,1284),(1284,151,1,125,1284),(1284,151,1,128,1284),(1300,151,1,116,1300),(1300,151,1,117,1300),(1300,151,1,120,1300),(1300,151,1,124,1300),(1300,151,1,128,1300),(1316,151,1,117,1316),(1316,151,1,119,1316),(1316,151,1,122,1316),(1316,151,1,123,1316),(1316,151,1,125,1316),(1316,151,1,127,1316),(1332,151,1,117,1332),(1332,151,1,119,1332),(1332,151,1,120,1332),(1332,151,1,124,1332),(1332,151,1,127,1332),(1348,151,1,116,1348),(1348,151,1,117,1348),(1348,151,1,122,1348),(1348,151,1,123,1348),(1348,151,1,125,1348),(1348,151,1,128,1348),(1364,151,1,117,1364),(1364,151,1,119,1364),(1364,151,1,120,1364),(1364,151,1,124,1364),(1364,151,1,127,1364),(1364,151,1,129,1364),(1364,151,1,136,1364),(1380,151,1,116,1380),(1380,151,1,117,1380),(1380,151,1,121,1380),(1380,151,1,123,1380),(1380,151,1,128,1380),(1380,151,1,129,1380),(1396,151,1,117,1396),(1396,151,1,119,1396),(1396,151,1,124,1396),(1396,151,1,127,1396),(1396,151,1,136,1396),(1220,154,1,196,1220),(1236,154,1,196,1236),(1252,154,1,196,1252),(1268,154,1,196,1268),(1284,154,1,196,1284),(1300,154,1,194,1300),(1316,154,1,196,1316),(1332,154,1,196,1332),(1348,154,1,196,1348),(1364,154,1,196,1364),(1380,154,1,196,1380),(1396,154,1,196,1396),(1220,155,1,201,1220),(1220,155,1,205,1220),(1220,155,1,207,1220),(1220,155,1,209,1220),(1236,155,1,204,1236),(1236,155,1,205,1236),(1236,155,1,207,1236),(1252,155,1,201,1252),(1252,155,1,203,1252),(1252,155,1,204,1252),(1252,155,1,205,1252),(1252,155,1,207,1252),(1268,155,1,203,1268),(1268,155,1,207,1268),(1268,155,1,209,1268),(1268,155,1,210,1268),(1284,155,1,202,1284),(1284,155,1,203,1284),(1284,155,1,207,1284),(1284,155,1,210,1284),(1300,155,1,203,1300),(1300,155,1,205,1300),(1300,155,1,206,1300),(1300,155,1,207,1300),(1300,155,1,209,1300),(1316,155,1,201,1316),(1316,155,1,203,1316),(1316,155,1,205,1316),(1316,155,1,207,1316),(1316,155,1,210,1316),(1332,155,1,203,1332),(1332,155,1,205,1332),(1332,155,1,207,1332),(1332,155,1,209,1332),(1348,155,1,203,1348),(1348,155,1,205,1348),(1348,155,1,206,1348),(1348,155,1,207,1348),(1348,155,1,209,1348),(1364,155,1,204,1364),(1364,155,1,205,1364),(1364,155,1,207,1364),(1380,155,1,202,1380),(1380,155,1,203,1380),(1380,155,1,207,1380),(1380,155,1,209,1380),(1380,155,1,210,1380),(1396,155,1,207,1396),(1396,155,1,208,1396),(1396,155,1,209,1396);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_eav_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_eav_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_eav_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` int unsigned NOT NULL COMMENT 'Value',
  `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_eav_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_eav_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_eav_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `[[DBPREFIX]]CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_index_price` VALUES (1,0,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,1,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,2,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,3,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(2,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(3,0,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,1,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,2,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,3,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(4,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(6,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(7,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(8,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(10,0,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,1,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,2,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,3,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(11,0,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,1,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,2,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,3,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(12,0,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,1,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,2,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,3,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(13,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(15,0,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,1,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,2,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,3,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(16,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(18,0,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,1,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,2,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,3,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(19,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(21,0,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,1,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,2,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,3,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(22,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(23,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(24,0,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,1,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,2,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,3,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(25,0,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,1,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,2,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,3,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,0,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,1,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,2,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,3,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(27,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(30,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(33,0,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,1,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,2,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,3,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(34,0,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,1,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,2,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,3,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(35,0,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,1,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,2,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,3,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(36,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(37,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(38,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(39,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(40,0,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,1,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,2,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,3,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(41,0,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,1,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,2,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,3,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(42,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(43,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(44,0,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,1,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,2,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,3,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(45,0,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,1,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,2,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,3,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(46,0,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,1,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,2,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,3,1,2,NULL,NULL,14.000000,21.000000,NULL),(47,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(63,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(79,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(95,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(111,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(127,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(143,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(159,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(175,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(191,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(207,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(223,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(239,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(255,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(271,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(287,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(303,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(319,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(335,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(351,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(367,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(383,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(399,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(415,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(431,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(447,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(463,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(479,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(495,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(543,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(559,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(575,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(591,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(623,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(671,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(677,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(683,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(689,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(695,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(707,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(725,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(737,0,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,1,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,2,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,3,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(738,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(750,0,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,1,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,2,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,3,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(751,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(763,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(764,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(776,0,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,1,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,2,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,3,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(777,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(789,0,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,1,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,2,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,3,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(790,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(802,0,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,1,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,2,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,3,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(803,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(815,0,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,1,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,2,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,3,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(816,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(828,0,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,1,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,2,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,3,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(829,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(841,0,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,1,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,2,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,3,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(842,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(854,0,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,1,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,2,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,3,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(855,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(867,0,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,1,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,2,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,3,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(868,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(880,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(881,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(894,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(925,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(938,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(951,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(977,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(990,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1003,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1016,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1029,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1045,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1061,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1077,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1093,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1109,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1131,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1147,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1163,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1179,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1195,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1211,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1221,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1237,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1253,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1269,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1285,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1301,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1317,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1333,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1365,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1397,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1413,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1461,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1477,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1493,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1509,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1541,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1557,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1589,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1637,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1653,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1669,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1701,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1765,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1781,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1813,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1819,0,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,1,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,2,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,3,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1820,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1826,0,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,1,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,2,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,3,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1827,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1833,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1834,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1840,0,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,1,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,2,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,3,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1841,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1847,0,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1847,1,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1847,2,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1847,3,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1848,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1854,0,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,1,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,2,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,3,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1855,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1861,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1862,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1868,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1869,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1875,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1876,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1882,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1883,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1889,0,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,1,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,2,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,3,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1890,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1896,0,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,1,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,2,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,3,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1897,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1903,0,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,1,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,2,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,3,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1904,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1920,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1936,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1952,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1968,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1984,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1991,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1998,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2011,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2018,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2025,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price_type` smallint unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_opt_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Opt Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_opt_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_opt_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Opt Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_sel_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_sel_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `selection_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Selection ID',
  `group_type` smallint unsigned DEFAULT '0' COMMENT 'Group Type',
  `is_required` smallint unsigned DEFAULT '0' COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Sel Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_sel_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_sel_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `selection_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Selection ID',
  `group_type` smallint unsigned DEFAULT '0' COMMENT 'Group Type',
  `is_required` smallint unsigned DEFAULT '0' COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Sel Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_bundle_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_bundle_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_bundle_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price_type` smallint unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_bundle_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_bundle_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_bundle_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx` (
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp` (
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_cfg_opt_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_cfg_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_cfg_opt_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_cfg_opt_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_downlod_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_downlod_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_downlod_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_downlod_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_downlod_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_downlod_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_downlod_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_downlod_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_downlod_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_downlod_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int NOT NULL,
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Temporary Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_downlod_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_downlod_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_downlod_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_downlod_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_final_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_final_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_final_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Final Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_final_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_final_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_final_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_final_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_final_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_final_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_final_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Final Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_final_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_final_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_final_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_final_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_opt_agr_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_opt_agr_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_opt_agr_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_opt_agr_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_opt_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_opt_idx` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_opt_idx`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_opt_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_opt_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_opt_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_opt_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_opt_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_replica` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `[[DBPREFIX]]CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_replica`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_replica` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_index_price_replica` VALUES (1,0,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,1,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,2,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(1,3,1,NULL,34.000000,34.000000,34.000000,34.000000,NULL),(2,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(2,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(3,0,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,1,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,2,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(3,3,1,2,38.000000,38.000000,38.000000,38.000000,NULL),(4,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(4,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(5,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(6,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(6,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(7,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(7,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(8,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(8,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(9,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(10,0,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,1,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,2,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(10,3,1,2,32.000000,24.000000,24.000000,24.000000,NULL),(11,0,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,1,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,2,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(11,3,1,2,33.000000,33.000000,33.000000,33.000000,NULL),(12,0,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,1,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,2,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(12,3,1,2,36.000000,36.000000,36.000000,36.000000,NULL),(13,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(13,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(14,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(15,0,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,1,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,2,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(15,3,1,NULL,7.000000,7.000000,7.000000,7.000000,NULL),(16,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(16,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(17,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(18,0,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,1,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,2,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(18,3,1,2,16.000000,16.000000,16.000000,16.000000,NULL),(19,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(19,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(20,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(21,0,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,1,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,2,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(21,3,1,2,5.000000,5.000000,5.000000,5.000000,NULL),(22,0,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,1,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,2,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(22,3,1,2,19.000000,19.000000,19.000000,19.000000,NULL),(23,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(23,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(24,0,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,1,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,2,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(24,3,1,NULL,23.000000,23.000000,23.000000,23.000000,NULL),(25,0,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,1,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,2,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(25,3,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,0,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,1,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,2,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(26,3,1,2,23.000000,23.000000,23.000000,23.000000,NULL),(27,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(27,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(28,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(29,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(30,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(30,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(31,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(32,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(33,0,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,1,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,2,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(33,3,1,NULL,14.000000,14.000000,14.000000,14.000000,NULL),(34,0,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,1,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,2,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(34,3,1,2,17.000000,17.000000,17.000000,17.000000,NULL),(35,0,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,1,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,2,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(35,3,1,2,21.000000,21.000000,21.000000,21.000000,NULL),(36,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(36,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(37,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(37,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(38,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(38,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(39,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(39,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(40,0,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,1,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,2,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(40,3,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(41,0,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,1,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,2,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(41,3,1,2,43.000000,43.000000,43.000000,43.000000,NULL),(42,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(42,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(43,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(43,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(44,0,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,1,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,2,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(44,3,1,2,92.000000,92.000000,92.000000,92.000000,NULL),(45,0,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,1,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,2,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(45,3,1,0,0.000000,0.000000,61.000000,77.000000,NULL),(46,0,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,1,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,2,1,2,NULL,NULL,14.000000,21.000000,NULL),(46,3,1,2,NULL,NULL,14.000000,21.000000,NULL),(47,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(47,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(48,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(49,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(50,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(51,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(52,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(53,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(54,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(55,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(56,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(57,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(58,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(59,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(60,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(61,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(62,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(63,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(63,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(64,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(65,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(66,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(67,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(68,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(69,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(70,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(71,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(72,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(73,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(74,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(75,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(76,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(77,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,0,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,1,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,2,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(78,3,1,2,70.000000,70.000000,70.000000,70.000000,NULL),(79,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(79,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(80,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(81,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(82,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(83,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(84,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(85,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(86,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(87,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(88,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(89,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(90,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(91,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(92,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(93,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,0,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,1,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,2,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(94,3,1,2,63.000000,63.000000,63.000000,63.000000,NULL),(95,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(95,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(96,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(97,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(98,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(99,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(100,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(101,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(102,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(103,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(104,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(105,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(106,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(107,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(108,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(109,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(110,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(111,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(111,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(112,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(113,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(114,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(115,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(116,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(117,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(118,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(119,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(120,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(121,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(122,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(123,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(124,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(125,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,0,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,1,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,2,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(126,3,1,2,52.000000,52.000000,52.000000,52.000000,NULL),(127,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(127,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(128,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(129,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(130,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(131,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(132,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(133,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(134,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(135,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(136,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(137,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(138,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(139,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(140,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(141,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(142,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(143,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(143,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(144,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(145,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(146,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(147,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(148,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(149,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(150,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(151,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(152,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(153,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(154,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(155,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(156,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(157,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(158,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(159,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(159,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(160,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(161,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(162,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(163,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(164,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(165,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(166,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(167,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(168,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(169,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(170,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(171,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(172,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(173,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(174,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(175,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(175,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(176,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(177,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(178,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(179,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(180,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(181,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(182,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(183,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(184,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(185,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(186,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(187,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(188,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(189,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(190,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(191,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(191,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(192,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(193,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(194,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(195,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(196,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(197,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(198,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(199,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(200,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(201,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(202,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(203,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(204,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(205,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(206,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(207,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(207,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(208,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(209,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(210,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(211,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(212,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(213,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(214,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(215,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(216,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(217,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(218,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(219,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(220,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(221,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(222,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(223,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(223,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(224,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(225,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(226,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(227,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(228,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(229,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(230,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(231,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(232,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(233,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(234,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(235,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(236,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(237,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(238,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(239,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(239,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(240,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(241,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(242,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(243,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(244,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(245,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(246,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(247,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(248,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(249,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(250,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(251,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(252,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(253,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,0,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,1,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,2,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(254,3,1,2,74.000000,74.000000,74.000000,74.000000,NULL),(255,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(255,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(256,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(257,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(258,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(259,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(260,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(261,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(262,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(263,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(264,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(265,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(266,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(267,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(268,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(269,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(270,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(271,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(271,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(272,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(273,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(274,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(275,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(276,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(277,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(278,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(279,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(280,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(281,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(282,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(283,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(284,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(285,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,0,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,1,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,2,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(286,3,1,2,51.000000,51.000000,51.000000,51.000000,NULL),(287,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(287,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(288,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(289,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(290,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(291,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(292,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(293,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(294,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(295,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(296,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(297,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(298,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(299,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(300,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(301,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,0,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,1,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,2,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(302,3,1,2,47.000000,47.000000,47.000000,47.000000,NULL),(303,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(303,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(304,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(305,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(306,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(307,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(308,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(309,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(310,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(311,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(312,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(313,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(314,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(315,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(316,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(317,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,0,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,1,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,2,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(318,3,1,2,72.000000,72.000000,72.000000,72.000000,NULL),(319,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(319,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(320,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(321,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(322,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(323,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(324,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(325,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(326,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(327,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(328,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(329,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(330,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(331,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(332,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(333,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,0,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,1,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,2,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(334,3,1,2,99.000000,99.000000,99.000000,99.000000,NULL),(335,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(335,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(336,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(337,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(338,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(339,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(340,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(341,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(342,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(343,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(344,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(345,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(346,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(347,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(348,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(349,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,0,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,1,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,2,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(350,3,1,2,65.000000,65.000000,65.000000,65.000000,NULL),(351,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(351,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(352,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(353,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(354,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(355,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(356,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(357,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(358,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(359,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(360,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(361,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(362,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(363,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(364,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(365,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,0,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,1,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,2,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(366,3,1,2,66.000000,66.000000,66.000000,66.000000,NULL),(367,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(367,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(368,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(369,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(370,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(371,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(372,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(373,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(374,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(375,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(376,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(377,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(378,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(379,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(380,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(381,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(382,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(383,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(383,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(384,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(385,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(386,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(387,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(388,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(389,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(390,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(391,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(392,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(393,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(394,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(395,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(396,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(397,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,0,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,1,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,2,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(398,3,1,2,56.990000,56.990000,56.990000,56.990000,NULL),(399,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(399,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(400,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(401,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(402,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(403,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(404,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(405,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(406,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(407,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(408,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(409,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(410,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(411,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(412,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(413,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(414,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(415,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(415,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(416,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(417,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(418,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(419,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(420,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(421,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(422,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(423,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(424,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(425,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(426,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(427,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(428,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(429,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(430,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(431,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(431,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(432,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(433,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(434,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(435,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(436,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(437,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(438,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(439,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(440,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(441,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(442,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(443,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(444,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(445,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(446,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(447,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(447,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(448,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(449,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(450,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(451,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(452,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(453,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(454,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(455,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(456,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(457,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(458,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(459,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(460,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(461,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(462,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(463,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(463,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(464,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(465,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(466,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(467,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(468,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(469,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(470,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(471,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(472,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(473,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(474,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(475,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(476,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(477,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(478,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(479,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(479,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(480,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(481,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(482,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(483,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(484,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(485,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(486,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(487,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(488,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(489,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(490,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(491,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(492,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(493,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(494,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(495,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(495,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(496,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(497,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(498,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(499,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(500,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(501,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(502,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(503,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(504,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(505,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(506,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(507,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(508,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(509,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(510,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(511,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(512,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(513,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(514,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(515,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(516,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(517,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(518,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(519,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(520,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(521,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(522,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(523,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(524,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(525,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(526,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(527,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(528,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(529,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(530,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(531,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(532,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(533,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(534,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(535,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(536,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(537,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(538,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(539,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(540,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(541,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(542,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(543,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(543,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(544,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(545,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(546,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(547,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(548,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(549,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(550,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(551,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(552,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(553,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(554,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(555,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(556,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(557,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(558,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(559,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(559,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(560,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(561,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(562,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(563,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(564,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(565,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(566,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(567,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(568,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(569,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(570,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(571,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(572,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(573,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(574,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(575,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(575,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(576,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(577,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(578,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(579,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(580,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(581,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(582,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(583,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(584,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(585,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(586,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(587,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(588,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(589,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(590,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(591,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(591,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(592,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(593,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(594,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(595,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(596,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(597,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(598,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(599,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(600,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(601,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(602,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(603,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(604,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(605,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(606,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(607,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(608,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(609,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(610,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(611,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(612,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(613,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(614,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(615,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(616,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(617,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(618,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(619,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(620,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(621,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(622,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(623,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(623,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(624,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(625,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(626,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(627,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(628,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(629,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(630,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(631,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(632,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(633,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(634,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(635,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(636,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(637,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(638,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(639,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(640,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(641,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(642,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(643,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(644,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(645,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(646,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(647,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(648,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(649,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(650,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(651,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(652,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(653,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(654,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(655,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(656,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(657,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(658,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(659,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(660,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(661,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(662,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(663,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(664,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(665,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(666,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(667,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(668,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(669,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(670,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(671,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(671,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(672,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(673,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(674,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(675,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(676,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(677,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(677,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(678,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(679,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(680,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(681,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(682,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(683,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(683,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(684,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(685,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(686,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(687,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(688,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(689,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(689,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(690,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(691,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(692,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(693,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(694,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(695,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(695,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(696,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(697,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(698,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(699,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(700,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(701,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(702,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(703,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(704,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(705,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(706,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(707,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(707,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(708,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(709,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(710,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(711,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(712,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(713,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(714,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(715,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(716,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(717,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(718,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(719,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(720,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(721,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(722,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(723,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,0,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,1,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,2,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(724,3,1,2,18.000000,18.000000,18.000000,18.000000,NULL),(725,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(725,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(726,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(727,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(728,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(729,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(730,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(731,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(732,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(733,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(734,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(735,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,0,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,1,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,2,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(736,3,1,2,35.000000,28.000000,28.000000,35.000000,NULL),(737,0,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,1,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,2,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(737,3,1,2,35.000000,28.000000,21.000000,28.000000,NULL),(738,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(738,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(739,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(740,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(741,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(742,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(743,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(744,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(745,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(746,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(747,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(748,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,0,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,1,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,2,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(749,3,1,2,46.000000,36.800000,36.800000,46.000000,NULL),(750,0,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,1,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,2,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(750,3,1,2,46.000000,36.800000,27.600000,36.800000,NULL),(751,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(751,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(752,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(753,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(754,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(755,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(756,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(757,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(758,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(759,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(760,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(761,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(762,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(763,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(763,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(764,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(764,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(765,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(766,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(767,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(768,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(769,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(770,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(771,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(772,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(773,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(774,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,0,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,1,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,2,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(775,3,1,2,45.000000,36.000000,36.000000,45.000000,NULL),(776,0,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,1,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,2,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(776,3,1,2,45.000000,36.000000,27.000000,36.000000,NULL),(777,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(777,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(778,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(779,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(780,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(781,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(782,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(783,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(784,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(785,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(786,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(787,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,0,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,1,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,2,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(788,3,1,2,57.000000,45.600000,45.600000,57.000000,NULL),(789,0,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,1,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,2,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(789,3,1,2,57.000000,45.600000,34.200000,45.600000,NULL),(790,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(790,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(791,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(792,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(793,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(794,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(795,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(796,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(797,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(798,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(799,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(800,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,0,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,1,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,2,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(801,3,1,2,28.000000,22.400000,22.400000,28.000000,NULL),(802,0,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,1,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,2,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(802,3,1,2,28.000000,22.400000,16.800000,22.400000,NULL),(803,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(803,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(804,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(805,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(806,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(807,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(808,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(809,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(810,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(811,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(812,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(813,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,0,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,1,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,2,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(814,3,1,2,68.000000,54.400000,54.400000,68.000000,NULL),(815,0,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,1,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,2,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(815,3,1,2,68.000000,54.400000,40.800000,54.400000,NULL),(816,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(816,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(817,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(818,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(819,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(820,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(821,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(822,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(823,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(824,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(825,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(826,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,0,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,1,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,2,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(827,3,1,2,82.000000,65.600000,65.600000,82.000000,NULL),(828,0,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,1,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,2,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(828,3,1,2,82.000000,65.600000,49.200000,65.600000,NULL),(829,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(829,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(830,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(831,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(832,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(833,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(834,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(835,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(836,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(837,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(838,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(839,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(840,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(841,0,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,1,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,2,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(841,3,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(842,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(842,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(843,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(844,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(845,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(846,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(847,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(848,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(849,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(850,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(851,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(852,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,0,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,1,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,2,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(853,3,1,2,66.000000,52.800000,52.800000,66.000000,NULL),(854,0,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,1,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,2,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(854,3,1,2,66.000000,52.800000,39.600000,52.800000,NULL),(855,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(855,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(856,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(857,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(858,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(859,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(860,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(861,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(862,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(863,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(864,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(865,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,0,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,1,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,2,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(866,3,1,2,74.000000,59.200000,59.200000,74.000000,NULL),(867,0,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,1,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,2,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(867,3,1,2,74.000000,59.200000,44.400000,59.200000,NULL),(868,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(868,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(869,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(870,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(871,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(872,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(873,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(874,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(875,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(876,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(877,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(878,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(879,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(880,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(880,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(881,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(881,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(882,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(883,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(884,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(885,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(886,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(887,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(888,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(889,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(890,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(891,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(892,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(893,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(894,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(894,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(895,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(896,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(897,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(898,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(899,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(900,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(901,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(902,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(903,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(904,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(905,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(906,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(907,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(908,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(909,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(910,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(911,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(912,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(913,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(914,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(915,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(916,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(917,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(918,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(919,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(920,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(921,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(922,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(923,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,0,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,1,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,2,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(924,3,1,2,32.500000,32.500000,32.500000,32.500000,NULL),(925,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(925,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(926,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(927,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(928,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(929,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(930,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(931,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(932,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(933,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(934,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(935,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(936,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(937,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(938,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(938,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(939,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(940,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(941,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(942,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(943,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(944,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(945,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(946,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(947,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(948,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(949,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(950,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(951,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(951,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(952,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(953,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(954,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(955,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(956,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(957,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(958,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(959,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(960,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(961,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(962,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(963,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(964,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(965,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(966,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(967,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(968,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(969,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(970,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(971,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(972,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(973,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(974,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(975,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(976,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(977,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(977,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(978,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(979,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(980,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(981,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(982,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(983,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(984,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(985,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(986,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(987,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(988,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(989,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(990,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(990,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(991,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(992,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(993,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(994,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(995,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(996,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(997,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(998,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(999,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1000,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1001,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1002,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1003,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1003,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1004,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1005,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1006,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1007,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1008,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1009,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1010,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1011,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1012,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1013,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1014,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,0,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,1,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,2,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1015,3,1,2,20.000000,20.000000,20.000000,20.000000,NULL),(1016,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1016,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1017,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1018,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1019,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1020,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1021,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1022,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1023,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1024,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1025,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1026,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1027,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,0,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,1,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,2,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1028,3,1,2,27.000000,27.000000,27.000000,27.000000,NULL),(1029,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1029,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1030,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1031,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1032,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1033,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1034,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1035,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1036,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1037,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1038,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1039,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1040,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1041,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1042,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1043,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1044,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1045,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1045,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1046,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1047,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1048,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1049,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1050,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1051,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1052,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1053,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1054,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1055,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1056,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1057,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1058,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1059,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1060,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1061,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1061,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1062,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1063,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1064,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1065,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1066,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1067,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1068,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1069,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1070,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1071,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1072,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1073,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1074,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1075,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1076,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1077,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1077,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1078,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1079,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1080,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1081,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1082,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1083,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1084,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1085,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1086,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1087,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1088,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1089,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1090,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1091,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1092,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1093,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1093,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1094,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1095,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1096,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1097,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1098,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1099,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1100,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1101,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1102,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1103,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1104,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1105,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1106,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1107,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1108,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1109,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1109,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1110,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1111,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1112,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1113,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1114,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1115,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1116,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1117,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1118,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1119,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1120,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1121,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1122,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1123,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1124,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1125,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1126,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1127,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1128,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1129,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1130,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1131,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1131,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1132,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1133,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1134,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1135,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1136,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1137,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1138,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1139,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1140,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1141,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1142,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1143,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1144,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1145,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,0,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,1,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,2,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1146,3,1,2,48.000000,48.000000,48.000000,48.000000,NULL),(1147,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1147,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1148,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1149,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1150,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1151,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1152,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1153,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1154,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1155,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1156,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1157,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1158,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1159,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1160,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1161,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1162,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1163,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1163,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1164,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1165,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1166,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1167,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1168,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1169,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1170,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1171,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1172,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1173,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1174,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1175,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1176,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1177,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,0,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,1,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,2,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1178,3,1,2,55.000000,55.000000,55.000000,55.000000,NULL),(1179,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1179,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1180,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1181,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1182,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1183,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1184,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1185,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1186,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1187,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1188,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1189,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1190,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1191,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1192,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1193,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1194,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(1195,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1195,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1196,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1197,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1198,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1199,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1200,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1201,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1202,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1203,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1204,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1205,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1206,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1207,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1208,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1209,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,0,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,1,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,2,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1210,3,1,2,68.000000,68.000000,68.000000,68.000000,NULL),(1211,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1211,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1212,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1213,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1214,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1215,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1216,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1217,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1218,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1219,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,0,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,1,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,2,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1220,3,1,2,75.000000,75.000000,75.000000,75.000000,NULL),(1221,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1221,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1222,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1223,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1224,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1225,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1226,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1227,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1228,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1229,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1230,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1231,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1232,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1233,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1234,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1235,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,0,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,1,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,2,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1236,3,1,2,56.250000,56.250000,56.250000,56.250000,NULL),(1237,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1237,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1238,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1239,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1240,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1241,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1242,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1243,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1244,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1245,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1246,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1247,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1248,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1249,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1250,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1251,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1252,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1253,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1253,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1254,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1255,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1256,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1257,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1258,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1259,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1260,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1261,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1262,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1263,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1264,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1265,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1266,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1267,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,0,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,1,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,2,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1268,3,1,2,84.000000,84.000000,84.000000,84.000000,NULL),(1269,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1269,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1270,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1271,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1272,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1273,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1274,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1275,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1276,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1277,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1278,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1279,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1280,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1281,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1282,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1283,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,0,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,1,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,2,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1284,3,1,2,60.000000,60.000000,60.000000,60.000000,NULL),(1285,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1285,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1286,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1287,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1288,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1289,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1290,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1291,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1292,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1293,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1294,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1295,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1296,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1297,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1298,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1299,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,0,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,1,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,2,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1300,3,1,2,59.000000,59.000000,59.000000,59.000000,NULL),(1301,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1301,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1302,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1303,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1304,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1305,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1306,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1307,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1308,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1309,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1310,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1311,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1312,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1313,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1314,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1315,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,0,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,1,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,2,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1316,3,1,2,57.000000,57.000000,57.000000,57.000000,NULL),(1317,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1317,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1318,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1319,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1320,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1321,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1322,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1323,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1324,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1325,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1326,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1327,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1328,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1329,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1330,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1331,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1332,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1333,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1333,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1334,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1335,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1336,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1337,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1338,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1339,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1340,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1341,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1342,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1343,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1344,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1345,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1346,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1347,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1348,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1349,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1350,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1351,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1352,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1353,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1354,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1355,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1356,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1357,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1358,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1359,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1360,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1361,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1362,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1363,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,0,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,1,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,2,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1364,3,1,2,69.000000,69.000000,69.000000,69.000000,NULL),(1365,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1365,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1366,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1367,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1368,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1369,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1370,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1371,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1372,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1373,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1374,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1375,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1376,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1377,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1378,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1379,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1380,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1381,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1382,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1383,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1384,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1385,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1386,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1387,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1388,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1389,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1390,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1391,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1392,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1393,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1394,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1395,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,0,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,1,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,2,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1396,3,1,2,77.000000,77.000000,77.000000,77.000000,NULL),(1397,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1397,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1398,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1399,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1400,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1401,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1402,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1403,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1404,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1405,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1406,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1407,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1408,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1409,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1410,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1411,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1412,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1413,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1413,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1414,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1415,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1416,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1417,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1418,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1419,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1420,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1421,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1422,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1423,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1424,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1425,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1426,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1427,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1428,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1429,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1430,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1431,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1432,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1433,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1434,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1435,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1436,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1437,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1438,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1439,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1440,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1441,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1442,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1443,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1444,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1445,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1446,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1447,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1448,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1449,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1450,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1451,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1452,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1453,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1454,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1455,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1456,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1457,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1458,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1459,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1460,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1461,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1461,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1462,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1463,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1464,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1465,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1466,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1467,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1468,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1469,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1470,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1471,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1472,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1473,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1474,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1475,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1476,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1477,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1477,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1478,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1479,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1480,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1481,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1482,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1483,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1484,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1485,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1486,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1487,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1488,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1489,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1490,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1491,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1492,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1493,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1493,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1494,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1495,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1496,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1497,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1498,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1499,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1500,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1501,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1502,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1503,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1504,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1505,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1506,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1507,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1508,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1509,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1509,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1510,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1511,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1512,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1513,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1514,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1515,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1516,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1517,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1518,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1519,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1520,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1521,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1522,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1523,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1524,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1525,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1526,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1527,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1528,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1529,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1530,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1531,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1532,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1533,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1534,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1535,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1536,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1537,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1538,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1539,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,0,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,1,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,2,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1540,3,1,2,32.000000,32.000000,32.000000,32.000000,NULL),(1541,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1541,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1542,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1543,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1544,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1545,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1546,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1547,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1548,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1549,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1550,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1551,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1552,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1553,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1554,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1555,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,0,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,1,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,2,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1556,3,1,2,22.000000,22.000000,22.000000,22.000000,NULL),(1557,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1557,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1558,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1559,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1560,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1561,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1562,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1563,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1564,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1565,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1566,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1567,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1568,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1569,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1570,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1571,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1572,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1573,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1574,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1575,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1576,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1577,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1578,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1579,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1580,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1581,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1582,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1583,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1584,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1585,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1586,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1587,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1588,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1589,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1589,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1590,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1591,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1592,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1593,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1594,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1595,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1596,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1597,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1598,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1599,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1600,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1601,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1602,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1603,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1604,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1605,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1606,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1607,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1608,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1609,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1610,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1611,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1612,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1613,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1614,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1615,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1616,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1617,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1618,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1619,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1620,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1621,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1622,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1623,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1624,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1625,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1626,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1627,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1628,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1629,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1630,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1631,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1632,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1633,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1634,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1635,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1636,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1637,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1637,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1638,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1639,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1640,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1641,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1642,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1643,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1644,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1645,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1646,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1647,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1648,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1649,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1650,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1651,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1652,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1653,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1653,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1654,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1655,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1656,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1657,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1658,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1659,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1660,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1661,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1662,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1663,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1664,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1665,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1666,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1667,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1668,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1669,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1669,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1670,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1671,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1672,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1673,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1674,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1675,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1676,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1677,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1678,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1679,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1680,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1681,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1682,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1683,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1684,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1685,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1686,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1687,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1688,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1689,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1690,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1691,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1692,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1693,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1694,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1695,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1696,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1697,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1698,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1699,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1700,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1701,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1701,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1702,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1703,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1704,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1705,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1706,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1707,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1708,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1709,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1710,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1711,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1712,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1713,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1714,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1715,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1716,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1717,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1718,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1719,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1720,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1721,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1722,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1723,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1724,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1725,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1726,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1727,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1728,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1729,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1730,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1731,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1732,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1733,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1734,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1735,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1736,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1737,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1738,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1739,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1740,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1741,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1742,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1743,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1744,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1745,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1746,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1747,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1748,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1749,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1750,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1751,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1752,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1753,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1754,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1755,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1756,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1757,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1758,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1759,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1760,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1761,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1762,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1763,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,0,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,1,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,2,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1764,3,1,2,39.000000,39.000000,39.000000,39.000000,NULL),(1765,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1765,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1766,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1767,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1768,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1769,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1770,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1771,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1772,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1773,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1774,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1775,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1776,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1777,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1778,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1779,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1780,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1781,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1781,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1782,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1783,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1784,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1785,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1786,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1787,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1788,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1789,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1790,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1791,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1792,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1793,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1794,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1795,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1796,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1797,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1798,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1799,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1800,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1801,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1802,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1803,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1804,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1805,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1806,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1807,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1808,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1809,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1810,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1811,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,0,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,1,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,2,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1812,3,1,2,34.000000,34.000000,34.000000,34.000000,NULL),(1813,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1813,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1814,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1815,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1816,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1817,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,0,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,1,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,2,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1818,3,1,2,39.000000,31.200000,31.200000,39.000000,NULL),(1819,0,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,1,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,2,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1819,3,1,2,39.000000,31.200000,23.400000,31.200000,NULL),(1820,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1820,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1821,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1822,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1823,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1824,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1825,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1826,0,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,1,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,2,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1826,3,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1827,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1827,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1828,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1829,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1830,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1831,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1832,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1833,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1833,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1834,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1834,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1835,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1836,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1837,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1838,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1839,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1840,0,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,1,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,2,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1840,3,1,2,75.000000,60.000000,45.000000,60.000000,NULL),(1841,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1841,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1842,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1843,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1844,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1845,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,0,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,1,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,2,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1846,3,1,2,75.000000,60.000000,60.000000,75.000000,NULL),(1848,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1848,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1849,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1850,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1851,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1852,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,0,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,1,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,2,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1853,3,1,2,59.000000,47.200000,47.200000,59.000000,NULL),(1854,0,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,1,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,2,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1854,3,1,2,59.000000,47.200000,35.400000,47.200000,NULL),(1855,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1855,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1856,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1857,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1858,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1859,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1860,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1861,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1861,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1862,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1862,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1863,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1864,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1865,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1866,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,0,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,1,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,2,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1867,3,1,2,48.000000,38.400000,38.400000,48.000000,NULL),(1868,0,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,1,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,2,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1868,3,1,2,48.000000,38.400000,28.800000,38.400000,NULL),(1869,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1869,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1870,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1871,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1872,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1873,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1874,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1875,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1875,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1876,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1876,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1877,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1878,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1879,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1880,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,0,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,1,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,2,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1881,3,1,2,51.000000,40.800000,40.800000,51.000000,NULL),(1882,0,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,1,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,2,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1882,3,1,2,51.000000,40.800000,30.600000,40.800000,NULL),(1883,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1883,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1884,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1885,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1886,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1887,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,0,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,1,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,2,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1888,3,1,2,42.000000,33.600000,33.600000,42.000000,NULL),(1889,0,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,1,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,2,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1889,3,1,2,42.000000,33.600000,25.200000,33.600000,NULL),(1890,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1890,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1891,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1892,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1893,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1894,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,0,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,1,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,2,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1895,3,1,2,63.000000,50.400000,50.400000,63.000000,NULL),(1896,0,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,1,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,2,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1896,3,1,2,63.000000,50.400000,37.800000,50.400000,NULL),(1897,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1897,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1898,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1899,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1900,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1901,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,0,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,1,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,2,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1902,3,1,2,49.000000,39.200000,39.200000,49.000000,NULL),(1903,0,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,1,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,2,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1903,3,1,2,49.000000,39.200000,29.400000,39.200000,NULL),(1904,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1904,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1905,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1906,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1907,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1908,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1909,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1910,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1911,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1912,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1913,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1914,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1915,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1916,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1917,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1918,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,0,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,1,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,2,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1919,3,1,2,29.000000,29.000000,29.000000,29.000000,NULL),(1920,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1920,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1921,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1922,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1923,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1924,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1925,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1926,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1927,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1928,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1929,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1930,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1931,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1932,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1933,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1934,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1935,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1936,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1936,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1937,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1938,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1939,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1940,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1941,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1942,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1943,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1944,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1945,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1946,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1947,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1948,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1949,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1950,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,0,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,1,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,2,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1951,3,1,2,50.000000,50.000000,50.000000,50.000000,NULL),(1952,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1952,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1953,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1954,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1955,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1956,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1957,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1958,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1959,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1960,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1961,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1962,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1963,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1964,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1965,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1966,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1967,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(1968,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1968,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1969,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1970,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1971,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1972,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1973,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1974,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1975,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1976,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1977,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1978,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1979,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1980,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1981,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1982,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,0,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,1,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,2,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1983,3,1,2,28.000000,28.000000,28.000000,28.000000,NULL),(1984,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1984,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1985,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1986,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1987,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1988,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1989,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,0,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,1,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,2,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1990,3,1,2,42.000000,42.000000,42.000000,42.000000,NULL),(1991,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1991,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1992,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1993,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1994,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1995,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1996,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,0,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,1,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,2,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1997,3,1,2,24.000000,24.000000,24.000000,24.000000,NULL),(1998,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1998,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(1999,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2000,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2001,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2002,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2003,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2004,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2005,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2006,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2007,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2008,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2009,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,0,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,1,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,2,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2010,3,1,2,44.000000,44.000000,44.000000,44.000000,NULL),(2011,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2011,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2012,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2013,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2014,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2015,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2016,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,0,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,1,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,2,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2017,3,1,2,40.000000,40.000000,40.000000,40.000000,NULL),(2018,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2018,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2019,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2020,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2021,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2022,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2023,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,0,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,1,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,2,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2024,3,1,2,49.000000,49.000000,49.000000,49.000000,NULL),(2025,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2025,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2026,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2027,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2028,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2029,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2030,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2031,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2032,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2033,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2034,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2035,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2036,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2037,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2038,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2039,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,0,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,1,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,2,1,2,45.000000,45.000000,45.000000,45.000000,NULL),(2040,3,1,2,45.000000,45.000000,45.000000,45.000000,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_price_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_price_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_price_tmp` (
  `entity_id` int unsigned NOT NULL COMMENT 'Product ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_price_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_price_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_price_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_tier_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_tier_price` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_B5F4EAD8C3E324EFDD39EC478242EB98` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_IDX_TIER_PRICE_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_IDX_TIER_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Tier Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_tier_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_tier_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_tier_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_index_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_index_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_index_website` (
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `default_store_id` smallint unsigned NOT NULL COMMENT 'Default store ID for website',
  `website_date` date DEFAULT NULL COMMENT 'Website Date',
  `rate` float DEFAULT '1' COMMENT 'Rate',
  PRIMARY KEY (`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_IDX_WS_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Website Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_index_website`
--

LOCK TABLES `[[dbprefix]]catalog_product_index_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_website` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_index_website` VALUES (1,1,'[[regdate]]',1);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_index_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `linked_product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Linked Product ID',
  `link_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_LNK_LNK_TYPE_ID_PRD_ID_LNKED_PRD_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_LNK_TYPE_ID_[[DBPREFIX]]CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `[[dbprefix]]catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_LNKED_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2361 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Product Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link`
--

LOCK TABLES `[[dbprefix]]catalog_product_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_link` VALUES (2281,15,16,1),(2282,15,17,1),(2283,15,32,1),(2284,15,34,1),(2289,16,15,1),(2290,16,18,1),(2291,16,24,1),(2292,16,46,1),(2265,17,19,1),(2266,17,24,1),(2267,17,28,1),(2268,17,45,1),(2249,18,15,1),(2250,18,16,1),(2251,18,21,1),(2252,18,24,1),(2273,19,21,1),(2274,19,24,1),(2275,19,32,1),(2276,19,45,1),(2241,20,17,1),(2242,20,19,1),(2243,20,28,1),(2244,20,34,1),(2321,21,15,1),(2322,21,16,1),(2323,21,23,1),(2324,21,46,1),(2353,22,18,1),(2354,22,20,1),(2355,22,23,1),(2356,22,45,1),(2257,23,15,1),(2258,23,20,1),(2259,23,33,1),(2260,23,34,1),(2297,24,20,1),(2298,24,23,1),(2299,24,35,1),(2300,24,46,1),(2305,28,20,1),(2306,28,21,1),(2307,28,22,1),(2308,28,46,1),(2313,32,21,1),(2314,32,22,1),(2315,32,28,1),(2316,32,34,1),(2329,33,15,1),(2330,33,17,1),(2331,33,22,1),(2332,33,34,1),(2337,34,17,1),(2338,34,19,1),(2339,34,23,1),(2340,34,33,1),(2345,35,32,1),(2346,35,33,1),(2347,35,34,1),(2348,35,45,1),(1278,62,510,1),(1277,62,542,1),(1275,62,802,1),(1276,62,867,1),(1286,78,558,1),(1284,78,606,1),(1285,78,828,1),(1283,78,841,1),(1293,94,446,1),(1291,94,622,1),(1294,94,789,1),(1292,94,815,1),(1299,110,462,1),(1300,110,510,1),(1301,110,815,1),(1302,110,828,1),(1308,126,478,1),(1307,126,574,1),(1310,126,737,1),(1309,126,776,1),(1315,142,558,1),(1317,142,622,1),(1318,142,828,1),(1316,142,867,1),(1325,158,558,1),(1326,158,622,1),(1323,158,750,1),(1324,158,841,1),(1331,174,510,1),(1333,174,558,1),(1332,174,763,1),(1334,174,789,1),(1341,190,446,1),(1340,190,526,1),(1342,190,763,1),(1339,190,880,1),(1350,206,446,1),(1348,206,542,1),(1347,206,776,1),(1349,206,880,1),(1355,222,526,1),(1356,222,558,1),(1357,222,815,1),(1358,222,854,1),(1366,238,478,1),(1365,238,606,1),(1363,238,750,1),(1364,238,828,1),(1373,254,478,1),(1371,254,494,1),(1372,254,763,1),(1374,254,867,1),(1379,270,110,1),(1380,270,222,1),(1381,270,789,1),(1382,270,867,1),(1387,286,126,1),(1388,286,206,1),(1389,286,763,1),(1390,286,802,1),(1403,302,78,1),(1404,302,222,1),(1405,302,828,1),(1406,302,880,1),(1419,318,94,1),(1420,318,174,1),(1421,318,802,1),(1422,318,854,1),(1427,334,190,1),(1428,334,238,1),(1429,334,841,1),(1430,334,854,1),(1435,350,142,1),(1436,350,222,1),(1437,350,841,1),(1438,350,854,1),(1443,366,78,1),(1444,366,110,1),(1445,366,737,1),(1446,366,841,1),(1451,382,174,1),(1452,382,238,1),(1453,382,737,1),(1454,382,880,1),(1411,398,142,1),(1412,398,254,1),(1413,398,815,1),(1414,398,841,1),(1395,414,190,1),(1396,414,206,1),(1397,414,815,1),(1398,414,867,1),(1459,430,62,1),(1460,430,190,1),(1461,430,763,1),(1462,430,789,1),(1564,638,478,1),(1565,638,590,1),(1566,638,911,1),(1567,638,1015,1),(1572,654,526,1),(1573,654,606,1),(1574,654,963,1),(1575,654,989,1),(1580,670,510,1),(1581,670,622,1),(1582,670,1015,1),(1583,670,1028,1),(1588,676,510,1),(1589,676,558,1),(1590,676,911,1),(1591,676,989,1),(1596,682,478,1),(1597,682,590,1),(1598,682,898,1),(1599,682,963,1),(1604,688,446,1),(1605,688,590,1),(1606,688,937,1),(1607,688,1002,1),(1612,694,446,1),(1613,694,510,1),(1614,694,898,1),(1615,694,1028,1),(1620,700,510,1),(1621,700,622,1),(1622,700,1015,1),(1623,700,1028,1),(1628,706,606,1),(1629,706,622,1),(1630,706,911,1),(1631,706,976,1),(1636,712,542,1),(1637,712,558,1),(1638,712,893,1),(1639,712,963,1),(1644,718,462,1),(1645,718,478,1),(1646,718,976,1),(1647,718,1028,1),(1652,724,590,1),(1653,724,606,1),(1654,724,963,1),(1655,724,1015,1),(1776,893,446,1),(1777,893,478,1),(1774,893,654,1),(1775,893,676,1),(1785,898,478,1),(1784,898,526,1),(1783,898,654,1),(1782,898,682,1),(1791,911,510,1),(1790,911,590,1),(1792,911,670,1),(1793,911,700,1),(1798,924,526,1),(1801,924,542,1),(1799,924,682,1),(1800,924,712,1),(1807,937,510,1),(1806,937,526,1),(1809,937,682,1),(1808,937,688,1),(1815,950,590,1),(1816,950,606,1),(1817,950,670,1),(1814,950,688,1),(1825,963,446,1),(1823,963,542,1),(1822,963,670,1),(1824,963,700,1),(1831,976,574,1),(1832,976,590,1),(1833,976,654,1),(1830,976,724,1),(1839,989,590,1),(1841,989,622,1),(1840,989,694,1),(1838,989,718,1),(1847,1002,446,1),(1848,1002,494,1),(1846,1002,670,1),(1849,1002,724,1),(1857,1015,542,1),(1854,1015,574,1),(1855,1015,676,1),(1856,1015,700,1),(1862,1028,446,1),(1865,1028,542,1),(1864,1028,682,1),(1863,1028,688,1),(644,1044,1412,1),(645,1044,1588,1),(643,1044,1854,1),(646,1044,1875,1),(652,1060,1428,1),(654,1060,1444,1),(653,1060,1847,1),(651,1060,1882,1),(661,1076,1412,1),(662,1076,1508,1),(659,1076,1889,1),(660,1076,1903,1),(669,1092,1428,1),(668,1092,1508,1),(670,1092,1889,1),(667,1092,1896,1),(676,1108,1492,1),(675,1108,1540,1),(678,1108,1875,1),(677,1108,1889,1),(684,1114,1444,1),(685,1114,1524,1),(686,1114,1868,1),(683,1114,1882,1),(693,1130,1428,1),(694,1130,1588,1),(692,1130,1861,1),(691,1130,1903,1),(702,1146,1412,1),(700,1146,1524,1),(701,1146,1861,1),(699,1146,1882,1),(710,1162,1412,1),(709,1162,1524,1),(707,1162,1833,1),(708,1162,1889,1),(715,1178,1492,1),(717,1178,1556,1),(716,1178,1847,1),(718,1178,1868,1),(726,1194,1444,1),(723,1194,1572,1),(724,1194,1840,1),(725,1194,1847,1),(732,1210,1476,1),(733,1210,1524,1),(734,1210,1819,1),(731,1210,1889,1),(1870,1220,1108,1),(1871,1220,1178,1),(1872,1220,1819,1),(1873,1220,1833,1),(1878,1236,1092,1),(1879,1236,1130,1),(1880,1236,1882,1),(1881,1236,1889,1),(1886,1252,1114,1),(1887,1252,1178,1),(1888,1252,1840,1),(1889,1252,1875,1),(1894,1268,1146,1),(1895,1268,1178,1),(1896,1268,1861,1),(1897,1268,1903,1),(1902,1284,1108,1),(1903,1284,1146,1),(1904,1284,1840,1),(1905,1284,1875,1),(1918,1300,1130,1),(1919,1300,1194,1),(1920,1300,1847,1),(1921,1300,1882,1),(1926,1316,1044,1),(1927,1316,1114,1),(1928,1316,1854,1),(1929,1316,1903,1),(1934,1332,1130,1),(1935,1332,1146,1),(1936,1332,1847,1),(1937,1332,1861,1),(1942,1348,1044,1),(1943,1348,1092,1),(1944,1348,1178,1),(1945,1348,1840,1),(1946,1348,1889,1),(1951,1364,1060,1),(1952,1364,1146,1),(1953,1364,1833,1),(1954,1364,1875,1),(1910,1380,1076,1),(1911,1380,1130,1),(1912,1380,1861,1),(1913,1380,1875,1),(1959,1396,1060,1),(1960,1396,1076,1),(1961,1396,1826,1),(1962,1396,1854,1),(943,1604,1540,1),(944,1604,1572,1),(945,1604,1935,1),(946,1604,1967,1),(951,1620,1444,1),(952,1620,1572,1),(953,1620,1967,1),(954,1620,2017,1),(959,1636,1476,1),(960,1636,1588,1),(961,1636,2017,1),(962,1636,2024,1),(967,1652,1412,1),(968,1652,1556,1),(969,1652,2003,1),(970,1652,2040,1),(975,1668,1412,1),(976,1668,1476,1),(977,1668,1967,1),(978,1668,2017,1),(983,1684,1412,1),(984,1684,1428,1),(985,1684,1919,1),(986,1684,2040,1),(991,1700,1476,1),(992,1700,1492,1),(993,1700,1990,1),(994,1700,2003,1),(999,1716,1492,1),(1000,1716,1524,1),(1001,1716,2010,1),(1002,1716,2040,1),(1007,1732,1540,1),(1008,1732,1572,1),(1009,1732,1951,1),(1010,1732,2040,1),(1015,1748,1412,1),(1016,1748,1444,1),(1017,1748,1919,1),(1018,1748,1990,1),(1023,1764,1492,1),(1024,1764,1572,1),(1025,1764,1919,1),(1026,1764,1951,1),(1031,1780,1428,1),(1032,1780,1588,1),(1033,1780,1935,1),(1034,1780,1983,1),(1039,1796,1524,1),(1040,1796,1556,1),(1041,1796,1990,1),(1042,1796,2024,1),(1047,1812,1412,1),(1048,1812,1476,1),(1049,1812,2010,1),(1050,1812,2017,1),(1181,1919,1508,1),(1182,1919,1540,1),(1180,1919,1668,1),(1179,1919,1780,1),(1190,1935,1460,1),(1189,1935,1572,1),(1188,1935,1716,1),(1187,1935,1748,1),(1197,1951,1524,1),(1198,1951,1572,1),(1196,1951,1652,1),(1195,1951,1780,1),(1206,1967,1428,1),(1205,1967,1508,1),(1203,1967,1620,1),(1204,1967,1732,1),(1211,1983,1460,1),(1212,1983,1476,1),(1214,1983,1604,1),(1213,1983,1780,1),(1222,1990,1460,1),(1221,1990,1636,1),(1219,1990,1716,1),(1220,1990,1732,1),(1228,1997,1508,1),(1229,1997,1588,1),(1227,1997,1652,1),(1230,1997,1748,1),(1235,2003,1508,1),(1236,2003,1540,1),(1237,2003,1620,1),(1238,2003,1764,1),(1245,2010,1508,1),(1246,2010,1540,1),(1244,2010,1716,1),(1243,2010,1748,1),(1254,2017,1524,1),(1253,2017,1556,1),(1252,2017,1668,1),(1251,2017,1716,1),(1261,2024,1412,1),(1262,2024,1556,1),(1259,2024,1620,1),(1260,2024,1716,1),(1268,2040,1428,1),(1267,2040,1508,1),(1270,2040,1764,1),(1269,2040,1812,1),(1,46,33,3),(2,46,34,3),(3,46,35,3),(2106,1,3,4),(2107,1,4,4),(2108,1,5,4),(2109,1,6,4),(2110,1,7,4),(2111,1,12,4),(2112,1,13,4),(2113,1,14,4),(2133,2,1,4),(2134,2,3,4),(2135,2,4,4),(2136,2,5,4),(2137,2,6,4),(2138,2,7,4),(2139,2,11,4),(2140,2,12,4),(2141,2,13,4),(2142,2,14,4),(2123,3,4,4),(2124,3,5,4),(2125,3,6,4),(2126,3,7,4),(2127,3,13,4),(2128,3,14,4),(2147,4,6,4),(2148,4,7,4),(2153,5,6,4),(2154,5,7,4),(2118,6,7,4),(2163,8,1,4),(2164,8,3,4),(2165,8,4,4),(2166,8,5,4),(2167,8,6,4),(2168,8,7,4),(2169,8,11,4),(2170,8,12,4),(2171,8,13,4),(2172,8,14,4),(2177,9,1,4),(2178,9,3,4),(2179,9,4,4),(2180,9,5,4),(2181,9,6,4),(2182,9,7,4),(2183,9,11,4),(2184,9,12,4),(2185,9,13,4),(2186,9,14,4),(2208,10,1,4),(2209,10,3,4),(2210,10,4,4),(2211,10,5,4),(2212,10,6,4),(2213,10,7,4),(2214,10,11,4),(2215,10,12,4),(2216,10,13,4),(2217,10,14,4),(2222,11,1,4),(2223,11,3,4),(2224,11,4,4),(2225,11,5,4),(2226,11,6,4),(2227,11,7,4),(2228,11,12,4),(2229,11,13,4),(2230,11,14,4),(2191,12,3,4),(2192,12,4,4),(2193,12,5,4),(2194,12,6,4),(2195,12,7,4),(2196,12,13,4),(2197,12,14,4),(2235,13,6,4),(2236,13,7,4),(2202,14,6,4),(2203,14,7,4),(1498,446,478,4),(1496,446,606,4),(1497,446,622,4),(1504,462,446,4),(1508,462,478,4),(1509,462,510,4),(1503,462,526,4),(1505,462,542,4),(1506,462,606,4),(1507,462,622,4),(1529,478,606,4),(1530,478,622,4),(1547,494,446,4),(1551,494,478,4),(1552,494,510,4),(1546,494,526,4),(1548,494,542,4),(1549,494,606,4),(1550,494,622,4),(1557,510,478,4),(1558,510,606,4),(1559,510,622,4),(1489,526,478,4),(1490,526,606,4),(1491,526,622,4),(1514,542,478,4),(1515,542,606,4),(1516,542,622,4),(1468,558,446,4),(1472,558,478,4),(1473,558,510,4),(1467,558,526,4),(1469,558,542,4),(1470,558,606,4),(1471,558,622,4),(1479,574,446,4),(1483,574,478,4),(1484,574,510,4),(1478,574,526,4),(1480,574,542,4),(1481,574,606,4),(1482,574,622,4),(1536,590,446,4),(1540,590,478,4),(1541,590,510,4),(1535,590,526,4),(1537,590,542,4),(1538,590,606,4),(1539,590,622,4),(1660,737,750,4),(1661,737,763,4),(1662,737,776,4),(1663,737,789,4),(1664,737,815,4),(1665,737,828,4),(1666,737,841,4),(1667,737,854,4),(1668,737,867,4),(1669,737,880,4),(1674,750,763,4),(1675,750,789,4),(1676,750,815,4),(1677,750,828,4),(1678,750,841,4),(1679,750,854,4),(1680,750,867,4),(1681,750,880,4),(1686,763,789,4),(1687,763,815,4),(1688,763,828,4),(1689,763,841,4),(1690,763,854,4),(1691,763,867,4),(1696,776,750,4),(1697,776,763,4),(1698,776,789,4),(1699,776,815,4),(1700,776,828,4),(1701,776,841,4),(1702,776,854,4),(1703,776,867,4),(1704,776,880,4),(1709,789,815,4),(1710,789,828,4),(1711,789,841,4),(1712,789,854,4),(1713,789,867,4),(1718,802,737,4),(1719,802,750,4),(1720,802,763,4),(1721,802,776,4),(1722,802,789,4),(1723,802,815,4),(1724,802,828,4),(1725,802,841,4),(1726,802,854,4),(1727,802,867,4),(1728,802,880,4),(1733,815,828,4),(1734,815,841,4),(1735,815,867,4),(1744,841,828,4),(1749,854,815,4),(1750,854,828,4),(1751,854,841,4),(1752,854,867,4),(1757,867,828,4),(1758,867,841,4),(1763,880,763,4),(1764,880,789,4),(1765,880,815,4),(1766,880,828,4),(1767,880,841,4),(1768,880,854,4),(1769,880,867,4),(848,1412,1428,4),(849,1412,1444,4),(850,1412,1460,4),(851,1412,1476,4),(852,1412,1524,4),(857,1428,1476,4),(858,1428,1524,4),(863,1444,1476,4),(864,1444,1524,4),(881,1460,1476,4),(882,1460,1524,4),(891,1492,1412,4),(892,1492,1428,4),(893,1492,1444,4),(894,1492,1460,4),(895,1492,1476,4),(896,1492,1524,4),(897,1492,1540,4),(902,1508,1412,4),(903,1508,1428,4),(904,1508,1444,4),(905,1508,1460,4),(906,1508,1476,4),(907,1508,1492,4),(908,1508,1524,4),(909,1508,1540,4),(914,1524,1476,4),(919,1540,1428,4),(920,1540,1444,4),(921,1540,1460,4),(922,1540,1476,4),(923,1540,1524,4),(929,1556,1412,4),(930,1556,1428,4),(931,1556,1444,4),(933,1556,1460,4),(934,1556,1476,4),(935,1556,1492,4),(936,1556,1508,4),(937,1556,1524,4),(938,1556,1540,4),(928,1556,1572,4),(932,1556,1588,4),(836,1572,1412,4),(837,1572,1428,4),(838,1572,1444,4),(839,1572,1460,4),(840,1572,1476,4),(841,1572,1492,4),(842,1572,1524,4),(843,1572,1540,4),(869,1588,1412,4),(870,1588,1428,4),(871,1588,1444,4),(872,1588,1460,4),(873,1588,1476,4),(874,1588,1492,4),(875,1588,1524,4),(876,1588,1540,4),(1055,1819,1826,4),(1056,1819,1833,4),(1057,1819,1840,4),(1058,1819,1847,4),(1059,1819,1854,4),(1060,1819,1861,4),(1061,1819,1868,4),(1062,1819,1875,4),(1063,1819,1882,4),(1064,1819,1889,4),(1065,1819,1896,4),(1066,1819,1903,4),(1071,1826,1833,4),(1072,1826,1840,4),(1073,1826,1847,4),(1074,1826,1854,4),(1075,1826,1861,4),(1076,1826,1868,4),(1077,1826,1875,4),(1078,1826,1882,4),(1079,1826,1896,4),(1080,1826,1903,4),(1085,1833,1840,4),(1086,1833,1847,4),(1087,1833,1854,4),(1088,1833,1875,4),(1089,1833,1882,4),(1090,1833,1896,4),(1091,1833,1903,4),(1104,1854,1840,4),(1105,1854,1847,4),(1106,1854,1896,4),(1111,1861,1840,4),(1112,1861,1847,4),(1113,1861,1854,4),(1114,1861,1875,4),(1115,1861,1882,4),(1116,1861,1896,4),(1117,1861,1903,4),(1122,1868,1840,4),(1123,1868,1847,4),(1124,1868,1854,4),(1125,1868,1875,4),(1126,1868,1882,4),(1127,1868,1896,4),(1128,1868,1903,4),(1133,1875,1840,4),(1134,1875,1847,4),(1135,1875,1854,4),(1136,1875,1896,4),(1141,1882,1840,4),(1142,1882,1847,4),(1143,1882,1854,4),(1144,1882,1896,4),(1149,1889,1833,4),(1150,1889,1840,4),(1151,1889,1847,4),(1152,1889,1854,4),(1153,1889,1861,4),(1154,1889,1868,4),(1155,1889,1875,4),(1156,1889,1882,4),(1157,1889,1896,4),(1158,1889,1903,4),(1163,1896,1840,4),(1164,1896,1847,4),(1169,1903,1840,4),(1170,1903,1847,4),(1171,1903,1854,4),(1172,1903,1875,4),(1173,1903,1882,4),(1174,1903,1896,4),(2116,1,20,5),(2115,1,32,5),(2114,1,34,5),(2117,1,46,5),(2146,2,17,5),(2144,2,19,5),(2143,2,23,5),(2145,2,45,5),(2129,3,15,5),(2132,3,18,5),(2130,3,21,5),(2131,3,35,5),(2149,4,17,5),(2150,4,22,5),(2152,4,24,5),(2151,4,35,5),(2155,5,16,5),(2156,5,35,5),(2157,5,45,5),(2158,5,46,5),(2121,6,17,5),(2119,6,18,5),(2122,6,19,5),(2120,6,23,5),(2161,7,15,5),(2162,7,18,5),(2159,7,22,5),(2160,7,46,5),(2173,8,16,5),(2174,8,28,5),(2175,8,35,5),(2176,8,46,5),(2188,9,20,5),(2189,9,21,5),(2187,9,22,5),(2190,9,28,5),(2219,10,22,5),(2220,10,28,5),(2218,10,33,5),(2221,10,35,5),(2234,11,18,5),(2231,11,21,5),(2233,11,32,5),(2232,11,46,5),(2199,12,21,5),(2198,12,23,5),(2201,12,33,5),(2200,12,35,5),(2239,13,15,5),(2240,13,18,5),(2238,13,32,5),(2237,13,46,5),(2207,14,15,5),(2206,14,18,5),(2205,14,19,5),(2204,14,28,5),(2287,15,16,5),(2288,15,23,5),(2286,15,35,5),(2285,15,45,5),(2296,16,22,5),(2293,16,24,5),(2295,16,28,5),(2294,16,33,5),(2270,17,20,5),(2271,17,22,5),(2272,17,23,5),(2269,17,28,5),(2253,18,20,5),(2255,18,33,5),(2254,18,34,5),(2256,18,46,5),(2277,19,20,5),(2278,19,21,5),(2279,19,34,5),(2280,19,45,5),(2246,20,15,5),(2248,20,22,5),(2245,20,24,5),(2247,20,45,5),(2328,21,23,5),(2326,21,24,5),(2325,21,32,5),(2327,21,45,5),(2360,22,15,5),(2358,22,20,5),(2357,22,23,5),(2359,22,46,5),(2261,23,17,5),(2263,23,20,5),(2262,23,45,5),(2264,23,46,5),(2304,24,19,5),(2302,24,22,5),(2303,24,34,5),(2301,24,46,5),(2309,28,15,5),(2311,28,18,5),(2310,28,21,5),(2312,28,34,5),(2320,32,21,5),(2317,32,22,5),(2318,32,28,5),(2319,32,34,5),(2335,33,15,5),(2336,33,16,5),(2333,33,24,5),(2334,33,46,5),(2342,34,15,5),(2343,34,18,5),(2341,34,21,5),(2344,34,45,5),(2352,35,20,5),(2351,35,24,5),(2350,35,33,5),(2349,35,45,5),(1282,62,15,5),(1279,62,24,5),(1281,62,45,5),(1280,62,46,5),(1290,78,21,5),(1289,78,32,5),(1287,78,45,5),(1288,78,46,5),(1298,94,15,5),(1295,94,33,5),(1297,94,34,5),(1296,94,35,5),(1305,110,17,5),(1304,110,20,5),(1303,110,24,5),(1306,110,34,5),(1311,126,18,5),(1313,126,32,5),(1314,126,34,5),(1312,126,45,5),(1322,142,15,5),(1320,142,17,5),(1319,142,32,5),(1321,142,33,5),(1327,158,15,5),(1328,158,16,5),(1329,158,22,5),(1330,158,45,5),(1337,174,15,5),(1336,174,16,5),(1338,174,23,5),(1335,174,24,5),(1346,190,18,5),(1343,190,21,5),(1345,190,28,5),(1344,190,35,5),(1352,206,20,5),(1351,206,22,5),(1353,206,28,5),(1354,206,34,5),(1359,222,15,5),(1362,222,19,5),(1361,222,23,5),(1360,222,46,5),(1367,238,15,5),(1368,238,28,5),(1369,238,32,5),(1370,238,35,5),(1376,254,18,5),(1375,254,23,5),(1378,254,24,5),(1377,254,34,5),(1385,270,16,5),(1386,270,17,5),(1383,270,28,5),(1384,270,34,5),(1393,286,20,5),(1392,286,22,5),(1394,286,24,5),(1391,286,28,5),(1409,302,20,5),(1407,302,21,5),(1410,302,33,5),(1408,302,46,5),(1425,318,21,5),(1424,318,34,5),(1426,318,35,5),(1423,318,45,5),(1433,334,15,5),(1432,334,32,5),(1431,334,33,5),(1434,334,46,5),(1439,350,15,5),(1440,350,16,5),(1441,350,24,5),(1442,350,34,5),(1450,366,16,5),(1448,366,18,5),(1447,366,21,5),(1449,366,34,5),(1455,382,15,5),(1456,382,20,5),(1457,382,22,5),(1458,382,23,5),(1415,398,21,5),(1417,398,33,5),(1418,398,34,5),(1416,398,46,5),(1401,414,15,5),(1400,414,18,5),(1399,414,32,5),(1402,414,33,5),(1466,430,16,5),(1464,430,24,5),(1465,430,32,5),(1463,430,33,5),(1499,446,15,5),(1500,446,23,5),(1501,446,28,5),(1502,446,32,5),(1511,462,15,5),(1513,462,17,5),(1512,462,23,5),(1510,462,28,5),(1532,478,20,5),(1531,478,21,5),(1533,478,35,5),(1534,478,46,5),(1553,494,15,5),(1554,494,23,5),(1556,494,24,5),(1555,494,32,5),(1560,510,16,5),(1562,510,22,5),(1563,510,28,5),(1561,510,32,5),(1493,526,15,5),(1495,526,18,5),(1492,526,35,5),(1494,526,46,5),(1520,542,18,5),(1517,542,19,5),(1519,542,20,5),(1518,542,35,5),(1474,558,15,5),(1477,558,16,5),(1476,558,19,5),(1475,558,34,5),(1488,574,15,5),(1487,574,16,5),(1485,574,23,5),(1486,574,24,5),(1542,590,20,5),(1543,590,22,5),(1544,590,34,5),(1545,590,46,5),(1521,606,19,5),(1524,606,20,5),(1522,606,32,5),(1523,606,33,5),(1525,622,20,5),(1528,622,28,5),(1526,622,32,5),(1527,622,46,5),(1570,638,20,5),(1571,638,22,5),(1568,638,24,5),(1569,638,46,5),(1576,654,15,5),(1579,654,17,5),(1577,654,22,5),(1578,654,35,5),(1586,670,15,5),(1584,670,16,5),(1587,670,20,5),(1585,670,32,5),(1592,676,16,5),(1595,676,19,5),(1593,676,32,5),(1594,676,33,5),(1603,682,23,5),(1600,682,24,5),(1602,682,35,5),(1601,682,45,5),(1611,688,15,5),(1609,688,16,5),(1610,688,32,5),(1608,688,45,5),(1617,694,22,5),(1619,694,28,5),(1618,694,34,5),(1616,694,46,5),(1624,700,16,5),(1625,700,22,5),(1627,700,32,5),(1626,700,33,5),(1632,706,15,5),(1635,706,17,5),(1633,706,19,5),(1634,706,23,5),(1641,712,16,5),(1640,712,17,5),(1643,712,23,5),(1642,712,35,5),(1650,718,21,5),(1651,718,23,5),(1648,718,24,5),(1649,718,32,5),(1658,724,15,5),(1659,724,17,5),(1657,724,22,5),(1656,724,46,5),(1671,737,16,5),(1670,737,18,5),(1673,737,22,5),(1672,737,35,5),(1682,750,17,5),(1685,750,18,5),(1684,750,23,5),(1683,750,46,5),(1692,763,15,5),(1695,763,22,5),(1693,763,24,5),(1694,763,33,5),(1708,776,19,5),(1705,776,23,5),(1706,776,32,5),(1707,776,33,5),(1714,789,15,5),(1717,789,28,5),(1716,789,34,5),(1715,789,35,5),(1731,802,15,5),(1732,802,17,5),(1730,802,21,5),(1729,802,22,5),(1739,815,23,5),(1736,815,24,5),(1737,815,34,5),(1738,815,45,5),(1742,828,15,5),(1740,828,16,5),(1741,828,24,5),(1743,828,35,5),(1746,841,18,5),(1748,841,19,5),(1747,841,24,5),(1745,841,28,5),(1753,854,15,5),(1755,854,24,5),(1756,854,33,5),(1754,854,45,5),(1762,867,15,5),(1761,867,17,5),(1759,867,20,5),(1760,867,33,5),(1771,880,15,5),(1772,880,19,5),(1770,880,21,5),(1773,880,45,5),(1780,893,17,5),(1781,893,22,5),(1779,893,23,5),(1778,893,45,5),(1786,898,17,5),(1788,898,18,5),(1789,898,21,5),(1787,898,34,5),(1797,911,15,5),(1795,911,18,5),(1794,911,19,5),(1796,911,32,5),(1803,924,15,5),(1804,924,19,5),(1805,924,20,5),(1802,924,45,5),(1812,937,15,5),(1811,937,20,5),(1810,937,22,5),(1813,937,28,5),(1818,950,18,5),(1821,950,19,5),(1820,950,23,5),(1819,950,32,5),(1827,963,15,5),(1828,963,20,5),(1826,963,23,5),(1829,963,33,5),(1834,976,15,5),(1836,976,16,5),(1837,976,22,5),(1835,976,23,5),(1843,989,18,5),(1844,989,19,5),(1845,989,22,5),(1842,989,28,5),(1850,1002,15,5),(1853,1002,16,5),(1851,1002,17,5),(1852,1002,46,5),(1859,1015,15,5),(1858,1015,19,5),(1861,1015,32,5),(1860,1015,35,5),(1869,1028,15,5),(1868,1028,17,5),(1866,1028,20,5),(1867,1028,45,5),(647,1044,15,5),(649,1044,18,5),(648,1044,21,5),(650,1044,32,5),(657,1060,21,5),(658,1060,32,5),(656,1060,33,5),(655,1060,45,5),(666,1076,15,5),(663,1076,19,5),(665,1076,32,5),(664,1076,46,5),(673,1092,15,5),(671,1092,18,5),(674,1092,28,5),(672,1092,35,5),(679,1108,24,5),(681,1108,28,5),(680,1108,35,5),(682,1108,45,5),(689,1114,18,5),(690,1114,28,5),(687,1114,32,5),(688,1114,45,5),(695,1130,21,5),(696,1130,24,5),(697,1130,34,5),(698,1130,35,5),(704,1146,20,5),(705,1146,23,5),(703,1146,32,5),(706,1146,34,5),(712,1162,17,5),(714,1162,28,5),(713,1162,33,5),(711,1162,35,5),(719,1178,20,5),(720,1178,32,5),(721,1178,35,5),(722,1178,45,5),(729,1194,20,5),(727,1194,23,5),(728,1194,24,5),(730,1194,33,5),(735,1210,15,5),(738,1210,19,5),(737,1210,22,5),(736,1210,46,5),(1874,1220,18,5),(1875,1220,19,5),(1876,1220,21,5),(1877,1220,23,5),(1882,1236,15,5),(1883,1236,17,5),(1884,1236,34,5),(1885,1236,35,5),(1890,1252,28,5),(1891,1252,33,5),(1892,1252,34,5),(1893,1252,35,5),(1898,1268,28,5),(1899,1268,32,5),(1900,1268,33,5),(1901,1268,35,5),(1906,1284,15,5),(1907,1284,17,5),(1908,1284,21,5),(1909,1284,35,5),(1922,1300,15,5),(1923,1300,19,5),(1924,1300,22,5),(1925,1300,46,5),(1930,1316,17,5),(1931,1316,18,5),(1932,1316,32,5),(1933,1316,34,5),(1938,1332,21,5),(1939,1332,22,5),(1940,1332,24,5),(1941,1332,46,5),(1947,1348,16,5),(1948,1348,19,5),(1949,1348,22,5),(1950,1348,23,5),(1955,1364,18,5),(1956,1364,19,5),(1957,1364,24,5),(1958,1364,35,5),(1914,1380,15,5),(1915,1380,16,5),(1916,1380,20,5),(1917,1380,35,5),(1963,1396,18,5),(1964,1396,21,5),(1965,1396,22,5),(1966,1396,46,5),(855,1412,16,5),(856,1412,19,5),(854,1412,21,5),(853,1412,28,5),(861,1428,24,5),(860,1428,32,5),(859,1428,33,5),(862,1428,46,5),(866,1444,15,5),(865,1444,18,5),(868,1444,28,5),(867,1444,35,5),(884,1460,15,5),(886,1460,20,5),(885,1460,28,5),(883,1460,45,5),(889,1476,17,5),(887,1476,22,5),(888,1476,24,5),(890,1476,32,5),(898,1492,15,5),(901,1492,28,5),(900,1492,33,5),(899,1492,35,5),(911,1508,17,5),(912,1508,24,5),(913,1508,28,5),(910,1508,46,5),(917,1524,22,5),(918,1524,23,5),(915,1524,24,5),(916,1524,46,5),(926,1540,15,5),(925,1540,18,5),(924,1540,22,5),(927,1540,28,5),(940,1556,15,5),(941,1556,16,5),(942,1556,21,5),(939,1556,35,5),(844,1572,22,5),(846,1572,23,5),(847,1572,28,5),(845,1572,46,5),(880,1588,16,5),(879,1588,17,5),(878,1588,21,5),(877,1588,35,5),(949,1604,16,5),(947,1604,20,5),(948,1604,24,5),(950,1604,35,5),(957,1620,15,5),(956,1620,16,5),(958,1620,33,5),(955,1620,35,5),(966,1636,18,5),(965,1636,28,5),(963,1636,33,5),(964,1636,35,5),(974,1652,15,5),(972,1652,17,5),(973,1652,19,5),(971,1652,23,5),(982,1668,19,5),(980,1668,22,5),(981,1668,32,5),(979,1668,33,5),(987,1684,15,5),(989,1684,16,5),(988,1684,24,5),(990,1684,28,5),(997,1700,20,5),(995,1700,22,5),(996,1700,33,5),(998,1700,45,5),(1003,1716,18,5),(1006,1716,21,5),(1005,1716,22,5),(1004,1716,32,5),(1011,1732,15,5),(1014,1732,17,5),(1012,1732,21,5),(1013,1732,32,5),(1021,1748,16,5),(1022,1748,23,5),(1020,1748,33,5),(1019,1748,46,5),(1029,1764,15,5),(1027,1764,19,5),(1028,1764,20,5),(1030,1764,32,5),(1038,1780,15,5),(1036,1780,20,5),(1037,1780,23,5),(1035,1780,46,5),(1046,1796,15,5),(1045,1796,16,5),(1043,1796,18,5),(1044,1796,35,5),(1054,1812,16,5),(1051,1812,17,5),(1052,1812,21,5),(1053,1812,32,5),(1067,1819,17,5),(1069,1819,20,5),(1068,1819,21,5),(1070,1819,28,5),(1082,1826,15,5),(1084,1826,22,5),(1083,1826,34,5),(1081,1826,35,5),(1095,1833,15,5),(1092,1833,16,5),(1093,1833,18,5),(1094,1833,23,5),(1099,1840,16,5),(1096,1840,17,5),(1098,1840,21,5),(1097,1840,33,5),(1102,1847,15,5),(1100,1847,20,5),(1103,1847,28,5),(1101,1847,32,5),(1108,1854,18,5),(1110,1854,21,5),(1107,1854,23,5),(1109,1854,24,5),(1118,1861,15,5),(1119,1861,20,5),(1121,1861,21,5),(1120,1861,28,5),(1129,1868,15,5),(1130,1868,19,5),(1131,1868,21,5),(1132,1868,22,5),(1140,1875,16,5),(1138,1875,17,5),(1139,1875,21,5),(1137,1875,24,5),(1145,1882,15,5),(1146,1882,20,5),(1148,1882,33,5),(1147,1882,35,5),(1161,1889,17,5),(1159,1889,19,5),(1160,1889,21,5),(1162,1889,23,5),(1166,1896,15,5),(1167,1896,18,5),(1168,1896,32,5),(1165,1896,45,5),(1178,1903,15,5),(1175,1903,16,5),(1177,1903,23,5),(1176,1903,32,5),(1185,1919,18,5),(1184,1919,20,5),(1183,1919,23,5),(1186,1919,33,5),(1191,1935,20,5),(1192,1935,24,5),(1194,1935,28,5),(1193,1935,34,5),(1202,1951,17,5),(1200,1951,22,5),(1201,1951,32,5),(1199,1951,34,5),(1209,1967,19,5),(1210,1967,22,5),(1207,1967,33,5),(1208,1967,45,5),(1217,1983,15,5),(1218,1983,16,5),(1216,1983,19,5),(1215,1983,32,5),(1225,1990,17,5),(1224,1990,23,5),(1223,1990,24,5),(1226,1990,45,5),(1232,1997,15,5),(1231,1997,19,5),(1233,1997,23,5),(1234,1997,35,5),(1240,2003,19,5),(1242,2003,32,5),(1241,2003,35,5),(1239,2003,45,5),(1248,2010,20,5),(1250,2010,34,5),(1247,2010,35,5),(1249,2010,46,5),(1255,2017,15,5),(1256,2017,16,5),(1257,2017,17,5),(1258,2017,20,5),(1266,2024,15,5),(1265,2024,17,5),(1264,2024,20,5),(1263,2024,32,5),(1272,2040,19,5),(1273,2040,21,5),(1274,2040,32,5),(1271,2040,33,5);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link_attribute` (
  `product_link_attribute_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Link Attribute ID',
  `link_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID',
  `product_link_attribute_code` varchar(32) DEFAULT NULL COMMENT 'Product Link Attribute Code',
  `data_type` varchar(32) DEFAULT NULL COMMENT 'Data Type',
  PRIMARY KEY (`product_link_attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `FK_6946D902CC8431204910BA8ACA07646E` FOREIGN KEY (`link_type_id`) REFERENCES `[[dbprefix]]catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link_attribute`
--

LOCK TABLES `[[dbprefix]]catalog_product_link_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_link_attribute` VALUES (1,1,'position','int'),(2,4,'position','int'),(3,5,'position','int'),(4,3,'position','int'),(5,3,'qty','decimal');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link_attribute_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link_attribute_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link_attribute_decimal` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int unsigned NOT NULL COMMENT 'Link ID',
  `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`),
  CONSTRAINT `FK_C7215B63AEA163696BAE20693BBA6320` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `[[dbprefix]]catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_ATTR_DEC_LNK_ID_[[DBPREFIX]]CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `[[dbprefix]]catalog_product_link` (`link_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Decimal Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link_attribute_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_product_link_attribute_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_decimal` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_link_attribute_decimal` VALUES (1,5,1,0.000000),(2,5,2,0.000000),(3,5,3,0.000000);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link_attribute_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link_attribute_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link_attribute_int` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int unsigned NOT NULL COMMENT 'Link ID',
  `value` int NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`),
  CONSTRAINT `FK_C24274BF61458AC4D15D6ACA5E4FFB0D` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `[[dbprefix]]catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_ATTR_INT_LNK_ID_[[DBPREFIX]]CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `[[dbprefix]]catalog_product_link` (`link_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2364 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Integer Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link_attribute_int`
--

LOCK TABLES `[[dbprefix]]catalog_product_link_attribute_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_int` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_link_attribute_int` VALUES (1,4,1,0),(2,4,2,1),(3,4,3,2),(646,1,643,1),(647,1,644,2),(648,1,645,3),(649,1,646,4),(650,3,647,1),(651,3,648,2),(652,3,649,3),(653,3,650,4),(654,1,651,1),(655,1,652,2),(656,1,653,3),(657,1,654,4),(658,3,655,1),(659,3,656,2),(660,3,657,3),(661,3,658,4),(662,1,659,1),(663,1,660,2),(664,1,661,3),(665,1,662,4),(666,3,663,1),(667,3,664,2),(668,3,665,3),(669,3,666,4),(670,1,667,1),(671,1,668,2),(672,1,669,3),(673,1,670,4),(674,3,671,1),(675,3,672,2),(676,3,673,3),(677,3,674,4),(678,1,675,1),(679,1,676,2),(680,1,677,3),(681,1,678,4),(682,3,679,1),(683,3,680,2),(684,3,681,3),(685,3,682,4),(686,1,683,1),(687,1,684,2),(688,1,685,3),(689,1,686,4),(690,3,687,1),(691,3,688,2),(692,3,689,3),(693,3,690,4),(694,1,691,1),(695,1,692,2),(696,1,693,3),(697,1,694,4),(698,3,695,1),(699,3,696,2),(700,3,697,3),(701,3,698,4),(702,1,699,1),(703,1,700,2),(704,1,701,3),(705,1,702,4),(706,3,703,1),(707,3,704,2),(708,3,705,3),(709,3,706,4),(710,1,707,1),(711,1,708,2),(712,1,709,3),(713,1,710,4),(714,3,711,1),(715,3,712,2),(716,3,713,3),(717,3,714,4),(718,1,715,1),(719,1,716,2),(720,1,717,3),(721,1,718,4),(722,3,719,1),(723,3,720,2),(724,3,721,3),(725,3,722,4),(726,1,723,1),(727,1,724,2),(728,1,725,3),(729,1,726,4),(730,3,727,1),(731,3,728,2),(732,3,729,3),(733,3,730,4),(734,1,731,1),(735,1,732,2),(736,1,733,3),(737,1,734,4),(738,3,735,1),(739,3,736,2),(740,3,737,3),(741,3,738,4),(839,2,836,1),(840,2,837,2),(841,2,838,3),(842,2,839,4),(843,2,840,5),(844,2,841,6),(845,2,842,7),(846,2,843,8),(847,3,844,1),(848,3,845,2),(849,3,846,3),(850,3,847,4),(851,2,848,1),(852,2,849,2),(853,2,850,3),(854,2,851,4),(855,2,852,5),(856,3,853,1),(857,3,854,2),(858,3,855,3),(859,3,856,4),(860,2,857,1),(861,2,858,2),(862,3,859,1),(863,3,860,2),(864,3,861,3),(865,3,862,4),(866,2,863,1),(867,2,864,2),(868,3,865,1),(869,3,866,2),(870,3,867,3),(871,3,868,4),(872,2,869,1),(873,2,870,2),(874,2,871,3),(875,2,872,4),(876,2,873,5),(877,2,874,6),(878,2,875,7),(879,2,876,8),(880,3,877,1),(881,3,878,2),(882,3,879,3),(883,3,880,4),(884,2,881,1),(885,2,882,2),(886,3,883,1),(887,3,884,2),(888,3,885,3),(889,3,886,4),(890,3,887,1),(891,3,888,2),(892,3,889,3),(893,3,890,4),(894,2,891,1),(895,2,892,2),(896,2,893,3),(897,2,894,4),(898,2,895,5),(899,2,896,6),(900,2,897,7),(901,3,898,1),(902,3,899,2),(903,3,900,3),(904,3,901,4),(905,2,902,1),(906,2,903,2),(907,2,904,3),(908,2,905,4),(909,2,906,5),(910,2,907,6),(911,2,908,7),(912,2,909,8),(913,3,910,1),(914,3,911,2),(915,3,912,3),(916,3,913,4),(917,2,914,1),(918,3,915,1),(919,3,916,2),(920,3,917,3),(921,3,918,4),(922,2,919,1),(923,2,920,2),(924,2,921,3),(925,2,922,4),(926,2,923,5),(927,3,924,1),(928,3,925,2),(929,3,926,3),(930,3,927,4),(931,2,928,1),(932,2,929,2),(933,2,930,3),(934,2,931,4),(935,2,932,5),(936,2,933,6),(937,2,934,7),(938,2,935,8),(939,2,936,9),(940,2,937,10),(941,2,938,11),(942,3,939,1),(943,3,940,2),(944,3,941,3),(945,3,942,4),(946,1,943,1),(947,1,944,2),(948,1,945,4),(949,1,946,3),(950,3,947,1),(951,3,948,2),(952,3,949,3),(953,3,950,4),(954,1,951,4),(955,1,952,3),(956,1,953,2),(957,1,954,1),(958,3,955,1),(959,3,956,2),(960,3,957,3),(961,3,958,4),(962,1,959,1),(963,1,960,2),(964,1,961,3),(965,1,962,4),(966,3,963,1),(967,3,964,2),(968,3,965,3),(969,3,966,4),(970,1,967,1),(971,1,968,4),(972,1,969,3),(973,1,970,2),(974,3,971,1),(975,3,972,2),(976,3,973,3),(977,3,974,4),(978,1,975,2),(979,1,976,1),(980,1,977,3),(981,1,978,4),(982,3,979,1),(983,3,980,2),(984,3,981,3),(985,3,982,4),(986,1,983,3),(987,1,984,4),(988,1,985,2),(989,1,986,1),(990,3,987,1),(991,3,988,2),(992,3,989,3),(993,3,990,4),(994,1,991,4),(995,1,992,2),(996,1,993,1),(997,1,994,3),(998,3,995,1),(999,3,996,2),(1000,3,997,3),(1001,3,998,4),(1002,1,999,3),(1003,1,1000,2),(1004,1,1001,1),(1005,1,1002,4),(1006,3,1003,1),(1007,3,1004,2),(1008,3,1005,3),(1009,3,1006,4),(1010,1,1007,1),(1011,1,1008,4),(1012,1,1009,2),(1013,1,1010,3),(1014,3,1011,1),(1015,3,1012,2),(1016,3,1013,3),(1017,3,1014,4),(1018,1,1015,3),(1019,1,1016,2),(1020,1,1017,4),(1021,1,1018,1),(1022,3,1019,1),(1023,3,1020,2),(1024,3,1021,3),(1025,3,1022,4),(1026,1,1023,4),(1027,1,1024,3),(1028,1,1025,1),(1029,1,1026,2),(1030,3,1027,1),(1031,3,1028,2),(1032,3,1029,3),(1033,3,1030,4),(1034,1,1031,1),(1035,1,1032,4),(1036,1,1033,3),(1037,1,1034,2),(1038,3,1035,1),(1039,3,1036,2),(1040,3,1037,3),(1041,3,1038,4),(1042,1,1039,4),(1043,1,1040,2),(1044,1,1041,1),(1045,1,1042,3),(1046,3,1043,1),(1047,3,1044,2),(1048,3,1045,3),(1049,3,1046,4),(1050,1,1047,2),(1051,1,1048,4),(1052,1,1049,1),(1053,1,1050,3),(1054,3,1051,1),(1055,3,1052,2),(1056,3,1053,3),(1057,3,1054,4),(1058,2,1055,1),(1059,2,1056,2),(1060,2,1057,3),(1061,2,1058,4),(1062,2,1059,5),(1063,2,1060,6),(1064,2,1061,7),(1065,2,1062,8),(1066,2,1063,9),(1067,2,1064,10),(1068,2,1065,11),(1069,2,1066,12),(1070,3,1067,1),(1071,3,1068,2),(1072,3,1069,3),(1073,3,1070,4),(1074,2,1071,1),(1075,2,1072,2),(1076,2,1073,3),(1077,2,1074,4),(1078,2,1075,5),(1079,2,1076,6),(1080,2,1077,7),(1081,2,1078,8),(1082,2,1079,9),(1083,2,1080,10),(1084,3,1081,1),(1085,3,1082,2),(1086,3,1083,3),(1087,3,1084,4),(1088,2,1085,1),(1089,2,1086,2),(1090,2,1087,3),(1091,2,1088,4),(1092,2,1089,5),(1093,2,1090,6),(1094,2,1091,7),(1095,3,1092,1),(1096,3,1093,2),(1097,3,1094,3),(1098,3,1095,4),(1099,3,1096,1),(1100,3,1097,2),(1101,3,1098,3),(1102,3,1099,4),(1103,3,1100,1),(1104,3,1101,2),(1105,3,1102,3),(1106,3,1103,4),(1107,2,1104,1),(1108,2,1105,2),(1109,2,1106,3),(1110,3,1107,1),(1111,3,1108,2),(1112,3,1109,3),(1113,3,1110,4),(1114,2,1111,1),(1115,2,1112,2),(1116,2,1113,3),(1117,2,1114,4),(1118,2,1115,5),(1119,2,1116,6),(1120,2,1117,7),(1121,3,1118,1),(1122,3,1119,2),(1123,3,1120,3),(1124,3,1121,4),(1125,2,1122,1),(1126,2,1123,2),(1127,2,1124,3),(1128,2,1125,4),(1129,2,1126,5),(1130,2,1127,6),(1131,2,1128,7),(1132,3,1129,1),(1133,3,1130,2),(1134,3,1131,3),(1135,3,1132,4),(1136,2,1133,1),(1137,2,1134,2),(1138,2,1135,3),(1139,2,1136,4),(1140,3,1137,1),(1141,3,1138,2),(1142,3,1139,3),(1143,3,1140,4),(1144,2,1141,1),(1145,2,1142,2),(1146,2,1143,3),(1147,2,1144,4),(1148,3,1145,1),(1149,3,1146,2),(1150,3,1147,3),(1151,3,1148,4),(1152,2,1149,1),(1153,2,1150,2),(1154,2,1151,3),(1155,2,1152,4),(1156,2,1153,5),(1157,2,1154,6),(1158,2,1155,7),(1159,2,1156,8),(1160,2,1157,9),(1161,2,1158,10),(1162,3,1159,1),(1163,3,1160,2),(1164,3,1161,3),(1165,3,1162,4),(1166,2,1163,1),(1167,2,1164,2),(1168,3,1165,1),(1169,3,1166,2),(1170,3,1167,3),(1171,3,1168,4),(1172,2,1169,1),(1173,2,1170,2),(1174,2,1171,3),(1175,2,1172,4),(1176,2,1173,5),(1177,2,1174,6),(1178,3,1175,1),(1179,3,1176,2),(1180,3,1177,3),(1181,3,1178,4),(1182,1,1179,1),(1183,1,1180,2),(1184,1,1181,3),(1185,1,1182,4),(1186,3,1183,1),(1187,3,1184,2),(1188,3,1185,3),(1189,3,1186,4),(1190,1,1187,1),(1191,1,1188,2),(1192,1,1189,3),(1193,1,1190,4),(1194,3,1191,1),(1195,3,1192,2),(1196,3,1193,3),(1197,3,1194,4),(1198,1,1195,1),(1199,1,1196,2),(1200,1,1197,3),(1201,1,1198,4),(1202,3,1199,1),(1203,3,1200,2),(1204,3,1201,3),(1205,3,1202,4),(1206,1,1203,1),(1207,1,1204,2),(1208,1,1205,3),(1209,1,1206,4),(1210,3,1207,1),(1211,3,1208,2),(1212,3,1209,3),(1213,3,1210,4),(1214,1,1211,1),(1215,1,1212,2),(1216,1,1213,3),(1217,1,1214,4),(1218,3,1215,1),(1219,3,1216,2),(1220,3,1217,3),(1221,3,1218,4),(1222,1,1219,1),(1223,1,1220,2),(1224,1,1221,3),(1225,1,1222,4),(1226,3,1223,1),(1227,3,1224,2),(1228,3,1225,3),(1229,3,1226,4),(1230,1,1227,1),(1231,1,1228,2),(1232,1,1229,3),(1233,1,1230,4),(1234,3,1231,1),(1235,3,1232,2),(1236,3,1233,3),(1237,3,1234,4),(1238,1,1235,1),(1239,1,1236,2),(1240,1,1237,3),(1241,1,1238,4),(1242,3,1239,1),(1243,3,1240,2),(1244,3,1241,3),(1245,3,1242,4),(1246,1,1243,1),(1247,1,1244,2),(1248,1,1245,3),(1249,1,1246,4),(1250,3,1247,1),(1251,3,1248,2),(1252,3,1249,3),(1253,3,1250,4),(1254,1,1251,1),(1255,1,1252,2),(1256,1,1253,3),(1257,1,1254,4),(1258,3,1255,1),(1259,3,1256,2),(1260,3,1257,3),(1261,3,1258,4),(1262,1,1259,1),(1263,1,1260,2),(1264,1,1261,3),(1265,1,1262,4),(1266,3,1263,1),(1267,3,1264,2),(1268,3,1265,3),(1269,3,1266,4),(1270,1,1267,1),(1271,1,1268,2),(1272,1,1269,3),(1273,1,1270,4),(1274,3,1271,1),(1275,3,1272,2),(1276,3,1273,3),(1277,3,1274,4),(1278,1,1275,1),(1279,1,1276,2),(1280,1,1277,3),(1281,1,1278,4),(1282,3,1279,1),(1283,3,1280,2),(1284,3,1281,3),(1285,3,1282,4),(1286,1,1283,1),(1287,1,1284,2),(1288,1,1285,3),(1289,1,1286,4),(1290,3,1287,1),(1291,3,1288,2),(1292,3,1289,3),(1293,3,1290,4),(1294,1,1291,1),(1295,1,1292,2),(1296,1,1293,3),(1297,1,1294,4),(1298,3,1295,1),(1299,3,1296,2),(1300,3,1297,3),(1301,3,1298,4),(1302,1,1299,1),(1303,1,1300,2),(1304,1,1301,3),(1305,1,1302,4),(1306,3,1303,1),(1307,3,1304,2),(1308,3,1305,3),(1309,3,1306,4),(1310,1,1307,1),(1311,1,1308,2),(1312,1,1309,3),(1313,1,1310,4),(1314,3,1311,1),(1315,3,1312,2),(1316,3,1313,3),(1317,3,1314,4),(1318,1,1315,1),(1319,1,1316,2),(1320,1,1317,3),(1321,1,1318,4),(1322,3,1319,1),(1323,3,1320,2),(1324,3,1321,3),(1325,3,1322,4),(1326,1,1323,1),(1327,1,1324,2),(1328,1,1325,3),(1329,1,1326,4),(1330,3,1327,1),(1331,3,1328,2),(1332,3,1329,3),(1333,3,1330,4),(1334,1,1331,1),(1335,1,1332,2),(1336,1,1333,3),(1337,1,1334,4),(1338,3,1335,1),(1339,3,1336,2),(1340,3,1337,3),(1341,3,1338,4),(1342,1,1339,1),(1343,1,1340,2),(1344,1,1341,3),(1345,1,1342,4),(1346,3,1343,1),(1347,3,1344,2),(1348,3,1345,3),(1349,3,1346,4),(1350,1,1347,1),(1351,1,1348,2),(1352,1,1349,3),(1353,1,1350,4),(1354,3,1351,1),(1355,3,1352,2),(1356,3,1353,3),(1357,3,1354,4),(1358,1,1355,1),(1359,1,1356,2),(1360,1,1357,3),(1361,1,1358,4),(1362,3,1359,1),(1363,3,1360,2),(1364,3,1361,3),(1365,3,1362,4),(1366,1,1363,1),(1367,1,1364,2),(1368,1,1365,3),(1369,1,1366,4),(1370,3,1367,1),(1371,3,1368,2),(1372,3,1369,3),(1373,3,1370,4),(1374,1,1371,1),(1375,1,1372,2),(1376,1,1373,3),(1377,1,1374,4),(1378,3,1375,1),(1379,3,1376,2),(1380,3,1377,3),(1381,3,1378,4),(1382,1,1379,3),(1383,1,1380,4),(1384,1,1381,2),(1385,1,1382,1),(1386,3,1383,1),(1387,3,1384,2),(1388,3,1385,3),(1389,3,1386,4),(1390,1,1387,2),(1391,1,1388,1),(1392,1,1389,4),(1393,1,1390,3),(1394,3,1391,1),(1395,3,1392,2),(1396,3,1393,3),(1397,3,1394,4),(1398,1,1395,3),(1399,1,1396,1),(1400,1,1397,4),(1401,1,1398,2),(1402,3,1399,1),(1403,3,1400,2),(1404,3,1401,3),(1405,3,1402,4),(1406,1,1403,3),(1407,1,1404,2),(1408,1,1405,4),(1409,1,1406,1),(1410,3,1407,1),(1411,3,1408,2),(1412,3,1409,3),(1413,3,1410,4),(1414,1,1411,1),(1415,1,1412,3),(1416,1,1413,2),(1417,1,1414,4),(1418,3,1415,1),(1419,3,1416,2),(1420,3,1417,3),(1421,3,1418,4),(1422,1,1419,4),(1423,1,1420,3),(1424,1,1421,2),(1425,1,1422,1),(1426,3,1423,1),(1427,3,1424,2),(1428,3,1425,3),(1429,3,1426,4),(1430,1,1427,4),(1431,1,1428,2),(1432,1,1429,3),(1433,1,1430,1),(1434,3,1431,1),(1435,3,1432,2),(1436,3,1433,3),(1437,3,1434,4),(1438,1,1435,4),(1439,1,1436,2),(1440,1,1437,1),(1441,1,1438,3),(1442,3,1439,1),(1443,3,1440,2),(1444,3,1441,3),(1445,3,1442,4),(1446,1,1443,3),(1447,1,1444,4),(1448,1,1445,1),(1449,1,1446,2),(1450,3,1447,1),(1451,3,1448,2),(1452,3,1449,3),(1453,3,1450,4),(1454,1,1451,4),(1455,1,1452,3),(1456,1,1453,1),(1457,1,1454,2),(1458,3,1455,1),(1459,3,1456,2),(1460,3,1457,3),(1461,3,1458,4),(1462,1,1459,2),(1463,1,1460,1),(1464,1,1461,3),(1465,1,1462,4),(1466,3,1463,1),(1467,3,1464,2),(1468,3,1465,3),(1469,3,1466,4),(1470,2,1467,1),(1471,2,1468,2),(1472,2,1469,3),(1473,2,1470,4),(1474,2,1471,5),(1475,2,1472,6),(1476,2,1473,7),(1477,3,1474,1),(1478,3,1475,2),(1479,3,1476,3),(1480,3,1477,4),(1481,2,1478,1),(1482,2,1479,2),(1483,2,1480,3),(1484,2,1481,4),(1485,2,1482,5),(1486,2,1483,6),(1487,2,1484,7),(1488,3,1485,1),(1489,3,1486,2),(1490,3,1487,3),(1491,3,1488,4),(1492,2,1489,3),(1493,2,1490,1),(1494,2,1491,2),(1495,3,1492,1),(1496,3,1493,2),(1497,3,1494,3),(1498,3,1495,4),(1499,2,1496,1),(1500,2,1497,2),(1501,2,1498,3),(1502,3,1499,1),(1503,3,1500,2),(1504,3,1501,3),(1505,3,1502,4),(1506,2,1503,1),(1507,2,1504,2),(1508,2,1505,3),(1509,2,1506,4),(1510,2,1507,5),(1511,2,1508,6),(1512,2,1509,7),(1513,3,1510,1),(1514,3,1511,2),(1515,3,1512,3),(1516,3,1513,4),(1517,2,1514,3),(1518,2,1515,1),(1519,2,1516,2),(1520,3,1517,1),(1521,3,1518,2),(1522,3,1519,3),(1523,3,1520,4),(1524,3,1521,1),(1525,3,1522,2),(1526,3,1523,3),(1527,3,1524,4),(1528,3,1525,1),(1529,3,1526,2),(1530,3,1527,3),(1531,3,1528,4),(1532,2,1529,1),(1533,2,1530,2),(1534,3,1531,1),(1535,3,1532,2),(1536,3,1533,3),(1537,3,1534,4),(1538,2,1535,1),(1539,2,1536,2),(1540,2,1537,3),(1541,2,1538,4),(1542,2,1539,5),(1543,2,1540,6),(1544,2,1541,7),(1545,3,1542,1),(1546,3,1543,2),(1547,3,1544,3),(1548,3,1545,4),(1549,2,1546,1),(1550,2,1547,2),(1551,2,1548,3),(1552,2,1549,4),(1553,2,1550,5),(1554,2,1551,6),(1555,2,1552,7),(1556,3,1553,1),(1557,3,1554,2),(1558,3,1555,3),(1559,3,1556,4),(1560,2,1557,3),(1561,2,1558,1),(1562,2,1559,2),(1563,3,1560,1),(1564,3,1561,2),(1565,3,1562,3),(1566,3,1563,4),(1567,1,1564,2),(1568,1,1565,4),(1569,1,1566,1),(1570,1,1567,3),(1571,3,1568,1),(1572,3,1569,2),(1573,3,1570,3),(1574,3,1571,4),(1575,1,1572,3),(1576,1,1573,2),(1577,1,1574,1),(1578,1,1575,4),(1579,3,1576,1),(1580,3,1577,2),(1581,3,1578,3),(1582,3,1579,4),(1583,1,1580,2),(1584,1,1581,1),(1585,1,1582,3),(1586,1,1583,4),(1587,3,1584,1),(1588,3,1585,2),(1589,3,1586,3),(1590,3,1587,4),(1591,1,1588,1),(1592,1,1589,3),(1593,1,1590,2),(1594,1,1591,4),(1595,3,1592,1),(1596,3,1593,2),(1597,3,1594,3),(1598,3,1595,4),(1599,1,1596,1),(1600,1,1597,2),(1601,1,1598,4),(1602,1,1599,3),(1603,3,1600,1),(1604,3,1601,2),(1605,3,1602,3),(1606,3,1603,4),(1607,1,1604,1),(1608,1,1605,2),(1609,1,1606,4),(1610,1,1607,3),(1611,3,1608,1),(1612,3,1609,2),(1613,3,1610,3),(1614,3,1611,4),(1615,1,1612,4),(1616,1,1613,3),(1617,1,1614,1),(1618,1,1615,2),(1619,3,1616,1),(1620,3,1617,2),(1621,3,1618,3),(1622,3,1619,4),(1623,1,1620,2),(1624,1,1621,3),(1625,1,1622,4),(1626,1,1623,1),(1627,3,1624,1),(1628,3,1625,2),(1629,3,1626,3),(1630,3,1627,4),(1631,1,1628,2),(1632,1,1629,1),(1633,1,1630,4),(1634,1,1631,3),(1635,3,1632,1),(1636,3,1633,2),(1637,3,1634,3),(1638,3,1635,4),(1639,1,1636,1),(1640,1,1637,2),(1641,1,1638,3),(1642,1,1639,4),(1643,3,1640,1),(1644,3,1641,2),(1645,3,1642,3),(1646,3,1643,4),(1647,1,1644,1),(1648,1,1645,3),(1649,1,1646,4),(1650,1,1647,2),(1651,3,1648,1),(1652,3,1649,2),(1653,3,1650,3),(1654,3,1651,4),(1655,1,1652,2),(1656,1,1653,1),(1657,1,1654,4),(1658,1,1655,3),(1659,3,1656,1),(1660,3,1657,2),(1661,3,1658,3),(1662,3,1659,4),(1663,2,1660,1),(1664,2,1661,2),(1665,2,1662,3),(1666,2,1663,4),(1667,2,1664,5),(1668,2,1665,6),(1669,2,1666,7),(1670,2,1667,8),(1671,2,1668,9),(1672,2,1669,10),(1673,3,1670,1),(1674,3,1671,2),(1675,3,1672,3),(1676,3,1673,4),(1677,2,1674,1),(1678,2,1675,2),(1679,2,1676,3),(1680,2,1677,4),(1681,2,1678,5),(1682,2,1679,6),(1683,2,1680,7),(1684,2,1681,8),(1685,3,1682,1),(1686,3,1683,2),(1687,3,1684,3),(1688,3,1685,4),(1689,2,1686,1),(1690,2,1687,2),(1691,2,1688,3),(1692,2,1689,4),(1693,2,1690,5),(1694,2,1691,6),(1695,3,1692,1),(1696,3,1693,2),(1697,3,1694,3),(1698,3,1695,4),(1699,2,1696,1),(1700,2,1697,2),(1701,2,1698,3),(1702,2,1699,4),(1703,2,1700,5),(1704,2,1701,6),(1705,2,1702,7),(1706,2,1703,8),(1707,2,1704,9),(1708,3,1705,1),(1709,3,1706,2),(1710,3,1707,3),(1711,3,1708,4),(1712,2,1709,1),(1713,2,1710,2),(1714,2,1711,3),(1715,2,1712,4),(1716,2,1713,5),(1717,3,1714,1),(1718,3,1715,2),(1719,3,1716,3),(1720,3,1717,4),(1721,2,1718,1),(1722,2,1719,2),(1723,2,1720,3),(1724,2,1721,4),(1725,2,1722,5),(1726,2,1723,6),(1727,2,1724,7),(1728,2,1725,8),(1729,2,1726,9),(1730,2,1727,10),(1731,2,1728,11),(1732,3,1729,1),(1733,3,1730,2),(1734,3,1731,3),(1735,3,1732,4),(1736,2,1733,1),(1737,2,1734,2),(1738,2,1735,3),(1739,3,1736,1),(1740,3,1737,2),(1741,3,1738,3),(1742,3,1739,4),(1743,3,1740,1),(1744,3,1741,2),(1745,3,1742,3),(1746,3,1743,4),(1747,2,1744,1),(1748,3,1745,1),(1749,3,1746,2),(1750,3,1747,3),(1751,3,1748,4),(1752,2,1749,1),(1753,2,1750,2),(1754,2,1751,3),(1755,2,1752,4),(1756,3,1753,1),(1757,3,1754,2),(1758,3,1755,3),(1759,3,1756,4),(1760,2,1757,1),(1761,2,1758,2),(1762,3,1759,1),(1763,3,1760,2),(1764,3,1761,3),(1765,3,1762,4),(1766,2,1763,1),(1767,2,1764,2),(1768,2,1765,3),(1769,2,1766,4),(1770,2,1767,5),(1771,2,1768,6),(1772,2,1769,7),(1773,3,1770,1),(1774,3,1771,2),(1775,3,1772,3),(1776,3,1773,4),(1777,1,1774,1),(1778,1,1775,2),(1779,1,1776,3),(1780,1,1777,4),(1781,3,1778,1),(1782,3,1779,2),(1783,3,1780,3),(1784,3,1781,4),(1785,1,1782,1),(1786,1,1783,2),(1787,1,1784,3),(1788,1,1785,4),(1789,3,1786,1),(1790,3,1787,2),(1791,3,1788,3),(1792,3,1789,4),(1793,1,1790,1),(1794,1,1791,2),(1795,1,1792,3),(1796,1,1793,4),(1797,3,1794,1),(1798,3,1795,2),(1799,3,1796,3),(1800,3,1797,4),(1801,1,1798,1),(1802,1,1799,2),(1803,1,1800,3),(1804,1,1801,4),(1805,3,1802,1),(1806,3,1803,2),(1807,3,1804,3),(1808,3,1805,4),(1809,1,1806,1),(1810,1,1807,2),(1811,1,1808,3),(1812,1,1809,4),(1813,3,1810,1),(1814,3,1811,2),(1815,3,1812,3),(1816,3,1813,4),(1817,1,1814,1),(1818,1,1815,2),(1819,1,1816,3),(1820,1,1817,4),(1821,3,1818,1),(1822,3,1819,2),(1823,3,1820,3),(1824,3,1821,4),(1825,1,1822,1),(1826,1,1823,2),(1827,1,1824,3),(1828,1,1825,4),(1829,3,1826,1),(1830,3,1827,2),(1831,3,1828,3),(1832,3,1829,4),(1833,1,1830,1),(1834,1,1831,2),(1835,1,1832,3),(1836,1,1833,4),(1837,3,1834,1),(1838,3,1835,2),(1839,3,1836,3),(1840,3,1837,4),(1841,1,1838,1),(1842,1,1839,2),(1843,1,1840,3),(1844,1,1841,4),(1845,3,1842,1),(1846,3,1843,2),(1847,3,1844,3),(1848,3,1845,4),(1849,1,1846,1),(1850,1,1847,2),(1851,1,1848,3),(1852,1,1849,4),(1853,3,1850,1),(1854,3,1851,2),(1855,3,1852,3),(1856,3,1853,4),(1857,1,1854,1),(1858,1,1855,2),(1859,1,1856,3),(1860,1,1857,4),(1861,3,1858,1),(1862,3,1859,2),(1863,3,1860,3),(1864,3,1861,4),(1865,1,1862,1),(1866,1,1863,2),(1867,1,1864,3),(1868,1,1865,4),(1869,3,1866,1),(1870,3,1867,2),(1871,3,1868,3),(1872,3,1869,4),(1873,1,1870,1),(1874,1,1871,2),(1875,1,1872,3),(1876,1,1873,4),(1877,3,1874,2),(1878,3,1875,4),(1879,3,1876,3),(1880,3,1877,1),(1881,1,1878,4),(1882,1,1879,2),(1883,1,1880,1),(1884,1,1881,3),(1885,3,1882,1),(1886,3,1883,2),(1887,3,1884,4),(1888,3,1885,3),(1889,1,1886,2),(1890,1,1887,1),(1891,1,1888,3),(1892,1,1889,4),(1893,3,1890,4),(1894,3,1891,2),(1895,3,1892,3),(1896,3,1893,1),(1897,1,1894,2),(1898,1,1895,3),(1899,1,1896,1),(1900,1,1897,4),(1901,3,1898,2),(1902,3,1899,4),(1903,3,1900,1),(1904,3,1901,3),(1905,1,1902,3),(1906,1,1903,4),(1907,1,1904,2),(1908,1,1905,1),(1909,3,1906,1),(1910,3,1907,3),(1911,3,1908,4),(1912,3,1909,2),(1913,1,1910,3),(1914,1,1911,4),(1915,1,1912,2),(1916,1,1913,1),(1917,3,1914,2),(1918,3,1915,1),(1919,3,1916,4),(1920,3,1917,3),(1921,1,1918,1),(1922,1,1919,3),(1923,1,1920,2),(1924,1,1921,4),(1925,3,1922,1),(1926,3,1923,3),(1927,3,1924,4),(1928,3,1925,2),(1929,1,1926,4),(1930,1,1927,3),(1931,1,1928,1),(1932,1,1929,2),(1933,3,1930,1),(1934,3,1931,4),(1935,3,1932,2),(1936,3,1933,3),(1937,1,1934,3),(1938,1,1935,2),(1939,1,1936,1),(1940,1,1937,4),(1941,3,1938,1),(1942,3,1939,4),(1943,3,1940,3),(1944,3,1941,2),(1945,1,1942,3),(1946,1,1943,4),(1947,1,1944,5),(1948,1,1945,1),(1949,1,1946,2),(1950,3,1947,3),(1951,3,1948,1),(1952,3,1949,4),(1953,3,1950,2),(1954,1,1951,2),(1955,1,1952,4),(1956,1,1953,3),(1957,1,1954,1),(1958,3,1955,1),(1959,3,1956,2),(1960,3,1957,4),(1961,3,1958,3),(1962,1,1959,3),(1963,1,1960,4),(1964,1,1961,2),(1965,1,1962,1),(1966,3,1963,1),(1967,3,1964,3),(1968,3,1965,2),(1969,3,1966,4),(2109,2,2106,2),(2110,2,2107,3),(2111,2,2108,4),(2112,2,2109,1),(2113,2,2110,5),(2114,2,2111,6),(2115,2,2112,8),(2116,2,2113,7),(2117,3,2114,1),(2118,3,2115,2),(2119,3,2116,3),(2120,3,2117,4),(2121,2,2118,1),(2122,3,2119,1),(2123,3,2120,2),(2124,3,2121,3),(2125,3,2122,4),(2126,2,2123,2),(2127,2,2124,3),(2128,2,2125,1),(2129,2,2126,4),(2130,2,2127,6),(2131,2,2128,5),(2132,3,2129,1),(2133,3,2130,2),(2134,3,2131,3),(2135,3,2132,4),(2136,2,2133,1),(2137,2,2134,3),(2138,2,2135,4),(2139,2,2136,5),(2140,2,2137,2),(2141,2,2138,6),(2142,2,2139,9),(2143,2,2140,7),(2144,2,2141,10),(2145,2,2142,8),(2146,3,2143,1),(2147,3,2144,2),(2148,3,2145,3),(2149,3,2146,4),(2150,2,2147,1),(2151,2,2148,2),(2152,3,2149,1),(2153,3,2150,2),(2154,3,2151,3),(2155,3,2152,4),(2156,2,2153,1),(2157,2,2154,2),(2158,3,2155,1),(2159,3,2156,2),(2160,3,2157,3),(2161,3,2158,4),(2162,3,2159,1),(2163,3,2160,2),(2164,3,2161,3),(2165,3,2162,4),(2166,2,2163,1),(2167,2,2164,3),(2168,2,2165,4),(2169,2,2166,5),(2170,2,2167,2),(2171,2,2168,6),(2172,2,2169,9),(2173,2,2170,7),(2174,2,2171,10),(2175,2,2172,8),(2176,3,2173,1),(2177,3,2174,2),(2178,3,2175,3),(2179,3,2176,4),(2180,2,2177,1),(2181,2,2178,3),(2182,2,2179,4),(2183,2,2180,5),(2184,2,2181,2),(2185,2,2182,6),(2186,2,2183,9),(2187,2,2184,7),(2188,2,2185,10),(2189,2,2186,8),(2190,3,2187,1),(2191,3,2188,2),(2192,3,2189,3),(2193,3,2190,4),(2194,2,2191,2),(2195,2,2192,3),(2196,2,2193,4),(2197,2,2194,1),(2198,2,2195,5),(2199,2,2196,7),(2200,2,2197,6),(2201,3,2198,1),(2202,3,2199,2),(2203,3,2200,3),(2204,3,2201,4),(2205,2,2202,1),(2206,2,2203,2),(2207,3,2204,1),(2208,3,2205,2),(2209,3,2206,3),(2210,3,2207,4),(2211,2,2208,1),(2212,2,2209,3),(2213,2,2210,4),(2214,2,2211,5),(2215,2,2212,2),(2216,2,2213,6),(2217,2,2214,9),(2218,2,2215,7),(2219,2,2216,10),(2220,2,2217,8),(2221,3,2218,1),(2222,3,2219,2),(2223,3,2220,3),(2224,3,2221,4),(2225,2,2222,1),(2226,2,2223,3),(2227,2,2224,4),(2228,2,2225,5),(2229,2,2226,2),(2230,2,2227,6),(2231,2,2228,7),(2232,2,2229,9),(2233,2,2230,8),(2234,3,2231,1),(2235,3,2232,2),(2236,3,2233,3),(2237,3,2234,4),(2238,2,2235,1),(2239,2,2236,2),(2240,3,2237,1),(2241,3,2238,2),(2242,3,2239,3),(2243,3,2240,4),(2244,1,2241,2),(2245,1,2242,4),(2246,1,2243,3),(2247,1,2244,1),(2248,3,2245,1),(2249,3,2246,2),(2250,3,2247,3),(2251,3,2248,4),(2252,1,2249,1),(2253,1,2250,2),(2254,1,2251,3),(2255,1,2252,4),(2256,3,2253,1),(2257,3,2254,2),(2258,3,2255,3),(2259,3,2256,4),(2260,1,2257,1),(2261,1,2258,2),(2262,1,2259,4),(2263,1,2260,3),(2264,3,2261,1),(2265,3,2262,2),(2266,3,2263,3),(2267,3,2264,4),(2268,1,2265,4),(2269,1,2266,1),(2270,1,2267,2),(2271,1,2268,3),(2272,3,2269,1),(2273,3,2270,2),(2274,3,2271,3),(2275,3,2272,4),(2276,1,2273,3),(2277,1,2274,2),(2278,1,2275,4),(2279,1,2276,1),(2280,3,2277,1),(2281,3,2278,2),(2282,3,2279,3),(2283,3,2280,4),(2284,1,2281,4),(2285,1,2282,1),(2286,1,2283,3),(2287,1,2284,2),(2288,3,2285,1),(2289,3,2286,2),(2290,3,2287,3),(2291,3,2288,4),(2292,1,2289,4),(2293,1,2290,2),(2294,1,2291,1),(2295,1,2292,3),(2296,3,2293,1),(2297,3,2294,2),(2298,3,2295,3),(2299,3,2296,4),(2300,1,2297,2),(2301,1,2298,3),(2302,1,2299,4),(2303,1,2300,1),(2304,3,2301,1),(2305,3,2302,2),(2306,3,2303,3),(2307,3,2304,4),(2308,1,2305,1),(2309,1,2306,4),(2310,1,2307,3),(2311,1,2308,2),(2312,3,2309,1),(2313,3,2310,2),(2314,3,2311,3),(2315,3,2312,4),(2316,1,2313,3),(2317,1,2314,1),(2318,1,2315,2),(2319,1,2316,4),(2320,3,2317,1),(2321,3,2318,2),(2322,3,2319,3),(2323,3,2320,4),(2324,1,2321,1),(2325,1,2322,4),(2326,1,2323,3),(2327,1,2324,2),(2328,3,2325,1),(2329,3,2326,2),(2330,3,2327,3),(2331,3,2328,4),(2332,1,2329,4),(2333,1,2330,1),(2334,1,2331,3),(2335,1,2332,2),(2336,3,2333,1),(2337,3,2334,2),(2338,3,2335,3),(2339,3,2336,4),(2340,1,2337,2),(2341,1,2338,3),(2342,1,2339,1),(2343,1,2340,4),(2344,3,2341,1),(2345,3,2342,2),(2346,3,2343,3),(2347,3,2344,4),(2348,1,2345,4),(2349,1,2346,1),(2350,1,2347,2),(2351,1,2348,3),(2352,3,2349,1),(2353,3,2350,2),(2354,3,2351,3),(2355,3,2352,4),(2356,1,2353,4),(2357,1,2354,1),(2358,1,2355,2),(2359,1,2356,3),(2360,3,2357,1),(2361,3,2358,2),(2362,3,2359,3),(2363,3,2360,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link_attribute_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link_attribute_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link_attribute_varchar` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product Link Attribute ID',
  `link_id` int unsigned NOT NULL COMMENT 'Link ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`),
  CONSTRAINT `FK_354A177E3753C94DD1197BA543387F14` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `[[dbprefix]]catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_LNK_ATTR_VCHR_LNK_ID_[[DBPREFIX]]CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `[[dbprefix]]catalog_product_link` (`link_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Varchar Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link_attribute_varchar`
--

LOCK TABLES `[[dbprefix]]catalog_product_link_attribute_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_attribute_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_link_type`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_link_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_link_type` (
  `link_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link Type ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  PRIMARY KEY (`link_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_link_type`
--

LOCK TABLES `[[dbprefix]]catalog_product_link_type` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_type` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_link_type` VALUES (1,'relation'),(3,'super'),(4,'up_sell'),(5,'cross_sell');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_link_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `type` varchar(50) DEFAULT NULL COMMENT 'Type',
  `is_require` smallint NOT NULL DEFAULT '1' COMMENT 'Is Required',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `max_characters` int unsigned DEFAULT NULL COMMENT 'Max Characters',
  `file_extension` varchar(50) DEFAULT NULL COMMENT 'File Extension',
  `image_size_x` smallint unsigned DEFAULT NULL COMMENT 'Image Size X',
  `image_size_y` smallint unsigned DEFAULT NULL COMMENT 'Image Size Y',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option`
--

LOCK TABLES `[[dbprefix]]catalog_product_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option_price` (
  `option_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Price ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_price_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_PRICE_OPT_ID_[[DBPREFIX]]CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_option_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option_title` (
  `option_title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Title ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_title_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_TTL_OPT_ID_[[DBPREFIX]]CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option_title`
--

LOCK TABLES `[[dbprefix]]catalog_product_option_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option_type_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option_type_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option_type_price` (
  `option_type_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Price ID',
  `option_type_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_type_price_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_C1D2EE02EC6AAB7541FB09DDDCD68C8D` FOREIGN KEY (`option_type_id`) REFERENCES `[[dbprefix]]catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_TYPE_PRICE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option_type_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_option_type_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option_type_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option_type_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option_type_title` (
  `option_type_title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Title ID',
  `option_type_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_type_title_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_1A200B10431B157F71F40DE8911C3B51` FOREIGN KEY (`option_type_id`) REFERENCES `[[dbprefix]]catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_TYPE_TTL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option_type_title`
--

LOCK TABLES `[[dbprefix]]catalog_product_option_type_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_option_type_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_option_type_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_option_type_value` (
  `option_type_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_type_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_OPT_TYPE_VAL_OPT_ID_[[DBPREFIX]]CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_option_type_value`
--

LOCK TABLES `[[dbprefix]]catalog_product_option_type_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_option_type_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_price_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_price_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_price_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalog_product_price_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_price_cl`
--

LOCK TABLES `[[dbprefix]]catalog_product_price_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_price_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_price_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_relation`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_relation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_relation` (
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int unsigned NOT NULL COMMENT 'Child ID',
  PRIMARY KEY (`parent_id`,`child_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_RELATION_CHILD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_RELATION_PARENT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Relation Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_relation`
--

LOCK TABLES `[[dbprefix]]catalog_product_relation` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_relation` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_relation` VALUES (45,21),(45,22),(45,26),(45,29),(45,32),(45,33),(46,33),(45,34),(46,34),(45,35),(46,35),(62,47),(62,48),(62,49),(62,50),(62,51),(62,52),(62,53),(62,54),(62,55),(62,56),(62,57),(62,58),(62,59),(62,60),(62,61),(78,63),(78,64),(78,65),(78,66),(78,67),(78,68),(78,69),(78,70),(78,71),(78,72),(78,73),(78,74),(78,75),(78,76),(78,77),(94,79),(94,80),(94,81),(94,82),(94,83),(94,84),(94,85),(94,86),(94,87),(94,88),(94,89),(94,90),(94,91),(94,92),(94,93),(110,95),(110,96),(110,97),(110,98),(110,99),(110,100),(110,101),(110,102),(110,103),(110,104),(110,105),(110,106),(110,107),(110,108),(110,109),(126,111),(126,112),(126,113),(126,114),(126,115),(126,116),(126,117),(126,118),(126,119),(126,120),(126,121),(126,122),(126,123),(126,124),(126,125),(142,127),(142,128),(142,129),(142,130),(142,131),(142,132),(142,133),(142,134),(142,135),(142,136),(142,137),(142,138),(142,139),(142,140),(142,141),(158,143),(158,144),(158,145),(158,146),(158,147),(158,148),(158,149),(158,150),(158,151),(158,152),(158,153),(158,154),(158,155),(158,156),(158,157),(174,159),(174,160),(174,161),(174,162),(174,163),(174,164),(174,165),(174,166),(174,167),(174,168),(174,169),(174,170),(174,171),(174,172),(174,173),(190,175),(190,176),(190,177),(190,178),(190,179),(190,180),(190,181),(190,182),(190,183),(190,184),(190,185),(190,186),(190,187),(190,188),(190,189),(206,191),(206,192),(206,193),(206,194),(206,195),(206,196),(206,197),(206,198),(206,199),(206,200),(206,201),(206,202),(206,203),(206,204),(206,205),(222,207),(222,208),(222,209),(222,210),(222,211),(222,212),(222,213),(222,214),(222,215),(222,216),(222,217),(222,218),(222,219),(222,220),(222,221),(238,223),(238,224),(238,225),(238,226),(238,227),(238,228),(238,229),(238,230),(238,231),(238,232),(238,233),(238,234),(238,235),(238,236),(238,237),(254,239),(254,240),(254,241),(254,242),(254,243),(254,244),(254,245),(254,246),(254,247),(254,248),(254,249),(254,250),(254,251),(254,252),(254,253),(270,255),(270,256),(270,257),(270,258),(270,259),(270,260),(270,261),(270,262),(270,263),(270,264),(270,265),(270,266),(270,267),(270,268),(270,269),(286,271),(286,272),(286,273),(286,274),(286,275),(286,276),(286,277),(286,278),(286,279),(286,280),(286,281),(286,282),(286,283),(286,284),(286,285),(302,287),(302,288),(302,289),(302,290),(302,291),(302,292),(302,293),(302,294),(302,295),(302,296),(302,297),(302,298),(302,299),(302,300),(302,301),(318,303),(318,304),(318,305),(318,306),(318,307),(318,308),(318,309),(318,310),(318,311),(318,312),(318,313),(318,314),(318,315),(318,316),(318,317),(334,319),(334,320),(334,321),(334,322),(334,323),(334,324),(334,325),(334,326),(334,327),(334,328),(334,329),(334,330),(334,331),(334,332),(334,333),(350,335),(350,336),(350,337),(350,338),(350,339),(350,340),(350,341),(350,342),(350,343),(350,344),(350,345),(350,346),(350,347),(350,348),(350,349),(366,351),(366,352),(366,353),(366,354),(366,355),(366,356),(366,357),(366,358),(366,359),(366,360),(366,361),(366,362),(366,363),(366,364),(366,365),(382,367),(382,368),(382,369),(382,370),(382,371),(382,372),(382,373),(382,374),(382,375),(382,376),(382,377),(382,378),(382,379),(382,380),(382,381),(398,383),(398,384),(398,385),(398,386),(398,387),(398,388),(398,389),(398,390),(398,391),(398,392),(398,393),(398,394),(398,395),(398,396),(398,397),(414,399),(414,400),(414,401),(414,402),(414,403),(414,404),(414,405),(414,406),(414,407),(414,408),(414,409),(414,410),(414,411),(414,412),(414,413),(430,415),(430,416),(430,417),(430,418),(430,419),(430,420),(430,421),(430,422),(430,423),(430,424),(430,425),(430,426),(430,427),(430,428),(430,429),(446,431),(446,432),(446,433),(446,434),(446,435),(446,436),(446,437),(446,438),(446,439),(446,440),(446,441),(446,442),(446,443),(446,444),(446,445),(462,447),(462,448),(462,449),(462,450),(462,451),(462,452),(462,453),(462,454),(462,455),(462,456),(462,457),(462,458),(462,459),(462,460),(462,461),(478,463),(478,464),(478,465),(478,466),(478,467),(478,468),(478,469),(478,470),(478,471),(478,472),(478,473),(478,474),(478,475),(478,476),(478,477),(494,479),(494,480),(494,481),(494,482),(494,483),(494,484),(494,485),(494,486),(494,487),(494,488),(494,489),(494,490),(494,491),(494,492),(494,493),(510,495),(510,496),(510,497),(510,498),(510,499),(510,500),(510,501),(510,502),(510,503),(510,504),(510,505),(510,506),(510,507),(510,508),(510,509),(526,511),(526,512),(526,513),(526,514),(526,515),(526,516),(526,517),(526,518),(526,519),(526,520),(526,521),(526,522),(526,523),(526,524),(526,525),(542,527),(542,528),(542,529),(542,530),(542,531),(542,532),(542,533),(542,534),(542,535),(542,536),(542,537),(542,538),(542,539),(542,540),(542,541),(558,543),(558,544),(558,545),(558,546),(558,547),(558,548),(558,549),(558,550),(558,551),(558,552),(558,553),(558,554),(558,555),(558,556),(558,557),(574,559),(574,560),(574,561),(574,562),(574,563),(574,564),(574,565),(574,566),(574,567),(574,568),(574,569),(574,570),(574,571),(574,572),(574,573),(590,575),(590,576),(590,577),(590,578),(590,579),(590,580),(590,581),(590,582),(590,583),(590,584),(590,585),(590,586),(590,587),(590,588),(590,589),(606,591),(606,592),(606,593),(606,594),(606,595),(606,596),(606,597),(606,598),(606,599),(606,600),(606,601),(606,602),(606,603),(606,604),(606,605),(622,607),(622,608),(622,609),(622,610),(622,611),(622,612),(622,613),(622,614),(622,615),(622,616),(622,617),(622,618),(622,619),(622,620),(622,621),(638,623),(638,624),(638,625),(638,626),(638,627),(638,628),(638,629),(638,630),(638,631),(638,632),(638,633),(638,634),(638,635),(638,636),(638,637),(654,639),(654,640),(654,641),(654,642),(654,643),(654,644),(654,645),(654,646),(654,647),(654,648),(654,649),(654,650),(654,651),(654,652),(654,653),(670,655),(670,656),(670,657),(670,658),(670,659),(670,660),(670,661),(670,662),(670,663),(670,664),(670,665),(670,666),(670,667),(670,668),(670,669),(676,671),(676,672),(676,673),(676,674),(676,675),(682,677),(682,678),(682,679),(682,680),(682,681),(688,683),(688,684),(688,685),(688,686),(688,687),(694,689),(694,690),(694,691),(694,692),(694,693),(700,695),(700,696),(700,697),(700,698),(700,699),(706,701),(706,702),(706,703),(706,704),(706,705),(712,707),(712,708),(712,709),(712,710),(712,711),(718,713),(718,714),(718,715),(718,716),(718,717),(724,719),(724,720),(724,721),(724,722),(724,723),(737,725),(737,726),(737,727),(737,728),(737,729),(737,730),(737,731),(737,732),(737,733),(737,734),(737,735),(737,736),(750,738),(750,739),(750,740),(750,741),(750,742),(750,743),(750,744),(750,745),(750,746),(750,747),(750,748),(750,749),(763,751),(763,752),(763,753),(763,754),(763,755),(763,756),(763,757),(763,758),(763,759),(763,760),(763,761),(763,762),(776,764),(776,765),(776,766),(776,767),(776,768),(776,769),(776,770),(776,771),(776,772),(776,773),(776,774),(776,775),(789,777),(789,778),(789,779),(789,780),(789,781),(789,782),(789,783),(789,784),(789,785),(789,786),(789,787),(789,788),(802,790),(802,791),(802,792),(802,793),(802,794),(802,795),(802,796),(802,797),(802,798),(802,799),(802,800),(802,801),(815,803),(815,804),(815,805),(815,806),(815,807),(815,808),(815,809),(815,810),(815,811),(815,812),(815,813),(815,814),(828,816),(828,817),(828,818),(828,819),(828,820),(828,821),(828,822),(828,823),(828,824),(828,825),(828,826),(828,827),(841,829),(841,830),(841,831),(841,832),(841,833),(841,834),(841,835),(841,836),(841,837),(841,838),(841,839),(841,840),(854,842),(854,843),(854,844),(854,845),(854,846),(854,847),(854,848),(854,849),(854,850),(854,851),(854,852),(854,853),(867,855),(867,856),(867,857),(867,858),(867,859),(867,860),(867,861),(867,862),(867,863),(867,864),(867,865),(867,866),(880,868),(880,869),(880,870),(880,871),(880,872),(880,873),(880,874),(880,875),(880,876),(880,877),(880,878),(880,879),(893,881),(893,882),(893,883),(893,884),(893,885),(893,886),(893,887),(893,888),(893,889),(893,890),(893,891),(893,892),(898,894),(898,895),(898,896),(898,897),(911,899),(911,900),(911,901),(911,902),(911,903),(911,904),(911,905),(911,906),(911,907),(911,908),(911,909),(911,910),(924,912),(924,913),(924,914),(924,915),(924,916),(924,917),(924,918),(924,919),(924,920),(924,921),(924,922),(924,923),(937,925),(937,926),(937,927),(937,928),(937,929),(937,930),(937,931),(937,932),(937,933),(937,934),(937,935),(937,936),(950,938),(950,939),(950,940),(950,941),(950,942),(950,943),(950,944),(950,945),(950,946),(950,947),(950,948),(950,949),(963,951),(963,952),(963,953),(963,954),(963,955),(963,956),(963,957),(963,958),(963,959),(963,960),(963,961),(963,962),(976,964),(976,965),(976,966),(976,967),(976,968),(976,969),(976,970),(976,971),(976,972),(976,973),(976,974),(976,975),(989,977),(989,978),(989,979),(989,980),(989,981),(989,982),(989,983),(989,984),(989,985),(989,986),(989,987),(989,988),(1002,990),(1002,991),(1002,992),(1002,993),(1002,994),(1002,995),(1002,996),(1002,997),(1002,998),(1002,999),(1002,1000),(1002,1001),(1015,1003),(1015,1004),(1015,1005),(1015,1006),(1015,1007),(1015,1008),(1015,1009),(1015,1010),(1015,1011),(1015,1012),(1015,1013),(1015,1014),(1028,1016),(1028,1017),(1028,1018),(1028,1019),(1028,1020),(1028,1021),(1028,1022),(1028,1023),(1028,1024),(1028,1025),(1028,1026),(1028,1027),(1044,1029),(1044,1030),(1044,1031),(1044,1032),(1044,1033),(1044,1034),(1044,1035),(1044,1036),(1044,1037),(1044,1038),(1044,1039),(1044,1040),(1044,1041),(1044,1042),(1044,1043),(1060,1045),(1060,1046),(1060,1047),(1060,1048),(1060,1049),(1060,1050),(1060,1051),(1060,1052),(1060,1053),(1060,1054),(1060,1055),(1060,1056),(1060,1057),(1060,1058),(1060,1059),(1076,1061),(1076,1062),(1076,1063),(1076,1064),(1076,1065),(1076,1066),(1076,1067),(1076,1068),(1076,1069),(1076,1070),(1076,1071),(1076,1072),(1076,1073),(1076,1074),(1076,1075),(1092,1077),(1092,1078),(1092,1079),(1092,1080),(1092,1081),(1092,1082),(1092,1083),(1092,1084),(1092,1085),(1092,1086),(1092,1087),(1092,1088),(1092,1089),(1092,1090),(1092,1091),(1108,1093),(1108,1094),(1108,1095),(1108,1096),(1108,1097),(1108,1098),(1108,1099),(1108,1100),(1108,1101),(1108,1102),(1108,1103),(1108,1104),(1108,1105),(1108,1106),(1108,1107),(1114,1109),(1114,1110),(1114,1111),(1114,1112),(1114,1113),(1130,1115),(1130,1116),(1130,1117),(1130,1118),(1130,1119),(1130,1120),(1130,1121),(1130,1122),(1130,1123),(1130,1124),(1130,1125),(1130,1126),(1130,1127),(1130,1128),(1130,1129),(1146,1131),(1146,1132),(1146,1133),(1146,1134),(1146,1135),(1146,1136),(1146,1137),(1146,1138),(1146,1139),(1146,1140),(1146,1141),(1146,1142),(1146,1143),(1146,1144),(1146,1145),(1162,1147),(1162,1148),(1162,1149),(1162,1150),(1162,1151),(1162,1152),(1162,1153),(1162,1154),(1162,1155),(1162,1156),(1162,1157),(1162,1158),(1162,1159),(1162,1160),(1162,1161),(1178,1163),(1178,1164),(1178,1165),(1178,1166),(1178,1167),(1178,1168),(1178,1169),(1178,1170),(1178,1171),(1178,1172),(1178,1173),(1178,1174),(1178,1175),(1178,1176),(1178,1177),(1194,1179),(1194,1180),(1194,1181),(1194,1182),(1194,1183),(1194,1184),(1194,1185),(1194,1186),(1194,1187),(1194,1188),(1194,1189),(1194,1190),(1194,1191),(1194,1192),(1194,1193),(1210,1195),(1210,1196),(1210,1197),(1210,1198),(1210,1199),(1210,1200),(1210,1201),(1210,1202),(1210,1203),(1210,1204),(1210,1205),(1210,1206),(1210,1207),(1210,1208),(1210,1209),(1220,1211),(1220,1212),(1220,1213),(1220,1214),(1220,1215),(1220,1216),(1220,1217),(1220,1218),(1220,1219),(1236,1221),(1236,1222),(1236,1223),(1236,1224),(1236,1225),(1236,1226),(1236,1227),(1236,1228),(1236,1229),(1236,1230),(1236,1231),(1236,1232),(1236,1233),(1236,1234),(1236,1235),(1252,1237),(1252,1238),(1252,1239),(1252,1240),(1252,1241),(1252,1242),(1252,1243),(1252,1244),(1252,1245),(1252,1246),(1252,1247),(1252,1248),(1252,1249),(1252,1250),(1252,1251),(1268,1253),(1268,1254),(1268,1255),(1268,1256),(1268,1257),(1268,1258),(1268,1259),(1268,1260),(1268,1261),(1268,1262),(1268,1263),(1268,1264),(1268,1265),(1268,1266),(1268,1267),(1284,1269),(1284,1270),(1284,1271),(1284,1272),(1284,1273),(1284,1274),(1284,1275),(1284,1276),(1284,1277),(1284,1278),(1284,1279),(1284,1280),(1284,1281),(1284,1282),(1284,1283),(1300,1285),(1300,1286),(1300,1287),(1300,1288),(1300,1289),(1300,1290),(1300,1291),(1300,1292),(1300,1293),(1300,1294),(1300,1295),(1300,1296),(1300,1297),(1300,1298),(1300,1299),(1316,1301),(1316,1302),(1316,1303),(1316,1304),(1316,1305),(1316,1306),(1316,1307),(1316,1308),(1316,1309),(1316,1310),(1316,1311),(1316,1312),(1316,1313),(1316,1314),(1316,1315),(1332,1317),(1332,1318),(1332,1319),(1332,1320),(1332,1321),(1332,1322),(1332,1323),(1332,1324),(1332,1325),(1332,1326),(1332,1327),(1332,1328),(1332,1329),(1332,1330),(1332,1331),(1348,1333),(1348,1334),(1348,1335),(1348,1336),(1348,1337),(1348,1338),(1348,1339),(1348,1340),(1348,1341),(1348,1342),(1348,1343),(1348,1344),(1348,1345),(1348,1346),(1348,1347),(1364,1349),(1364,1350),(1364,1351),(1364,1352),(1364,1353),(1364,1354),(1364,1355),(1364,1356),(1364,1357),(1364,1358),(1364,1359),(1364,1360),(1364,1361),(1364,1362),(1364,1363),(1380,1365),(1380,1366),(1380,1367),(1380,1368),(1380,1369),(1380,1370),(1380,1371),(1380,1372),(1380,1373),(1380,1374),(1380,1375),(1380,1376),(1380,1377),(1380,1378),(1380,1379),(1396,1381),(1396,1382),(1396,1383),(1396,1384),(1396,1385),(1396,1386),(1396,1387),(1396,1388),(1396,1389),(1396,1390),(1396,1391),(1396,1392),(1396,1393),(1396,1394),(1396,1395),(1412,1397),(1412,1398),(1412,1399),(1412,1400),(1412,1401),(1412,1402),(1412,1403),(1412,1404),(1412,1405),(1412,1406),(1412,1407),(1412,1408),(1412,1409),(1412,1410),(1412,1411),(1428,1413),(1428,1414),(1428,1415),(1428,1416),(1428,1417),(1428,1418),(1428,1419),(1428,1420),(1428,1421),(1428,1422),(1428,1423),(1428,1424),(1428,1425),(1428,1426),(1428,1427),(1444,1429),(1444,1430),(1444,1431),(1444,1432),(1444,1433),(1444,1434),(1444,1435),(1444,1436),(1444,1437),(1444,1438),(1444,1439),(1444,1440),(1444,1441),(1444,1442),(1444,1443),(1460,1445),(1460,1446),(1460,1447),(1460,1448),(1460,1449),(1460,1450),(1460,1451),(1460,1452),(1460,1453),(1460,1454),(1460,1455),(1460,1456),(1460,1457),(1460,1458),(1460,1459),(1476,1461),(1476,1462),(1476,1463),(1476,1464),(1476,1465),(1476,1466),(1476,1467),(1476,1468),(1476,1469),(1476,1470),(1476,1471),(1476,1472),(1476,1473),(1476,1474),(1476,1475),(1492,1477),(1492,1478),(1492,1479),(1492,1480),(1492,1481),(1492,1482),(1492,1483),(1492,1484),(1492,1485),(1492,1486),(1492,1487),(1492,1488),(1492,1489),(1492,1490),(1492,1491),(1508,1493),(1508,1494),(1508,1495),(1508,1496),(1508,1497),(1508,1498),(1508,1499),(1508,1500),(1508,1501),(1508,1502),(1508,1503),(1508,1504),(1508,1505),(1508,1506),(1508,1507),(1524,1509),(1524,1510),(1524,1511),(1524,1512),(1524,1513),(1524,1514),(1524,1515),(1524,1516),(1524,1517),(1524,1518),(1524,1519),(1524,1520),(1524,1521),(1524,1522),(1524,1523),(1540,1525),(1540,1526),(1540,1527),(1540,1528),(1540,1529),(1540,1530),(1540,1531),(1540,1532),(1540,1533),(1540,1534),(1540,1535),(1540,1536),(1540,1537),(1540,1538),(1540,1539),(1556,1541),(1556,1542),(1556,1543),(1556,1544),(1556,1545),(1556,1546),(1556,1547),(1556,1548),(1556,1549),(1556,1550),(1556,1551),(1556,1552),(1556,1553),(1556,1554),(1556,1555),(1572,1557),(1572,1558),(1572,1559),(1572,1560),(1572,1561),(1572,1562),(1572,1563),(1572,1564),(1572,1565),(1572,1566),(1572,1567),(1572,1568),(1572,1569),(1572,1570),(1572,1571),(1588,1573),(1588,1574),(1588,1575),(1588,1576),(1588,1577),(1588,1578),(1588,1579),(1588,1580),(1588,1581),(1588,1582),(1588,1583),(1588,1584),(1588,1585),(1588,1586),(1588,1587),(1604,1589),(1604,1590),(1604,1591),(1604,1592),(1604,1593),(1604,1594),(1604,1595),(1604,1596),(1604,1597),(1604,1598),(1604,1599),(1604,1600),(1604,1601),(1604,1602),(1604,1603),(1620,1605),(1620,1606),(1620,1607),(1620,1608),(1620,1609),(1620,1610),(1620,1611),(1620,1612),(1620,1613),(1620,1614),(1620,1615),(1620,1616),(1620,1617),(1620,1618),(1620,1619),(1636,1621),(1636,1622),(1636,1623),(1636,1624),(1636,1625),(1636,1626),(1636,1627),(1636,1628),(1636,1629),(1636,1630),(1636,1631),(1636,1632),(1636,1633),(1636,1634),(1636,1635),(1652,1637),(1652,1638),(1652,1639),(1652,1640),(1652,1641),(1652,1642),(1652,1643),(1652,1644),(1652,1645),(1652,1646),(1652,1647),(1652,1648),(1652,1649),(1652,1650),(1652,1651),(1668,1653),(1668,1654),(1668,1655),(1668,1656),(1668,1657),(1668,1658),(1668,1659),(1668,1660),(1668,1661),(1668,1662),(1668,1663),(1668,1664),(1668,1665),(1668,1666),(1668,1667),(1684,1669),(1684,1670),(1684,1671),(1684,1672),(1684,1673),(1684,1674),(1684,1675),(1684,1676),(1684,1677),(1684,1678),(1684,1679),(1684,1680),(1684,1681),(1684,1682),(1684,1683),(1700,1685),(1700,1686),(1700,1687),(1700,1688),(1700,1689),(1700,1690),(1700,1691),(1700,1692),(1700,1693),(1700,1694),(1700,1695),(1700,1696),(1700,1697),(1700,1698),(1700,1699),(1716,1701),(1716,1702),(1716,1703),(1716,1704),(1716,1705),(1716,1706),(1716,1707),(1716,1708),(1716,1709),(1716,1710),(1716,1711),(1716,1712),(1716,1713),(1716,1714),(1716,1715),(1732,1717),(1732,1718),(1732,1719),(1732,1720),(1732,1721),(1732,1722),(1732,1723),(1732,1724),(1732,1725),(1732,1726),(1732,1727),(1732,1728),(1732,1729),(1732,1730),(1732,1731),(1748,1733),(1748,1734),(1748,1735),(1748,1736),(1748,1737),(1748,1738),(1748,1739),(1748,1740),(1748,1741),(1748,1742),(1748,1743),(1748,1744),(1748,1745),(1748,1746),(1748,1747),(1764,1749),(1764,1750),(1764,1751),(1764,1752),(1764,1753),(1764,1754),(1764,1755),(1764,1756),(1764,1757),(1764,1758),(1764,1759),(1764,1760),(1764,1761),(1764,1762),(1764,1763),(1780,1765),(1780,1766),(1780,1767),(1780,1768),(1780,1769),(1780,1770),(1780,1771),(1780,1772),(1780,1773),(1780,1774),(1780,1775),(1780,1776),(1780,1777),(1780,1778),(1780,1779),(1796,1781),(1796,1782),(1796,1783),(1796,1784),(1796,1785),(1796,1786),(1796,1787),(1796,1788),(1796,1789),(1796,1790),(1796,1791),(1796,1792),(1796,1793),(1796,1794),(1796,1795),(1812,1797),(1812,1798),(1812,1799),(1812,1800),(1812,1801),(1812,1802),(1812,1803),(1812,1804),(1812,1805),(1812,1806),(1812,1807),(1812,1808),(1812,1809),(1812,1810),(1812,1811),(1819,1813),(1819,1814),(1819,1815),(1819,1816),(1819,1817),(1819,1818),(1826,1820),(1826,1821),(1826,1822),(1826,1823),(1826,1824),(1826,1825),(1833,1827),(1833,1828),(1833,1829),(1833,1830),(1833,1831),(1833,1832),(1840,1834),(1840,1835),(1840,1836),(1840,1837),(1840,1838),(1840,1839),(1847,1841),(1847,1842),(1847,1843),(1847,1844),(1847,1845),(1847,1846),(1854,1848),(1854,1849),(1854,1850),(1854,1851),(1854,1852),(1854,1853),(1861,1855),(1861,1856),(1861,1857),(1861,1858),(1861,1859),(1861,1860),(1868,1862),(1868,1863),(1868,1864),(1868,1865),(1868,1866),(1868,1867),(1875,1869),(1875,1870),(1875,1871),(1875,1872),(1875,1873),(1875,1874),(1882,1876),(1882,1877),(1882,1878),(1882,1879),(1882,1880),(1882,1881),(1889,1883),(1889,1884),(1889,1885),(1889,1886),(1889,1887),(1889,1888),(1896,1890),(1896,1891),(1896,1892),(1896,1893),(1896,1894),(1896,1895),(1903,1897),(1903,1898),(1903,1899),(1903,1900),(1903,1901),(1903,1902),(1919,1904),(1919,1905),(1919,1906),(1919,1907),(1919,1908),(1919,1909),(1919,1910),(1919,1911),(1919,1912),(1919,1913),(1919,1914),(1919,1915),(1919,1916),(1919,1917),(1919,1918),(1935,1920),(1935,1921),(1935,1922),(1935,1923),(1935,1924),(1935,1925),(1935,1926),(1935,1927),(1935,1928),(1935,1929),(1935,1930),(1935,1931),(1935,1932),(1935,1933),(1935,1934),(1951,1936),(1951,1937),(1951,1938),(1951,1939),(1951,1940),(1951,1941),(1951,1942),(1951,1943),(1951,1944),(1951,1945),(1951,1946),(1951,1947),(1951,1948),(1951,1949),(1951,1950),(1967,1952),(1967,1953),(1967,1954),(1967,1955),(1967,1956),(1967,1957),(1967,1958),(1967,1959),(1967,1960),(1967,1961),(1967,1962),(1967,1963),(1967,1964),(1967,1965),(1967,1966),(1983,1968),(1983,1969),(1983,1970),(1983,1971),(1983,1972),(1983,1973),(1983,1974),(1983,1975),(1983,1976),(1983,1977),(1983,1978),(1983,1979),(1983,1980),(1983,1981),(1983,1982),(1990,1984),(1990,1985),(1990,1986),(1990,1987),(1990,1988),(1990,1989),(1997,1991),(1997,1992),(1997,1993),(1997,1994),(1997,1995),(1997,1996),(2003,1998),(2003,1999),(2003,2000),(2003,2001),(2003,2002),(2010,2004),(2010,2005),(2010,2006),(2010,2007),(2010,2008),(2010,2009),(2017,2011),(2017,2012),(2017,2013),(2017,2014),(2017,2015),(2017,2016),(2024,2018),(2024,2019),(2024,2020),(2024,2021),(2024,2022),(2024,2023),(2040,2025),(2040,2026),(2040,2027),(2040,2028),(2040,2029),(2040,2030),(2040,2031),(2040,2032),(2040,2033),(2040,2034),(2040,2035),(2040,2036),(2040,2037),(2040,2038),(2040,2039);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_relation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_super_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_super_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_super_attribute` (
  `product_super_attribute_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Super Attribute ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  PRIMARY KEY (`product_super_attribute_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_SPR_ATTR_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=296 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_super_attribute`
--

LOCK TABLES `[[dbprefix]]catalog_product_super_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_super_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_super_attribute` VALUES (2,62,142,0),(3,62,93,1),(4,78,142,0),(5,78,93,1),(6,94,142,0),(7,94,93,1),(8,110,142,0),(9,110,93,1),(10,126,142,0),(11,126,93,1),(12,142,142,0),(13,142,93,1),(14,158,142,0),(15,158,93,1),(16,174,142,0),(17,174,93,1),(18,190,142,0),(19,190,93,1),(20,206,142,0),(21,206,93,1),(22,222,142,0),(23,222,93,1),(24,238,142,0),(25,238,93,1),(26,254,142,0),(27,254,93,1),(28,270,142,0),(29,270,93,1),(30,286,142,0),(31,286,93,1),(32,302,142,0),(33,302,93,1),(34,318,142,0),(35,318,93,1),(36,334,142,0),(37,334,93,1),(38,350,142,0),(39,350,93,1),(40,366,142,0),(41,366,93,1),(42,382,142,0),(43,382,93,1),(44,398,142,0),(45,398,93,1),(46,414,142,0),(47,414,93,1),(48,430,142,0),(49,430,93,1),(50,446,142,0),(51,446,93,1),(52,462,142,0),(53,462,93,1),(54,478,142,0),(55,478,93,1),(56,494,142,0),(57,494,93,1),(58,510,142,0),(59,510,93,1),(60,526,142,0),(61,526,93,1),(62,542,142,0),(63,542,93,1),(64,558,142,0),(65,558,93,1),(66,574,142,0),(67,574,93,1),(68,590,142,0),(69,590,93,1),(70,606,142,0),(71,606,93,1),(72,622,142,0),(73,622,93,1),(74,638,142,0),(75,638,93,1),(76,654,142,0),(77,654,93,1),(78,670,142,0),(79,670,93,1),(80,676,142,0),(81,676,93,1),(82,682,142,0),(83,682,93,1),(84,688,142,0),(85,688,93,1),(86,694,142,0),(87,694,93,1),(88,700,142,0),(89,700,93,1),(90,706,142,0),(91,706,93,1),(92,712,142,0),(93,712,93,1),(94,718,142,0),(95,718,93,1),(96,724,142,0),(97,724,93,1),(98,737,142,0),(99,737,93,1),(100,750,142,0),(101,750,93,1),(102,763,142,0),(103,763,93,1),(104,776,142,0),(105,776,93,1),(106,789,142,0),(107,789,93,1),(108,802,142,0),(109,802,93,1),(110,815,142,0),(111,815,93,1),(112,828,142,0),(113,828,93,1),(114,841,142,0),(115,841,93,1),(116,854,142,0),(117,854,93,1),(118,867,142,0),(119,867,93,1),(120,880,142,0),(121,880,93,1),(122,893,142,0),(123,893,93,1),(124,898,142,0),(125,898,93,1),(126,911,142,0),(127,911,93,1),(128,924,142,0),(129,924,93,1),(130,937,142,0),(131,937,93,1),(132,950,142,0),(133,950,93,1),(134,963,142,0),(135,963,93,1),(136,976,142,0),(137,976,93,1),(138,989,142,0),(139,989,93,1),(140,1002,142,0),(141,1002,93,1),(142,1015,142,0),(143,1015,93,1),(144,1028,142,0),(145,1028,93,1),(146,1044,142,0),(147,1044,93,1),(148,1060,142,0),(149,1060,93,1),(150,1076,142,0),(151,1076,93,1),(152,1092,142,0),(153,1092,93,1),(154,1108,142,0),(155,1108,93,1),(156,1114,142,0),(157,1114,93,1),(158,1130,142,0),(159,1130,93,1),(160,1146,142,0),(161,1146,93,1),(162,1162,142,0),(163,1162,93,1),(164,1178,142,0),(165,1178,93,1),(166,1194,142,0),(167,1194,93,1),(168,1210,142,0),(169,1210,93,1),(170,1220,142,0),(171,1220,93,1),(172,1236,142,0),(173,1236,93,1),(174,1252,142,0),(175,1252,93,1),(176,1268,142,0),(177,1268,93,1),(178,1284,142,0),(179,1284,93,1),(180,1300,142,0),(181,1300,93,1),(182,1316,142,0),(183,1316,93,1),(184,1332,142,0),(185,1332,93,1),(186,1348,142,0),(187,1348,93,1),(188,1364,142,0),(189,1364,93,1),(190,1380,142,0),(191,1380,93,1),(192,1396,142,0),(193,1396,93,1),(194,1412,142,0),(195,1412,93,1),(196,1428,142,0),(197,1428,93,1),(198,1444,142,0),(199,1444,93,1),(200,1460,142,0),(201,1460,93,1),(202,1476,142,0),(203,1476,93,1),(204,1492,142,0),(205,1492,93,1),(206,1508,142,0),(207,1508,93,1),(208,1524,142,0),(209,1524,93,1),(210,1540,142,0),(211,1540,93,1),(212,1556,142,0),(213,1556,93,1),(214,1572,142,0),(215,1572,93,1),(216,1588,142,0),(217,1588,93,1),(218,1604,142,0),(219,1604,93,1),(220,1620,142,0),(221,1620,93,1),(222,1636,142,0),(223,1636,93,1),(224,1652,142,0),(225,1652,93,1),(226,1668,142,0),(227,1668,93,1),(228,1684,142,0),(229,1684,93,1),(230,1700,142,0),(231,1700,93,1),(232,1716,142,0),(233,1716,93,1),(234,1732,142,0),(235,1732,93,1),(236,1748,142,0),(237,1748,93,1),(238,1764,142,0),(239,1764,93,1),(240,1780,142,0),(241,1780,93,1),(242,1796,142,0),(243,1796,93,1),(244,1812,142,0),(245,1812,93,1),(246,1819,142,0),(247,1819,93,1),(248,1826,142,0),(249,1826,93,1),(250,1833,142,0),(251,1833,93,1),(252,1840,142,0),(253,1840,93,1),(254,1847,142,0),(255,1847,93,1),(256,1854,142,0),(257,1854,93,1),(258,1861,142,0),(259,1861,93,1),(260,1868,142,0),(261,1868,93,1),(262,1875,142,0),(263,1875,93,1),(264,1882,142,0),(265,1882,93,1),(266,1889,142,0),(267,1889,93,1),(268,1896,142,0),(269,1896,93,1),(270,1903,142,0),(271,1903,93,1),(272,1919,142,0),(273,1919,93,1),(274,1935,142,0),(275,1935,93,1),(276,1951,142,0),(277,1951,93,1),(278,1967,142,0),(279,1967,93,1),(280,1983,142,0),(281,1983,93,1),(282,1990,142,0),(283,1990,93,1),(284,1997,142,0),(285,1997,93,1),(286,2003,142,0),(287,2003,93,1),(288,2010,142,0),(289,2010,93,1),(290,2017,142,0),(291,2017,93,1),(292,2024,142,0),(293,2024,93,1),(294,2040,142,0),(295,2040,93,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_super_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_super_attribute_label`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_super_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_super_attribute_label` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_super_attribute_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Super Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `use_default` smallint unsigned DEFAULT '0' COMMENT 'Use Default Value',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `FK_6BFFEDF008562DE6CB595734062A19F2` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `[[dbprefix]]catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_SPR_ATTR_LBL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=295 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Attribute Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_super_attribute_label`
--

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

--
-- Table structure for table `[[dbprefix]]catalog_product_super_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_super_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_super_link` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_SPR_LNK_PARENT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_SPR_LNK_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2115 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_super_link`
--

LOCK TABLES `[[dbprefix]]catalog_product_super_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_super_link` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_super_link` VALUES (1,47,62),(2,48,62),(3,49,62),(4,50,62),(5,51,62),(6,52,62),(7,53,62),(8,54,62),(9,55,62),(10,56,62),(11,57,62),(12,58,62),(13,59,62),(14,60,62),(15,61,62),(16,63,78),(17,64,78),(18,65,78),(19,66,78),(20,67,78),(21,68,78),(22,69,78),(23,70,78),(24,71,78),(25,72,78),(26,73,78),(27,74,78),(28,75,78),(29,76,78),(30,77,78),(31,79,94),(32,80,94),(33,81,94),(34,82,94),(35,83,94),(36,84,94),(37,85,94),(38,86,94),(39,87,94),(40,88,94),(41,89,94),(42,90,94),(43,91,94),(44,92,94),(45,93,94),(46,95,110),(47,96,110),(48,97,110),(49,98,110),(50,99,110),(51,100,110),(52,101,110),(53,102,110),(54,103,110),(55,104,110),(56,105,110),(57,106,110),(58,107,110),(59,108,110),(60,109,110),(61,111,126),(62,112,126),(63,113,126),(64,114,126),(65,115,126),(66,116,126),(67,117,126),(68,118,126),(69,119,126),(70,120,126),(71,121,126),(72,122,126),(73,123,126),(74,124,126),(75,125,126),(76,127,142),(77,128,142),(78,129,142),(79,130,142),(80,131,142),(81,132,142),(82,133,142),(83,134,142),(84,135,142),(85,136,142),(86,137,142),(87,138,142),(88,139,142),(89,140,142),(90,141,142),(91,143,158),(92,144,158),(93,145,158),(94,146,158),(95,147,158),(96,148,158),(97,149,158),(98,150,158),(99,151,158),(100,152,158),(101,153,158),(102,154,158),(103,155,158),(104,156,158),(105,157,158),(106,159,174),(107,160,174),(108,161,174),(109,162,174),(110,163,174),(111,164,174),(112,165,174),(113,166,174),(114,167,174),(115,168,174),(116,169,174),(117,170,174),(118,171,174),(119,172,174),(120,173,174),(121,175,190),(122,176,190),(123,177,190),(124,178,190),(125,179,190),(126,180,190),(127,181,190),(128,182,190),(129,183,190),(130,184,190),(131,185,190),(132,186,190),(133,187,190),(134,188,190),(135,189,190),(136,191,206),(137,192,206),(138,193,206),(139,194,206),(140,195,206),(141,196,206),(142,197,206),(143,198,206),(144,199,206),(145,200,206),(146,201,206),(147,202,206),(148,203,206),(149,204,206),(150,205,206),(151,207,222),(152,208,222),(153,209,222),(154,210,222),(155,211,222),(156,212,222),(157,213,222),(158,214,222),(159,215,222),(160,216,222),(161,217,222),(162,218,222),(163,219,222),(164,220,222),(165,221,222),(166,223,238),(167,224,238),(168,225,238),(169,226,238),(170,227,238),(171,228,238),(172,229,238),(173,230,238),(174,231,238),(175,232,238),(176,233,238),(177,234,238),(178,235,238),(179,236,238),(180,237,238),(196,239,254),(197,240,254),(198,241,254),(199,242,254),(200,243,254),(201,244,254),(202,245,254),(203,246,254),(204,247,254),(205,248,254),(206,249,254),(207,250,254),(208,251,254),(209,252,254),(210,253,254),(211,255,270),(212,256,270),(213,257,270),(214,258,270),(215,259,270),(216,260,270),(217,261,270),(218,262,270),(219,263,270),(220,264,270),(221,265,270),(222,266,270),(223,267,270),(224,268,270),(225,269,270),(226,271,286),(227,272,286),(228,273,286),(229,274,286),(230,275,286),(231,276,286),(232,277,286),(233,278,286),(234,279,286),(235,280,286),(236,281,286),(237,282,286),(238,283,286),(239,284,286),(240,285,286),(241,287,302),(242,288,302),(243,289,302),(244,290,302),(245,291,302),(246,292,302),(247,293,302),(248,294,302),(249,295,302),(250,296,302),(251,297,302),(252,298,302),(253,299,302),(254,300,302),(255,301,302),(256,303,318),(257,304,318),(258,305,318),(259,306,318),(260,307,318),(261,308,318),(262,309,318),(263,310,318),(264,311,318),(265,312,318),(266,313,318),(267,314,318),(268,315,318),(269,316,318),(270,317,318),(271,319,334),(272,320,334),(273,321,334),(274,322,334),(275,323,334),(276,324,334),(277,325,334),(278,326,334),(279,327,334),(280,328,334),(281,329,334),(282,330,334),(283,331,334),(284,332,334),(285,333,334),(301,335,350),(302,336,350),(303,337,350),(304,338,350),(305,339,350),(306,340,350),(307,341,350),(308,342,350),(309,343,350),(310,344,350),(311,345,350),(312,346,350),(313,347,350),(314,348,350),(315,349,350),(316,351,366),(317,352,366),(318,353,366),(319,354,366),(320,355,366),(321,356,366),(322,357,366),(323,358,366),(324,359,366),(325,360,366),(326,361,366),(327,362,366),(328,363,366),(329,364,366),(330,365,366),(331,367,382),(332,368,382),(333,369,382),(334,370,382),(335,371,382),(336,372,382),(337,373,382),(338,374,382),(339,375,382),(340,376,382),(341,377,382),(342,378,382),(343,379,382),(344,380,382),(345,381,382),(346,383,398),(347,384,398),(348,385,398),(349,386,398),(350,387,398),(351,388,398),(352,389,398),(353,390,398),(354,391,398),(355,392,398),(356,393,398),(357,394,398),(358,395,398),(359,396,398),(360,397,398),(361,399,414),(362,400,414),(363,401,414),(364,402,414),(365,403,414),(366,404,414),(367,405,414),(368,406,414),(369,407,414),(370,408,414),(371,409,414),(372,410,414),(373,411,414),(374,412,414),(375,413,414),(376,415,430),(377,416,430),(378,417,430),(379,418,430),(380,419,430),(381,420,430),(382,421,430),(383,422,430),(384,423,430),(385,424,430),(386,425,430),(387,426,430),(388,427,430),(389,428,430),(390,429,430),(391,431,446),(392,432,446),(393,433,446),(394,434,446),(395,435,446),(396,436,446),(397,437,446),(398,438,446),(399,439,446),(400,440,446),(401,441,446),(402,442,446),(403,443,446),(404,444,446),(405,445,446),(421,447,462),(422,448,462),(423,449,462),(424,450,462),(425,451,462),(426,452,462),(427,453,462),(428,454,462),(429,455,462),(430,456,462),(431,457,462),(432,458,462),(433,459,462),(434,460,462),(435,461,462),(436,463,478),(437,464,478),(438,465,478),(439,466,478),(440,467,478),(441,468,478),(442,469,478),(443,470,478),(444,471,478),(445,472,478),(446,473,478),(447,474,478),(448,475,478),(449,476,478),(450,477,478),(451,479,494),(452,480,494),(453,481,494),(454,482,494),(455,483,494),(456,484,494),(457,485,494),(458,486,494),(459,487,494),(460,488,494),(461,489,494),(462,490,494),(463,491,494),(464,492,494),(465,493,494),(466,495,510),(467,496,510),(468,497,510),(469,498,510),(470,499,510),(471,500,510),(472,501,510),(473,502,510),(474,503,510),(475,504,510),(476,505,510),(477,506,510),(478,507,510),(479,508,510),(480,509,510),(481,511,526),(482,512,526),(483,513,526),(484,514,526),(485,515,526),(486,516,526),(487,517,526),(488,518,526),(489,519,526),(490,520,526),(491,521,526),(492,522,526),(493,523,526),(494,524,526),(495,525,526),(496,527,542),(497,528,542),(498,529,542),(499,530,542),(500,531,542),(501,532,542),(502,533,542),(503,534,542),(504,535,542),(505,536,542),(506,537,542),(507,538,542),(508,539,542),(509,540,542),(510,541,542),(526,543,558),(527,544,558),(528,545,558),(529,546,558),(530,547,558),(531,548,558),(532,549,558),(533,550,558),(534,551,558),(535,552,558),(536,553,558),(537,554,558),(538,555,558),(539,556,558),(540,557,558),(541,559,574),(542,560,574),(543,561,574),(544,562,574),(545,563,574),(546,564,574),(547,565,574),(548,566,574),(549,567,574),(550,568,574),(551,569,574),(552,570,574),(553,571,574),(554,572,574),(555,573,574),(556,575,590),(557,576,590),(558,577,590),(559,578,590),(560,579,590),(561,580,590),(562,581,590),(563,582,590),(564,583,590),(565,584,590),(566,585,590),(567,586,590),(568,587,590),(569,588,590),(570,589,590),(571,591,606),(572,592,606),(573,593,606),(574,594,606),(575,595,606),(576,596,606),(577,597,606),(578,598,606),(579,599,606),(580,600,606),(581,601,606),(582,602,606),(583,603,606),(584,604,606),(585,605,606),(586,607,622),(587,608,622),(588,609,622),(589,610,622),(590,611,622),(591,612,622),(592,613,622),(593,614,622),(594,615,622),(595,616,622),(596,617,622),(597,618,622),(598,619,622),(599,620,622),(600,621,622),(601,623,638),(602,624,638),(603,625,638),(604,626,638),(605,627,638),(606,628,638),(607,629,638),(608,630,638),(609,631,638),(610,632,638),(611,633,638),(612,634,638),(613,635,638),(614,636,638),(615,637,638),(631,639,654),(632,640,654),(633,641,654),(634,642,654),(635,643,654),(636,644,654),(637,645,654),(638,646,654),(639,647,654),(640,648,654),(641,649,654),(642,650,654),(643,651,654),(644,652,654),(645,653,654),(646,655,670),(647,656,670),(648,657,670),(649,658,670),(650,659,670),(651,660,670),(652,661,670),(653,662,670),(654,663,670),(655,664,670),(656,665,670),(657,666,670),(658,667,670),(659,668,670),(660,669,670),(661,671,676),(662,672,676),(663,673,676),(664,674,676),(665,675,676),(666,677,682),(667,678,682),(668,679,682),(669,680,682),(670,681,682),(671,683,688),(672,684,688),(673,685,688),(674,686,688),(675,687,688),(676,689,694),(677,690,694),(678,691,694),(679,692,694),(680,693,694),(681,695,700),(682,696,700),(683,697,700),(684,698,700),(685,699,700),(686,701,706),(687,702,706),(688,703,706),(689,704,706),(690,705,706),(691,707,712),(692,708,712),(693,709,712),(694,710,712),(695,711,712),(696,713,718),(697,714,718),(698,715,718),(699,716,718),(700,717,718),(701,719,724),(702,720,724),(703,721,724),(704,722,724),(705,723,724),(706,725,737),(707,726,737),(708,727,737),(709,728,737),(710,729,737),(711,730,737),(712,731,737),(713,732,737),(714,733,737),(715,734,737),(716,735,737),(717,736,737),(733,738,750),(734,739,750),(735,740,750),(736,741,750),(737,742,750),(738,743,750),(739,744,750),(740,745,750),(741,746,750),(742,747,750),(743,748,750),(744,749,750),(745,751,763),(746,752,763),(747,753,763),(748,754,763),(749,755,763),(750,756,763),(751,757,763),(752,758,763),(753,759,763),(754,760,763),(755,761,763),(756,762,763),(757,764,776),(758,765,776),(759,766,776),(760,767,776),(761,768,776),(762,769,776),(763,770,776),(764,771,776),(765,772,776),(766,773,776),(767,774,776),(768,775,776),(769,777,789),(770,778,789),(771,779,789),(772,780,789),(773,781,789),(774,782,789),(775,783,789),(776,784,789),(777,785,789),(778,786,789),(779,787,789),(780,788,789),(781,790,802),(782,791,802),(783,792,802),(784,793,802),(785,794,802),(786,795,802),(787,796,802),(788,797,802),(789,798,802),(790,799,802),(791,800,802),(792,801,802),(793,803,815),(794,804,815),(795,805,815),(796,806,815),(797,807,815),(798,808,815),(799,809,815),(800,810,815),(801,811,815),(802,812,815),(803,813,815),(804,814,815),(805,816,828),(806,817,828),(807,818,828),(808,819,828),(809,820,828),(810,821,828),(811,822,828),(812,823,828),(813,824,828),(814,825,828),(815,826,828),(816,827,828),(817,829,841),(818,830,841),(819,831,841),(820,832,841),(821,833,841),(822,834,841),(823,835,841),(824,836,841),(825,837,841),(826,838,841),(827,839,841),(828,840,841),(841,842,854),(842,843,854),(843,844,854),(844,845,854),(845,846,854),(846,847,854),(847,848,854),(848,849,854),(849,850,854),(850,851,854),(851,852,854),(852,853,854),(853,855,867),(854,856,867),(855,857,867),(856,858,867),(857,859,867),(858,860,867),(859,861,867),(860,862,867),(861,863,867),(862,864,867),(863,865,867),(864,866,867),(865,868,880),(866,869,880),(867,870,880),(868,871,880),(869,872,880),(870,873,880),(871,874,880),(872,875,880),(873,876,880),(874,877,880),(875,878,880),(876,879,880),(877,881,893),(878,882,893),(879,883,893),(880,884,893),(881,885,893),(882,886,893),(883,887,893),(884,888,893),(885,889,893),(886,890,893),(887,891,893),(888,892,893),(889,894,898),(890,895,898),(891,896,898),(892,897,898),(893,899,911),(894,900,911),(895,901,911),(896,902,911),(897,903,911),(898,904,911),(899,905,911),(900,906,911),(901,907,911),(902,908,911),(903,909,911),(904,910,911),(905,912,924),(906,913,924),(907,914,924),(908,915,924),(909,916,924),(910,917,924),(911,918,924),(912,919,924),(913,920,924),(914,921,924),(915,922,924),(916,923,924),(917,925,937),(918,926,937),(919,927,937),(920,928,937),(921,929,937),(922,930,937),(923,931,937),(924,932,937),(925,933,937),(926,934,937),(927,935,937),(928,936,937),(941,938,950),(942,939,950),(943,940,950),(944,941,950),(945,942,950),(946,943,950),(947,944,950),(948,945,950),(949,946,950),(950,947,950),(951,948,950),(952,949,950),(953,951,963),(954,952,963),(955,953,963),(956,954,963),(957,955,963),(958,956,963),(959,957,963),(960,958,963),(961,959,963),(962,960,963),(963,961,963),(964,962,963),(965,964,976),(966,965,976),(967,966,976),(968,967,976),(969,968,976),(970,969,976),(971,970,976),(972,971,976),(973,972,976),(974,973,976),(975,974,976),(976,975,976),(977,977,989),(978,978,989),(979,979,989),(980,980,989),(981,981,989),(982,982,989),(983,983,989),(984,984,989),(985,985,989),(986,986,989),(987,987,989),(988,988,989),(989,990,1002),(990,991,1002),(991,992,1002),(992,993,1002),(993,994,1002),(994,995,1002),(995,996,1002),(996,997,1002),(997,998,1002),(998,999,1002),(999,1000,1002),(1000,1001,1002),(1001,1003,1015),(1002,1004,1015),(1003,1005,1015),(1004,1006,1015),(1005,1007,1015),(1006,1008,1015),(1007,1009,1015),(1008,1010,1015),(1009,1011,1015),(1010,1012,1015),(1011,1013,1015),(1012,1014,1015),(1013,1016,1028),(1014,1017,1028),(1015,1018,1028),(1016,1019,1028),(1017,1020,1028),(1018,1021,1028),(1019,1022,1028),(1020,1023,1028),(1021,1024,1028),(1022,1025,1028),(1023,1026,1028),(1024,1027,1028),(1025,1029,1044),(1026,1030,1044),(1027,1031,1044),(1028,1032,1044),(1029,1033,1044),(1030,1034,1044),(1031,1035,1044),(1032,1036,1044),(1033,1037,1044),(1034,1038,1044),(1035,1039,1044),(1036,1040,1044),(1037,1041,1044),(1038,1042,1044),(1039,1043,1044),(1052,1045,1060),(1053,1046,1060),(1054,1047,1060),(1055,1048,1060),(1056,1049,1060),(1057,1050,1060),(1058,1051,1060),(1059,1052,1060),(1060,1053,1060),(1061,1054,1060),(1062,1055,1060),(1063,1056,1060),(1064,1057,1060),(1065,1058,1060),(1066,1059,1060),(1067,1061,1076),(1068,1062,1076),(1069,1063,1076),(1070,1064,1076),(1071,1065,1076),(1072,1066,1076),(1073,1067,1076),(1074,1068,1076),(1075,1069,1076),(1076,1070,1076),(1077,1071,1076),(1078,1072,1076),(1079,1073,1076),(1080,1074,1076),(1081,1075,1076),(1082,1077,1092),(1083,1078,1092),(1084,1079,1092),(1085,1080,1092),(1086,1081,1092),(1087,1082,1092),(1088,1083,1092),(1089,1084,1092),(1090,1085,1092),(1091,1086,1092),(1092,1087,1092),(1093,1088,1092),(1094,1089,1092),(1095,1090,1092),(1096,1091,1092),(1097,1093,1108),(1098,1094,1108),(1099,1095,1108),(1100,1096,1108),(1101,1097,1108),(1102,1098,1108),(1103,1099,1108),(1104,1100,1108),(1105,1101,1108),(1106,1102,1108),(1107,1103,1108),(1108,1104,1108),(1109,1105,1108),(1110,1106,1108),(1111,1107,1108),(1112,1109,1114),(1113,1110,1114),(1114,1111,1114),(1115,1112,1114),(1116,1113,1114),(1117,1115,1130),(1118,1116,1130),(1119,1117,1130),(1120,1118,1130),(1121,1119,1130),(1122,1120,1130),(1123,1121,1130),(1124,1122,1130),(1125,1123,1130),(1126,1124,1130),(1127,1125,1130),(1128,1126,1130),(1129,1127,1130),(1130,1128,1130),(1131,1129,1130),(1132,1131,1146),(1133,1132,1146),(1134,1133,1146),(1135,1134,1146),(1136,1135,1146),(1137,1136,1146),(1138,1137,1146),(1139,1138,1146),(1140,1139,1146),(1141,1140,1146),(1142,1141,1146),(1143,1142,1146),(1144,1143,1146),(1145,1144,1146),(1146,1145,1146),(1162,1147,1162),(1163,1148,1162),(1164,1149,1162),(1165,1150,1162),(1166,1151,1162),(1167,1152,1162),(1168,1153,1162),(1169,1154,1162),(1170,1155,1162),(1171,1156,1162),(1172,1157,1162),(1173,1158,1162),(1174,1159,1162),(1175,1160,1162),(1176,1161,1162),(1177,1163,1178),(1178,1164,1178),(1179,1165,1178),(1180,1166,1178),(1181,1167,1178),(1182,1168,1178),(1183,1169,1178),(1184,1170,1178),(1185,1171,1178),(1186,1172,1178),(1187,1173,1178),(1188,1174,1178),(1189,1175,1178),(1190,1176,1178),(1191,1177,1178),(1192,1179,1194),(1193,1180,1194),(1194,1181,1194),(1195,1182,1194),(1196,1183,1194),(1197,1184,1194),(1198,1185,1194),(1199,1186,1194),(1200,1187,1194),(1201,1188,1194),(1202,1189,1194),(1203,1190,1194),(1204,1191,1194),(1205,1192,1194),(1206,1193,1194),(1207,1195,1210),(1208,1196,1210),(1209,1197,1210),(1210,1198,1210),(1211,1199,1210),(1212,1200,1210),(1213,1201,1210),(1214,1202,1210),(1215,1203,1210),(1216,1204,1210),(1217,1205,1210),(1218,1206,1210),(1219,1207,1210),(1220,1208,1210),(1221,1209,1210),(1222,1211,1220),(1223,1212,1220),(1224,1213,1220),(1225,1214,1220),(1226,1215,1220),(1227,1216,1220),(1228,1217,1220),(1229,1218,1220),(1230,1219,1220),(1231,1221,1236),(1232,1222,1236),(1233,1223,1236),(1234,1224,1236),(1235,1225,1236),(1236,1226,1236),(1237,1227,1236),(1238,1228,1236),(1239,1229,1236),(1240,1230,1236),(1241,1231,1236),(1242,1232,1236),(1243,1233,1236),(1244,1234,1236),(1245,1235,1236),(1261,1237,1252),(1262,1238,1252),(1263,1239,1252),(1264,1240,1252),(1265,1241,1252),(1266,1242,1252),(1267,1243,1252),(1268,1244,1252),(1269,1245,1252),(1270,1246,1252),(1271,1247,1252),(1272,1248,1252),(1273,1249,1252),(1274,1250,1252),(1275,1251,1252),(1276,1253,1268),(1277,1254,1268),(1278,1255,1268),(1279,1256,1268),(1280,1257,1268),(1281,1258,1268),(1282,1259,1268),(1283,1260,1268),(1284,1261,1268),(1285,1262,1268),(1286,1263,1268),(1287,1264,1268),(1288,1265,1268),(1289,1266,1268),(1290,1267,1268),(1291,1269,1284),(1292,1270,1284),(1293,1271,1284),(1294,1272,1284),(1295,1273,1284),(1296,1274,1284),(1297,1275,1284),(1298,1276,1284),(1299,1277,1284),(1300,1278,1284),(1301,1279,1284),(1302,1280,1284),(1303,1281,1284),(1304,1282,1284),(1305,1283,1284),(1306,1285,1300),(1307,1286,1300),(1308,1287,1300),(1309,1288,1300),(1310,1289,1300),(1311,1290,1300),(1312,1291,1300),(1313,1292,1300),(1314,1293,1300),(1315,1294,1300),(1316,1295,1300),(1317,1296,1300),(1318,1297,1300),(1319,1298,1300),(1320,1299,1300),(1321,1301,1316),(1322,1302,1316),(1323,1303,1316),(1324,1304,1316),(1325,1305,1316),(1326,1306,1316),(1327,1307,1316),(1328,1308,1316),(1329,1309,1316),(1330,1310,1316),(1331,1311,1316),(1332,1312,1316),(1333,1313,1316),(1334,1314,1316),(1335,1315,1316),(1336,1317,1332),(1337,1318,1332),(1338,1319,1332),(1339,1320,1332),(1340,1321,1332),(1341,1322,1332),(1342,1323,1332),(1343,1324,1332),(1344,1325,1332),(1345,1326,1332),(1346,1327,1332),(1347,1328,1332),(1348,1329,1332),(1349,1330,1332),(1350,1331,1332),(1366,1333,1348),(1367,1334,1348),(1368,1335,1348),(1369,1336,1348),(1370,1337,1348),(1371,1338,1348),(1372,1339,1348),(1373,1340,1348),(1374,1341,1348),(1375,1342,1348),(1376,1343,1348),(1377,1344,1348),(1378,1345,1348),(1379,1346,1348),(1380,1347,1348),(1381,1349,1364),(1382,1350,1364),(1383,1351,1364),(1384,1352,1364),(1385,1353,1364),(1386,1354,1364),(1387,1355,1364),(1388,1356,1364),(1389,1357,1364),(1390,1358,1364),(1391,1359,1364),(1392,1360,1364),(1393,1361,1364),(1394,1362,1364),(1395,1363,1364),(1396,1365,1380),(1397,1366,1380),(1398,1367,1380),(1399,1368,1380),(1400,1369,1380),(1401,1370,1380),(1402,1371,1380),(1403,1372,1380),(1404,1373,1380),(1405,1374,1380),(1406,1375,1380),(1407,1376,1380),(1408,1377,1380),(1409,1378,1380),(1410,1379,1380),(1411,1381,1396),(1412,1382,1396),(1413,1383,1396),(1414,1384,1396),(1415,1385,1396),(1416,1386,1396),(1417,1387,1396),(1418,1388,1396),(1419,1389,1396),(1420,1390,1396),(1421,1391,1396),(1422,1392,1396),(1423,1393,1396),(1424,1394,1396),(1425,1395,1396),(1426,1397,1412),(1427,1398,1412),(1428,1399,1412),(1429,1400,1412),(1430,1401,1412),(1431,1402,1412),(1432,1403,1412),(1433,1404,1412),(1434,1405,1412),(1435,1406,1412),(1436,1407,1412),(1437,1408,1412),(1438,1409,1412),(1439,1410,1412),(1440,1411,1412),(1441,1413,1428),(1442,1414,1428),(1443,1415,1428),(1444,1416,1428),(1445,1417,1428),(1446,1418,1428),(1447,1419,1428),(1448,1420,1428),(1449,1421,1428),(1450,1422,1428),(1451,1423,1428),(1452,1424,1428),(1453,1425,1428),(1454,1426,1428),(1455,1427,1428),(1456,1429,1444),(1457,1430,1444),(1458,1431,1444),(1459,1432,1444),(1460,1433,1444),(1461,1434,1444),(1462,1435,1444),(1463,1436,1444),(1464,1437,1444),(1465,1438,1444),(1466,1439,1444),(1467,1440,1444),(1468,1441,1444),(1469,1442,1444),(1470,1443,1444),(1486,1445,1460),(1487,1446,1460),(1488,1447,1460),(1489,1448,1460),(1490,1449,1460),(1491,1450,1460),(1492,1451,1460),(1493,1452,1460),(1494,1453,1460),(1495,1454,1460),(1496,1455,1460),(1497,1456,1460),(1498,1457,1460),(1499,1458,1460),(1500,1459,1460),(1501,1461,1476),(1502,1462,1476),(1503,1463,1476),(1504,1464,1476),(1505,1465,1476),(1506,1466,1476),(1507,1467,1476),(1508,1468,1476),(1509,1469,1476),(1510,1470,1476),(1511,1471,1476),(1512,1472,1476),(1513,1473,1476),(1514,1474,1476),(1515,1475,1476),(1516,1477,1492),(1517,1478,1492),(1518,1479,1492),(1519,1480,1492),(1520,1481,1492),(1521,1482,1492),(1522,1483,1492),(1523,1484,1492),(1524,1485,1492),(1525,1486,1492),(1526,1487,1492),(1527,1488,1492),(1528,1489,1492),(1529,1490,1492),(1530,1491,1492),(1531,1493,1508),(1532,1494,1508),(1533,1495,1508),(1534,1496,1508),(1535,1497,1508),(1536,1498,1508),(1537,1499,1508),(1538,1500,1508),(1539,1501,1508),(1540,1502,1508),(1541,1503,1508),(1542,1504,1508),(1543,1505,1508),(1544,1506,1508),(1545,1507,1508),(1546,1509,1524),(1547,1510,1524),(1548,1511,1524),(1549,1512,1524),(1550,1513,1524),(1551,1514,1524),(1552,1515,1524),(1553,1516,1524),(1554,1517,1524),(1555,1518,1524),(1556,1519,1524),(1557,1520,1524),(1558,1521,1524),(1559,1522,1524),(1560,1523,1524),(1561,1525,1540),(1562,1526,1540),(1563,1527,1540),(1564,1528,1540),(1565,1529,1540),(1566,1530,1540),(1567,1531,1540),(1568,1532,1540),(1569,1533,1540),(1570,1534,1540),(1571,1535,1540),(1572,1536,1540),(1573,1537,1540),(1574,1538,1540),(1575,1539,1540),(1591,1541,1556),(1592,1542,1556),(1593,1543,1556),(1594,1544,1556),(1595,1545,1556),(1596,1546,1556),(1597,1547,1556),(1598,1548,1556),(1599,1549,1556),(1600,1550,1556),(1601,1551,1556),(1602,1552,1556),(1603,1553,1556),(1604,1554,1556),(1605,1555,1556),(1606,1557,1572),(1607,1558,1572),(1608,1559,1572),(1609,1560,1572),(1610,1561,1572),(1611,1562,1572),(1612,1563,1572),(1613,1564,1572),(1614,1565,1572),(1615,1566,1572),(1616,1567,1572),(1617,1568,1572),(1618,1569,1572),(1619,1570,1572),(1620,1571,1572),(1621,1573,1588),(1622,1574,1588),(1623,1575,1588),(1624,1576,1588),(1625,1577,1588),(1626,1578,1588),(1627,1579,1588),(1628,1580,1588),(1629,1581,1588),(1630,1582,1588),(1631,1583,1588),(1632,1584,1588),(1633,1585,1588),(1634,1586,1588),(1635,1587,1588),(1636,1589,1604),(1637,1590,1604),(1638,1591,1604),(1639,1592,1604),(1640,1593,1604),(1641,1594,1604),(1642,1595,1604),(1643,1596,1604),(1644,1597,1604),(1645,1598,1604),(1646,1599,1604),(1647,1600,1604),(1648,1601,1604),(1649,1602,1604),(1650,1603,1604),(1651,1605,1620),(1652,1606,1620),(1653,1607,1620),(1654,1608,1620),(1655,1609,1620),(1656,1610,1620),(1657,1611,1620),(1658,1612,1620),(1659,1613,1620),(1660,1614,1620),(1661,1615,1620),(1662,1616,1620),(1663,1617,1620),(1664,1618,1620),(1665,1619,1620),(1666,1621,1636),(1667,1622,1636),(1668,1623,1636),(1669,1624,1636),(1670,1625,1636),(1671,1626,1636),(1672,1627,1636),(1673,1628,1636),(1674,1629,1636),(1675,1630,1636),(1676,1631,1636),(1677,1632,1636),(1678,1633,1636),(1679,1634,1636),(1680,1635,1636),(1696,1637,1652),(1697,1638,1652),(1698,1639,1652),(1699,1640,1652),(1700,1641,1652),(1701,1642,1652),(1702,1643,1652),(1703,1644,1652),(1704,1645,1652),(1705,1646,1652),(1706,1647,1652),(1707,1648,1652),(1708,1649,1652),(1709,1650,1652),(1710,1651,1652),(1711,1653,1668),(1712,1654,1668),(1713,1655,1668),(1714,1656,1668),(1715,1657,1668),(1716,1658,1668),(1717,1659,1668),(1718,1660,1668),(1719,1661,1668),(1720,1662,1668),(1721,1663,1668),(1722,1664,1668),(1723,1665,1668),(1724,1666,1668),(1725,1667,1668),(1726,1669,1684),(1727,1670,1684),(1728,1671,1684),(1729,1672,1684),(1730,1673,1684),(1731,1674,1684),(1732,1675,1684),(1733,1676,1684),(1734,1677,1684),(1735,1678,1684),(1736,1679,1684),(1737,1680,1684),(1738,1681,1684),(1739,1682,1684),(1740,1683,1684),(1741,1685,1700),(1742,1686,1700),(1743,1687,1700),(1744,1688,1700),(1745,1689,1700),(1746,1690,1700),(1747,1691,1700),(1748,1692,1700),(1749,1693,1700),(1750,1694,1700),(1751,1695,1700),(1752,1696,1700),(1753,1697,1700),(1754,1698,1700),(1755,1699,1700),(1756,1701,1716),(1757,1702,1716),(1758,1703,1716),(1759,1704,1716),(1760,1705,1716),(1761,1706,1716),(1762,1707,1716),(1763,1708,1716),(1764,1709,1716),(1765,1710,1716),(1766,1711,1716),(1767,1712,1716),(1768,1713,1716),(1769,1714,1716),(1770,1715,1716),(1771,1717,1732),(1772,1718,1732),(1773,1719,1732),(1774,1720,1732),(1775,1721,1732),(1776,1722,1732),(1777,1723,1732),(1778,1724,1732),(1779,1725,1732),(1780,1726,1732),(1781,1727,1732),(1782,1728,1732),(1783,1729,1732),(1784,1730,1732),(1785,1731,1732),(1801,1733,1748),(1802,1734,1748),(1803,1735,1748),(1804,1736,1748),(1805,1737,1748),(1806,1738,1748),(1807,1739,1748),(1808,1740,1748),(1809,1741,1748),(1810,1742,1748),(1811,1743,1748),(1812,1744,1748),(1813,1745,1748),(1814,1746,1748),(1815,1747,1748),(1816,1749,1764),(1817,1750,1764),(1818,1751,1764),(1819,1752,1764),(1820,1753,1764),(1821,1754,1764),(1822,1755,1764),(1823,1756,1764),(1824,1757,1764),(1825,1758,1764),(1826,1759,1764),(1827,1760,1764),(1828,1761,1764),(1829,1762,1764),(1830,1763,1764),(1831,1765,1780),(1832,1766,1780),(1833,1767,1780),(1834,1768,1780),(1835,1769,1780),(1836,1770,1780),(1837,1771,1780),(1838,1772,1780),(1839,1773,1780),(1840,1774,1780),(1841,1775,1780),(1842,1776,1780),(1843,1777,1780),(1844,1778,1780),(1845,1779,1780),(1846,1781,1796),(1847,1782,1796),(1848,1783,1796),(1849,1784,1796),(1850,1785,1796),(1851,1786,1796),(1852,1787,1796),(1853,1788,1796),(1854,1789,1796),(1855,1790,1796),(1856,1791,1796),(1857,1792,1796),(1858,1793,1796),(1859,1794,1796),(1860,1795,1796),(1861,1797,1812),(1862,1798,1812),(1863,1799,1812),(1864,1800,1812),(1865,1801,1812),(1866,1802,1812),(1867,1803,1812),(1868,1804,1812),(1869,1805,1812),(1870,1806,1812),(1871,1807,1812),(1872,1808,1812),(1873,1809,1812),(1874,1810,1812),(1875,1811,1812),(1876,1813,1819),(1877,1814,1819),(1878,1815,1819),(1879,1816,1819),(1880,1817,1819),(1881,1818,1819),(1882,1820,1826),(1883,1821,1826),(1884,1822,1826),(1885,1823,1826),(1886,1824,1826),(1887,1825,1826),(1888,1827,1833),(1889,1828,1833),(1890,1829,1833),(1891,1830,1833),(1892,1831,1833),(1893,1832,1833),(1894,1834,1840),(1895,1835,1840),(1896,1836,1840),(1897,1837,1840),(1898,1838,1840),(1899,1839,1840),(1915,1841,1847),(1916,1842,1847),(1917,1843,1847),(1918,1844,1847),(1919,1845,1847),(1920,1846,1847),(1921,1848,1854),(1922,1849,1854),(1923,1850,1854),(1924,1851,1854),(1925,1852,1854),(1926,1853,1854),(1927,1855,1861),(1928,1856,1861),(1929,1857,1861),(1930,1858,1861),(1931,1859,1861),(1932,1860,1861),(1933,1862,1868),(1934,1863,1868),(1935,1864,1868),(1936,1865,1868),(1937,1866,1868),(1938,1867,1868),(1939,1869,1875),(1940,1870,1875),(1941,1871,1875),(1942,1872,1875),(1943,1873,1875),(1944,1874,1875),(1945,1876,1882),(1946,1877,1882),(1947,1878,1882),(1948,1879,1882),(1949,1880,1882),(1950,1881,1882),(1951,1883,1889),(1952,1884,1889),(1953,1885,1889),(1954,1886,1889),(1955,1887,1889),(1956,1888,1889),(1957,1890,1896),(1958,1891,1896),(1959,1892,1896),(1960,1893,1896),(1961,1894,1896),(1962,1895,1896),(1963,1897,1903),(1964,1898,1903),(1965,1899,1903),(1966,1900,1903),(1967,1901,1903),(1968,1902,1903),(1969,1904,1919),(1970,1905,1919),(1971,1906,1919),(1972,1907,1919),(1973,1908,1919),(1974,1909,1919),(1975,1910,1919),(1976,1911,1919),(1977,1912,1919),(1978,1913,1919),(1979,1914,1919),(1980,1915,1919),(1981,1916,1919),(1982,1917,1919),(1983,1918,1919),(1984,1920,1935),(1985,1921,1935),(1986,1922,1935),(1987,1923,1935),(1988,1924,1935),(1989,1925,1935),(1990,1926,1935),(1991,1927,1935),(1992,1928,1935),(1993,1929,1935),(1994,1930,1935),(1995,1931,1935),(1996,1932,1935),(1997,1933,1935),(1998,1934,1935),(2005,1936,1951),(2006,1937,1951),(2007,1938,1951),(2008,1939,1951),(2009,1940,1951),(2010,1941,1951),(2011,1942,1951),(2012,1943,1951),(2013,1944,1951),(2014,1945,1951),(2015,1946,1951),(2016,1947,1951),(2017,1948,1951),(2018,1949,1951),(2019,1950,1951),(2020,1952,1967),(2021,1953,1967),(2022,1954,1967),(2023,1955,1967),(2024,1956,1967),(2025,1957,1967),(2026,1958,1967),(2027,1959,1967),(2028,1960,1967),(2029,1961,1967),(2030,1962,1967),(2031,1963,1967),(2032,1964,1967),(2033,1965,1967),(2034,1966,1967),(2035,1968,1983),(2036,1969,1983),(2037,1970,1983),(2038,1971,1983),(2039,1972,1983),(2040,1973,1983),(2041,1974,1983),(2042,1975,1983),(2043,1976,1983),(2044,1977,1983),(2045,1978,1983),(2046,1979,1983),(2047,1980,1983),(2048,1981,1983),(2049,1982,1983),(2050,1984,1990),(2051,1985,1990),(2052,1986,1990),(2053,1987,1990),(2054,1988,1990),(2055,1989,1990),(2056,1991,1997),(2057,1992,1997),(2058,1993,1997),(2059,1994,1997),(2060,1995,1997),(2061,1996,1997),(2062,1998,2003),(2063,1999,2003),(2064,2000,2003),(2065,2001,2003),(2066,2002,2003),(2067,2004,2010),(2068,2005,2010),(2069,2006,2010),(2070,2007,2010),(2071,2008,2010),(2072,2009,2010),(2073,2011,2017),(2074,2012,2017),(2075,2013,2017),(2076,2014,2017),(2077,2015,2017),(2078,2016,2017),(2079,2018,2024),(2080,2019,2024),(2081,2020,2024),(2082,2021,2024),(2083,2022,2024),(2084,2023,2024),(2085,2025,2040),(2086,2026,2040),(2087,2027,2040),(2088,2028,2040),(2089,2029,2040),(2090,2030,2040),(2091,2031,2040),(2092,2032,2040),(2093,2033,2040),(2094,2034,2040),(2095,2035,2040),(2096,2036,2040),(2097,2037,2040),(2098,2038,2040),(2099,2039,2040);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_super_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_website` (
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`product_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_WS_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_WS_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Website Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_website`
--

LOCK TABLES `[[dbprefix]]catalog_product_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_website` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_website` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(21,1),(22,1),(23,1),(24,1),(25,1),(26,1),(27,1),(28,1),(29,1),(30,1),(31,1),(32,1),(33,1),(34,1),(35,1),(36,1),(37,1),(38,1),(39,1),(40,1),(41,1),(42,1),(43,1),(44,1),(45,1),(46,1),(47,1),(48,1),(49,1),(50,1),(51,1),(52,1),(53,1),(54,1),(55,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(62,1),(63,1),(64,1),(65,1),(66,1),(67,1),(68,1),(69,1),(70,1),(71,1),(72,1),(73,1),(74,1),(75,1),(76,1),(77,1),(78,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(85,1),(86,1),(87,1),(88,1),(89,1),(90,1),(91,1),(92,1),(93,1),(94,1),(95,1),(96,1),(97,1),(98,1),(99,1),(100,1),(101,1),(102,1),(103,1),(104,1),(105,1),(106,1),(107,1),(108,1),(109,1),(110,1),(111,1),(112,1),(113,1),(114,1),(115,1),(116,1),(117,1),(118,1),(119,1),(120,1),(121,1),(122,1),(123,1),(124,1),(125,1),(126,1),(127,1),(128,1),(129,1),(130,1),(131,1),(132,1),(133,1),(134,1),(135,1),(136,1),(137,1),(138,1),(139,1),(140,1),(141,1),(142,1),(143,1),(144,1),(145,1),(146,1),(147,1),(148,1),(149,1),(150,1),(151,1),(152,1),(153,1),(154,1),(155,1),(156,1),(157,1),(158,1),(159,1),(160,1),(161,1),(162,1),(163,1),(164,1),(165,1),(166,1),(167,1),(168,1),(169,1),(170,1),(171,1),(172,1),(173,1),(174,1),(175,1),(176,1),(177,1),(178,1),(179,1),(180,1),(181,1),(182,1),(183,1),(184,1),(185,1),(186,1),(187,1),(188,1),(189,1),(190,1),(191,1),(192,1),(193,1),(194,1),(195,1),(196,1),(197,1),(198,1),(199,1),(200,1),(201,1),(202,1),(203,1),(204,1),(205,1),(206,1),(207,1),(208,1),(209,1),(210,1),(211,1),(212,1),(213,1),(214,1),(215,1),(216,1),(217,1),(218,1),(219,1),(220,1),(221,1),(222,1),(223,1),(224,1),(225,1),(226,1),(227,1),(228,1),(229,1),(230,1),(231,1),(232,1),(233,1),(234,1),(235,1),(236,1),(237,1),(238,1),(239,1),(240,1),(241,1),(242,1),(243,1),(244,1),(245,1),(246,1),(247,1),(248,1),(249,1),(250,1),(251,1),(252,1),(253,1),(254,1),(255,1),(256,1),(257,1),(258,1),(259,1),(260,1),(261,1),(262,1),(263,1),(264,1),(265,1),(266,1),(267,1),(268,1),(269,1),(270,1),(271,1),(272,1),(273,1),(274,1),(275,1),(276,1),(277,1),(278,1),(279,1),(280,1),(281,1),(282,1),(283,1),(284,1),(285,1),(286,1),(287,1),(288,1),(289,1),(290,1),(291,1),(292,1),(293,1),(294,1),(295,1),(296,1),(297,1),(298,1),(299,1),(300,1),(301,1),(302,1),(303,1),(304,1),(305,1),(306,1),(307,1),(308,1),(309,1),(310,1),(311,1),(312,1),(313,1),(314,1),(315,1),(316,1),(317,1),(318,1),(319,1),(320,1),(321,1),(322,1),(323,1),(324,1),(325,1),(326,1),(327,1),(328,1),(329,1),(330,1),(331,1),(332,1),(333,1),(334,1),(335,1),(336,1),(337,1),(338,1),(339,1),(340,1),(341,1),(342,1),(343,1),(344,1),(345,1),(346,1),(347,1),(348,1),(349,1),(350,1),(351,1),(352,1),(353,1),(354,1),(355,1),(356,1),(357,1),(358,1),(359,1),(360,1),(361,1),(362,1),(363,1),(364,1),(365,1),(366,1),(367,1),(368,1),(369,1),(370,1),(371,1),(372,1),(373,1),(374,1),(375,1),(376,1),(377,1),(378,1),(379,1),(380,1),(381,1),(382,1),(383,1),(384,1),(385,1),(386,1),(387,1),(388,1),(389,1),(390,1),(391,1),(392,1),(393,1),(394,1),(395,1),(396,1),(397,1),(398,1),(399,1),(400,1),(401,1),(402,1),(403,1),(404,1),(405,1),(406,1),(407,1),(408,1),(409,1),(410,1),(411,1),(412,1),(413,1),(414,1),(415,1),(416,1),(417,1),(418,1),(419,1),(420,1),(421,1),(422,1),(423,1),(424,1),(425,1),(426,1),(427,1),(428,1),(429,1),(430,1),(431,1),(432,1),(433,1),(434,1),(435,1),(436,1),(437,1),(438,1),(439,1),(440,1),(441,1),(442,1),(443,1),(444,1),(445,1),(446,1),(447,1),(448,1),(449,1),(450,1),(451,1),(452,1),(453,1),(454,1),(455,1),(456,1),(457,1),(458,1),(459,1),(460,1),(461,1),(462,1),(463,1),(464,1),(465,1),(466,1),(467,1),(468,1),(469,1),(470,1),(471,1),(472,1),(473,1),(474,1),(475,1),(476,1),(477,1),(478,1),(479,1),(480,1),(481,1),(482,1),(483,1),(484,1),(485,1),(486,1),(487,1),(488,1),(489,1),(490,1),(491,1),(492,1),(493,1),(494,1),(495,1),(496,1),(497,1),(498,1),(499,1),(500,1),(501,1),(502,1),(503,1),(504,1),(505,1),(506,1),(507,1),(508,1),(509,1),(510,1),(511,1),(512,1),(513,1),(514,1),(515,1),(516,1),(517,1),(518,1),(519,1),(520,1),(521,1),(522,1),(523,1),(524,1),(525,1),(526,1),(527,1),(528,1),(529,1),(530,1),(531,1),(532,1),(533,1),(534,1),(535,1),(536,1),(537,1),(538,1),(539,1),(540,1),(541,1),(542,1),(543,1),(544,1),(545,1),(546,1),(547,1),(548,1),(549,1),(550,1),(551,1),(552,1),(553,1),(554,1),(555,1),(556,1),(557,1),(558,1),(559,1),(560,1),(561,1),(562,1),(563,1),(564,1),(565,1),(566,1),(567,1),(568,1),(569,1),(570,1),(571,1),(572,1),(573,1),(574,1),(575,1),(576,1),(577,1),(578,1),(579,1),(580,1),(581,1),(582,1),(583,1),(584,1),(585,1),(586,1),(587,1),(588,1),(589,1),(590,1),(591,1),(592,1),(593,1),(594,1),(595,1),(596,1),(597,1),(598,1),(599,1),(600,1),(601,1),(602,1),(603,1),(604,1),(605,1),(606,1),(607,1),(608,1),(609,1),(610,1),(611,1),(612,1),(613,1),(614,1),(615,1),(616,1),(617,1),(618,1),(619,1),(620,1),(621,1),(622,1),(623,1),(624,1),(625,1),(626,1),(627,1),(628,1),(629,1),(630,1),(631,1),(632,1),(633,1),(634,1),(635,1),(636,1),(637,1),(638,1),(639,1),(640,1),(641,1),(642,1),(643,1),(644,1),(645,1),(646,1),(647,1),(648,1),(649,1),(650,1),(651,1),(652,1),(653,1),(654,1),(655,1),(656,1),(657,1),(658,1),(659,1),(660,1),(661,1),(662,1),(663,1),(664,1),(665,1),(666,1),(667,1),(668,1),(669,1),(670,1),(671,1),(672,1),(673,1),(674,1),(675,1),(676,1),(677,1),(678,1),(679,1),(680,1),(681,1),(682,1),(683,1),(684,1),(685,1),(686,1),(687,1),(688,1),(689,1),(690,1),(691,1),(692,1),(693,1),(694,1),(695,1),(696,1),(697,1),(698,1),(699,1),(700,1),(701,1),(702,1),(703,1),(704,1),(705,1),(706,1),(707,1),(708,1),(709,1),(710,1),(711,1),(712,1),(713,1),(714,1),(715,1),(716,1),(717,1),(718,1),(719,1),(720,1),(721,1),(722,1),(723,1),(724,1),(725,1),(726,1),(727,1),(728,1),(729,1),(730,1),(731,1),(732,1),(733,1),(734,1),(735,1),(736,1),(737,1),(738,1),(739,1),(740,1),(741,1),(742,1),(743,1),(744,1),(745,1),(746,1),(747,1),(748,1),(749,1),(750,1),(751,1),(752,1),(753,1),(754,1),(755,1),(756,1),(757,1),(758,1),(759,1),(760,1),(761,1),(762,1),(763,1),(764,1),(765,1),(766,1),(767,1),(768,1),(769,1),(770,1),(771,1),(772,1),(773,1),(774,1),(775,1),(776,1),(777,1),(778,1),(779,1),(780,1),(781,1),(782,1),(783,1),(784,1),(785,1),(786,1),(787,1),(788,1),(789,1),(790,1),(791,1),(792,1),(793,1),(794,1),(795,1),(796,1),(797,1),(798,1),(799,1),(800,1),(801,1),(802,1),(803,1),(804,1),(805,1),(806,1),(807,1),(808,1),(809,1),(810,1),(811,1),(812,1),(813,1),(814,1),(815,1),(816,1),(817,1),(818,1),(819,1),(820,1),(821,1),(822,1),(823,1),(824,1),(825,1),(826,1),(827,1),(828,1),(829,1),(830,1),(831,1),(832,1),(833,1),(834,1),(835,1),(836,1),(837,1),(838,1),(839,1),(840,1),(841,1),(842,1),(843,1),(844,1),(845,1),(846,1),(847,1),(848,1),(849,1),(850,1),(851,1),(852,1),(853,1),(854,1),(855,1),(856,1),(857,1),(858,1),(859,1),(860,1),(861,1),(862,1),(863,1),(864,1),(865,1),(866,1),(867,1),(868,1),(869,1),(870,1),(871,1),(872,1),(873,1),(874,1),(875,1),(876,1),(877,1),(878,1),(879,1),(880,1),(881,1),(882,1),(883,1),(884,1),(885,1),(886,1),(887,1),(888,1),(889,1),(890,1),(891,1),(892,1),(893,1),(894,1),(895,1),(896,1),(897,1),(898,1),(899,1),(900,1),(901,1),(902,1),(903,1),(904,1),(905,1),(906,1),(907,1),(908,1),(909,1),(910,1),(911,1),(912,1),(913,1),(914,1),(915,1),(916,1),(917,1),(918,1),(919,1),(920,1),(921,1),(922,1),(923,1),(924,1),(925,1),(926,1),(927,1),(928,1),(929,1),(930,1),(931,1),(932,1),(933,1),(934,1),(935,1),(936,1),(937,1),(938,1),(939,1),(940,1),(941,1),(942,1),(943,1),(944,1),(945,1),(946,1),(947,1),(948,1),(949,1),(950,1),(951,1),(952,1),(953,1),(954,1),(955,1),(956,1),(957,1),(958,1),(959,1),(960,1),(961,1),(962,1),(963,1),(964,1),(965,1),(966,1),(967,1),(968,1),(969,1),(970,1),(971,1),(972,1),(973,1),(974,1),(975,1),(976,1),(977,1),(978,1),(979,1),(980,1),(981,1),(982,1),(983,1),(984,1),(985,1),(986,1),(987,1),(988,1),(989,1),(990,1),(991,1),(992,1),(993,1),(994,1),(995,1),(996,1),(997,1),(998,1),(999,1),(1000,1),(1001,1),(1002,1),(1003,1),(1004,1),(1005,1),(1006,1),(1007,1),(1008,1),(1009,1),(1010,1),(1011,1),(1012,1),(1013,1),(1014,1),(1015,1),(1016,1),(1017,1),(1018,1),(1019,1),(1020,1),(1021,1),(1022,1),(1023,1),(1024,1),(1025,1),(1026,1),(1027,1),(1028,1),(1029,1),(1030,1),(1031,1),(1032,1),(1033,1),(1034,1),(1035,1),(1036,1),(1037,1),(1038,1),(1039,1),(1040,1),(1041,1),(1042,1),(1043,1),(1044,1),(1045,1),(1046,1),(1047,1),(1048,1),(1049,1),(1050,1),(1051,1),(1052,1),(1053,1),(1054,1),(1055,1),(1056,1),(1057,1),(1058,1),(1059,1),(1060,1),(1061,1),(1062,1),(1063,1),(1064,1),(1065,1),(1066,1),(1067,1),(1068,1),(1069,1),(1070,1),(1071,1),(1072,1),(1073,1),(1074,1),(1075,1),(1076,1),(1077,1),(1078,1),(1079,1),(1080,1),(1081,1),(1082,1),(1083,1),(1084,1),(1085,1),(1086,1),(1087,1),(1088,1),(1089,1),(1090,1),(1091,1),(1092,1),(1093,1),(1094,1),(1095,1),(1096,1),(1097,1),(1098,1),(1099,1),(1100,1),(1101,1),(1102,1),(1103,1),(1104,1),(1105,1),(1106,1),(1107,1),(1108,1),(1109,1),(1110,1),(1111,1),(1112,1),(1113,1),(1114,1),(1115,1),(1116,1),(1117,1),(1118,1),(1119,1),(1120,1),(1121,1),(1122,1),(1123,1),(1124,1),(1125,1),(1126,1),(1127,1),(1128,1),(1129,1),(1130,1),(1131,1),(1132,1),(1133,1),(1134,1),(1135,1),(1136,1),(1137,1),(1138,1),(1139,1),(1140,1),(1141,1),(1142,1),(1143,1),(1144,1),(1145,1),(1146,1),(1147,1),(1148,1),(1149,1),(1150,1),(1151,1),(1152,1),(1153,1),(1154,1),(1155,1),(1156,1),(1157,1),(1158,1),(1159,1),(1160,1),(1161,1),(1162,1),(1163,1),(1164,1),(1165,1),(1166,1),(1167,1),(1168,1),(1169,1),(1170,1),(1171,1),(1172,1),(1173,1),(1174,1),(1175,1),(1176,1),(1177,1),(1178,1),(1179,1),(1180,1),(1181,1),(1182,1),(1183,1),(1184,1),(1185,1),(1186,1),(1187,1),(1188,1),(1189,1),(1190,1),(1191,1),(1192,1),(1193,1),(1194,1),(1195,1),(1196,1),(1197,1),(1198,1),(1199,1),(1200,1),(1201,1),(1202,1),(1203,1),(1204,1),(1205,1),(1206,1),(1207,1),(1208,1),(1209,1),(1210,1),(1211,1),(1212,1),(1213,1),(1214,1),(1215,1),(1216,1),(1217,1),(1218,1),(1219,1),(1220,1),(1221,1),(1222,1),(1223,1),(1224,1),(1225,1),(1226,1),(1227,1),(1228,1),(1229,1),(1230,1),(1231,1),(1232,1),(1233,1),(1234,1),(1235,1),(1236,1),(1237,1),(1238,1),(1239,1),(1240,1),(1241,1),(1242,1),(1243,1),(1244,1),(1245,1),(1246,1),(1247,1),(1248,1),(1249,1),(1250,1),(1251,1),(1252,1),(1253,1),(1254,1),(1255,1),(1256,1),(1257,1),(1258,1),(1259,1),(1260,1),(1261,1),(1262,1),(1263,1),(1264,1),(1265,1),(1266,1),(1267,1),(1268,1),(1269,1),(1270,1),(1271,1),(1272,1),(1273,1),(1274,1),(1275,1),(1276,1),(1277,1),(1278,1),(1279,1),(1280,1),(1281,1),(1282,1),(1283,1),(1284,1),(1285,1),(1286,1),(1287,1),(1288,1),(1289,1),(1290,1),(1291,1),(1292,1),(1293,1),(1294,1),(1295,1),(1296,1),(1297,1),(1298,1),(1299,1),(1300,1),(1301,1),(1302,1),(1303,1),(1304,1),(1305,1),(1306,1),(1307,1),(1308,1),(1309,1),(1310,1),(1311,1),(1312,1),(1313,1),(1314,1),(1315,1),(1316,1),(1317,1),(1318,1),(1319,1),(1320,1),(1321,1),(1322,1),(1323,1),(1324,1),(1325,1),(1326,1),(1327,1),(1328,1),(1329,1),(1330,1),(1331,1),(1332,1),(1333,1),(1334,1),(1335,1),(1336,1),(1337,1),(1338,1),(1339,1),(1340,1),(1341,1),(1342,1),(1343,1),(1344,1),(1345,1),(1346,1),(1347,1),(1348,1),(1349,1),(1350,1),(1351,1),(1352,1),(1353,1),(1354,1),(1355,1),(1356,1),(1357,1),(1358,1),(1359,1),(1360,1),(1361,1),(1362,1),(1363,1),(1364,1),(1365,1),(1366,1),(1367,1),(1368,1),(1369,1),(1370,1),(1371,1),(1372,1),(1373,1),(1374,1),(1375,1),(1376,1),(1377,1),(1378,1),(1379,1),(1380,1),(1381,1),(1382,1),(1383,1),(1384,1),(1385,1),(1386,1),(1387,1),(1388,1),(1389,1),(1390,1),(1391,1),(1392,1),(1393,1),(1394,1),(1395,1),(1396,1),(1397,1),(1398,1),(1399,1),(1400,1),(1401,1),(1402,1),(1403,1),(1404,1),(1405,1),(1406,1),(1407,1),(1408,1),(1409,1),(1410,1),(1411,1),(1412,1),(1413,1),(1414,1),(1415,1),(1416,1),(1417,1),(1418,1),(1419,1),(1420,1),(1421,1),(1422,1),(1423,1),(1424,1),(1425,1),(1426,1),(1427,1),(1428,1),(1429,1),(1430,1),(1431,1),(1432,1),(1433,1),(1434,1),(1435,1),(1436,1),(1437,1),(1438,1),(1439,1),(1440,1),(1441,1),(1442,1),(1443,1),(1444,1),(1445,1),(1446,1),(1447,1),(1448,1),(1449,1),(1450,1),(1451,1),(1452,1),(1453,1),(1454,1),(1455,1),(1456,1),(1457,1),(1458,1),(1459,1),(1460,1),(1461,1),(1462,1),(1463,1),(1464,1),(1465,1),(1466,1),(1467,1),(1468,1),(1469,1),(1470,1),(1471,1),(1472,1),(1473,1),(1474,1),(1475,1),(1476,1),(1477,1),(1478,1),(1479,1),(1480,1),(1481,1),(1482,1),(1483,1),(1484,1),(1485,1),(1486,1),(1487,1),(1488,1),(1489,1),(1490,1),(1491,1),(1492,1),(1493,1),(1494,1),(1495,1),(1496,1),(1497,1),(1498,1),(1499,1),(1500,1),(1501,1),(1502,1),(1503,1),(1504,1),(1505,1),(1506,1),(1507,1),(1508,1),(1509,1),(1510,1),(1511,1),(1512,1),(1513,1),(1514,1),(1515,1),(1516,1),(1517,1),(1518,1),(1519,1),(1520,1),(1521,1),(1522,1),(1523,1),(1524,1),(1525,1),(1526,1),(1527,1),(1528,1),(1529,1),(1530,1),(1531,1),(1532,1),(1533,1),(1534,1),(1535,1),(1536,1),(1537,1),(1538,1),(1539,1),(1540,1),(1541,1),(1542,1),(1543,1),(1544,1),(1545,1),(1546,1),(1547,1),(1548,1),(1549,1),(1550,1),(1551,1),(1552,1),(1553,1),(1554,1),(1555,1),(1556,1),(1557,1),(1558,1),(1559,1),(1560,1),(1561,1),(1562,1),(1563,1),(1564,1),(1565,1),(1566,1),(1567,1),(1568,1),(1569,1),(1570,1),(1571,1),(1572,1),(1573,1),(1574,1),(1575,1),(1576,1),(1577,1),(1578,1),(1579,1),(1580,1),(1581,1),(1582,1),(1583,1),(1584,1),(1585,1),(1586,1),(1587,1),(1588,1),(1589,1),(1590,1),(1591,1),(1592,1),(1593,1),(1594,1),(1595,1),(1596,1),(1597,1),(1598,1),(1599,1),(1600,1),(1601,1),(1602,1),(1603,1),(1604,1),(1605,1),(1606,1),(1607,1),(1608,1),(1609,1),(1610,1),(1611,1),(1612,1),(1613,1),(1614,1),(1615,1),(1616,1),(1617,1),(1618,1),(1619,1),(1620,1),(1621,1),(1622,1),(1623,1),(1624,1),(1625,1),(1626,1),(1627,1),(1628,1),(1629,1),(1630,1),(1631,1),(1632,1),(1633,1),(1634,1),(1635,1),(1636,1),(1637,1),(1638,1),(1639,1),(1640,1),(1641,1),(1642,1),(1643,1),(1644,1),(1645,1),(1646,1),(1647,1),(1648,1),(1649,1),(1650,1),(1651,1),(1652,1),(1653,1),(1654,1),(1655,1),(1656,1),(1657,1),(1658,1),(1659,1),(1660,1),(1661,1),(1662,1),(1663,1),(1664,1),(1665,1),(1666,1),(1667,1),(1668,1),(1669,1),(1670,1),(1671,1),(1672,1),(1673,1),(1674,1),(1675,1),(1676,1),(1677,1),(1678,1),(1679,1),(1680,1),(1681,1),(1682,1),(1683,1),(1684,1),(1685,1),(1686,1),(1687,1),(1688,1),(1689,1),(1690,1),(1691,1),(1692,1),(1693,1),(1694,1),(1695,1),(1696,1),(1697,1),(1698,1),(1699,1),(1700,1),(1701,1),(1702,1),(1703,1),(1704,1),(1705,1),(1706,1),(1707,1),(1708,1),(1709,1),(1710,1),(1711,1),(1712,1),(1713,1),(1714,1),(1715,1),(1716,1),(1717,1),(1718,1),(1719,1),(1720,1),(1721,1),(1722,1),(1723,1),(1724,1),(1725,1),(1726,1),(1727,1),(1728,1),(1729,1),(1730,1),(1731,1),(1732,1),(1733,1),(1734,1),(1735,1),(1736,1),(1737,1),(1738,1),(1739,1),(1740,1),(1741,1),(1742,1),(1743,1),(1744,1),(1745,1),(1746,1),(1747,1),(1748,1),(1749,1),(1750,1),(1751,1),(1752,1),(1753,1),(1754,1),(1755,1),(1756,1),(1757,1),(1758,1),(1759,1),(1760,1),(1761,1),(1762,1),(1763,1),(1764,1),(1765,1),(1766,1),(1767,1),(1768,1),(1769,1),(1770,1),(1771,1),(1772,1),(1773,1),(1774,1),(1775,1),(1776,1),(1777,1),(1778,1),(1779,1),(1780,1),(1781,1),(1782,1),(1783,1),(1784,1),(1785,1),(1786,1),(1787,1),(1788,1),(1789,1),(1790,1),(1791,1),(1792,1),(1793,1),(1794,1),(1795,1),(1796,1),(1797,1),(1798,1),(1799,1),(1800,1),(1801,1),(1802,1),(1803,1),(1804,1),(1805,1),(1806,1),(1807,1),(1808,1),(1809,1),(1810,1),(1811,1),(1812,1),(1813,1),(1814,1),(1815,1),(1816,1),(1817,1),(1818,1),(1819,1),(1820,1),(1821,1),(1822,1),(1823,1),(1824,1),(1825,1),(1826,1),(1827,1),(1828,1),(1829,1),(1830,1),(1831,1),(1832,1),(1833,1),(1834,1),(1835,1),(1836,1),(1837,1),(1838,1),(1839,1),(1840,1),(1841,1),(1842,1),(1843,1),(1844,1),(1845,1),(1846,1),(1847,1),(1848,1),(1849,1),(1850,1),(1851,1),(1852,1),(1853,1),(1854,1),(1855,1),(1856,1),(1857,1),(1858,1),(1859,1),(1860,1),(1861,1),(1862,1),(1863,1),(1864,1),(1865,1),(1866,1),(1867,1),(1868,1),(1869,1),(1870,1),(1871,1),(1872,1),(1873,1),(1874,1),(1875,1),(1876,1),(1877,1),(1878,1),(1879,1),(1880,1),(1881,1),(1882,1),(1883,1),(1884,1),(1885,1),(1886,1),(1887,1),(1888,1),(1889,1),(1890,1),(1891,1),(1892,1),(1893,1),(1894,1),(1895,1),(1896,1),(1897,1),(1898,1),(1899,1),(1900,1),(1901,1),(1902,1),(1903,1),(1904,1),(1905,1),(1906,1),(1907,1),(1908,1),(1909,1),(1910,1),(1911,1),(1912,1),(1913,1),(1914,1),(1915,1),(1916,1),(1917,1),(1918,1),(1919,1),(1920,1),(1921,1),(1922,1),(1923,1),(1924,1),(1925,1),(1926,1),(1927,1),(1928,1),(1929,1),(1930,1),(1931,1),(1932,1),(1933,1),(1934,1),(1935,1),(1936,1),(1937,1),(1938,1),(1939,1),(1940,1),(1941,1),(1942,1),(1943,1),(1944,1),(1945,1),(1946,1),(1947,1),(1948,1),(1949,1),(1950,1),(1951,1),(1952,1),(1953,1),(1954,1),(1955,1),(1956,1),(1957,1),(1958,1),(1959,1),(1960,1),(1961,1),(1962,1),(1963,1),(1964,1),(1965,1),(1966,1),(1967,1),(1968,1),(1969,1),(1970,1),(1971,1),(1972,1),(1973,1),(1974,1),(1975,1),(1976,1),(1977,1),(1978,1),(1979,1),(1980,1),(1981,1),(1982,1),(1983,1),(1984,1),(1985,1),(1986,1),(1987,1),(1988,1),(1989,1),(1990,1),(1991,1),(1992,1),(1993,1),(1994,1),(1995,1),(1996,1),(1997,1),(1998,1),(1999,1),(2000,1),(2001,1),(2002,1),(2003,1),(2004,1),(2005,1),(2006,1),(2007,1),(2008,1),(2009,1),(2010,1),(2011,1),(2012,1),(2013,1),(2014,1),(2015,1),(2016,1),(2017,1),(2018,1),(2019,1),(2020,1),(2021,1),(2022,1),(2023,1),(2024,1),(2025,1),(2026,1),(2027,1),(2028,1),(2029,1),(2030,1),(2031,1),(2032,1),(2033,1),(2034,1),(2035,1),(2036,1),(2037,1),(2038,1),(2039,1),(2040,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_url_rewrite_product_category`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_url_rewrite_product_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_url_rewrite_product_category` (
  `url_rewrite_id` int unsigned NOT NULL COMMENT 'url_rewrite_id',
  `category_id` int unsigned NOT NULL COMMENT 'category_id',
  `product_id` int unsigned NOT NULL COMMENT 'product_id',
  PRIMARY KEY (`url_rewrite_id`),
  KEY `[[DBPREFIX]]CAT_URL_REWRITE_PRD_CTGR_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  KEY `[[DBPREFIX]]CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  CONSTRAINT `FK_29535502FDF24B4A7C55872B1E85C865` FOREIGN KEY (`url_rewrite_id`) REFERENCES `[[dbprefix]]url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_URL_REWRITE_PRD_CTGR_CTGR_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_URL_REWRITE_PRD_CTGR_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='url_rewrite_relation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_url_rewrite_product_category`
--

LOCK TABLES `[[dbprefix]]catalog_url_rewrite_product_category` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_url_rewrite_product_category` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_url_rewrite_product_category` VALUES (12,3,1),(15,3,2),(19,3,3),(22,3,4),(27,3,5),(32,3,6),(35,3,7),(38,3,8),(41,3,9),(44,3,10),(48,3,11),(52,3,12),(55,3,13),(60,3,14),(64,3,15),(67,3,16),(71,3,17),(74,3,18),(77,3,19),(82,3,20),(85,3,21),(88,3,22),(91,3,23),(94,3,36),(97,3,37),(100,3,38),(105,3,39),(110,3,40),(115,3,41),(118,3,42),(121,3,43),(124,3,44),(129,3,45),(132,3,46),(13,4,1),(17,4,2),(20,4,3),(24,4,4),(29,4,5),(33,4,6),(36,4,7),(39,4,8),(42,4,9),(46,4,10),(50,4,11),(53,4,12),(57,4,13),(62,4,14),(65,5,15),(69,5,16),(72,5,17),(75,5,18),(79,5,19),(83,5,20),(86,5,21),(89,5,22),(92,5,23),(130,5,45),(133,5,46),(95,6,36),(98,6,37),(102,6,38),(107,6,39),(112,6,40),(116,6,41),(119,6,42),(122,6,43),(126,6,44),(16,7,2),(23,7,4),(28,7,5),(45,7,10),(49,7,11),(56,7,13),(61,7,14),(68,7,16),(78,7,19),(101,7,38),(106,7,39),(111,7,40),(125,7,44),(25,8,4),(30,8,5),(58,8,13),(80,8,19),(103,8,38),(108,8,39),(113,8,40),(127,8,44);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_url_rewrite_product_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock` (
  `stock_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Stock ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name',
  PRIMARY KEY (`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cataloginventory_stock` VALUES (1,0,'Default');
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]cataloginventory_stock_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_cl`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_item` (
  `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `stock_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Stock ID',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `min_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Min Qty',
  `use_config_min_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Qty',
  `is_qty_decimal` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Qty Decimal',
  `backorders` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Backorders',
  `use_config_backorders` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Backorders',
  `min_sale_qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'Min Sale Qty',
  `use_config_min_sale_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Sale Qty',
  `max_sale_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Max Sale Qty',
  `use_config_max_sale_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Max Sale Qty',
  `is_in_stock` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is In Stock',
  `low_stock_date` timestamp NULL DEFAULT NULL COMMENT 'Low Stock Date',
  `notify_stock_qty` decimal(12,4) DEFAULT NULL COMMENT 'Notify Stock Qty',
  `use_config_notify_stock_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Notify Stock Qty',
  `manage_stock` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Manage Stock',
  `use_config_manage_stock` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Manage Stock',
  `stock_status_changed_auto` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Stock Status Changed Automatically',
  `use_config_qty_increments` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Qty Increments',
  `qty_increments` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Increments',
  `use_config_enable_qty_inc` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Enable Qty Increments',
  `enable_qty_increments` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Enable Qty Increments',
  `is_decimal_divided` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Divided into Multiple Boxes for Shipping',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`item_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID_PRODUCT_ID` (`website_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`),
  CONSTRAINT `[[DBPREFIX]]CATINV_STOCK_ITEM_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATINV_STOCK_ITEM_STOCK_ID_[[DBPREFIX]]CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `[[dbprefix]]cataloginventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2041 DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_item`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cataloginventory_stock_item` VALUES (1,1,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2,2,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(3,3,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(4,4,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(5,5,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(6,6,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(7,7,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(8,8,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(9,9,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(10,10,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(11,11,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(12,12,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(13,13,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(14,14,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(15,15,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(16,16,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(17,17,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(18,18,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(19,19,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(20,20,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(21,21,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(22,22,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(23,23,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(24,24,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(25,25,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(26,26,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(27,27,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(28,28,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(29,29,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(30,30,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(31,31,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(32,32,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(33,33,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(34,34,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(35,35,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(36,36,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(37,37,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(38,38,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(39,39,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(40,40,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(41,41,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(42,42,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(43,43,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(44,44,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(45,45,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(46,46,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(47,47,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(48,48,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(49,49,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(50,50,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(51,51,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(52,52,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(53,53,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(54,54,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(55,55,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(56,56,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(57,57,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(58,58,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(59,59,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(60,60,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(61,61,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(62,62,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(63,63,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(64,64,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(65,65,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(66,66,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(67,67,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(68,68,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(69,69,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(70,70,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(71,71,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(72,72,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(73,73,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(74,74,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(75,75,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(76,76,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(77,77,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(78,78,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(79,79,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(80,80,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(81,81,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(82,82,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(83,83,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(84,84,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(85,85,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(86,86,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(87,87,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(88,88,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(89,89,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(90,90,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(91,91,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(92,92,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(93,93,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(94,94,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(95,95,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(96,96,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(97,97,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(98,98,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(99,99,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(100,100,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(101,101,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(102,102,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(103,103,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(104,104,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(105,105,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(106,106,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(107,107,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(108,108,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(109,109,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(110,110,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(111,111,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(112,112,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(113,113,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(114,114,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(115,115,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(116,116,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(117,117,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(118,118,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(119,119,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(120,120,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(121,121,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(122,122,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(123,123,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(124,124,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(125,125,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(126,126,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(127,127,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(128,128,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(129,129,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(130,130,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(131,131,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(132,132,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(133,133,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(134,134,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(135,135,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(136,136,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(137,137,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(138,138,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(139,139,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(140,140,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(141,141,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(142,142,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(143,143,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(144,144,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(145,145,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(146,146,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(147,147,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(148,148,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(149,149,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(150,150,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(151,151,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(152,152,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(153,153,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(154,154,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(155,155,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(156,156,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(157,157,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(158,158,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(159,159,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(160,160,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(161,161,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(162,162,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(163,163,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(164,164,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(165,165,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(166,166,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(167,167,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(168,168,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(169,169,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(170,170,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(171,171,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(172,172,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(173,173,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(174,174,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(175,175,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(176,176,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(177,177,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(178,178,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(179,179,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(180,180,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(181,181,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(182,182,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(183,183,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(184,184,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(185,185,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(186,186,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(187,187,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(188,188,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(189,189,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(190,190,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(191,191,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(192,192,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(193,193,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(194,194,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(195,195,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(196,196,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(197,197,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(198,198,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(199,199,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(200,200,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(201,201,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(202,202,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(203,203,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(204,204,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(205,205,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(206,206,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(207,207,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(208,208,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(209,209,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(210,210,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(211,211,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(212,212,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(213,213,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(214,214,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(215,215,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(216,216,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(217,217,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(218,218,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(219,219,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(220,220,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(221,221,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(222,222,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(223,223,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(224,224,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(225,225,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(226,226,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(227,227,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(228,228,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(229,229,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(230,230,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(231,231,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(232,232,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(233,233,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(234,234,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(235,235,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(236,236,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(237,237,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(238,238,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(239,239,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(240,240,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(241,241,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(242,242,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(243,243,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(244,244,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(245,245,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(246,246,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(247,247,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(248,248,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(249,249,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(250,250,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(251,251,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(252,252,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(253,253,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(254,254,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(255,255,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(256,256,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(257,257,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(258,258,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(259,259,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(260,260,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(261,261,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(262,262,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(263,263,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(264,264,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(265,265,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(266,266,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(267,267,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(268,268,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(269,269,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(270,270,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(271,271,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(272,272,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(273,273,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(274,274,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(275,275,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(276,276,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(277,277,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(278,278,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(279,279,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(280,280,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(281,281,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(282,282,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(283,283,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(284,284,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(285,285,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(286,286,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(287,287,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(288,288,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(289,289,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(290,290,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(291,291,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(292,292,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(293,293,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(294,294,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(295,295,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(296,296,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(297,297,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(298,298,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(299,299,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(300,300,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(301,301,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(302,302,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(303,303,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(304,304,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(305,305,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(306,306,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(307,307,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(308,308,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(309,309,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(310,310,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(311,311,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(312,312,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(313,313,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(314,314,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(315,315,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(316,316,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(317,317,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(318,318,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(319,319,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(320,320,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(321,321,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(322,322,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(323,323,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(324,324,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(325,325,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(326,326,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(327,327,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(328,328,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(329,329,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(330,330,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(331,331,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(332,332,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(333,333,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(334,334,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(335,335,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(336,336,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(337,337,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(338,338,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(339,339,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(340,340,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(341,341,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(342,342,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(343,343,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(344,344,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(345,345,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(346,346,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(347,347,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(348,348,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(349,349,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(350,350,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(351,351,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(352,352,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(353,353,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(354,354,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(355,355,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(356,356,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(357,357,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(358,358,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(359,359,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(360,360,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(361,361,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(362,362,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(363,363,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(364,364,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(365,365,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(366,366,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(367,367,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(368,368,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(369,369,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(370,370,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(371,371,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(372,372,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(373,373,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(374,374,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(375,375,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(376,376,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(377,377,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(378,378,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(379,379,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(380,380,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(381,381,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(382,382,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(383,383,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(384,384,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(385,385,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(386,386,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(387,387,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(388,388,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(389,389,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(390,390,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(391,391,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(392,392,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(393,393,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(394,394,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(395,395,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(396,396,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(397,397,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(398,398,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(399,399,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(400,400,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(401,401,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(402,402,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(403,403,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(404,404,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(405,405,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(406,406,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(407,407,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(408,408,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(409,409,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(410,410,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(411,411,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(412,412,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(413,413,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(414,414,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(415,415,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(416,416,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(417,417,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(418,418,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(419,419,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(420,420,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(421,421,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(422,422,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(423,423,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(424,424,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(425,425,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(426,426,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(427,427,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(428,428,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(429,429,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(430,430,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(431,431,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(432,432,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(433,433,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(434,434,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(435,435,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(436,436,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(437,437,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(438,438,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(439,439,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(440,440,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(441,441,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(442,442,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(443,443,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(444,444,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(445,445,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(446,446,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(447,447,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(448,448,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(449,449,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(450,450,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(451,451,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(452,452,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(453,453,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(454,454,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(455,455,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(456,456,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(457,457,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(458,458,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(459,459,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(460,460,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(461,461,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(462,462,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(463,463,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(464,464,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(465,465,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(466,466,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(467,467,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(468,468,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(469,469,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(470,470,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(471,471,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(472,472,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(473,473,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(474,474,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(475,475,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(476,476,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(477,477,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(478,478,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(479,479,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(480,480,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(481,481,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(482,482,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(483,483,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(484,484,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(485,485,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(486,486,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(487,487,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(488,488,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(489,489,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(490,490,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(491,491,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(492,492,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(493,493,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(494,494,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(495,495,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(496,496,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(497,497,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(498,498,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(499,499,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(500,500,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(501,501,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(502,502,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(503,503,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(504,504,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(505,505,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(506,506,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(507,507,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(508,508,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(509,509,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(510,510,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(511,511,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(512,512,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(513,513,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(514,514,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(515,515,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(516,516,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(517,517,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(518,518,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(519,519,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(520,520,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(521,521,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(522,522,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(523,523,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(524,524,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(525,525,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(526,526,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(527,527,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(528,528,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(529,529,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(530,530,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(531,531,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(532,532,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(533,533,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(534,534,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(535,535,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(536,536,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(537,537,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(538,538,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(539,539,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(540,540,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(541,541,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(542,542,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(543,543,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(544,544,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(545,545,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(546,546,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(547,547,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(548,548,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(549,549,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(550,550,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(551,551,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(552,552,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(553,553,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(554,554,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(555,555,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(556,556,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(557,557,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(558,558,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(559,559,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(560,560,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(561,561,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(562,562,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(563,563,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(564,564,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(565,565,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(566,566,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(567,567,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(568,568,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(569,569,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(570,570,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(571,571,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(572,572,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(573,573,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(574,574,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(575,575,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(576,576,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(577,577,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(578,578,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(579,579,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(580,580,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(581,581,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(582,582,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(583,583,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(584,584,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(585,585,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(586,586,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(587,587,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(588,588,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(589,589,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(590,590,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(591,591,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(592,592,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(593,593,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(594,594,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(595,595,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(596,596,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(597,597,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(598,598,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(599,599,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(600,600,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(601,601,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(602,602,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(603,603,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(604,604,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(605,605,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(606,606,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(607,607,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(608,608,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(609,609,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(610,610,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(611,611,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(612,612,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(613,613,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(614,614,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(615,615,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(616,616,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(617,617,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(618,618,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(619,619,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(620,620,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(621,621,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(622,622,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(623,623,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(624,624,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(625,625,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(626,626,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(627,627,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(628,628,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(629,629,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(630,630,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(631,631,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(632,632,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(633,633,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(634,634,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(635,635,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(636,636,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(637,637,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(638,638,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(639,639,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(640,640,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(641,641,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(642,642,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(643,643,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(644,644,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(645,645,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(646,646,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(647,647,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(648,648,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(649,649,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(650,650,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(651,651,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(652,652,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(653,653,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(654,654,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(655,655,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(656,656,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(657,657,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(658,658,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(659,659,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(660,660,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(661,661,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(662,662,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(663,663,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(664,664,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(665,665,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(666,666,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(667,667,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(668,668,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(669,669,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(670,670,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(671,671,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(672,672,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(673,673,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(674,674,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(675,675,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(676,676,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(677,677,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(678,678,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(679,679,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(680,680,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(681,681,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(682,682,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(683,683,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(684,684,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(685,685,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(686,686,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(687,687,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(688,688,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(689,689,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(690,690,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(691,691,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(692,692,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(693,693,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(694,694,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(695,695,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(696,696,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(697,697,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(698,698,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(699,699,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(700,700,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(701,701,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(702,702,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(703,703,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(704,704,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(705,705,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(706,706,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(707,707,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(708,708,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(709,709,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(710,710,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(711,711,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(712,712,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(713,713,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(714,714,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(715,715,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(716,716,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(717,717,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(718,718,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(719,719,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(720,720,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(721,721,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(722,722,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(723,723,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(724,724,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(725,725,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(726,726,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(727,727,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(728,728,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(729,729,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(730,730,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(731,731,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(732,732,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(733,733,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(734,734,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(735,735,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(736,736,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(737,737,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(738,738,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(739,739,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(740,740,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(741,741,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(742,742,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(743,743,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(744,744,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(745,745,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(746,746,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(747,747,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(748,748,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(749,749,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(750,750,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(751,751,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(752,752,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(753,753,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(754,754,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(755,755,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(756,756,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(757,757,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(758,758,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(759,759,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(760,760,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(761,761,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(762,762,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(763,763,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(764,764,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(765,765,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(766,766,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(767,767,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(768,768,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(769,769,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(770,770,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(771,771,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(772,772,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(773,773,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(774,774,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(775,775,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(776,776,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(777,777,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(778,778,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(779,779,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(780,780,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(781,781,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(782,782,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(783,783,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(784,784,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(785,785,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(786,786,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(787,787,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(788,788,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(789,789,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(790,790,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(791,791,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(792,792,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(793,793,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(794,794,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(795,795,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(796,796,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(797,797,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(798,798,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(799,799,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(800,800,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(801,801,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(802,802,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(803,803,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(804,804,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(805,805,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(806,806,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(807,807,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(808,808,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(809,809,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(810,810,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(811,811,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(812,812,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(813,813,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(814,814,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(815,815,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(816,816,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(817,817,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(818,818,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(819,819,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(820,820,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(821,821,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(822,822,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(823,823,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(824,824,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(825,825,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(826,826,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(827,827,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(828,828,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(829,829,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(830,830,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(831,831,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(832,832,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(833,833,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(834,834,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(835,835,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(836,836,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(837,837,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(838,838,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(839,839,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(840,840,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(841,841,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(842,842,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(843,843,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(844,844,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(845,845,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(846,846,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(847,847,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(848,848,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(849,849,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(850,850,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(851,851,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(852,852,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(853,853,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(854,854,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(855,855,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(856,856,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(857,857,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(858,858,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(859,859,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(860,860,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(861,861,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(862,862,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(863,863,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(864,864,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(865,865,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(866,866,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(867,867,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(868,868,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(869,869,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(870,870,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(871,871,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(872,872,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(873,873,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(874,874,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(875,875,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(876,876,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(877,877,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(878,878,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(879,879,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(880,880,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(881,881,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(882,882,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(883,883,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(884,884,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(885,885,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(886,886,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(887,887,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(888,888,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(889,889,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(890,890,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(891,891,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(892,892,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(893,893,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(894,894,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(895,895,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(896,896,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(897,897,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(898,898,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(899,899,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(900,900,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(901,901,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(902,902,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(903,903,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(904,904,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(905,905,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(906,906,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(907,907,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(908,908,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(909,909,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(910,910,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(911,911,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(912,912,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(913,913,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(914,914,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(915,915,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(916,916,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(917,917,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(918,918,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(919,919,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(920,920,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(921,921,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(922,922,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(923,923,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(924,924,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(925,925,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(926,926,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(927,927,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(928,928,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(929,929,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(930,930,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(931,931,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(932,932,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(933,933,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(934,934,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(935,935,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(936,936,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(937,937,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(938,938,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(939,939,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(940,940,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(941,941,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(942,942,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(943,943,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(944,944,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(945,945,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(946,946,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(947,947,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(948,948,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(949,949,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(950,950,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(951,951,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(952,952,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(953,953,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(954,954,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(955,955,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(956,956,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(957,957,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(958,958,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(959,959,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(960,960,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(961,961,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(962,962,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(963,963,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(964,964,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(965,965,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(966,966,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(967,967,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(968,968,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(969,969,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(970,970,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(971,971,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(972,972,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(973,973,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(974,974,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(975,975,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(976,976,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(977,977,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(978,978,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(979,979,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(980,980,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(981,981,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(982,982,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(983,983,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(984,984,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(985,985,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(986,986,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(987,987,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(988,988,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(989,989,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(990,990,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(991,991,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(992,992,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(993,993,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(994,994,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(995,995,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(996,996,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(997,997,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(998,998,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(999,999,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1000,1000,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1001,1001,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1002,1002,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1003,1003,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1004,1004,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1005,1005,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1006,1006,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1007,1007,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1008,1008,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1009,1009,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1010,1010,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1011,1011,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1012,1012,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1013,1013,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1014,1014,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1015,1015,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1016,1016,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1017,1017,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1018,1018,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1019,1019,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1020,1020,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1021,1021,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1022,1022,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1023,1023,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1024,1024,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1025,1025,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1026,1026,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1027,1027,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1028,1028,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1029,1029,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1030,1030,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1031,1031,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1032,1032,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1033,1033,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1034,1034,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1035,1035,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1036,1036,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1037,1037,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1038,1038,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1039,1039,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1040,1040,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1041,1041,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1042,1042,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1043,1043,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1044,1044,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1045,1045,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1046,1046,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1047,1047,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1048,1048,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1049,1049,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1050,1050,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1051,1051,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1052,1052,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1053,1053,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1054,1054,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1055,1055,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1056,1056,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1057,1057,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1058,1058,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1059,1059,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1060,1060,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1061,1061,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1062,1062,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1063,1063,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1064,1064,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1065,1065,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1066,1066,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1067,1067,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1068,1068,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1069,1069,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1070,1070,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1071,1071,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1072,1072,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1073,1073,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1074,1074,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1075,1075,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1076,1076,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1077,1077,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1078,1078,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1079,1079,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1080,1080,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1081,1081,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1082,1082,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1083,1083,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1084,1084,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1085,1085,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1086,1086,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1087,1087,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1088,1088,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1089,1089,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1090,1090,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1091,1091,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1092,1092,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1093,1093,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1094,1094,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1095,1095,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1096,1096,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1097,1097,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1098,1098,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1099,1099,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1100,1100,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1101,1101,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1102,1102,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1103,1103,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1104,1104,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1105,1105,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1106,1106,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1107,1107,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1108,1108,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1109,1109,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1110,1110,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1111,1111,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1112,1112,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1113,1113,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1114,1114,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1115,1115,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1116,1116,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1117,1117,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1118,1118,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1119,1119,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1120,1120,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1121,1121,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1122,1122,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1123,1123,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1124,1124,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1125,1125,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1126,1126,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1127,1127,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1128,1128,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1129,1129,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1130,1130,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1131,1131,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1132,1132,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1133,1133,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1134,1134,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1135,1135,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1136,1136,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1137,1137,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1138,1138,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1139,1139,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1140,1140,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1141,1141,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1142,1142,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1143,1143,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1144,1144,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1145,1145,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1146,1146,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1147,1147,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1148,1148,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1149,1149,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1150,1150,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1151,1151,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1152,1152,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1153,1153,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1154,1154,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1155,1155,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1156,1156,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1157,1157,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1158,1158,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1159,1159,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1160,1160,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1161,1161,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1162,1162,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1163,1163,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1164,1164,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1165,1165,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1166,1166,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1167,1167,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1168,1168,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1169,1169,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1170,1170,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1171,1171,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1172,1172,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1173,1173,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1174,1174,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1175,1175,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1176,1176,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1177,1177,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1178,1178,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1179,1179,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1180,1180,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1181,1181,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1182,1182,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1183,1183,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1184,1184,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1185,1185,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1186,1186,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1187,1187,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1188,1188,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1189,1189,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1190,1190,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1191,1191,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1192,1192,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1193,1193,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1194,1194,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1195,1195,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1196,1196,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1197,1197,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1198,1198,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1199,1199,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1200,1200,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1201,1201,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1202,1202,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1203,1203,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1204,1204,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1205,1205,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1206,1206,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1207,1207,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1208,1208,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1209,1209,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1210,1210,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1211,1211,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1212,1212,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1213,1213,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1214,1214,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1215,1215,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1216,1216,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1217,1217,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1218,1218,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1219,1219,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1220,1220,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1221,1221,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1222,1222,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1223,1223,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1224,1224,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1225,1225,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1226,1226,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1227,1227,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1228,1228,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1229,1229,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1230,1230,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1231,1231,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1232,1232,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1233,1233,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1234,1234,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1235,1235,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1236,1236,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1237,1237,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1238,1238,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1239,1239,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1240,1240,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1241,1241,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1242,1242,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1243,1243,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1244,1244,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1245,1245,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1246,1246,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1247,1247,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1248,1248,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1249,1249,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1250,1250,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1251,1251,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1252,1252,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1253,1253,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1254,1254,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1255,1255,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1256,1256,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1257,1257,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1258,1258,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1259,1259,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1260,1260,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1261,1261,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1262,1262,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1263,1263,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1264,1264,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1265,1265,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1266,1266,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1267,1267,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1268,1268,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1269,1269,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1270,1270,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1271,1271,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1272,1272,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1273,1273,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1274,1274,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1275,1275,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1276,1276,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1277,1277,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1278,1278,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1279,1279,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1280,1280,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1281,1281,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1282,1282,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1283,1283,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1284,1284,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1285,1285,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1286,1286,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1287,1287,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1288,1288,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1289,1289,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1290,1290,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1291,1291,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1292,1292,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1293,1293,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1294,1294,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1295,1295,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1296,1296,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1297,1297,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1298,1298,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1299,1299,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1300,1300,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1301,1301,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1302,1302,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1303,1303,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1304,1304,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1305,1305,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1306,1306,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1307,1307,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1308,1308,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1309,1309,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1310,1310,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1311,1311,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1312,1312,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1313,1313,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1314,1314,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1315,1315,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1316,1316,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1317,1317,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1318,1318,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1319,1319,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1320,1320,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1321,1321,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1322,1322,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1323,1323,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1324,1324,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1325,1325,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1326,1326,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1327,1327,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1328,1328,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1329,1329,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1330,1330,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1331,1331,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1332,1332,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1333,1333,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1334,1334,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1335,1335,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1336,1336,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1337,1337,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1338,1338,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1339,1339,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1340,1340,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1341,1341,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1342,1342,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1343,1343,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1344,1344,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1345,1345,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1346,1346,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1347,1347,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1348,1348,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1349,1349,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1350,1350,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1351,1351,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1352,1352,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1353,1353,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1354,1354,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1355,1355,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1356,1356,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1357,1357,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1358,1358,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1359,1359,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1360,1360,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1361,1361,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1362,1362,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1363,1363,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1364,1364,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1365,1365,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1366,1366,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1367,1367,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1368,1368,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1369,1369,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1370,1370,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1371,1371,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1372,1372,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1373,1373,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1374,1374,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1375,1375,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1376,1376,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1377,1377,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1378,1378,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1379,1379,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1380,1380,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1381,1381,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1382,1382,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1383,1383,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1384,1384,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1385,1385,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1386,1386,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1387,1387,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1388,1388,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1389,1389,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1390,1390,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1391,1391,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1392,1392,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1393,1393,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1394,1394,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1395,1395,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1396,1396,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1397,1397,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1398,1398,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1399,1399,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1400,1400,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1401,1401,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1402,1402,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1403,1403,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1404,1404,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1405,1405,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1406,1406,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1407,1407,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1408,1408,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1409,1409,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1410,1410,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1411,1411,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1412,1412,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1413,1413,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1414,1414,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1415,1415,1,99.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1416,1416,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1417,1417,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1418,1418,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1419,1419,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1420,1420,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1421,1421,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1422,1422,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1423,1423,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1424,1424,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1425,1425,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1426,1426,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1427,1427,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1428,1428,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1429,1429,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1430,1430,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1431,1431,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1432,1432,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1433,1433,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1434,1434,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1435,1435,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1436,1436,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1437,1437,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1438,1438,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1439,1439,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1440,1440,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1441,1441,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1442,1442,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1443,1443,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1444,1444,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1445,1445,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1446,1446,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1447,1447,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1448,1448,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1449,1449,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1450,1450,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1451,1451,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1452,1452,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1453,1453,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1454,1454,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1455,1455,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1456,1456,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1457,1457,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1458,1458,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1459,1459,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1460,1460,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1461,1461,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1462,1462,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1463,1463,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1464,1464,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1465,1465,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1466,1466,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1467,1467,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1468,1468,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1469,1469,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1470,1470,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1471,1471,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1472,1472,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1473,1473,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1474,1474,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1475,1475,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1476,1476,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1477,1477,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1478,1478,1,99.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1479,1479,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1480,1480,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1481,1481,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1482,1482,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1483,1483,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1484,1484,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1485,1485,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1486,1486,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1487,1487,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1488,1488,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1489,1489,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1490,1490,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1491,1491,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1492,1492,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1493,1493,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1494,1494,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1495,1495,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1496,1496,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1497,1497,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1498,1498,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1499,1499,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1500,1500,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1501,1501,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1502,1502,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1503,1503,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1504,1504,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1505,1505,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1506,1506,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1507,1507,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1508,1508,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1509,1509,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1510,1510,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1511,1511,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1512,1512,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1513,1513,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1514,1514,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1515,1515,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1516,1516,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1517,1517,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1518,1518,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1519,1519,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1520,1520,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1521,1521,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1522,1522,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1523,1523,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1524,1524,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1525,1525,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1526,1526,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1527,1527,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1528,1528,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1529,1529,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1530,1530,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1531,1531,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1532,1532,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1533,1533,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1534,1534,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1535,1535,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1536,1536,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1537,1537,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1538,1538,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1539,1539,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1540,1540,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1541,1541,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1542,1542,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1543,1543,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1544,1544,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1545,1545,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1546,1546,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1547,1547,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1548,1548,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1549,1549,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1550,1550,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1551,1551,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1552,1552,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1553,1553,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1554,1554,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1555,1555,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1556,1556,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1557,1557,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1558,1558,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1559,1559,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1560,1560,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1561,1561,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1562,1562,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1563,1563,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1564,1564,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1565,1565,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1566,1566,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1567,1567,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1568,1568,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1569,1569,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1570,1570,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1571,1571,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1572,1572,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1573,1573,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1574,1574,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1575,1575,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1576,1576,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1577,1577,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1578,1578,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1579,1579,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1580,1580,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1581,1581,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1582,1582,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1583,1583,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1584,1584,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1585,1585,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1586,1586,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1587,1587,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1588,1588,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1589,1589,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1590,1590,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1591,1591,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1592,1592,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1593,1593,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1594,1594,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1595,1595,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1596,1596,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1597,1597,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1598,1598,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1599,1599,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1600,1600,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1601,1601,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1602,1602,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1603,1603,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1604,1604,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1605,1605,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1606,1606,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1607,1607,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1608,1608,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1609,1609,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1610,1610,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1611,1611,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1612,1612,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1613,1613,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1614,1614,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1615,1615,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1616,1616,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1617,1617,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1618,1618,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1619,1619,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1620,1620,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1621,1621,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1622,1622,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1623,1623,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1624,1624,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1625,1625,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1626,1626,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1627,1627,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1628,1628,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1629,1629,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1630,1630,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1631,1631,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1632,1632,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1633,1633,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1634,1634,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1635,1635,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1636,1636,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1637,1637,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1638,1638,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1639,1639,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1640,1640,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1641,1641,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1642,1642,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1643,1643,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1644,1644,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1645,1645,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1646,1646,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1647,1647,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1648,1648,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1649,1649,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1650,1650,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1651,1651,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1652,1652,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1653,1653,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1654,1654,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1655,1655,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1656,1656,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1657,1657,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1658,1658,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1659,1659,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1660,1660,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1661,1661,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1662,1662,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1663,1663,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1664,1664,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1665,1665,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1666,1666,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1667,1667,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1668,1668,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1669,1669,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1670,1670,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1671,1671,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1672,1672,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1673,1673,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1674,1674,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1675,1675,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1676,1676,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1677,1677,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1678,1678,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1679,1679,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1680,1680,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1681,1681,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1682,1682,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1683,1683,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1684,1684,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1685,1685,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1686,1686,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1687,1687,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1688,1688,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1689,1689,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1690,1690,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1691,1691,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1692,1692,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1693,1693,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1694,1694,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1695,1695,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1696,1696,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1697,1697,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1698,1698,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1699,1699,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1700,1700,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1701,1701,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1702,1702,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1703,1703,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1704,1704,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1705,1705,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1706,1706,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1707,1707,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1708,1708,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1709,1709,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1710,1710,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1711,1711,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1712,1712,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1713,1713,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1714,1714,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1715,1715,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1716,1716,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1717,1717,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1718,1718,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1719,1719,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1720,1720,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1721,1721,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1722,1722,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1723,1723,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1724,1724,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1725,1725,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1726,1726,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1727,1727,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1728,1728,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1729,1729,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1730,1730,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1731,1731,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1732,1732,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1733,1733,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1734,1734,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1735,1735,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1736,1736,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1737,1737,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1738,1738,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1739,1739,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1740,1740,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1741,1741,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1742,1742,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1743,1743,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1744,1744,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1745,1745,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1746,1746,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1747,1747,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1748,1748,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1749,1749,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1750,1750,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1751,1751,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1752,1752,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1753,1753,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1754,1754,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1755,1755,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1756,1756,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1757,1757,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1758,1758,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1759,1759,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1760,1760,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1761,1761,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1762,1762,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1763,1763,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1764,1764,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1765,1765,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1766,1766,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1767,1767,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1768,1768,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1769,1769,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1770,1770,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1771,1771,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1772,1772,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1773,1773,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1774,1774,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1775,1775,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1776,1776,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1777,1777,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1778,1778,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1779,1779,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1780,1780,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1781,1781,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1782,1782,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1783,1783,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1784,1784,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1785,1785,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1786,1786,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1787,1787,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1788,1788,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1789,1789,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1790,1790,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1791,1791,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1792,1792,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1793,1793,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1794,1794,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1795,1795,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1796,1796,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1797,1797,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1798,1798,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1799,1799,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1800,1800,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1801,1801,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1802,1802,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1803,1803,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1804,1804,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1805,1805,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1806,1806,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1807,1807,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1808,1808,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1809,1809,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1810,1810,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1811,1811,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1812,1812,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1813,1813,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1814,1814,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1815,1815,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1816,1816,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1817,1817,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1818,1818,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1819,1819,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1820,1820,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1821,1821,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1822,1822,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1823,1823,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1824,1824,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1825,1825,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1826,1826,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1827,1827,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1828,1828,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1829,1829,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1830,1830,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1831,1831,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1832,1832,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1833,1833,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1834,1834,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1835,1835,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1836,1836,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1837,1837,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1838,1838,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1839,1839,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1840,1840,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1841,1841,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1842,1842,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1843,1843,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1844,1844,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1845,1845,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1846,1846,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1847,1847,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1848,1848,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1849,1849,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1850,1850,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1851,1851,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1852,1852,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1853,1853,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1854,1854,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1855,1855,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1856,1856,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1857,1857,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1858,1858,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1859,1859,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1860,1860,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1861,1861,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1862,1862,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1863,1863,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1864,1864,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1865,1865,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1866,1866,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1867,1867,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1868,1868,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1869,1869,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1870,1870,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1871,1871,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1872,1872,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1873,1873,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1874,1874,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1875,1875,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1876,1876,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1877,1877,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1878,1878,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1879,1879,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1880,1880,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1881,1881,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1882,1882,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1883,1883,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1884,1884,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1885,1885,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1886,1886,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1887,1887,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1888,1888,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1889,1889,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1890,1890,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1891,1891,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1892,1892,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1893,1893,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1894,1894,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1895,1895,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1896,1896,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1897,1897,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1898,1898,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1899,1899,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1900,1900,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1901,1901,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1902,1902,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1903,1903,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1904,1904,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1905,1905,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1906,1906,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1907,1907,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1908,1908,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1909,1909,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1910,1910,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1911,1911,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1912,1912,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1913,1913,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1914,1914,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1915,1915,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1916,1916,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1917,1917,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1918,1918,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1919,1919,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1920,1920,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1921,1921,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1922,1922,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1923,1923,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1924,1924,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1925,1925,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1926,1926,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1927,1927,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1928,1928,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1929,1929,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1930,1930,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1931,1931,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1932,1932,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1933,1933,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1934,1934,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1935,1935,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1936,1936,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1937,1937,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1938,1938,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1939,1939,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1940,1940,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1941,1941,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1942,1942,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1943,1943,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1944,1944,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1945,1945,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1946,1946,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1947,1947,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1948,1948,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1949,1949,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1950,1950,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1951,1951,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1952,1952,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1953,1953,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1954,1954,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1955,1955,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1956,1956,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1957,1957,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1958,1958,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1959,1959,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1960,1960,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1961,1961,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1962,1962,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1963,1963,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1964,1964,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1965,1965,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1966,1966,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1967,1967,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1968,1968,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1969,1969,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1970,1970,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1971,1971,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1972,1972,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1973,1973,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1974,1974,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1975,1975,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1976,1976,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1977,1977,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1978,1978,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1979,1979,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1980,1980,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1981,1981,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1982,1982,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1983,1983,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1984,1984,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1985,1985,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1986,1986,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1987,1987,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1988,1988,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1989,1989,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1990,1990,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1991,1991,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1992,1992,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1993,1993,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1994,1994,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1995,1995,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1996,1996,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1997,1997,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1998,1998,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(1999,1999,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2000,2000,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2001,2001,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2002,2002,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2003,2003,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2004,2004,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2005,2005,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2006,2006,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2007,2007,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2008,2008,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2009,2009,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2010,2010,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2011,2011,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2012,2012,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2013,2013,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2014,2014,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2015,2015,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2016,2016,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2017,2017,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2018,2018,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2019,2019,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2020,2020,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2021,2021,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2022,2022,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2023,2023,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2024,2024,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2025,2025,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2026,2026,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2027,2027,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2028,2028,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2029,2029,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2030,2030,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2031,2031,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2032,2032,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2033,2033,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2034,2034,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2035,2035,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2036,2036,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2037,2037,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2038,2038,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2039,2039,1,100.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(2040,2040,1,0.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0);
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_status`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_status` (
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_status`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_status` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cataloginventory_stock_status` VALUES (1,0,1,100.0000,1),(2,0,1,100.0000,1),(3,0,1,100.0000,1),(4,0,1,100.0000,1),(5,0,1,100.0000,1),(6,0,1,100.0000,1),(7,0,1,100.0000,1),(8,0,1,100.0000,1),(9,0,1,100.0000,1),(10,0,1,100.0000,1),(11,0,1,100.0000,1),(12,0,1,100.0000,1),(13,0,1,100.0000,1),(14,0,1,100.0000,1),(15,0,1,100.0000,1),(16,0,1,100.0000,1),(17,0,1,100.0000,1),(18,0,1,100.0000,1),(19,0,1,100.0000,1),(20,0,1,100.0000,1),(21,0,1,100.0000,1),(22,0,1,100.0000,1),(23,0,1,100.0000,1),(24,0,1,100.0000,1),(25,0,1,100.0000,1),(26,0,1,100.0000,1),(27,0,1,100.0000,1),(28,0,1,100.0000,1),(29,0,1,100.0000,1),(30,0,1,100.0000,1),(31,0,1,100.0000,1),(32,0,1,100.0000,1),(33,0,1,100.0000,1),(34,0,1,100.0000,1),(35,0,1,100.0000,1),(36,0,1,100.0000,1),(37,0,1,100.0000,1),(38,0,1,100.0000,1),(39,0,1,100.0000,1),(40,0,1,100.0000,1),(41,0,1,100.0000,1),(42,0,1,100.0000,1),(43,0,1,100.0000,1),(44,0,1,100.0000,1),(45,0,1,0.0000,1),(46,0,1,0.0000,1),(47,0,1,100.0000,1),(48,0,1,100.0000,1),(49,0,1,100.0000,1),(50,0,1,100.0000,1),(51,0,1,100.0000,1),(52,0,1,100.0000,1),(53,0,1,100.0000,1),(54,0,1,100.0000,1),(55,0,1,100.0000,1),(56,0,1,100.0000,1),(57,0,1,100.0000,1),(58,0,1,100.0000,1),(59,0,1,100.0000,1),(60,0,1,100.0000,1),(61,0,1,100.0000,1),(62,0,1,0.0000,1),(63,0,1,100.0000,1),(64,0,1,100.0000,1),(65,0,1,100.0000,1),(66,0,1,100.0000,1),(67,0,1,100.0000,1),(68,0,1,100.0000,1),(69,0,1,100.0000,1),(70,0,1,100.0000,1),(71,0,1,100.0000,1),(72,0,1,100.0000,1),(73,0,1,100.0000,1),(74,0,1,100.0000,1),(75,0,1,100.0000,1),(76,0,1,100.0000,1),(77,0,1,100.0000,1),(78,0,1,0.0000,1),(79,0,1,100.0000,1),(80,0,1,100.0000,1),(81,0,1,100.0000,1),(82,0,1,100.0000,1),(83,0,1,100.0000,1),(84,0,1,100.0000,1),(85,0,1,100.0000,1),(86,0,1,100.0000,1),(87,0,1,100.0000,1),(88,0,1,100.0000,1),(89,0,1,100.0000,1),(90,0,1,100.0000,1),(91,0,1,100.0000,1),(92,0,1,100.0000,1),(93,0,1,100.0000,1),(94,0,1,0.0000,1),(95,0,1,100.0000,1),(96,0,1,100.0000,1),(97,0,1,100.0000,1),(98,0,1,100.0000,1),(99,0,1,100.0000,1),(100,0,1,100.0000,1),(101,0,1,100.0000,1),(102,0,1,100.0000,1),(103,0,1,100.0000,1),(104,0,1,100.0000,1),(105,0,1,100.0000,1),(106,0,1,100.0000,1),(107,0,1,100.0000,1),(108,0,1,100.0000,1),(109,0,1,100.0000,1),(110,0,1,0.0000,1),(111,0,1,100.0000,1),(112,0,1,100.0000,1),(113,0,1,100.0000,1),(114,0,1,100.0000,1),(115,0,1,100.0000,1),(116,0,1,100.0000,1),(117,0,1,100.0000,1),(118,0,1,100.0000,1),(119,0,1,100.0000,1),(120,0,1,100.0000,1),(121,0,1,100.0000,1),(122,0,1,100.0000,1),(123,0,1,100.0000,1),(124,0,1,100.0000,1),(125,0,1,100.0000,1),(126,0,1,0.0000,1),(127,0,1,100.0000,1),(128,0,1,100.0000,1),(129,0,1,100.0000,1),(130,0,1,100.0000,1),(131,0,1,100.0000,1),(132,0,1,100.0000,1),(133,0,1,100.0000,1),(134,0,1,100.0000,1),(135,0,1,100.0000,1),(136,0,1,100.0000,1),(137,0,1,100.0000,1),(138,0,1,100.0000,1),(139,0,1,100.0000,1),(140,0,1,100.0000,1),(141,0,1,100.0000,1),(142,0,1,0.0000,1),(143,0,1,100.0000,1),(144,0,1,100.0000,1),(145,0,1,100.0000,1),(146,0,1,100.0000,1),(147,0,1,100.0000,1),(148,0,1,100.0000,1),(149,0,1,100.0000,1),(150,0,1,100.0000,1),(151,0,1,100.0000,1),(152,0,1,100.0000,1),(153,0,1,100.0000,1),(154,0,1,100.0000,1),(155,0,1,100.0000,1),(156,0,1,100.0000,1),(157,0,1,100.0000,1),(158,0,1,0.0000,1),(159,0,1,100.0000,1),(160,0,1,100.0000,1),(161,0,1,100.0000,1),(162,0,1,100.0000,1),(163,0,1,100.0000,1),(164,0,1,100.0000,1),(165,0,1,100.0000,1),(166,0,1,100.0000,1),(167,0,1,100.0000,1),(168,0,1,100.0000,1),(169,0,1,100.0000,1),(170,0,1,100.0000,1),(171,0,1,100.0000,1),(172,0,1,100.0000,1),(173,0,1,100.0000,1),(174,0,1,0.0000,1),(175,0,1,100.0000,1),(176,0,1,100.0000,1),(177,0,1,100.0000,1),(178,0,1,100.0000,1),(179,0,1,100.0000,1),(180,0,1,100.0000,1),(181,0,1,100.0000,1),(182,0,1,100.0000,1),(183,0,1,100.0000,1),(184,0,1,100.0000,1),(185,0,1,100.0000,1),(186,0,1,100.0000,1),(187,0,1,100.0000,1),(188,0,1,100.0000,1),(189,0,1,100.0000,1),(190,0,1,0.0000,1),(191,0,1,100.0000,1),(192,0,1,100.0000,1),(193,0,1,100.0000,1),(194,0,1,100.0000,1),(195,0,1,100.0000,1),(196,0,1,100.0000,1),(197,0,1,100.0000,1),(198,0,1,100.0000,1),(199,0,1,100.0000,1),(200,0,1,100.0000,1),(201,0,1,100.0000,1),(202,0,1,100.0000,1),(203,0,1,100.0000,1),(204,0,1,100.0000,1),(205,0,1,100.0000,1),(206,0,1,0.0000,1),(207,0,1,100.0000,1),(208,0,1,100.0000,1),(209,0,1,100.0000,1),(210,0,1,100.0000,1),(211,0,1,100.0000,1),(212,0,1,100.0000,1),(213,0,1,100.0000,1),(214,0,1,100.0000,1),(215,0,1,100.0000,1),(216,0,1,100.0000,1),(217,0,1,100.0000,1),(218,0,1,100.0000,1),(219,0,1,100.0000,1),(220,0,1,100.0000,1),(221,0,1,100.0000,1),(222,0,1,0.0000,1),(223,0,1,100.0000,1),(224,0,1,100.0000,1),(225,0,1,100.0000,1),(226,0,1,100.0000,1),(227,0,1,100.0000,1),(228,0,1,100.0000,1),(229,0,1,100.0000,1),(230,0,1,100.0000,1),(231,0,1,100.0000,1),(232,0,1,100.0000,1),(233,0,1,100.0000,1),(234,0,1,100.0000,1),(235,0,1,100.0000,1),(236,0,1,100.0000,1),(237,0,1,100.0000,1),(238,0,1,0.0000,1),(239,0,1,100.0000,1),(240,0,1,100.0000,1),(241,0,1,100.0000,1),(242,0,1,100.0000,1),(243,0,1,100.0000,1),(244,0,1,100.0000,1),(245,0,1,100.0000,1),(246,0,1,100.0000,1),(247,0,1,100.0000,1),(248,0,1,100.0000,1),(249,0,1,100.0000,1),(250,0,1,100.0000,1),(251,0,1,100.0000,1),(252,0,1,100.0000,1),(253,0,1,100.0000,1),(254,0,1,0.0000,1),(255,0,1,100.0000,1),(256,0,1,100.0000,1),(257,0,1,100.0000,1),(258,0,1,100.0000,1),(259,0,1,100.0000,1),(260,0,1,100.0000,1),(261,0,1,100.0000,1),(262,0,1,100.0000,1),(263,0,1,100.0000,1),(264,0,1,100.0000,1),(265,0,1,100.0000,1),(266,0,1,100.0000,1),(267,0,1,100.0000,1),(268,0,1,100.0000,1),(269,0,1,100.0000,1),(270,0,1,0.0000,1),(271,0,1,100.0000,1),(272,0,1,100.0000,1),(273,0,1,100.0000,1),(274,0,1,100.0000,1),(275,0,1,100.0000,1),(276,0,1,100.0000,1),(277,0,1,100.0000,1),(278,0,1,100.0000,1),(279,0,1,100.0000,1),(280,0,1,100.0000,1),(281,0,1,100.0000,1),(282,0,1,100.0000,1),(283,0,1,100.0000,1),(284,0,1,100.0000,1),(285,0,1,100.0000,1),(286,0,1,0.0000,1),(287,0,1,100.0000,1),(288,0,1,100.0000,1),(289,0,1,100.0000,1),(290,0,1,100.0000,1),(291,0,1,100.0000,1),(292,0,1,100.0000,1),(293,0,1,100.0000,1),(294,0,1,100.0000,1),(295,0,1,100.0000,1),(296,0,1,100.0000,1),(297,0,1,100.0000,1),(298,0,1,100.0000,1),(299,0,1,100.0000,1),(300,0,1,100.0000,1),(301,0,1,100.0000,1),(302,0,1,0.0000,1),(303,0,1,100.0000,1),(304,0,1,100.0000,1),(305,0,1,100.0000,1),(306,0,1,100.0000,1),(307,0,1,100.0000,1),(308,0,1,100.0000,1),(309,0,1,100.0000,1),(310,0,1,100.0000,1),(311,0,1,100.0000,1),(312,0,1,100.0000,1),(313,0,1,100.0000,1),(314,0,1,100.0000,1),(315,0,1,100.0000,1),(316,0,1,100.0000,1),(317,0,1,100.0000,1),(318,0,1,0.0000,1),(319,0,1,100.0000,1),(320,0,1,100.0000,1),(321,0,1,100.0000,1),(322,0,1,100.0000,1),(323,0,1,100.0000,1),(324,0,1,100.0000,1),(325,0,1,100.0000,1),(326,0,1,100.0000,1),(327,0,1,100.0000,1),(328,0,1,100.0000,1),(329,0,1,100.0000,1),(330,0,1,100.0000,1),(331,0,1,100.0000,1),(332,0,1,100.0000,1),(333,0,1,100.0000,1),(334,0,1,0.0000,1),(335,0,1,100.0000,1),(336,0,1,100.0000,1),(337,0,1,100.0000,1),(338,0,1,100.0000,1),(339,0,1,100.0000,1),(340,0,1,100.0000,1),(341,0,1,100.0000,1),(342,0,1,100.0000,1),(343,0,1,100.0000,1),(344,0,1,100.0000,1),(345,0,1,100.0000,1),(346,0,1,100.0000,1),(347,0,1,100.0000,1),(348,0,1,100.0000,1),(349,0,1,100.0000,1),(350,0,1,0.0000,1),(351,0,1,100.0000,1),(352,0,1,100.0000,1),(353,0,1,100.0000,1),(354,0,1,100.0000,1),(355,0,1,100.0000,1),(356,0,1,100.0000,1),(357,0,1,100.0000,1),(358,0,1,100.0000,1),(359,0,1,100.0000,1),(360,0,1,100.0000,1),(361,0,1,100.0000,1),(362,0,1,100.0000,1),(363,0,1,100.0000,1),(364,0,1,100.0000,1),(365,0,1,100.0000,1),(366,0,1,0.0000,1),(367,0,1,100.0000,1),(368,0,1,100.0000,1),(369,0,1,100.0000,1),(370,0,1,100.0000,1),(371,0,1,100.0000,1),(372,0,1,100.0000,1),(373,0,1,100.0000,1),(374,0,1,100.0000,1),(375,0,1,100.0000,1),(376,0,1,100.0000,1),(377,0,1,100.0000,1),(378,0,1,100.0000,1),(379,0,1,100.0000,1),(380,0,1,100.0000,1),(381,0,1,100.0000,1),(382,0,1,0.0000,1),(383,0,1,100.0000,1),(384,0,1,100.0000,1),(385,0,1,100.0000,1),(386,0,1,100.0000,1),(387,0,1,100.0000,1),(388,0,1,100.0000,1),(389,0,1,100.0000,1),(390,0,1,100.0000,1),(391,0,1,100.0000,1),(392,0,1,100.0000,1),(393,0,1,100.0000,1),(394,0,1,100.0000,1),(395,0,1,100.0000,1),(396,0,1,100.0000,1),(397,0,1,100.0000,1),(398,0,1,0.0000,1),(399,0,1,100.0000,1),(400,0,1,100.0000,1),(401,0,1,100.0000,1),(402,0,1,100.0000,1),(403,0,1,100.0000,1),(404,0,1,100.0000,1),(405,0,1,100.0000,1),(406,0,1,100.0000,1),(407,0,1,100.0000,1),(408,0,1,100.0000,1),(409,0,1,100.0000,1),(410,0,1,100.0000,1),(411,0,1,100.0000,1),(412,0,1,100.0000,1),(413,0,1,100.0000,1),(414,0,1,0.0000,1),(415,0,1,100.0000,1),(416,0,1,100.0000,1),(417,0,1,100.0000,1),(418,0,1,100.0000,1),(419,0,1,100.0000,1),(420,0,1,100.0000,1),(421,0,1,100.0000,1),(422,0,1,100.0000,1),(423,0,1,100.0000,1),(424,0,1,100.0000,1),(425,0,1,100.0000,1),(426,0,1,100.0000,1),(427,0,1,100.0000,1),(428,0,1,100.0000,1),(429,0,1,100.0000,1),(430,0,1,0.0000,1),(431,0,1,100.0000,1),(432,0,1,100.0000,1),(433,0,1,100.0000,1),(434,0,1,100.0000,1),(435,0,1,100.0000,1),(436,0,1,100.0000,1),(437,0,1,100.0000,1),(438,0,1,100.0000,1),(439,0,1,100.0000,1),(440,0,1,100.0000,1),(441,0,1,100.0000,1),(442,0,1,100.0000,1),(443,0,1,100.0000,1),(444,0,1,100.0000,1),(445,0,1,100.0000,1),(446,0,1,0.0000,1),(447,0,1,100.0000,1),(448,0,1,100.0000,1),(449,0,1,100.0000,1),(450,0,1,100.0000,1),(451,0,1,100.0000,1),(452,0,1,100.0000,1),(453,0,1,100.0000,1),(454,0,1,100.0000,1),(455,0,1,100.0000,1),(456,0,1,100.0000,1),(457,0,1,100.0000,1),(458,0,1,100.0000,1),(459,0,1,100.0000,1),(460,0,1,100.0000,1),(461,0,1,100.0000,1),(462,0,1,0.0000,1),(463,0,1,100.0000,1),(464,0,1,100.0000,1),(465,0,1,100.0000,1),(466,0,1,100.0000,1),(467,0,1,100.0000,1),(468,0,1,100.0000,1),(469,0,1,100.0000,1),(470,0,1,100.0000,1),(471,0,1,100.0000,1),(472,0,1,100.0000,1),(473,0,1,100.0000,1),(474,0,1,100.0000,1),(475,0,1,100.0000,1),(476,0,1,100.0000,1),(477,0,1,100.0000,1),(478,0,1,0.0000,1),(479,0,1,100.0000,1),(480,0,1,100.0000,1),(481,0,1,100.0000,1),(482,0,1,100.0000,1),(483,0,1,100.0000,1),(484,0,1,100.0000,1),(485,0,1,100.0000,1),(486,0,1,100.0000,1),(487,0,1,100.0000,1),(488,0,1,100.0000,1),(489,0,1,100.0000,1),(490,0,1,100.0000,1),(491,0,1,100.0000,1),(492,0,1,100.0000,1),(493,0,1,100.0000,1),(494,0,1,0.0000,1),(495,0,1,100.0000,1),(496,0,1,100.0000,1),(497,0,1,100.0000,1),(498,0,1,100.0000,1),(499,0,1,100.0000,1),(500,0,1,100.0000,1),(501,0,1,100.0000,1),(502,0,1,100.0000,1),(503,0,1,100.0000,1),(504,0,1,100.0000,1),(505,0,1,100.0000,1),(506,0,1,100.0000,1),(507,0,1,100.0000,1),(508,0,1,100.0000,1),(509,0,1,100.0000,1),(510,0,1,0.0000,1),(511,0,1,100.0000,1),(512,0,1,100.0000,1),(513,0,1,100.0000,1),(514,0,1,100.0000,1),(515,0,1,100.0000,1),(516,0,1,100.0000,1),(517,0,1,100.0000,1),(518,0,1,100.0000,1),(519,0,1,100.0000,1),(520,0,1,100.0000,1),(521,0,1,100.0000,1),(522,0,1,100.0000,1),(523,0,1,100.0000,1),(524,0,1,100.0000,1),(525,0,1,100.0000,1),(526,0,1,0.0000,1),(527,0,1,100.0000,1),(528,0,1,100.0000,1),(529,0,1,100.0000,1),(530,0,1,100.0000,1),(531,0,1,100.0000,1),(532,0,1,100.0000,1),(533,0,1,100.0000,1),(534,0,1,100.0000,1),(535,0,1,100.0000,1),(536,0,1,100.0000,1),(537,0,1,100.0000,1),(538,0,1,100.0000,1),(539,0,1,100.0000,1),(540,0,1,100.0000,1),(541,0,1,100.0000,1),(542,0,1,0.0000,1),(543,0,1,100.0000,1),(544,0,1,100.0000,1),(545,0,1,100.0000,1),(546,0,1,100.0000,1),(547,0,1,100.0000,1),(548,0,1,100.0000,1),(549,0,1,100.0000,1),(550,0,1,100.0000,1),(551,0,1,100.0000,1),(552,0,1,100.0000,1),(553,0,1,100.0000,1),(554,0,1,100.0000,1),(555,0,1,100.0000,1),(556,0,1,100.0000,1),(557,0,1,100.0000,1),(558,0,1,0.0000,1),(559,0,1,100.0000,1),(560,0,1,100.0000,1),(561,0,1,100.0000,1),(562,0,1,100.0000,1),(563,0,1,100.0000,1),(564,0,1,100.0000,1),(565,0,1,100.0000,1),(566,0,1,100.0000,1),(567,0,1,100.0000,1),(568,0,1,100.0000,1),(569,0,1,100.0000,1),(570,0,1,100.0000,1),(571,0,1,100.0000,1),(572,0,1,100.0000,1),(573,0,1,100.0000,1),(574,0,1,0.0000,1),(575,0,1,100.0000,1),(576,0,1,100.0000,1),(577,0,1,100.0000,1),(578,0,1,100.0000,1),(579,0,1,100.0000,1),(580,0,1,100.0000,1),(581,0,1,100.0000,1),(582,0,1,100.0000,1),(583,0,1,100.0000,1),(584,0,1,100.0000,1),(585,0,1,100.0000,1),(586,0,1,100.0000,1),(587,0,1,100.0000,1),(588,0,1,100.0000,1),(589,0,1,100.0000,1),(590,0,1,0.0000,1),(591,0,1,100.0000,1),(592,0,1,100.0000,1),(593,0,1,100.0000,1),(594,0,1,100.0000,1),(595,0,1,100.0000,1),(596,0,1,100.0000,1),(597,0,1,100.0000,1),(598,0,1,100.0000,1),(599,0,1,100.0000,1),(600,0,1,100.0000,1),(601,0,1,100.0000,1),(602,0,1,100.0000,1),(603,0,1,100.0000,1),(604,0,1,100.0000,1),(605,0,1,100.0000,1),(606,0,1,0.0000,1),(607,0,1,100.0000,1),(608,0,1,100.0000,1),(609,0,1,100.0000,1),(610,0,1,100.0000,1),(611,0,1,100.0000,1),(612,0,1,100.0000,1),(613,0,1,100.0000,1),(614,0,1,100.0000,1),(615,0,1,100.0000,1),(616,0,1,100.0000,1),(617,0,1,100.0000,1),(618,0,1,100.0000,1),(619,0,1,100.0000,1),(620,0,1,100.0000,1),(621,0,1,100.0000,1),(622,0,1,0.0000,1),(623,0,1,100.0000,1),(624,0,1,100.0000,1),(625,0,1,100.0000,1),(626,0,1,100.0000,1),(627,0,1,100.0000,1),(628,0,1,100.0000,1),(629,0,1,100.0000,1),(630,0,1,100.0000,1),(631,0,1,100.0000,1),(632,0,1,100.0000,1),(633,0,1,100.0000,1),(634,0,1,100.0000,1),(635,0,1,100.0000,1),(636,0,1,100.0000,1),(637,0,1,100.0000,1),(638,0,1,0.0000,1),(639,0,1,100.0000,1),(640,0,1,100.0000,1),(641,0,1,100.0000,1),(642,0,1,100.0000,1),(643,0,1,100.0000,1),(644,0,1,100.0000,1),(645,0,1,100.0000,1),(646,0,1,100.0000,1),(647,0,1,100.0000,1),(648,0,1,100.0000,1),(649,0,1,100.0000,1),(650,0,1,100.0000,1),(651,0,1,100.0000,1),(652,0,1,100.0000,1),(653,0,1,100.0000,1),(654,0,1,0.0000,1),(655,0,1,100.0000,1),(656,0,1,100.0000,1),(657,0,1,100.0000,1),(658,0,1,100.0000,1),(659,0,1,100.0000,1),(660,0,1,100.0000,1),(661,0,1,100.0000,1),(662,0,1,100.0000,1),(663,0,1,100.0000,1),(664,0,1,100.0000,1),(665,0,1,100.0000,1),(666,0,1,100.0000,1),(667,0,1,100.0000,1),(668,0,1,100.0000,1),(669,0,1,100.0000,1),(670,0,1,0.0000,1),(671,0,1,100.0000,1),(672,0,1,100.0000,1),(673,0,1,100.0000,1),(674,0,1,100.0000,1),(675,0,1,100.0000,1),(676,0,1,0.0000,1),(677,0,1,100.0000,1),(678,0,1,100.0000,1),(679,0,1,100.0000,1),(680,0,1,100.0000,1),(681,0,1,100.0000,1),(682,0,1,0.0000,1),(683,0,1,100.0000,1),(684,0,1,100.0000,1),(685,0,1,100.0000,1),(686,0,1,100.0000,1),(687,0,1,100.0000,1),(688,0,1,0.0000,1),(689,0,1,100.0000,1),(690,0,1,100.0000,1),(691,0,1,100.0000,1),(692,0,1,100.0000,1),(693,0,1,100.0000,1),(694,0,1,0.0000,1),(695,0,1,100.0000,1),(696,0,1,100.0000,1),(697,0,1,100.0000,1),(698,0,1,100.0000,1),(699,0,1,100.0000,1),(700,0,1,0.0000,1),(701,0,1,100.0000,1),(702,0,1,100.0000,1),(703,0,1,100.0000,1),(704,0,1,100.0000,1),(705,0,1,100.0000,1),(706,0,1,0.0000,1),(707,0,1,100.0000,1),(708,0,1,100.0000,1),(709,0,1,100.0000,1),(710,0,1,100.0000,1),(711,0,1,100.0000,1),(712,0,1,0.0000,1),(713,0,1,100.0000,1),(714,0,1,100.0000,1),(715,0,1,100.0000,1),(716,0,1,100.0000,1),(717,0,1,100.0000,1),(718,0,1,0.0000,1),(719,0,1,100.0000,1),(720,0,1,100.0000,1),(721,0,1,100.0000,1),(722,0,1,100.0000,1),(723,0,1,100.0000,1),(724,0,1,0.0000,1),(725,0,1,100.0000,1),(726,0,1,100.0000,1),(727,0,1,100.0000,1),(728,0,1,100.0000,1),(729,0,1,100.0000,1),(730,0,1,100.0000,1),(731,0,1,100.0000,1),(732,0,1,100.0000,1),(733,0,1,100.0000,1),(734,0,1,100.0000,1),(735,0,1,100.0000,1),(736,0,1,100.0000,1),(737,0,1,0.0000,1),(738,0,1,100.0000,1),(739,0,1,100.0000,1),(740,0,1,100.0000,1),(741,0,1,100.0000,1),(742,0,1,100.0000,1),(743,0,1,100.0000,1),(744,0,1,100.0000,1),(745,0,1,100.0000,1),(746,0,1,100.0000,1),(747,0,1,100.0000,1),(748,0,1,100.0000,1),(749,0,1,100.0000,1),(750,0,1,0.0000,1),(751,0,1,100.0000,1),(752,0,1,100.0000,1),(753,0,1,100.0000,1),(754,0,1,100.0000,1),(755,0,1,100.0000,1),(756,0,1,100.0000,1),(757,0,1,100.0000,1),(758,0,1,100.0000,1),(759,0,1,100.0000,1),(760,0,1,100.0000,1),(761,0,1,100.0000,1),(762,0,1,100.0000,1),(763,0,1,0.0000,1),(764,0,1,100.0000,1),(765,0,1,100.0000,1),(766,0,1,100.0000,1),(767,0,1,100.0000,1),(768,0,1,100.0000,1),(769,0,1,100.0000,1),(770,0,1,100.0000,1),(771,0,1,100.0000,1),(772,0,1,100.0000,1),(773,0,1,100.0000,1),(774,0,1,100.0000,1),(775,0,1,100.0000,1),(776,0,1,0.0000,1),(777,0,1,100.0000,1),(778,0,1,100.0000,1),(779,0,1,100.0000,1),(780,0,1,100.0000,1),(781,0,1,100.0000,1),(782,0,1,100.0000,1),(783,0,1,100.0000,1),(784,0,1,100.0000,1),(785,0,1,100.0000,1),(786,0,1,100.0000,1),(787,0,1,100.0000,1),(788,0,1,100.0000,1),(789,0,1,0.0000,1),(790,0,1,100.0000,1),(791,0,1,100.0000,1),(792,0,1,100.0000,1),(793,0,1,100.0000,1),(794,0,1,100.0000,1),(795,0,1,100.0000,1),(796,0,1,100.0000,1),(797,0,1,100.0000,1),(798,0,1,100.0000,1),(799,0,1,100.0000,1),(800,0,1,100.0000,1),(801,0,1,100.0000,1),(802,0,1,0.0000,1),(803,0,1,100.0000,1),(804,0,1,100.0000,1),(805,0,1,100.0000,1),(806,0,1,100.0000,1),(807,0,1,100.0000,1),(808,0,1,100.0000,1),(809,0,1,100.0000,1),(810,0,1,100.0000,1),(811,0,1,100.0000,1),(812,0,1,100.0000,1),(813,0,1,100.0000,1),(814,0,1,100.0000,1),(815,0,1,0.0000,1),(816,0,1,100.0000,1),(817,0,1,100.0000,1),(818,0,1,100.0000,1),(819,0,1,100.0000,1),(820,0,1,100.0000,1),(821,0,1,100.0000,1),(822,0,1,100.0000,1),(823,0,1,100.0000,1),(824,0,1,100.0000,1),(825,0,1,100.0000,1),(826,0,1,100.0000,1),(827,0,1,100.0000,1),(828,0,1,0.0000,1),(829,0,1,100.0000,1),(830,0,1,100.0000,1),(831,0,1,100.0000,1),(832,0,1,100.0000,1),(833,0,1,100.0000,1),(834,0,1,100.0000,1),(835,0,1,100.0000,1),(836,0,1,100.0000,1),(837,0,1,100.0000,1),(838,0,1,100.0000,1),(839,0,1,100.0000,1),(840,0,1,100.0000,1),(841,0,1,0.0000,1),(842,0,1,100.0000,1),(843,0,1,100.0000,1),(844,0,1,100.0000,1),(845,0,1,100.0000,1),(846,0,1,100.0000,1),(847,0,1,100.0000,1),(848,0,1,100.0000,1),(849,0,1,100.0000,1),(850,0,1,100.0000,1),(851,0,1,100.0000,1),(852,0,1,100.0000,1),(853,0,1,100.0000,1),(854,0,1,0.0000,1),(855,0,1,100.0000,1),(856,0,1,100.0000,1),(857,0,1,100.0000,1),(858,0,1,100.0000,1),(859,0,1,100.0000,1),(860,0,1,100.0000,1),(861,0,1,100.0000,1),(862,0,1,100.0000,1),(863,0,1,100.0000,1),(864,0,1,100.0000,1),(865,0,1,100.0000,1),(866,0,1,100.0000,1),(867,0,1,0.0000,1),(868,0,1,100.0000,1),(869,0,1,100.0000,1),(870,0,1,100.0000,1),(871,0,1,100.0000,1),(872,0,1,100.0000,1),(873,0,1,100.0000,1),(874,0,1,100.0000,1),(875,0,1,100.0000,1),(876,0,1,100.0000,1),(877,0,1,100.0000,1),(878,0,1,100.0000,1),(879,0,1,100.0000,1),(880,0,1,0.0000,1),(881,0,1,100.0000,1),(882,0,1,100.0000,1),(883,0,1,100.0000,1),(884,0,1,100.0000,1),(885,0,1,100.0000,1),(886,0,1,100.0000,1),(887,0,1,100.0000,1),(888,0,1,100.0000,1),(889,0,1,100.0000,1),(890,0,1,100.0000,1),(891,0,1,100.0000,1),(892,0,1,100.0000,1),(893,0,1,0.0000,1),(894,0,1,100.0000,1),(895,0,1,100.0000,1),(896,0,1,100.0000,1),(897,0,1,100.0000,1),(898,0,1,0.0000,1),(899,0,1,100.0000,1),(900,0,1,100.0000,1),(901,0,1,100.0000,1),(902,0,1,100.0000,1),(903,0,1,100.0000,1),(904,0,1,100.0000,1),(905,0,1,100.0000,1),(906,0,1,100.0000,1),(907,0,1,100.0000,1),(908,0,1,100.0000,1),(909,0,1,100.0000,1),(910,0,1,100.0000,1),(911,0,1,0.0000,1),(912,0,1,100.0000,1),(913,0,1,100.0000,1),(914,0,1,100.0000,1),(915,0,1,100.0000,1),(916,0,1,100.0000,1),(917,0,1,100.0000,1),(918,0,1,100.0000,1),(919,0,1,100.0000,1),(920,0,1,100.0000,1),(921,0,1,100.0000,1),(922,0,1,100.0000,1),(923,0,1,100.0000,1),(924,0,1,0.0000,1),(925,0,1,100.0000,1),(926,0,1,100.0000,1),(927,0,1,100.0000,1),(928,0,1,100.0000,1),(929,0,1,100.0000,1),(930,0,1,100.0000,1),(931,0,1,100.0000,1),(932,0,1,100.0000,1),(933,0,1,100.0000,1),(934,0,1,100.0000,1),(935,0,1,100.0000,1),(936,0,1,100.0000,1),(937,0,1,0.0000,1),(938,0,1,100.0000,1),(939,0,1,100.0000,1),(940,0,1,100.0000,1),(941,0,1,100.0000,1),(942,0,1,100.0000,1),(943,0,1,100.0000,1),(944,0,1,100.0000,1),(945,0,1,100.0000,1),(946,0,1,100.0000,1),(947,0,1,100.0000,1),(948,0,1,100.0000,1),(949,0,1,100.0000,1),(950,0,1,0.0000,1),(951,0,1,100.0000,1),(952,0,1,100.0000,1),(953,0,1,100.0000,1),(954,0,1,100.0000,1),(955,0,1,100.0000,1),(956,0,1,100.0000,1),(957,0,1,100.0000,1),(958,0,1,100.0000,1),(959,0,1,100.0000,1),(960,0,1,100.0000,1),(961,0,1,100.0000,1),(962,0,1,100.0000,1),(963,0,1,0.0000,1),(964,0,1,100.0000,1),(965,0,1,100.0000,1),(966,0,1,100.0000,1),(967,0,1,100.0000,1),(968,0,1,100.0000,1),(969,0,1,100.0000,1),(970,0,1,100.0000,1),(971,0,1,100.0000,1),(972,0,1,100.0000,1),(973,0,1,100.0000,1),(974,0,1,100.0000,1),(975,0,1,100.0000,1),(976,0,1,0.0000,1),(977,0,1,100.0000,1),(978,0,1,100.0000,1),(979,0,1,100.0000,1),(980,0,1,100.0000,1),(981,0,1,100.0000,1),(982,0,1,100.0000,1),(983,0,1,100.0000,1),(984,0,1,100.0000,1),(985,0,1,100.0000,1),(986,0,1,100.0000,1),(987,0,1,100.0000,1),(988,0,1,100.0000,1),(989,0,1,0.0000,1),(990,0,1,100.0000,1),(991,0,1,100.0000,1),(992,0,1,100.0000,1),(993,0,1,100.0000,1),(994,0,1,100.0000,1),(995,0,1,100.0000,1),(996,0,1,100.0000,1),(997,0,1,100.0000,1),(998,0,1,100.0000,1),(999,0,1,100.0000,1),(1000,0,1,100.0000,1),(1001,0,1,100.0000,1),(1002,0,1,0.0000,1),(1003,0,1,100.0000,1),(1004,0,1,100.0000,1),(1005,0,1,100.0000,1),(1006,0,1,100.0000,1),(1007,0,1,100.0000,1),(1008,0,1,100.0000,1),(1009,0,1,100.0000,1),(1010,0,1,100.0000,1),(1011,0,1,100.0000,1),(1012,0,1,100.0000,1),(1013,0,1,100.0000,1),(1014,0,1,100.0000,1),(1015,0,1,0.0000,1),(1016,0,1,100.0000,1),(1017,0,1,100.0000,1),(1018,0,1,100.0000,1),(1019,0,1,100.0000,1),(1020,0,1,100.0000,1),(1021,0,1,100.0000,1),(1022,0,1,100.0000,1),(1023,0,1,100.0000,1),(1024,0,1,100.0000,1),(1025,0,1,100.0000,1),(1026,0,1,100.0000,1),(1027,0,1,100.0000,1),(1028,0,1,0.0000,1),(1029,0,1,100.0000,1),(1030,0,1,100.0000,1),(1031,0,1,100.0000,1),(1032,0,1,100.0000,1),(1033,0,1,100.0000,1),(1034,0,1,100.0000,1),(1035,0,1,100.0000,1),(1036,0,1,100.0000,1),(1037,0,1,100.0000,1),(1038,0,1,100.0000,1),(1039,0,1,100.0000,1),(1040,0,1,100.0000,1),(1041,0,1,100.0000,1),(1042,0,1,100.0000,1),(1043,0,1,100.0000,1),(1044,0,1,0.0000,1),(1045,0,1,100.0000,1),(1046,0,1,100.0000,1),(1047,0,1,100.0000,1),(1048,0,1,100.0000,1),(1049,0,1,100.0000,1),(1050,0,1,100.0000,1),(1051,0,1,100.0000,1),(1052,0,1,100.0000,1),(1053,0,1,100.0000,1),(1054,0,1,100.0000,1),(1055,0,1,100.0000,1),(1056,0,1,100.0000,1),(1057,0,1,100.0000,1),(1058,0,1,100.0000,1),(1059,0,1,100.0000,1),(1060,0,1,0.0000,1),(1061,0,1,100.0000,1),(1062,0,1,100.0000,1),(1063,0,1,100.0000,1),(1064,0,1,100.0000,1),(1065,0,1,100.0000,1),(1066,0,1,100.0000,1),(1067,0,1,100.0000,1),(1068,0,1,100.0000,1),(1069,0,1,100.0000,1),(1070,0,1,100.0000,1),(1071,0,1,100.0000,1),(1072,0,1,100.0000,1),(1073,0,1,100.0000,1),(1074,0,1,100.0000,1),(1075,0,1,100.0000,1),(1076,0,1,0.0000,1),(1077,0,1,100.0000,1),(1078,0,1,100.0000,1),(1079,0,1,100.0000,1),(1080,0,1,100.0000,1),(1081,0,1,100.0000,1),(1082,0,1,100.0000,1),(1083,0,1,100.0000,1),(1084,0,1,100.0000,1),(1085,0,1,100.0000,1),(1086,0,1,100.0000,1),(1087,0,1,100.0000,1),(1088,0,1,100.0000,1),(1089,0,1,100.0000,1),(1090,0,1,100.0000,1),(1091,0,1,100.0000,1),(1092,0,1,0.0000,1),(1093,0,1,100.0000,1),(1094,0,1,100.0000,1),(1095,0,1,100.0000,1),(1096,0,1,100.0000,1),(1097,0,1,100.0000,1),(1098,0,1,100.0000,1),(1099,0,1,100.0000,1),(1100,0,1,100.0000,1),(1101,0,1,100.0000,1),(1102,0,1,100.0000,1),(1103,0,1,100.0000,1),(1104,0,1,100.0000,1),(1105,0,1,100.0000,1),(1106,0,1,100.0000,1),(1107,0,1,100.0000,1),(1108,0,1,0.0000,1),(1109,0,1,100.0000,1),(1110,0,1,100.0000,1),(1111,0,1,100.0000,1),(1112,0,1,100.0000,1),(1113,0,1,100.0000,1),(1114,0,1,0.0000,1),(1115,0,1,100.0000,1),(1116,0,1,100.0000,1),(1117,0,1,100.0000,1),(1118,0,1,100.0000,1),(1119,0,1,100.0000,1),(1120,0,1,100.0000,1),(1121,0,1,100.0000,1),(1122,0,1,100.0000,1),(1123,0,1,100.0000,1),(1124,0,1,100.0000,1),(1125,0,1,100.0000,1),(1126,0,1,100.0000,1),(1127,0,1,100.0000,1),(1128,0,1,100.0000,1),(1129,0,1,100.0000,1),(1130,0,1,0.0000,1),(1131,0,1,100.0000,1),(1132,0,1,100.0000,1),(1133,0,1,100.0000,1),(1134,0,1,100.0000,1),(1135,0,1,100.0000,1),(1136,0,1,100.0000,1),(1137,0,1,100.0000,1),(1138,0,1,100.0000,1),(1139,0,1,100.0000,1),(1140,0,1,100.0000,1),(1141,0,1,100.0000,1),(1142,0,1,100.0000,1),(1143,0,1,100.0000,1),(1144,0,1,100.0000,1),(1145,0,1,100.0000,1),(1146,0,1,0.0000,1),(1147,0,1,100.0000,1),(1148,0,1,100.0000,1),(1149,0,1,100.0000,1),(1150,0,1,100.0000,1),(1151,0,1,100.0000,1),(1152,0,1,100.0000,1),(1153,0,1,100.0000,1),(1154,0,1,100.0000,1),(1155,0,1,100.0000,1),(1156,0,1,100.0000,1),(1157,0,1,100.0000,1),(1158,0,1,100.0000,1),(1159,0,1,100.0000,1),(1160,0,1,100.0000,1),(1161,0,1,100.0000,1),(1162,0,1,0.0000,1),(1163,0,1,100.0000,1),(1164,0,1,100.0000,1),(1165,0,1,100.0000,1),(1166,0,1,100.0000,1),(1167,0,1,100.0000,1),(1168,0,1,100.0000,1),(1169,0,1,100.0000,1),(1170,0,1,100.0000,1),(1171,0,1,100.0000,1),(1172,0,1,100.0000,1),(1173,0,1,100.0000,1),(1174,0,1,100.0000,1),(1175,0,1,100.0000,1),(1176,0,1,100.0000,1),(1177,0,1,100.0000,1),(1178,0,1,0.0000,1),(1179,0,1,100.0000,1),(1180,0,1,100.0000,1),(1181,0,1,100.0000,1),(1182,0,1,100.0000,1),(1183,0,1,100.0000,1),(1184,0,1,100.0000,1),(1185,0,1,100.0000,1),(1186,0,1,100.0000,1),(1187,0,1,100.0000,1),(1188,0,1,100.0000,1),(1189,0,1,100.0000,1),(1190,0,1,100.0000,1),(1191,0,1,100.0000,1),(1192,0,1,100.0000,1),(1193,0,1,100.0000,1),(1194,0,1,0.0000,1),(1195,0,1,100.0000,1),(1196,0,1,100.0000,1),(1197,0,1,100.0000,1),(1198,0,1,100.0000,1),(1199,0,1,100.0000,1),(1200,0,1,100.0000,1),(1201,0,1,100.0000,1),(1202,0,1,100.0000,1),(1203,0,1,100.0000,1),(1204,0,1,100.0000,1),(1205,0,1,100.0000,1),(1206,0,1,100.0000,1),(1207,0,1,100.0000,1),(1208,0,1,100.0000,1),(1209,0,1,100.0000,1),(1210,0,1,0.0000,1),(1211,0,1,100.0000,1),(1212,0,1,100.0000,1),(1213,0,1,100.0000,1),(1214,0,1,100.0000,1),(1215,0,1,100.0000,1),(1216,0,1,100.0000,1),(1217,0,1,100.0000,1),(1218,0,1,100.0000,1),(1219,0,1,100.0000,1),(1220,0,1,0.0000,1),(1221,0,1,100.0000,1),(1222,0,1,100.0000,1),(1223,0,1,100.0000,1),(1224,0,1,100.0000,1),(1225,0,1,100.0000,1),(1226,0,1,100.0000,1),(1227,0,1,100.0000,1),(1228,0,1,100.0000,1),(1229,0,1,100.0000,1),(1230,0,1,100.0000,1),(1231,0,1,100.0000,1),(1232,0,1,100.0000,1),(1233,0,1,100.0000,1),(1234,0,1,100.0000,1),(1235,0,1,100.0000,1),(1236,0,1,0.0000,1),(1237,0,1,100.0000,1),(1238,0,1,100.0000,1),(1239,0,1,100.0000,1),(1240,0,1,100.0000,1),(1241,0,1,100.0000,1),(1242,0,1,100.0000,1),(1243,0,1,100.0000,1),(1244,0,1,100.0000,1),(1245,0,1,100.0000,1),(1246,0,1,100.0000,1),(1247,0,1,100.0000,1),(1248,0,1,100.0000,1),(1249,0,1,100.0000,1),(1250,0,1,100.0000,1),(1251,0,1,100.0000,1),(1252,0,1,0.0000,1),(1253,0,1,100.0000,1),(1254,0,1,100.0000,1),(1255,0,1,100.0000,1),(1256,0,1,100.0000,1),(1257,0,1,100.0000,1),(1258,0,1,100.0000,1),(1259,0,1,100.0000,1),(1260,0,1,100.0000,1),(1261,0,1,100.0000,1),(1262,0,1,100.0000,1),(1263,0,1,100.0000,1),(1264,0,1,100.0000,1),(1265,0,1,100.0000,1),(1266,0,1,100.0000,1),(1267,0,1,100.0000,1),(1268,0,1,0.0000,1),(1269,0,1,100.0000,1),(1270,0,1,100.0000,1),(1271,0,1,100.0000,1),(1272,0,1,100.0000,1),(1273,0,1,100.0000,1),(1274,0,1,100.0000,1),(1275,0,1,100.0000,1),(1276,0,1,100.0000,1),(1277,0,1,100.0000,1),(1278,0,1,100.0000,1),(1279,0,1,100.0000,1),(1280,0,1,100.0000,1),(1281,0,1,100.0000,1),(1282,0,1,100.0000,1),(1283,0,1,100.0000,1),(1284,0,1,0.0000,1),(1285,0,1,100.0000,1),(1286,0,1,100.0000,1),(1287,0,1,100.0000,1),(1288,0,1,100.0000,1),(1289,0,1,100.0000,1),(1290,0,1,100.0000,1),(1291,0,1,100.0000,1),(1292,0,1,100.0000,1),(1293,0,1,100.0000,1),(1294,0,1,100.0000,1),(1295,0,1,100.0000,1),(1296,0,1,100.0000,1),(1297,0,1,100.0000,1),(1298,0,1,100.0000,1),(1299,0,1,100.0000,1),(1300,0,1,0.0000,1),(1301,0,1,100.0000,1),(1302,0,1,100.0000,1),(1303,0,1,100.0000,1),(1304,0,1,100.0000,1),(1305,0,1,100.0000,1),(1306,0,1,100.0000,1),(1307,0,1,100.0000,1),(1308,0,1,100.0000,1),(1309,0,1,100.0000,1),(1310,0,1,100.0000,1),(1311,0,1,100.0000,1),(1312,0,1,100.0000,1),(1313,0,1,100.0000,1),(1314,0,1,100.0000,1),(1315,0,1,100.0000,1),(1316,0,1,0.0000,1),(1317,0,1,100.0000,1),(1318,0,1,100.0000,1),(1319,0,1,100.0000,1),(1320,0,1,100.0000,1),(1321,0,1,100.0000,1),(1322,0,1,100.0000,1),(1323,0,1,100.0000,1),(1324,0,1,100.0000,1),(1325,0,1,100.0000,1),(1326,0,1,100.0000,1),(1327,0,1,100.0000,1),(1328,0,1,100.0000,1),(1329,0,1,100.0000,1),(1330,0,1,100.0000,1),(1331,0,1,100.0000,1),(1332,0,1,0.0000,1),(1333,0,1,100.0000,1),(1334,0,1,100.0000,1),(1335,0,1,100.0000,1),(1336,0,1,100.0000,1),(1337,0,1,100.0000,1),(1338,0,1,100.0000,1),(1339,0,1,100.0000,1),(1340,0,1,100.0000,1),(1341,0,1,100.0000,1),(1342,0,1,100.0000,1),(1343,0,1,100.0000,1),(1344,0,1,100.0000,1),(1345,0,1,100.0000,1),(1346,0,1,100.0000,1),(1347,0,1,100.0000,1),(1348,0,1,0.0000,1),(1349,0,1,100.0000,1),(1350,0,1,100.0000,1),(1351,0,1,100.0000,1),(1352,0,1,100.0000,1),(1353,0,1,100.0000,1),(1354,0,1,100.0000,1),(1355,0,1,100.0000,1),(1356,0,1,100.0000,1),(1357,0,1,100.0000,1),(1358,0,1,100.0000,1),(1359,0,1,100.0000,1),(1360,0,1,100.0000,1),(1361,0,1,100.0000,1),(1362,0,1,100.0000,1),(1363,0,1,100.0000,1),(1364,0,1,0.0000,1),(1365,0,1,100.0000,1),(1366,0,1,100.0000,1),(1367,0,1,100.0000,1),(1368,0,1,100.0000,1),(1369,0,1,100.0000,1),(1370,0,1,100.0000,1),(1371,0,1,100.0000,1),(1372,0,1,100.0000,1),(1373,0,1,100.0000,1),(1374,0,1,100.0000,1),(1375,0,1,100.0000,1),(1376,0,1,100.0000,1),(1377,0,1,100.0000,1),(1378,0,1,100.0000,1),(1379,0,1,100.0000,1),(1380,0,1,0.0000,1),(1381,0,1,100.0000,1),(1382,0,1,100.0000,1),(1383,0,1,100.0000,1),(1384,0,1,100.0000,1),(1385,0,1,100.0000,1),(1386,0,1,100.0000,1),(1387,0,1,100.0000,1),(1388,0,1,100.0000,1),(1389,0,1,100.0000,1),(1390,0,1,100.0000,1),(1391,0,1,100.0000,1),(1392,0,1,100.0000,1),(1393,0,1,100.0000,1),(1394,0,1,100.0000,1),(1395,0,1,100.0000,1),(1396,0,1,0.0000,1),(1397,0,1,100.0000,1),(1398,0,1,100.0000,1),(1399,0,1,100.0000,1),(1400,0,1,100.0000,1),(1401,0,1,100.0000,1),(1402,0,1,100.0000,1),(1403,0,1,100.0000,1),(1404,0,1,100.0000,1),(1405,0,1,100.0000,1),(1406,0,1,100.0000,1),(1407,0,1,100.0000,1),(1408,0,1,100.0000,1),(1409,0,1,100.0000,1),(1410,0,1,100.0000,1),(1411,0,1,100.0000,1),(1412,0,1,0.0000,1),(1413,0,1,100.0000,1),(1414,0,1,100.0000,1),(1415,0,1,99.0000,1),(1416,0,1,100.0000,1),(1417,0,1,100.0000,1),(1418,0,1,100.0000,1),(1419,0,1,100.0000,1),(1420,0,1,100.0000,1),(1421,0,1,100.0000,1),(1422,0,1,100.0000,1),(1423,0,1,100.0000,1),(1424,0,1,100.0000,1),(1425,0,1,100.0000,1),(1426,0,1,100.0000,1),(1427,0,1,100.0000,1),(1428,0,1,0.0000,1),(1429,0,1,100.0000,1),(1430,0,1,100.0000,1),(1431,0,1,100.0000,1),(1432,0,1,100.0000,1),(1433,0,1,100.0000,1),(1434,0,1,100.0000,1),(1435,0,1,100.0000,1),(1436,0,1,100.0000,1),(1437,0,1,100.0000,1),(1438,0,1,100.0000,1),(1439,0,1,100.0000,1),(1440,0,1,100.0000,1),(1441,0,1,100.0000,1),(1442,0,1,100.0000,1),(1443,0,1,100.0000,1),(1444,0,1,0.0000,1),(1445,0,1,100.0000,1),(1446,0,1,100.0000,1),(1447,0,1,100.0000,1),(1448,0,1,100.0000,1),(1449,0,1,100.0000,1),(1450,0,1,100.0000,1),(1451,0,1,100.0000,1),(1452,0,1,100.0000,1),(1453,0,1,100.0000,1),(1454,0,1,100.0000,1),(1455,0,1,100.0000,1),(1456,0,1,100.0000,1),(1457,0,1,100.0000,1),(1458,0,1,100.0000,1),(1459,0,1,100.0000,1),(1460,0,1,0.0000,1),(1461,0,1,100.0000,1),(1462,0,1,100.0000,1),(1463,0,1,100.0000,1),(1464,0,1,100.0000,1),(1465,0,1,100.0000,1),(1466,0,1,100.0000,1),(1467,0,1,100.0000,1),(1468,0,1,100.0000,1),(1469,0,1,100.0000,1),(1470,0,1,100.0000,1),(1471,0,1,100.0000,1),(1472,0,1,100.0000,1),(1473,0,1,100.0000,1),(1474,0,1,100.0000,1),(1475,0,1,100.0000,1),(1476,0,1,0.0000,1),(1477,0,1,100.0000,1),(1478,0,1,99.0000,1),(1479,0,1,100.0000,1),(1480,0,1,100.0000,1),(1481,0,1,100.0000,1),(1482,0,1,100.0000,1),(1483,0,1,100.0000,1),(1484,0,1,100.0000,1),(1485,0,1,100.0000,1),(1486,0,1,100.0000,1),(1487,0,1,100.0000,1),(1488,0,1,100.0000,1),(1489,0,1,100.0000,1),(1490,0,1,100.0000,1),(1491,0,1,100.0000,1),(1492,0,1,0.0000,1),(1493,0,1,100.0000,1),(1494,0,1,100.0000,1),(1495,0,1,100.0000,1),(1496,0,1,100.0000,1),(1497,0,1,100.0000,1),(1498,0,1,100.0000,1),(1499,0,1,100.0000,1),(1500,0,1,100.0000,1),(1501,0,1,100.0000,1),(1502,0,1,100.0000,1),(1503,0,1,100.0000,1),(1504,0,1,100.0000,1),(1505,0,1,100.0000,1),(1506,0,1,100.0000,1),(1507,0,1,100.0000,1),(1508,0,1,0.0000,1),(1509,0,1,100.0000,1),(1510,0,1,100.0000,1),(1511,0,1,100.0000,1),(1512,0,1,100.0000,1),(1513,0,1,100.0000,1),(1514,0,1,100.0000,1),(1515,0,1,100.0000,1),(1516,0,1,100.0000,1),(1517,0,1,100.0000,1),(1518,0,1,100.0000,1),(1519,0,1,100.0000,1),(1520,0,1,100.0000,1),(1521,0,1,100.0000,1),(1522,0,1,100.0000,1),(1523,0,1,100.0000,1),(1524,0,1,0.0000,1),(1525,0,1,100.0000,1),(1526,0,1,100.0000,1),(1527,0,1,100.0000,1),(1528,0,1,100.0000,1),(1529,0,1,100.0000,1),(1530,0,1,100.0000,1),(1531,0,1,100.0000,1),(1532,0,1,100.0000,1),(1533,0,1,100.0000,1),(1534,0,1,100.0000,1),(1535,0,1,100.0000,1),(1536,0,1,100.0000,1),(1537,0,1,100.0000,1),(1538,0,1,100.0000,1),(1539,0,1,100.0000,1),(1540,0,1,0.0000,1),(1541,0,1,100.0000,1),(1542,0,1,100.0000,1),(1543,0,1,100.0000,1),(1544,0,1,100.0000,1),(1545,0,1,100.0000,1),(1546,0,1,100.0000,1),(1547,0,1,100.0000,1),(1548,0,1,100.0000,1),(1549,0,1,100.0000,1),(1550,0,1,100.0000,1),(1551,0,1,100.0000,1),(1552,0,1,100.0000,1),(1553,0,1,100.0000,1),(1554,0,1,100.0000,1),(1555,0,1,100.0000,1),(1556,0,1,0.0000,1),(1557,0,1,100.0000,1),(1558,0,1,100.0000,1),(1559,0,1,100.0000,1),(1560,0,1,100.0000,1),(1561,0,1,100.0000,1),(1562,0,1,100.0000,1),(1563,0,1,100.0000,1),(1564,0,1,100.0000,1),(1565,0,1,100.0000,1),(1566,0,1,100.0000,1),(1567,0,1,100.0000,1),(1568,0,1,100.0000,1),(1569,0,1,100.0000,1),(1570,0,1,100.0000,1),(1571,0,1,100.0000,1),(1572,0,1,0.0000,1),(1573,0,1,100.0000,1),(1574,0,1,100.0000,1),(1575,0,1,100.0000,1),(1576,0,1,100.0000,1),(1577,0,1,100.0000,1),(1578,0,1,100.0000,1),(1579,0,1,100.0000,1),(1580,0,1,100.0000,1),(1581,0,1,100.0000,1),(1582,0,1,100.0000,1),(1583,0,1,100.0000,1),(1584,0,1,100.0000,1),(1585,0,1,100.0000,1),(1586,0,1,100.0000,1),(1587,0,1,100.0000,1),(1588,0,1,0.0000,1),(1589,0,1,100.0000,1),(1590,0,1,100.0000,1),(1591,0,1,100.0000,1),(1592,0,1,100.0000,1),(1593,0,1,100.0000,1),(1594,0,1,100.0000,1),(1595,0,1,100.0000,1),(1596,0,1,100.0000,1),(1597,0,1,100.0000,1),(1598,0,1,100.0000,1),(1599,0,1,100.0000,1),(1600,0,1,100.0000,1),(1601,0,1,100.0000,1),(1602,0,1,100.0000,1),(1603,0,1,100.0000,1),(1604,0,1,0.0000,1),(1605,0,1,100.0000,1),(1606,0,1,100.0000,1),(1607,0,1,100.0000,1),(1608,0,1,100.0000,1),(1609,0,1,100.0000,1),(1610,0,1,100.0000,1),(1611,0,1,100.0000,1),(1612,0,1,100.0000,1),(1613,0,1,100.0000,1),(1614,0,1,100.0000,1),(1615,0,1,100.0000,1),(1616,0,1,100.0000,1),(1617,0,1,100.0000,1),(1618,0,1,100.0000,1),(1619,0,1,100.0000,1),(1620,0,1,0.0000,1),(1621,0,1,100.0000,1),(1622,0,1,100.0000,1),(1623,0,1,100.0000,1),(1624,0,1,100.0000,1),(1625,0,1,100.0000,1),(1626,0,1,100.0000,1),(1627,0,1,100.0000,1),(1628,0,1,100.0000,1),(1629,0,1,100.0000,1),(1630,0,1,100.0000,1),(1631,0,1,100.0000,1),(1632,0,1,100.0000,1),(1633,0,1,100.0000,1),(1634,0,1,100.0000,1),(1635,0,1,100.0000,1),(1636,0,1,0.0000,1),(1637,0,1,100.0000,1),(1638,0,1,100.0000,1),(1639,0,1,100.0000,1),(1640,0,1,100.0000,1),(1641,0,1,100.0000,1),(1642,0,1,100.0000,1),(1643,0,1,100.0000,1),(1644,0,1,100.0000,1),(1645,0,1,100.0000,1),(1646,0,1,100.0000,1),(1647,0,1,100.0000,1),(1648,0,1,100.0000,1),(1649,0,1,100.0000,1),(1650,0,1,100.0000,1),(1651,0,1,100.0000,1),(1652,0,1,0.0000,1),(1653,0,1,100.0000,1),(1654,0,1,100.0000,1),(1655,0,1,100.0000,1),(1656,0,1,100.0000,1),(1657,0,1,100.0000,1),(1658,0,1,100.0000,1),(1659,0,1,100.0000,1),(1660,0,1,100.0000,1),(1661,0,1,100.0000,1),(1662,0,1,100.0000,1),(1663,0,1,100.0000,1),(1664,0,1,100.0000,1),(1665,0,1,100.0000,1),(1666,0,1,100.0000,1),(1667,0,1,100.0000,1),(1668,0,1,0.0000,1),(1669,0,1,100.0000,1),(1670,0,1,100.0000,1),(1671,0,1,100.0000,1),(1672,0,1,100.0000,1),(1673,0,1,100.0000,1),(1674,0,1,100.0000,1),(1675,0,1,100.0000,1),(1676,0,1,100.0000,1),(1677,0,1,100.0000,1),(1678,0,1,100.0000,1),(1679,0,1,100.0000,1),(1680,0,1,100.0000,1),(1681,0,1,100.0000,1),(1682,0,1,100.0000,1),(1683,0,1,100.0000,1),(1684,0,1,0.0000,1),(1685,0,1,100.0000,1),(1686,0,1,100.0000,1),(1687,0,1,100.0000,1),(1688,0,1,100.0000,1),(1689,0,1,100.0000,1),(1690,0,1,100.0000,1),(1691,0,1,100.0000,1),(1692,0,1,100.0000,1),(1693,0,1,100.0000,1),(1694,0,1,100.0000,1),(1695,0,1,100.0000,1),(1696,0,1,100.0000,1),(1697,0,1,100.0000,1),(1698,0,1,100.0000,1),(1699,0,1,100.0000,1),(1700,0,1,0.0000,1),(1701,0,1,100.0000,1),(1702,0,1,100.0000,1),(1703,0,1,100.0000,1),(1704,0,1,100.0000,1),(1705,0,1,100.0000,1),(1706,0,1,100.0000,1),(1707,0,1,100.0000,1),(1708,0,1,100.0000,1),(1709,0,1,100.0000,1),(1710,0,1,100.0000,1),(1711,0,1,100.0000,1),(1712,0,1,100.0000,1),(1713,0,1,100.0000,1),(1714,0,1,100.0000,1),(1715,0,1,100.0000,1),(1716,0,1,0.0000,1),(1717,0,1,100.0000,1),(1718,0,1,100.0000,1),(1719,0,1,100.0000,1),(1720,0,1,100.0000,1),(1721,0,1,100.0000,1),(1722,0,1,100.0000,1),(1723,0,1,100.0000,1),(1724,0,1,100.0000,1),(1725,0,1,100.0000,1),(1726,0,1,100.0000,1),(1727,0,1,100.0000,1),(1728,0,1,100.0000,1),(1729,0,1,100.0000,1),(1730,0,1,100.0000,1),(1731,0,1,100.0000,1),(1732,0,1,0.0000,1),(1733,0,1,100.0000,1),(1734,0,1,100.0000,1),(1735,0,1,100.0000,1),(1736,0,1,100.0000,1),(1737,0,1,100.0000,1),(1738,0,1,100.0000,1),(1739,0,1,100.0000,1),(1740,0,1,100.0000,1),(1741,0,1,100.0000,1),(1742,0,1,100.0000,1),(1743,0,1,100.0000,1),(1744,0,1,100.0000,1),(1745,0,1,100.0000,1),(1746,0,1,100.0000,1),(1747,0,1,100.0000,1),(1748,0,1,0.0000,1),(1749,0,1,100.0000,1),(1750,0,1,100.0000,1),(1751,0,1,100.0000,1),(1752,0,1,100.0000,1),(1753,0,1,100.0000,1),(1754,0,1,100.0000,1),(1755,0,1,100.0000,1),(1756,0,1,100.0000,1),(1757,0,1,100.0000,1),(1758,0,1,100.0000,1),(1759,0,1,100.0000,1),(1760,0,1,100.0000,1),(1761,0,1,100.0000,1),(1762,0,1,100.0000,1),(1763,0,1,100.0000,1),(1764,0,1,0.0000,1),(1765,0,1,100.0000,1),(1766,0,1,100.0000,1),(1767,0,1,100.0000,1),(1768,0,1,100.0000,1),(1769,0,1,100.0000,1),(1770,0,1,100.0000,1),(1771,0,1,100.0000,1),(1772,0,1,100.0000,1),(1773,0,1,100.0000,1),(1774,0,1,100.0000,1),(1775,0,1,100.0000,1),(1776,0,1,100.0000,1),(1777,0,1,100.0000,1),(1778,0,1,100.0000,1),(1779,0,1,100.0000,1),(1780,0,1,0.0000,1),(1781,0,1,100.0000,1),(1782,0,1,100.0000,1),(1783,0,1,100.0000,1),(1784,0,1,100.0000,1),(1785,0,1,100.0000,1),(1786,0,1,100.0000,1),(1787,0,1,100.0000,1),(1788,0,1,100.0000,1),(1789,0,1,100.0000,1),(1790,0,1,100.0000,1),(1791,0,1,100.0000,1),(1792,0,1,100.0000,1),(1793,0,1,100.0000,1),(1794,0,1,100.0000,1),(1795,0,1,100.0000,1),(1796,0,1,0.0000,1),(1797,0,1,100.0000,1),(1798,0,1,100.0000,1),(1799,0,1,100.0000,1),(1800,0,1,100.0000,1),(1801,0,1,100.0000,1),(1802,0,1,100.0000,1),(1803,0,1,100.0000,1),(1804,0,1,100.0000,1),(1805,0,1,100.0000,1),(1806,0,1,100.0000,1),(1807,0,1,100.0000,1),(1808,0,1,100.0000,1),(1809,0,1,100.0000,1),(1810,0,1,100.0000,1),(1811,0,1,100.0000,1),(1812,0,1,0.0000,1),(1813,0,1,100.0000,1),(1814,0,1,100.0000,1),(1815,0,1,100.0000,1),(1816,0,1,100.0000,1),(1817,0,1,100.0000,1),(1818,0,1,100.0000,1),(1819,0,1,0.0000,1),(1820,0,1,100.0000,1),(1821,0,1,100.0000,1),(1822,0,1,100.0000,1),(1823,0,1,100.0000,1),(1824,0,1,100.0000,1),(1825,0,1,100.0000,1),(1826,0,1,0.0000,1),(1827,0,1,100.0000,1),(1828,0,1,100.0000,1),(1829,0,1,100.0000,1),(1830,0,1,100.0000,1),(1831,0,1,100.0000,1),(1832,0,1,100.0000,1),(1833,0,1,0.0000,1),(1834,0,1,100.0000,1),(1835,0,1,100.0000,1),(1836,0,1,100.0000,1),(1837,0,1,100.0000,1),(1838,0,1,100.0000,1),(1839,0,1,100.0000,1),(1840,0,1,0.0000,1),(1841,0,1,100.0000,1),(1842,0,1,100.0000,1),(1843,0,1,100.0000,1),(1844,0,1,100.0000,1),(1845,0,1,100.0000,1),(1846,0,1,100.0000,1),(1847,0,1,0.0000,1),(1848,0,1,100.0000,1),(1849,0,1,100.0000,1),(1850,0,1,100.0000,1),(1851,0,1,100.0000,1),(1852,0,1,100.0000,1),(1853,0,1,100.0000,1),(1854,0,1,0.0000,1),(1855,0,1,100.0000,1),(1856,0,1,100.0000,1),(1857,0,1,100.0000,1),(1858,0,1,100.0000,1),(1859,0,1,100.0000,1),(1860,0,1,100.0000,1),(1861,0,1,0.0000,1),(1862,0,1,100.0000,1),(1863,0,1,100.0000,1),(1864,0,1,100.0000,1),(1865,0,1,100.0000,1),(1866,0,1,100.0000,1),(1867,0,1,100.0000,1),(1868,0,1,0.0000,1),(1869,0,1,100.0000,1),(1870,0,1,100.0000,1),(1871,0,1,100.0000,1),(1872,0,1,100.0000,1),(1873,0,1,100.0000,1),(1874,0,1,100.0000,1),(1875,0,1,0.0000,1),(1876,0,1,100.0000,1),(1877,0,1,100.0000,1),(1878,0,1,100.0000,1),(1879,0,1,100.0000,1),(1880,0,1,100.0000,1),(1881,0,1,100.0000,1),(1882,0,1,0.0000,1),(1883,0,1,100.0000,1),(1884,0,1,100.0000,1),(1885,0,1,100.0000,1),(1886,0,1,100.0000,1),(1887,0,1,100.0000,1),(1888,0,1,100.0000,1),(1889,0,1,0.0000,1),(1890,0,1,100.0000,1),(1891,0,1,100.0000,1),(1892,0,1,100.0000,1),(1893,0,1,100.0000,1),(1894,0,1,100.0000,1),(1895,0,1,100.0000,1),(1896,0,1,0.0000,1),(1897,0,1,100.0000,1),(1898,0,1,100.0000,1),(1899,0,1,100.0000,1),(1900,0,1,100.0000,1),(1901,0,1,100.0000,1),(1902,0,1,100.0000,1),(1903,0,1,0.0000,1),(1904,0,1,100.0000,1),(1905,0,1,100.0000,1),(1906,0,1,100.0000,1),(1907,0,1,100.0000,1),(1908,0,1,100.0000,1),(1909,0,1,100.0000,1),(1910,0,1,100.0000,1),(1911,0,1,100.0000,1),(1912,0,1,100.0000,1),(1913,0,1,100.0000,1),(1914,0,1,100.0000,1),(1915,0,1,100.0000,1),(1916,0,1,100.0000,1),(1917,0,1,100.0000,1),(1918,0,1,100.0000,1),(1919,0,1,0.0000,1),(1920,0,1,100.0000,1),(1921,0,1,100.0000,1),(1922,0,1,100.0000,1),(1923,0,1,100.0000,1),(1924,0,1,100.0000,1),(1925,0,1,100.0000,1),(1926,0,1,100.0000,1),(1927,0,1,100.0000,1),(1928,0,1,100.0000,1),(1929,0,1,100.0000,1),(1930,0,1,100.0000,1),(1931,0,1,100.0000,1),(1932,0,1,100.0000,1),(1933,0,1,100.0000,1),(1934,0,1,100.0000,1),(1935,0,1,0.0000,1),(1936,0,1,100.0000,1),(1937,0,1,100.0000,1),(1938,0,1,100.0000,1),(1939,0,1,100.0000,1),(1940,0,1,100.0000,1),(1941,0,1,100.0000,1),(1942,0,1,100.0000,1),(1943,0,1,100.0000,1),(1944,0,1,100.0000,1),(1945,0,1,100.0000,1),(1946,0,1,100.0000,1),(1947,0,1,100.0000,1),(1948,0,1,100.0000,1),(1949,0,1,100.0000,1),(1950,0,1,100.0000,1),(1951,0,1,0.0000,1),(1952,0,1,100.0000,1),(1953,0,1,100.0000,1),(1954,0,1,100.0000,1),(1955,0,1,100.0000,1),(1956,0,1,100.0000,1),(1957,0,1,100.0000,1),(1958,0,1,100.0000,1),(1959,0,1,100.0000,1),(1960,0,1,100.0000,1),(1961,0,1,100.0000,1),(1962,0,1,100.0000,1),(1963,0,1,100.0000,1),(1964,0,1,100.0000,1),(1965,0,1,100.0000,1),(1966,0,1,100.0000,1),(1967,0,1,0.0000,1),(1968,0,1,100.0000,1),(1969,0,1,100.0000,1),(1970,0,1,100.0000,1),(1971,0,1,100.0000,1),(1972,0,1,100.0000,1),(1973,0,1,100.0000,1),(1974,0,1,100.0000,1),(1975,0,1,100.0000,1),(1976,0,1,100.0000,1),(1977,0,1,100.0000,1),(1978,0,1,100.0000,1),(1979,0,1,100.0000,1),(1980,0,1,100.0000,1),(1981,0,1,100.0000,1),(1982,0,1,100.0000,1),(1983,0,1,0.0000,1),(1984,0,1,100.0000,1),(1985,0,1,100.0000,1),(1986,0,1,100.0000,1),(1987,0,1,100.0000,1),(1988,0,1,100.0000,1),(1989,0,1,100.0000,1),(1990,0,1,0.0000,1),(1991,0,1,100.0000,1),(1992,0,1,100.0000,1),(1993,0,1,100.0000,1),(1994,0,1,100.0000,1),(1995,0,1,100.0000,1),(1996,0,1,100.0000,1),(1997,0,1,0.0000,1),(1998,0,1,100.0000,1),(1999,0,1,100.0000,1),(2000,0,1,100.0000,1),(2001,0,1,100.0000,1),(2002,0,1,100.0000,1),(2003,0,1,0.0000,1),(2004,0,1,100.0000,1),(2005,0,1,100.0000,1),(2006,0,1,100.0000,1),(2007,0,1,100.0000,1),(2008,0,1,100.0000,1),(2009,0,1,100.0000,1),(2010,0,1,0.0000,1),(2011,0,1,100.0000,1),(2012,0,1,100.0000,1),(2013,0,1,100.0000,1),(2014,0,1,100.0000,1),(2015,0,1,100.0000,1),(2016,0,1,100.0000,1),(2017,0,1,0.0000,1),(2018,0,1,100.0000,1),(2019,0,1,100.0000,1),(2020,0,1,100.0000,1),(2021,0,1,100.0000,1),(2022,0,1,100.0000,1),(2023,0,1,100.0000,1),(2024,0,1,0.0000,1),(2025,0,1,100.0000,1),(2026,0,1,100.0000,1),(2027,0,1,100.0000,1),(2028,0,1,100.0000,1),(2029,0,1,100.0000,1),(2030,0,1,100.0000,1),(2031,0,1,100.0000,1),(2032,0,1,100.0000,1),(2033,0,1,100.0000,1),(2034,0,1,100.0000,1),(2035,0,1,100.0000,1),(2036,0,1,100.0000,1),(2037,0,1,100.0000,1),(2038,0,1,100.0000,1),(2039,0,1,100.0000,1),(2040,0,1,0.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_status_idx`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_status_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_status_idx` (
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status Indexer Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_status_idx`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_status_idx` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_status_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_status_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_status_replica` (
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_status_replica`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_status_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_replica` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cataloginventory_stock_status_replica` VALUES (1,0,1,100.0000,1),(2,0,1,100.0000,1),(3,0,1,100.0000,1),(4,0,1,100.0000,1),(5,0,1,100.0000,1),(6,0,1,100.0000,1),(7,0,1,100.0000,1),(8,0,1,100.0000,1),(9,0,1,100.0000,1),(10,0,1,100.0000,1),(11,0,1,100.0000,1),(12,0,1,100.0000,1),(13,0,1,100.0000,1),(14,0,1,100.0000,1),(15,0,1,100.0000,1),(16,0,1,100.0000,1),(17,0,1,100.0000,1),(18,0,1,100.0000,1),(19,0,1,100.0000,1),(20,0,1,100.0000,1),(21,0,1,100.0000,1),(22,0,1,100.0000,1),(23,0,1,100.0000,1),(24,0,1,100.0000,1),(25,0,1,100.0000,1),(26,0,1,100.0000,1),(27,0,1,100.0000,1),(28,0,1,100.0000,1),(29,0,1,100.0000,1),(30,0,1,100.0000,1),(31,0,1,100.0000,1),(32,0,1,100.0000,1),(33,0,1,100.0000,1),(34,0,1,100.0000,1),(35,0,1,100.0000,1),(36,0,1,100.0000,1),(37,0,1,100.0000,1),(38,0,1,100.0000,1),(39,0,1,100.0000,1),(40,0,1,100.0000,1),(41,0,1,100.0000,1),(42,0,1,100.0000,1),(43,0,1,100.0000,1),(44,0,1,100.0000,1),(45,0,1,0.0000,1),(46,0,1,0.0000,1),(47,0,1,100.0000,1),(48,0,1,100.0000,1),(49,0,1,100.0000,1),(50,0,1,100.0000,1),(51,0,1,100.0000,1),(52,0,1,100.0000,1),(53,0,1,100.0000,1),(54,0,1,100.0000,1),(55,0,1,100.0000,1),(56,0,1,100.0000,1),(57,0,1,100.0000,1),(58,0,1,100.0000,1),(59,0,1,100.0000,1),(60,0,1,100.0000,1),(61,0,1,100.0000,1),(62,0,1,0.0000,1),(63,0,1,100.0000,1),(64,0,1,100.0000,1),(65,0,1,100.0000,1),(66,0,1,100.0000,1),(67,0,1,100.0000,1),(68,0,1,100.0000,1),(69,0,1,100.0000,1),(70,0,1,100.0000,1),(71,0,1,100.0000,1),(72,0,1,100.0000,1),(73,0,1,100.0000,1),(74,0,1,100.0000,1),(75,0,1,100.0000,1),(76,0,1,100.0000,1),(77,0,1,100.0000,1),(78,0,1,0.0000,1),(79,0,1,100.0000,1),(80,0,1,100.0000,1),(81,0,1,100.0000,1),(82,0,1,100.0000,1),(83,0,1,100.0000,1),(84,0,1,100.0000,1),(85,0,1,100.0000,1),(86,0,1,100.0000,1),(87,0,1,100.0000,1),(88,0,1,100.0000,1),(89,0,1,100.0000,1),(90,0,1,100.0000,1),(91,0,1,100.0000,1),(92,0,1,100.0000,1),(93,0,1,100.0000,1),(94,0,1,0.0000,1),(95,0,1,100.0000,1),(96,0,1,100.0000,1),(97,0,1,100.0000,1),(98,0,1,100.0000,1),(99,0,1,100.0000,1),(100,0,1,100.0000,1),(101,0,1,100.0000,1),(102,0,1,100.0000,1),(103,0,1,100.0000,1),(104,0,1,100.0000,1),(105,0,1,100.0000,1),(106,0,1,100.0000,1),(107,0,1,100.0000,1),(108,0,1,100.0000,1),(109,0,1,100.0000,1),(110,0,1,0.0000,1),(111,0,1,100.0000,1),(112,0,1,100.0000,1),(113,0,1,100.0000,1),(114,0,1,100.0000,1),(115,0,1,100.0000,1),(116,0,1,100.0000,1),(117,0,1,100.0000,1),(118,0,1,100.0000,1),(119,0,1,100.0000,1),(120,0,1,100.0000,1),(121,0,1,100.0000,1),(122,0,1,100.0000,1),(123,0,1,100.0000,1),(124,0,1,100.0000,1),(125,0,1,100.0000,1),(126,0,1,0.0000,1),(127,0,1,100.0000,1),(128,0,1,100.0000,1),(129,0,1,100.0000,1),(130,0,1,100.0000,1),(131,0,1,100.0000,1),(132,0,1,100.0000,1),(133,0,1,100.0000,1),(134,0,1,100.0000,1),(135,0,1,100.0000,1),(136,0,1,100.0000,1),(137,0,1,100.0000,1),(138,0,1,100.0000,1),(139,0,1,100.0000,1),(140,0,1,100.0000,1),(141,0,1,100.0000,1),(142,0,1,0.0000,1),(143,0,1,100.0000,1),(144,0,1,100.0000,1),(145,0,1,100.0000,1),(146,0,1,100.0000,1),(147,0,1,100.0000,1),(148,0,1,100.0000,1),(149,0,1,100.0000,1),(150,0,1,100.0000,1),(151,0,1,100.0000,1),(152,0,1,100.0000,1),(153,0,1,100.0000,1),(154,0,1,100.0000,1),(155,0,1,100.0000,1),(156,0,1,100.0000,1),(157,0,1,100.0000,1),(158,0,1,0.0000,1),(159,0,1,100.0000,1),(160,0,1,100.0000,1),(161,0,1,100.0000,1),(162,0,1,100.0000,1),(163,0,1,100.0000,1),(164,0,1,100.0000,1),(165,0,1,100.0000,1),(166,0,1,100.0000,1),(167,0,1,100.0000,1),(168,0,1,100.0000,1),(169,0,1,100.0000,1),(170,0,1,100.0000,1),(171,0,1,100.0000,1),(172,0,1,100.0000,1),(173,0,1,100.0000,1),(174,0,1,0.0000,1),(175,0,1,100.0000,1),(176,0,1,100.0000,1),(177,0,1,100.0000,1),(178,0,1,100.0000,1),(179,0,1,100.0000,1),(180,0,1,100.0000,1),(181,0,1,100.0000,1),(182,0,1,100.0000,1),(183,0,1,100.0000,1),(184,0,1,100.0000,1),(185,0,1,100.0000,1),(186,0,1,100.0000,1),(187,0,1,100.0000,1),(188,0,1,100.0000,1),(189,0,1,100.0000,1),(190,0,1,0.0000,1),(191,0,1,100.0000,1),(192,0,1,100.0000,1),(193,0,1,100.0000,1),(194,0,1,100.0000,1),(195,0,1,100.0000,1),(196,0,1,100.0000,1),(197,0,1,100.0000,1),(198,0,1,100.0000,1),(199,0,1,100.0000,1),(200,0,1,100.0000,1),(201,0,1,100.0000,1),(202,0,1,100.0000,1),(203,0,1,100.0000,1),(204,0,1,100.0000,1),(205,0,1,100.0000,1),(206,0,1,0.0000,1),(207,0,1,100.0000,1),(208,0,1,100.0000,1),(209,0,1,100.0000,1),(210,0,1,100.0000,1),(211,0,1,100.0000,1),(212,0,1,100.0000,1),(213,0,1,100.0000,1),(214,0,1,100.0000,1),(215,0,1,100.0000,1),(216,0,1,100.0000,1),(217,0,1,100.0000,1),(218,0,1,100.0000,1),(219,0,1,100.0000,1),(220,0,1,100.0000,1),(221,0,1,100.0000,1),(222,0,1,0.0000,1),(223,0,1,100.0000,1),(224,0,1,100.0000,1),(225,0,1,100.0000,1),(226,0,1,100.0000,1),(227,0,1,100.0000,1),(228,0,1,100.0000,1),(229,0,1,100.0000,1),(230,0,1,100.0000,1),(231,0,1,100.0000,1),(232,0,1,100.0000,1),(233,0,1,100.0000,1),(234,0,1,100.0000,1),(235,0,1,100.0000,1),(236,0,1,100.0000,1),(237,0,1,100.0000,1),(238,0,1,0.0000,1),(239,0,1,100.0000,1),(240,0,1,100.0000,1),(241,0,1,100.0000,1),(242,0,1,100.0000,1),(243,0,1,100.0000,1),(244,0,1,100.0000,1),(245,0,1,100.0000,1),(246,0,1,100.0000,1),(247,0,1,100.0000,1),(248,0,1,100.0000,1),(249,0,1,100.0000,1),(250,0,1,100.0000,1),(251,0,1,100.0000,1),(252,0,1,100.0000,1),(253,0,1,100.0000,1),(254,0,1,0.0000,1),(255,0,1,100.0000,1),(256,0,1,100.0000,1),(257,0,1,100.0000,1),(258,0,1,100.0000,1),(259,0,1,100.0000,1),(260,0,1,100.0000,1),(261,0,1,100.0000,1),(262,0,1,100.0000,1),(263,0,1,100.0000,1),(264,0,1,100.0000,1),(265,0,1,100.0000,1),(266,0,1,100.0000,1),(267,0,1,100.0000,1),(268,0,1,100.0000,1),(269,0,1,100.0000,1),(270,0,1,0.0000,1),(271,0,1,100.0000,1),(272,0,1,100.0000,1),(273,0,1,100.0000,1),(274,0,1,100.0000,1),(275,0,1,100.0000,1),(276,0,1,100.0000,1),(277,0,1,100.0000,1),(278,0,1,100.0000,1),(279,0,1,100.0000,1),(280,0,1,100.0000,1),(281,0,1,100.0000,1),(282,0,1,100.0000,1),(283,0,1,100.0000,1),(284,0,1,100.0000,1),(285,0,1,100.0000,1),(286,0,1,0.0000,1),(287,0,1,100.0000,1),(288,0,1,100.0000,1),(289,0,1,100.0000,1),(290,0,1,100.0000,1),(291,0,1,100.0000,1),(292,0,1,100.0000,1),(293,0,1,100.0000,1),(294,0,1,100.0000,1),(295,0,1,100.0000,1),(296,0,1,100.0000,1),(297,0,1,100.0000,1),(298,0,1,100.0000,1),(299,0,1,100.0000,1),(300,0,1,100.0000,1),(301,0,1,100.0000,1),(302,0,1,0.0000,1),(303,0,1,100.0000,1),(304,0,1,100.0000,1),(305,0,1,100.0000,1),(306,0,1,100.0000,1),(307,0,1,100.0000,1),(308,0,1,100.0000,1),(309,0,1,100.0000,1),(310,0,1,100.0000,1),(311,0,1,100.0000,1),(312,0,1,100.0000,1),(313,0,1,100.0000,1),(314,0,1,100.0000,1),(315,0,1,100.0000,1),(316,0,1,100.0000,1),(317,0,1,100.0000,1),(318,0,1,0.0000,1),(319,0,1,100.0000,1),(320,0,1,100.0000,1),(321,0,1,100.0000,1),(322,0,1,100.0000,1),(323,0,1,100.0000,1),(324,0,1,100.0000,1),(325,0,1,100.0000,1),(326,0,1,100.0000,1),(327,0,1,100.0000,1),(328,0,1,100.0000,1),(329,0,1,100.0000,1),(330,0,1,100.0000,1),(331,0,1,100.0000,1),(332,0,1,100.0000,1),(333,0,1,100.0000,1),(334,0,1,0.0000,1),(335,0,1,100.0000,1),(336,0,1,100.0000,1),(337,0,1,100.0000,1),(338,0,1,100.0000,1),(339,0,1,100.0000,1),(340,0,1,100.0000,1),(341,0,1,100.0000,1),(342,0,1,100.0000,1),(343,0,1,100.0000,1),(344,0,1,100.0000,1),(345,0,1,100.0000,1),(346,0,1,100.0000,1),(347,0,1,100.0000,1),(348,0,1,100.0000,1),(349,0,1,100.0000,1),(350,0,1,0.0000,1),(351,0,1,100.0000,1),(352,0,1,100.0000,1),(353,0,1,100.0000,1),(354,0,1,100.0000,1),(355,0,1,100.0000,1),(356,0,1,100.0000,1),(357,0,1,100.0000,1),(358,0,1,100.0000,1),(359,0,1,100.0000,1),(360,0,1,100.0000,1),(361,0,1,100.0000,1),(362,0,1,100.0000,1),(363,0,1,100.0000,1),(364,0,1,100.0000,1),(365,0,1,100.0000,1),(366,0,1,0.0000,1),(367,0,1,100.0000,1),(368,0,1,100.0000,1),(369,0,1,100.0000,1),(370,0,1,100.0000,1),(371,0,1,100.0000,1),(372,0,1,100.0000,1),(373,0,1,100.0000,1),(374,0,1,100.0000,1),(375,0,1,100.0000,1),(376,0,1,100.0000,1),(377,0,1,100.0000,1),(378,0,1,100.0000,1),(379,0,1,100.0000,1),(380,0,1,100.0000,1),(381,0,1,100.0000,1),(382,0,1,0.0000,1),(383,0,1,100.0000,1),(384,0,1,100.0000,1),(385,0,1,100.0000,1),(386,0,1,100.0000,1),(387,0,1,100.0000,1),(388,0,1,100.0000,1),(389,0,1,100.0000,1),(390,0,1,100.0000,1),(391,0,1,100.0000,1),(392,0,1,100.0000,1),(393,0,1,100.0000,1),(394,0,1,100.0000,1),(395,0,1,100.0000,1),(396,0,1,100.0000,1),(397,0,1,100.0000,1),(398,0,1,0.0000,1),(399,0,1,100.0000,1),(400,0,1,100.0000,1),(401,0,1,100.0000,1),(402,0,1,100.0000,1),(403,0,1,100.0000,1),(404,0,1,100.0000,1),(405,0,1,100.0000,1),(406,0,1,100.0000,1),(407,0,1,100.0000,1),(408,0,1,100.0000,1),(409,0,1,100.0000,1),(410,0,1,100.0000,1),(411,0,1,100.0000,1),(412,0,1,100.0000,1),(413,0,1,100.0000,1),(414,0,1,0.0000,1),(415,0,1,100.0000,1),(416,0,1,100.0000,1),(417,0,1,100.0000,1),(418,0,1,100.0000,1),(419,0,1,100.0000,1),(420,0,1,100.0000,1),(421,0,1,100.0000,1),(422,0,1,100.0000,1),(423,0,1,100.0000,1),(424,0,1,100.0000,1),(425,0,1,100.0000,1),(426,0,1,100.0000,1),(427,0,1,100.0000,1),(428,0,1,100.0000,1),(429,0,1,100.0000,1),(430,0,1,0.0000,1),(431,0,1,100.0000,1),(432,0,1,100.0000,1),(433,0,1,100.0000,1),(434,0,1,100.0000,1),(435,0,1,100.0000,1),(436,0,1,100.0000,1),(437,0,1,100.0000,1),(438,0,1,100.0000,1),(439,0,1,100.0000,1),(440,0,1,100.0000,1),(441,0,1,100.0000,1),(442,0,1,100.0000,1),(443,0,1,100.0000,1),(444,0,1,100.0000,1),(445,0,1,100.0000,1),(446,0,1,0.0000,1),(447,0,1,100.0000,1),(448,0,1,100.0000,1),(449,0,1,100.0000,1),(450,0,1,100.0000,1),(451,0,1,100.0000,1),(452,0,1,100.0000,1),(453,0,1,100.0000,1),(454,0,1,100.0000,1),(455,0,1,100.0000,1),(456,0,1,100.0000,1),(457,0,1,100.0000,1),(458,0,1,100.0000,1),(459,0,1,100.0000,1),(460,0,1,100.0000,1),(461,0,1,100.0000,1),(462,0,1,0.0000,1),(463,0,1,100.0000,1),(464,0,1,100.0000,1),(465,0,1,100.0000,1),(466,0,1,100.0000,1),(467,0,1,100.0000,1),(468,0,1,100.0000,1),(469,0,1,100.0000,1),(470,0,1,100.0000,1),(471,0,1,100.0000,1),(472,0,1,100.0000,1),(473,0,1,100.0000,1),(474,0,1,100.0000,1),(475,0,1,100.0000,1),(476,0,1,100.0000,1),(477,0,1,100.0000,1),(478,0,1,0.0000,1),(479,0,1,100.0000,1),(480,0,1,100.0000,1),(481,0,1,100.0000,1),(482,0,1,100.0000,1),(483,0,1,100.0000,1),(484,0,1,100.0000,1),(485,0,1,100.0000,1),(486,0,1,100.0000,1),(487,0,1,100.0000,1),(488,0,1,100.0000,1),(489,0,1,100.0000,1),(490,0,1,100.0000,1),(491,0,1,100.0000,1),(492,0,1,100.0000,1),(493,0,1,100.0000,1),(494,0,1,0.0000,1),(495,0,1,100.0000,1),(496,0,1,100.0000,1),(497,0,1,100.0000,1),(498,0,1,100.0000,1),(499,0,1,100.0000,1),(500,0,1,100.0000,1),(501,0,1,100.0000,1),(502,0,1,100.0000,1),(503,0,1,100.0000,1),(504,0,1,100.0000,1),(505,0,1,100.0000,1),(506,0,1,100.0000,1),(507,0,1,100.0000,1),(508,0,1,100.0000,1),(509,0,1,100.0000,1),(510,0,1,0.0000,1),(511,0,1,100.0000,1),(512,0,1,100.0000,1),(513,0,1,100.0000,1),(514,0,1,100.0000,1),(515,0,1,100.0000,1),(516,0,1,100.0000,1),(517,0,1,100.0000,1),(518,0,1,100.0000,1),(519,0,1,100.0000,1),(520,0,1,100.0000,1),(521,0,1,100.0000,1),(522,0,1,100.0000,1),(523,0,1,100.0000,1),(524,0,1,100.0000,1),(525,0,1,100.0000,1),(526,0,1,0.0000,1),(527,0,1,100.0000,1),(528,0,1,100.0000,1),(529,0,1,100.0000,1),(530,0,1,100.0000,1),(531,0,1,100.0000,1),(532,0,1,100.0000,1),(533,0,1,100.0000,1),(534,0,1,100.0000,1),(535,0,1,100.0000,1),(536,0,1,100.0000,1),(537,0,1,100.0000,1),(538,0,1,100.0000,1),(539,0,1,100.0000,1),(540,0,1,100.0000,1),(541,0,1,100.0000,1),(542,0,1,0.0000,1),(543,0,1,100.0000,1),(544,0,1,100.0000,1),(545,0,1,100.0000,1),(546,0,1,100.0000,1),(547,0,1,100.0000,1),(548,0,1,100.0000,1),(549,0,1,100.0000,1),(550,0,1,100.0000,1),(551,0,1,100.0000,1),(552,0,1,100.0000,1),(553,0,1,100.0000,1),(554,0,1,100.0000,1),(555,0,1,100.0000,1),(556,0,1,100.0000,1),(557,0,1,100.0000,1),(558,0,1,0.0000,1),(559,0,1,100.0000,1),(560,0,1,100.0000,1),(561,0,1,100.0000,1),(562,0,1,100.0000,1),(563,0,1,100.0000,1),(564,0,1,100.0000,1),(565,0,1,100.0000,1),(566,0,1,100.0000,1),(567,0,1,100.0000,1),(568,0,1,100.0000,1),(569,0,1,100.0000,1),(570,0,1,100.0000,1),(571,0,1,100.0000,1),(572,0,1,100.0000,1),(573,0,1,100.0000,1),(574,0,1,0.0000,1),(575,0,1,100.0000,1),(576,0,1,100.0000,1),(577,0,1,100.0000,1),(578,0,1,100.0000,1),(579,0,1,100.0000,1),(580,0,1,100.0000,1),(581,0,1,100.0000,1),(582,0,1,100.0000,1),(583,0,1,100.0000,1),(584,0,1,100.0000,1),(585,0,1,100.0000,1),(586,0,1,100.0000,1),(587,0,1,100.0000,1),(588,0,1,100.0000,1),(589,0,1,100.0000,1),(590,0,1,0.0000,1),(591,0,1,100.0000,1),(592,0,1,100.0000,1),(593,0,1,100.0000,1),(594,0,1,100.0000,1),(595,0,1,100.0000,1),(596,0,1,100.0000,1),(597,0,1,100.0000,1),(598,0,1,100.0000,1),(599,0,1,100.0000,1),(600,0,1,100.0000,1),(601,0,1,100.0000,1),(602,0,1,100.0000,1),(603,0,1,100.0000,1),(604,0,1,100.0000,1),(605,0,1,100.0000,1),(606,0,1,0.0000,1),(607,0,1,100.0000,1),(608,0,1,100.0000,1),(609,0,1,100.0000,1),(610,0,1,100.0000,1),(611,0,1,100.0000,1),(612,0,1,100.0000,1),(613,0,1,100.0000,1),(614,0,1,100.0000,1),(615,0,1,100.0000,1),(616,0,1,100.0000,1),(617,0,1,100.0000,1),(618,0,1,100.0000,1),(619,0,1,100.0000,1),(620,0,1,100.0000,1),(621,0,1,100.0000,1),(622,0,1,0.0000,1),(623,0,1,100.0000,1),(624,0,1,100.0000,1),(625,0,1,100.0000,1),(626,0,1,100.0000,1),(627,0,1,100.0000,1),(628,0,1,100.0000,1),(629,0,1,100.0000,1),(630,0,1,100.0000,1),(631,0,1,100.0000,1),(632,0,1,100.0000,1),(633,0,1,100.0000,1),(634,0,1,100.0000,1),(635,0,1,100.0000,1),(636,0,1,100.0000,1),(637,0,1,100.0000,1),(638,0,1,0.0000,1),(639,0,1,100.0000,1),(640,0,1,100.0000,1),(641,0,1,100.0000,1),(642,0,1,100.0000,1),(643,0,1,100.0000,1),(644,0,1,100.0000,1),(645,0,1,100.0000,1),(646,0,1,100.0000,1),(647,0,1,100.0000,1),(648,0,1,100.0000,1),(649,0,1,100.0000,1),(650,0,1,100.0000,1),(651,0,1,100.0000,1),(652,0,1,100.0000,1),(653,0,1,100.0000,1),(654,0,1,0.0000,1),(655,0,1,100.0000,1),(656,0,1,100.0000,1),(657,0,1,100.0000,1),(658,0,1,100.0000,1),(659,0,1,100.0000,1),(660,0,1,100.0000,1),(661,0,1,100.0000,1),(662,0,1,100.0000,1),(663,0,1,100.0000,1),(664,0,1,100.0000,1),(665,0,1,100.0000,1),(666,0,1,100.0000,1),(667,0,1,100.0000,1),(668,0,1,100.0000,1),(669,0,1,100.0000,1),(670,0,1,0.0000,1),(671,0,1,100.0000,1),(672,0,1,100.0000,1),(673,0,1,100.0000,1),(674,0,1,100.0000,1),(675,0,1,100.0000,1),(676,0,1,0.0000,1),(677,0,1,100.0000,1),(678,0,1,100.0000,1),(679,0,1,100.0000,1),(680,0,1,100.0000,1),(681,0,1,100.0000,1),(682,0,1,0.0000,1),(683,0,1,100.0000,1),(684,0,1,100.0000,1),(685,0,1,100.0000,1),(686,0,1,100.0000,1),(687,0,1,100.0000,1),(688,0,1,0.0000,1),(689,0,1,100.0000,1),(690,0,1,100.0000,1),(691,0,1,100.0000,1),(692,0,1,100.0000,1),(693,0,1,100.0000,1),(694,0,1,0.0000,1),(695,0,1,100.0000,1),(696,0,1,100.0000,1),(697,0,1,100.0000,1),(698,0,1,100.0000,1),(699,0,1,100.0000,1),(700,0,1,0.0000,1),(701,0,1,100.0000,1),(702,0,1,100.0000,1),(703,0,1,100.0000,1),(704,0,1,100.0000,1),(705,0,1,100.0000,1),(706,0,1,0.0000,1),(707,0,1,100.0000,1),(708,0,1,100.0000,1),(709,0,1,100.0000,1),(710,0,1,100.0000,1),(711,0,1,100.0000,1),(712,0,1,0.0000,1),(713,0,1,100.0000,1),(714,0,1,100.0000,1),(715,0,1,100.0000,1),(716,0,1,100.0000,1),(717,0,1,100.0000,1),(718,0,1,0.0000,1),(719,0,1,100.0000,1),(720,0,1,100.0000,1),(721,0,1,100.0000,1),(722,0,1,100.0000,1),(723,0,1,100.0000,1),(724,0,1,0.0000,1),(725,0,1,100.0000,1),(726,0,1,100.0000,1),(727,0,1,100.0000,1),(728,0,1,100.0000,1),(729,0,1,100.0000,1),(730,0,1,100.0000,1),(731,0,1,100.0000,1),(732,0,1,100.0000,1),(733,0,1,100.0000,1),(734,0,1,100.0000,1),(735,0,1,100.0000,1),(736,0,1,100.0000,1),(737,0,1,0.0000,1),(738,0,1,100.0000,1),(739,0,1,100.0000,1),(740,0,1,100.0000,1),(741,0,1,100.0000,1),(742,0,1,100.0000,1),(743,0,1,100.0000,1),(744,0,1,100.0000,1),(745,0,1,100.0000,1),(746,0,1,100.0000,1),(747,0,1,100.0000,1),(748,0,1,100.0000,1),(749,0,1,100.0000,1),(750,0,1,0.0000,1),(751,0,1,100.0000,1),(752,0,1,100.0000,1),(753,0,1,100.0000,1),(754,0,1,100.0000,1),(755,0,1,100.0000,1),(756,0,1,100.0000,1),(757,0,1,100.0000,1),(758,0,1,100.0000,1),(759,0,1,100.0000,1),(760,0,1,100.0000,1),(761,0,1,100.0000,1),(762,0,1,100.0000,1),(763,0,1,0.0000,1),(764,0,1,100.0000,1),(765,0,1,100.0000,1),(766,0,1,100.0000,1),(767,0,1,100.0000,1),(768,0,1,100.0000,1),(769,0,1,100.0000,1),(770,0,1,100.0000,1),(771,0,1,100.0000,1),(772,0,1,100.0000,1),(773,0,1,100.0000,1),(774,0,1,100.0000,1),(775,0,1,100.0000,1),(776,0,1,0.0000,1),(777,0,1,100.0000,1),(778,0,1,100.0000,1),(779,0,1,100.0000,1),(780,0,1,100.0000,1),(781,0,1,100.0000,1),(782,0,1,100.0000,1),(783,0,1,100.0000,1),(784,0,1,100.0000,1),(785,0,1,100.0000,1),(786,0,1,100.0000,1),(787,0,1,100.0000,1),(788,0,1,100.0000,1),(789,0,1,0.0000,1),(790,0,1,100.0000,1),(791,0,1,100.0000,1),(792,0,1,100.0000,1),(793,0,1,100.0000,1),(794,0,1,100.0000,1),(795,0,1,100.0000,1),(796,0,1,100.0000,1),(797,0,1,100.0000,1),(798,0,1,100.0000,1),(799,0,1,100.0000,1),(800,0,1,100.0000,1),(801,0,1,100.0000,1),(802,0,1,0.0000,1),(803,0,1,100.0000,1),(804,0,1,100.0000,1),(805,0,1,100.0000,1),(806,0,1,100.0000,1),(807,0,1,100.0000,1),(808,0,1,100.0000,1),(809,0,1,100.0000,1),(810,0,1,100.0000,1),(811,0,1,100.0000,1),(812,0,1,100.0000,1),(813,0,1,100.0000,1),(814,0,1,100.0000,1),(815,0,1,0.0000,1),(816,0,1,100.0000,1),(817,0,1,100.0000,1),(818,0,1,100.0000,1),(819,0,1,100.0000,1),(820,0,1,100.0000,1),(821,0,1,100.0000,1),(822,0,1,100.0000,1),(823,0,1,100.0000,1),(824,0,1,100.0000,1),(825,0,1,100.0000,1),(826,0,1,100.0000,1),(827,0,1,100.0000,1),(828,0,1,0.0000,1),(829,0,1,100.0000,1),(830,0,1,100.0000,1),(831,0,1,100.0000,1),(832,0,1,100.0000,1),(833,0,1,100.0000,1),(834,0,1,100.0000,1),(835,0,1,100.0000,1),(836,0,1,100.0000,1),(837,0,1,100.0000,1),(838,0,1,100.0000,1),(839,0,1,100.0000,1),(840,0,1,100.0000,1),(841,0,1,0.0000,1),(842,0,1,100.0000,1),(843,0,1,100.0000,1),(844,0,1,100.0000,1),(845,0,1,100.0000,1),(846,0,1,100.0000,1),(847,0,1,100.0000,1),(848,0,1,100.0000,1),(849,0,1,100.0000,1),(850,0,1,100.0000,1),(851,0,1,100.0000,1),(852,0,1,100.0000,1),(853,0,1,100.0000,1),(854,0,1,0.0000,1),(855,0,1,100.0000,1),(856,0,1,100.0000,1),(857,0,1,100.0000,1),(858,0,1,100.0000,1),(859,0,1,100.0000,1),(860,0,1,100.0000,1),(861,0,1,100.0000,1),(862,0,1,100.0000,1),(863,0,1,100.0000,1),(864,0,1,100.0000,1),(865,0,1,100.0000,1),(866,0,1,100.0000,1),(867,0,1,0.0000,1),(868,0,1,100.0000,1),(869,0,1,100.0000,1),(870,0,1,100.0000,1),(871,0,1,100.0000,1),(872,0,1,100.0000,1),(873,0,1,100.0000,1),(874,0,1,100.0000,1),(875,0,1,100.0000,1),(876,0,1,100.0000,1),(877,0,1,100.0000,1),(878,0,1,100.0000,1),(879,0,1,100.0000,1),(880,0,1,0.0000,1),(881,0,1,100.0000,1),(882,0,1,100.0000,1),(883,0,1,100.0000,1),(884,0,1,100.0000,1),(885,0,1,100.0000,1),(886,0,1,100.0000,1),(887,0,1,100.0000,1),(888,0,1,100.0000,1),(889,0,1,100.0000,1),(890,0,1,100.0000,1),(891,0,1,100.0000,1),(892,0,1,100.0000,1),(893,0,1,0.0000,1),(894,0,1,100.0000,1),(895,0,1,100.0000,1),(896,0,1,100.0000,1),(897,0,1,100.0000,1),(898,0,1,0.0000,1),(899,0,1,100.0000,1),(900,0,1,100.0000,1),(901,0,1,100.0000,1),(902,0,1,100.0000,1),(903,0,1,100.0000,1),(904,0,1,100.0000,1),(905,0,1,100.0000,1),(906,0,1,100.0000,1),(907,0,1,100.0000,1),(908,0,1,100.0000,1),(909,0,1,100.0000,1),(910,0,1,100.0000,1),(911,0,1,0.0000,1),(912,0,1,100.0000,1),(913,0,1,100.0000,1),(914,0,1,100.0000,1),(915,0,1,100.0000,1),(916,0,1,100.0000,1),(917,0,1,100.0000,1),(918,0,1,100.0000,1),(919,0,1,100.0000,1),(920,0,1,100.0000,1),(921,0,1,100.0000,1),(922,0,1,100.0000,1),(923,0,1,100.0000,1),(924,0,1,0.0000,1),(925,0,1,100.0000,1),(926,0,1,100.0000,1),(927,0,1,100.0000,1),(928,0,1,100.0000,1),(929,0,1,100.0000,1),(930,0,1,100.0000,1),(931,0,1,100.0000,1),(932,0,1,100.0000,1),(933,0,1,100.0000,1),(934,0,1,100.0000,1),(935,0,1,100.0000,1),(936,0,1,100.0000,1),(937,0,1,0.0000,1),(938,0,1,100.0000,1),(939,0,1,100.0000,1),(940,0,1,100.0000,1),(941,0,1,100.0000,1),(942,0,1,100.0000,1),(943,0,1,100.0000,1),(944,0,1,100.0000,1),(945,0,1,100.0000,1),(946,0,1,100.0000,1),(947,0,1,100.0000,1),(948,0,1,100.0000,1),(949,0,1,100.0000,1),(950,0,1,0.0000,1),(951,0,1,100.0000,1),(952,0,1,100.0000,1),(953,0,1,100.0000,1),(954,0,1,100.0000,1),(955,0,1,100.0000,1),(956,0,1,100.0000,1),(957,0,1,100.0000,1),(958,0,1,100.0000,1),(959,0,1,100.0000,1),(960,0,1,100.0000,1),(961,0,1,100.0000,1),(962,0,1,100.0000,1),(963,0,1,0.0000,1),(964,0,1,100.0000,1),(965,0,1,100.0000,1),(966,0,1,100.0000,1),(967,0,1,100.0000,1),(968,0,1,100.0000,1),(969,0,1,100.0000,1),(970,0,1,100.0000,1),(971,0,1,100.0000,1),(972,0,1,100.0000,1),(973,0,1,100.0000,1),(974,0,1,100.0000,1),(975,0,1,100.0000,1),(976,0,1,0.0000,1),(977,0,1,100.0000,1),(978,0,1,100.0000,1),(979,0,1,100.0000,1),(980,0,1,100.0000,1),(981,0,1,100.0000,1),(982,0,1,100.0000,1),(983,0,1,100.0000,1),(984,0,1,100.0000,1),(985,0,1,100.0000,1),(986,0,1,100.0000,1),(987,0,1,100.0000,1),(988,0,1,100.0000,1),(989,0,1,0.0000,1),(990,0,1,100.0000,1),(991,0,1,100.0000,1),(992,0,1,100.0000,1),(993,0,1,100.0000,1),(994,0,1,100.0000,1),(995,0,1,100.0000,1),(996,0,1,100.0000,1),(997,0,1,100.0000,1),(998,0,1,100.0000,1),(999,0,1,100.0000,1),(1000,0,1,100.0000,1),(1001,0,1,100.0000,1),(1002,0,1,0.0000,1),(1003,0,1,100.0000,1),(1004,0,1,100.0000,1),(1005,0,1,100.0000,1),(1006,0,1,100.0000,1),(1007,0,1,100.0000,1),(1008,0,1,100.0000,1),(1009,0,1,100.0000,1),(1010,0,1,100.0000,1),(1011,0,1,100.0000,1),(1012,0,1,100.0000,1),(1013,0,1,100.0000,1),(1014,0,1,100.0000,1),(1015,0,1,0.0000,1),(1016,0,1,100.0000,1),(1017,0,1,100.0000,1),(1018,0,1,100.0000,1),(1019,0,1,100.0000,1),(1020,0,1,100.0000,1),(1021,0,1,100.0000,1),(1022,0,1,100.0000,1),(1023,0,1,100.0000,1),(1024,0,1,100.0000,1),(1025,0,1,100.0000,1),(1026,0,1,100.0000,1),(1027,0,1,100.0000,1),(1028,0,1,0.0000,1),(1029,0,1,100.0000,1),(1030,0,1,100.0000,1),(1031,0,1,100.0000,1),(1032,0,1,100.0000,1),(1033,0,1,100.0000,1),(1034,0,1,100.0000,1),(1035,0,1,100.0000,1),(1036,0,1,100.0000,1),(1037,0,1,100.0000,1),(1038,0,1,100.0000,1),(1039,0,1,100.0000,1),(1040,0,1,100.0000,1),(1041,0,1,100.0000,1),(1042,0,1,100.0000,1),(1043,0,1,100.0000,1),(1044,0,1,0.0000,1),(1045,0,1,100.0000,1),(1046,0,1,100.0000,1),(1047,0,1,100.0000,1),(1048,0,1,100.0000,1),(1049,0,1,100.0000,1),(1050,0,1,100.0000,1),(1051,0,1,100.0000,1),(1052,0,1,100.0000,1),(1053,0,1,100.0000,1),(1054,0,1,100.0000,1),(1055,0,1,100.0000,1),(1056,0,1,100.0000,1),(1057,0,1,100.0000,1),(1058,0,1,100.0000,1),(1059,0,1,100.0000,1),(1060,0,1,0.0000,1),(1061,0,1,100.0000,1),(1062,0,1,100.0000,1),(1063,0,1,100.0000,1),(1064,0,1,100.0000,1),(1065,0,1,100.0000,1),(1066,0,1,100.0000,1),(1067,0,1,100.0000,1),(1068,0,1,100.0000,1),(1069,0,1,100.0000,1),(1070,0,1,100.0000,1),(1071,0,1,100.0000,1),(1072,0,1,100.0000,1),(1073,0,1,100.0000,1),(1074,0,1,100.0000,1),(1075,0,1,100.0000,1),(1076,0,1,0.0000,1),(1077,0,1,100.0000,1),(1078,0,1,100.0000,1),(1079,0,1,100.0000,1),(1080,0,1,100.0000,1),(1081,0,1,100.0000,1),(1082,0,1,100.0000,1),(1083,0,1,100.0000,1),(1084,0,1,100.0000,1),(1085,0,1,100.0000,1),(1086,0,1,100.0000,1),(1087,0,1,100.0000,1),(1088,0,1,100.0000,1),(1089,0,1,100.0000,1),(1090,0,1,100.0000,1),(1091,0,1,100.0000,1),(1092,0,1,0.0000,1),(1093,0,1,100.0000,1),(1094,0,1,100.0000,1),(1095,0,1,100.0000,1),(1096,0,1,100.0000,1),(1097,0,1,100.0000,1),(1098,0,1,100.0000,1),(1099,0,1,100.0000,1),(1100,0,1,100.0000,1),(1101,0,1,100.0000,1),(1102,0,1,100.0000,1),(1103,0,1,100.0000,1),(1104,0,1,100.0000,1),(1105,0,1,100.0000,1),(1106,0,1,100.0000,1),(1107,0,1,100.0000,1),(1108,0,1,0.0000,1),(1109,0,1,100.0000,1),(1110,0,1,100.0000,1),(1111,0,1,100.0000,1),(1112,0,1,100.0000,1),(1113,0,1,100.0000,1),(1114,0,1,0.0000,1),(1115,0,1,100.0000,1),(1116,0,1,100.0000,1),(1117,0,1,100.0000,1),(1118,0,1,100.0000,1),(1119,0,1,100.0000,1),(1120,0,1,100.0000,1),(1121,0,1,100.0000,1),(1122,0,1,100.0000,1),(1123,0,1,100.0000,1),(1124,0,1,100.0000,1),(1125,0,1,100.0000,1),(1126,0,1,100.0000,1),(1127,0,1,100.0000,1),(1128,0,1,100.0000,1),(1129,0,1,100.0000,1),(1130,0,1,0.0000,1),(1131,0,1,100.0000,1),(1132,0,1,100.0000,1),(1133,0,1,100.0000,1),(1134,0,1,100.0000,1),(1135,0,1,100.0000,1),(1136,0,1,100.0000,1),(1137,0,1,100.0000,1),(1138,0,1,100.0000,1),(1139,0,1,100.0000,1),(1140,0,1,100.0000,1),(1141,0,1,100.0000,1),(1142,0,1,100.0000,1),(1143,0,1,100.0000,1),(1144,0,1,100.0000,1),(1145,0,1,100.0000,1),(1146,0,1,0.0000,1),(1147,0,1,100.0000,1),(1148,0,1,100.0000,1),(1149,0,1,100.0000,1),(1150,0,1,100.0000,1),(1151,0,1,100.0000,1),(1152,0,1,100.0000,1),(1153,0,1,100.0000,1),(1154,0,1,100.0000,1),(1155,0,1,100.0000,1),(1156,0,1,100.0000,1),(1157,0,1,100.0000,1),(1158,0,1,100.0000,1),(1159,0,1,100.0000,1),(1160,0,1,100.0000,1),(1161,0,1,100.0000,1),(1162,0,1,0.0000,1),(1163,0,1,100.0000,1),(1164,0,1,100.0000,1),(1165,0,1,100.0000,1),(1166,0,1,100.0000,1),(1167,0,1,100.0000,1),(1168,0,1,100.0000,1),(1169,0,1,100.0000,1),(1170,0,1,100.0000,1),(1171,0,1,100.0000,1),(1172,0,1,100.0000,1),(1173,0,1,100.0000,1),(1174,0,1,100.0000,1),(1175,0,1,100.0000,1),(1176,0,1,100.0000,1),(1177,0,1,100.0000,1),(1178,0,1,0.0000,1),(1179,0,1,100.0000,1),(1180,0,1,100.0000,1),(1181,0,1,100.0000,1),(1182,0,1,100.0000,1),(1183,0,1,100.0000,1),(1184,0,1,100.0000,1),(1185,0,1,100.0000,1),(1186,0,1,100.0000,1),(1187,0,1,100.0000,1),(1188,0,1,100.0000,1),(1189,0,1,100.0000,1),(1190,0,1,100.0000,1),(1191,0,1,100.0000,1),(1192,0,1,100.0000,1),(1193,0,1,100.0000,1),(1194,0,1,0.0000,1),(1195,0,1,100.0000,1),(1196,0,1,100.0000,1),(1197,0,1,100.0000,1),(1198,0,1,100.0000,1),(1199,0,1,100.0000,1),(1200,0,1,100.0000,1),(1201,0,1,100.0000,1),(1202,0,1,100.0000,1),(1203,0,1,100.0000,1),(1204,0,1,100.0000,1),(1205,0,1,100.0000,1),(1206,0,1,100.0000,1),(1207,0,1,100.0000,1),(1208,0,1,100.0000,1),(1209,0,1,100.0000,1),(1210,0,1,0.0000,1),(1211,0,1,100.0000,1),(1212,0,1,100.0000,1),(1213,0,1,100.0000,1),(1214,0,1,100.0000,1),(1215,0,1,100.0000,1),(1216,0,1,100.0000,1),(1217,0,1,100.0000,1),(1218,0,1,100.0000,1),(1219,0,1,100.0000,1),(1220,0,1,0.0000,1),(1221,0,1,100.0000,1),(1222,0,1,100.0000,1),(1223,0,1,100.0000,1),(1224,0,1,100.0000,1),(1225,0,1,100.0000,1),(1226,0,1,100.0000,1),(1227,0,1,100.0000,1),(1228,0,1,100.0000,1),(1229,0,1,100.0000,1),(1230,0,1,100.0000,1),(1231,0,1,100.0000,1),(1232,0,1,100.0000,1),(1233,0,1,100.0000,1),(1234,0,1,100.0000,1),(1235,0,1,100.0000,1),(1236,0,1,0.0000,1),(1237,0,1,100.0000,1),(1238,0,1,100.0000,1),(1239,0,1,100.0000,1),(1240,0,1,100.0000,1),(1241,0,1,100.0000,1),(1242,0,1,100.0000,1),(1243,0,1,100.0000,1),(1244,0,1,100.0000,1),(1245,0,1,100.0000,1),(1246,0,1,100.0000,1),(1247,0,1,100.0000,1),(1248,0,1,100.0000,1),(1249,0,1,100.0000,1),(1250,0,1,100.0000,1),(1251,0,1,100.0000,1),(1252,0,1,0.0000,1),(1253,0,1,100.0000,1),(1254,0,1,100.0000,1),(1255,0,1,100.0000,1),(1256,0,1,100.0000,1),(1257,0,1,100.0000,1),(1258,0,1,100.0000,1),(1259,0,1,100.0000,1),(1260,0,1,100.0000,1),(1261,0,1,100.0000,1),(1262,0,1,100.0000,1),(1263,0,1,100.0000,1),(1264,0,1,100.0000,1),(1265,0,1,100.0000,1),(1266,0,1,100.0000,1),(1267,0,1,100.0000,1),(1268,0,1,0.0000,1),(1269,0,1,100.0000,1),(1270,0,1,100.0000,1),(1271,0,1,100.0000,1),(1272,0,1,100.0000,1),(1273,0,1,100.0000,1),(1274,0,1,100.0000,1),(1275,0,1,100.0000,1),(1276,0,1,100.0000,1),(1277,0,1,100.0000,1),(1278,0,1,100.0000,1),(1279,0,1,100.0000,1),(1280,0,1,100.0000,1),(1281,0,1,100.0000,1),(1282,0,1,100.0000,1),(1283,0,1,100.0000,1),(1284,0,1,0.0000,1),(1285,0,1,100.0000,1),(1286,0,1,100.0000,1),(1287,0,1,100.0000,1),(1288,0,1,100.0000,1),(1289,0,1,100.0000,1),(1290,0,1,100.0000,1),(1291,0,1,100.0000,1),(1292,0,1,100.0000,1),(1293,0,1,100.0000,1),(1294,0,1,100.0000,1),(1295,0,1,100.0000,1),(1296,0,1,100.0000,1),(1297,0,1,100.0000,1),(1298,0,1,100.0000,1),(1299,0,1,100.0000,1),(1300,0,1,0.0000,1),(1301,0,1,100.0000,1),(1302,0,1,100.0000,1),(1303,0,1,100.0000,1),(1304,0,1,100.0000,1),(1305,0,1,100.0000,1),(1306,0,1,100.0000,1),(1307,0,1,100.0000,1),(1308,0,1,100.0000,1),(1309,0,1,100.0000,1),(1310,0,1,100.0000,1),(1311,0,1,100.0000,1),(1312,0,1,100.0000,1),(1313,0,1,100.0000,1),(1314,0,1,100.0000,1),(1315,0,1,100.0000,1),(1316,0,1,0.0000,1),(1317,0,1,100.0000,1),(1318,0,1,100.0000,1),(1319,0,1,100.0000,1),(1320,0,1,100.0000,1),(1321,0,1,100.0000,1),(1322,0,1,100.0000,1),(1323,0,1,100.0000,1),(1324,0,1,100.0000,1),(1325,0,1,100.0000,1),(1326,0,1,100.0000,1),(1327,0,1,100.0000,1),(1328,0,1,100.0000,1),(1329,0,1,100.0000,1),(1330,0,1,100.0000,1),(1331,0,1,100.0000,1),(1332,0,1,0.0000,1),(1333,0,1,100.0000,1),(1334,0,1,100.0000,1),(1335,0,1,100.0000,1),(1336,0,1,100.0000,1),(1337,0,1,100.0000,1),(1338,0,1,100.0000,1),(1339,0,1,100.0000,1),(1340,0,1,100.0000,1),(1341,0,1,100.0000,1),(1342,0,1,100.0000,1),(1343,0,1,100.0000,1),(1344,0,1,100.0000,1),(1345,0,1,100.0000,1),(1346,0,1,100.0000,1),(1347,0,1,100.0000,1),(1348,0,1,0.0000,1),(1349,0,1,100.0000,1),(1350,0,1,100.0000,1),(1351,0,1,100.0000,1),(1352,0,1,100.0000,1),(1353,0,1,100.0000,1),(1354,0,1,100.0000,1),(1355,0,1,100.0000,1),(1356,0,1,100.0000,1),(1357,0,1,100.0000,1),(1358,0,1,100.0000,1),(1359,0,1,100.0000,1),(1360,0,1,100.0000,1),(1361,0,1,100.0000,1),(1362,0,1,100.0000,1),(1363,0,1,100.0000,1),(1364,0,1,0.0000,1),(1365,0,1,100.0000,1),(1366,0,1,100.0000,1),(1367,0,1,100.0000,1),(1368,0,1,100.0000,1),(1369,0,1,100.0000,1),(1370,0,1,100.0000,1),(1371,0,1,100.0000,1),(1372,0,1,100.0000,1),(1373,0,1,100.0000,1),(1374,0,1,100.0000,1),(1375,0,1,100.0000,1),(1376,0,1,100.0000,1),(1377,0,1,100.0000,1),(1378,0,1,100.0000,1),(1379,0,1,100.0000,1),(1380,0,1,0.0000,1),(1381,0,1,100.0000,1),(1382,0,1,100.0000,1),(1383,0,1,100.0000,1),(1384,0,1,100.0000,1),(1385,0,1,100.0000,1),(1386,0,1,100.0000,1),(1387,0,1,100.0000,1),(1388,0,1,100.0000,1),(1389,0,1,100.0000,1),(1390,0,1,100.0000,1),(1391,0,1,100.0000,1),(1392,0,1,100.0000,1),(1393,0,1,100.0000,1),(1394,0,1,100.0000,1),(1395,0,1,100.0000,1),(1396,0,1,0.0000,1),(1397,0,1,100.0000,1),(1398,0,1,100.0000,1),(1399,0,1,100.0000,1),(1400,0,1,100.0000,1),(1401,0,1,100.0000,1),(1402,0,1,100.0000,1),(1403,0,1,100.0000,1),(1404,0,1,100.0000,1),(1405,0,1,100.0000,1),(1406,0,1,100.0000,1),(1407,0,1,100.0000,1),(1408,0,1,100.0000,1),(1409,0,1,100.0000,1),(1410,0,1,100.0000,1),(1411,0,1,100.0000,1),(1412,0,1,0.0000,1),(1413,0,1,100.0000,1),(1414,0,1,100.0000,1),(1415,0,1,99.0000,1),(1416,0,1,100.0000,1),(1417,0,1,100.0000,1),(1418,0,1,100.0000,1),(1419,0,1,100.0000,1),(1420,0,1,100.0000,1),(1421,0,1,100.0000,1),(1422,0,1,100.0000,1),(1423,0,1,100.0000,1),(1424,0,1,100.0000,1),(1425,0,1,100.0000,1),(1426,0,1,100.0000,1),(1427,0,1,100.0000,1),(1428,0,1,0.0000,1),(1429,0,1,100.0000,1),(1430,0,1,100.0000,1),(1431,0,1,100.0000,1),(1432,0,1,100.0000,1),(1433,0,1,100.0000,1),(1434,0,1,100.0000,1),(1435,0,1,100.0000,1),(1436,0,1,100.0000,1),(1437,0,1,100.0000,1),(1438,0,1,100.0000,1),(1439,0,1,100.0000,1),(1440,0,1,100.0000,1),(1441,0,1,100.0000,1),(1442,0,1,100.0000,1),(1443,0,1,100.0000,1),(1444,0,1,0.0000,1),(1445,0,1,100.0000,1),(1446,0,1,100.0000,1),(1447,0,1,100.0000,1),(1448,0,1,100.0000,1),(1449,0,1,100.0000,1),(1450,0,1,100.0000,1),(1451,0,1,100.0000,1),(1452,0,1,100.0000,1),(1453,0,1,100.0000,1),(1454,0,1,100.0000,1),(1455,0,1,100.0000,1),(1456,0,1,100.0000,1),(1457,0,1,100.0000,1),(1458,0,1,100.0000,1),(1459,0,1,100.0000,1),(1460,0,1,0.0000,1),(1461,0,1,100.0000,1),(1462,0,1,100.0000,1),(1463,0,1,100.0000,1),(1464,0,1,100.0000,1),(1465,0,1,100.0000,1),(1466,0,1,100.0000,1),(1467,0,1,100.0000,1),(1468,0,1,100.0000,1),(1469,0,1,100.0000,1),(1470,0,1,100.0000,1),(1471,0,1,100.0000,1),(1472,0,1,100.0000,1),(1473,0,1,100.0000,1),(1474,0,1,100.0000,1),(1475,0,1,100.0000,1),(1476,0,1,0.0000,1),(1477,0,1,100.0000,1),(1478,0,1,99.0000,1),(1479,0,1,100.0000,1),(1480,0,1,100.0000,1),(1481,0,1,100.0000,1),(1482,0,1,100.0000,1),(1483,0,1,100.0000,1),(1484,0,1,100.0000,1),(1485,0,1,100.0000,1),(1486,0,1,100.0000,1),(1487,0,1,100.0000,1),(1488,0,1,100.0000,1),(1489,0,1,100.0000,1),(1490,0,1,100.0000,1),(1491,0,1,100.0000,1),(1492,0,1,0.0000,1),(1493,0,1,100.0000,1),(1494,0,1,100.0000,1),(1495,0,1,100.0000,1),(1496,0,1,100.0000,1),(1497,0,1,100.0000,1),(1498,0,1,100.0000,1),(1499,0,1,100.0000,1),(1500,0,1,100.0000,1),(1501,0,1,100.0000,1),(1502,0,1,100.0000,1),(1503,0,1,100.0000,1),(1504,0,1,100.0000,1),(1505,0,1,100.0000,1),(1506,0,1,100.0000,1),(1507,0,1,100.0000,1),(1508,0,1,0.0000,1),(1509,0,1,100.0000,1),(1510,0,1,100.0000,1),(1511,0,1,100.0000,1),(1512,0,1,100.0000,1),(1513,0,1,100.0000,1),(1514,0,1,100.0000,1),(1515,0,1,100.0000,1),(1516,0,1,100.0000,1),(1517,0,1,100.0000,1),(1518,0,1,100.0000,1),(1519,0,1,100.0000,1),(1520,0,1,100.0000,1),(1521,0,1,100.0000,1),(1522,0,1,100.0000,1),(1523,0,1,100.0000,1),(1524,0,1,0.0000,1),(1525,0,1,100.0000,1),(1526,0,1,100.0000,1),(1527,0,1,100.0000,1),(1528,0,1,100.0000,1),(1529,0,1,100.0000,1),(1530,0,1,100.0000,1),(1531,0,1,100.0000,1),(1532,0,1,100.0000,1),(1533,0,1,100.0000,1),(1534,0,1,100.0000,1),(1535,0,1,100.0000,1),(1536,0,1,100.0000,1),(1537,0,1,100.0000,1),(1538,0,1,100.0000,1),(1539,0,1,100.0000,1),(1540,0,1,0.0000,1),(1541,0,1,100.0000,1),(1542,0,1,100.0000,1),(1543,0,1,100.0000,1),(1544,0,1,100.0000,1),(1545,0,1,100.0000,1),(1546,0,1,100.0000,1),(1547,0,1,100.0000,1),(1548,0,1,100.0000,1),(1549,0,1,100.0000,1),(1550,0,1,100.0000,1),(1551,0,1,100.0000,1),(1552,0,1,100.0000,1),(1553,0,1,100.0000,1),(1554,0,1,100.0000,1),(1555,0,1,100.0000,1),(1556,0,1,0.0000,1),(1557,0,1,100.0000,1),(1558,0,1,100.0000,1),(1559,0,1,100.0000,1),(1560,0,1,100.0000,1),(1561,0,1,100.0000,1),(1562,0,1,100.0000,1),(1563,0,1,100.0000,1),(1564,0,1,100.0000,1),(1565,0,1,100.0000,1),(1566,0,1,100.0000,1),(1567,0,1,100.0000,1),(1568,0,1,100.0000,1),(1569,0,1,100.0000,1),(1570,0,1,100.0000,1),(1571,0,1,100.0000,1),(1572,0,1,0.0000,1),(1573,0,1,100.0000,1),(1574,0,1,100.0000,1),(1575,0,1,100.0000,1),(1576,0,1,100.0000,1),(1577,0,1,100.0000,1),(1578,0,1,100.0000,1),(1579,0,1,100.0000,1),(1580,0,1,100.0000,1),(1581,0,1,100.0000,1),(1582,0,1,100.0000,1),(1583,0,1,100.0000,1),(1584,0,1,100.0000,1),(1585,0,1,100.0000,1),(1586,0,1,100.0000,1),(1587,0,1,100.0000,1),(1588,0,1,0.0000,1),(1589,0,1,100.0000,1),(1590,0,1,100.0000,1),(1591,0,1,100.0000,1),(1592,0,1,100.0000,1),(1593,0,1,100.0000,1),(1594,0,1,100.0000,1),(1595,0,1,100.0000,1),(1596,0,1,100.0000,1),(1597,0,1,100.0000,1),(1598,0,1,100.0000,1),(1599,0,1,100.0000,1),(1600,0,1,100.0000,1),(1601,0,1,100.0000,1),(1602,0,1,100.0000,1),(1603,0,1,100.0000,1),(1604,0,1,0.0000,1),(1605,0,1,100.0000,1),(1606,0,1,100.0000,1),(1607,0,1,100.0000,1),(1608,0,1,100.0000,1),(1609,0,1,100.0000,1),(1610,0,1,100.0000,1),(1611,0,1,100.0000,1),(1612,0,1,100.0000,1),(1613,0,1,100.0000,1),(1614,0,1,100.0000,1),(1615,0,1,100.0000,1),(1616,0,1,100.0000,1),(1617,0,1,100.0000,1),(1618,0,1,100.0000,1),(1619,0,1,100.0000,1),(1620,0,1,0.0000,1),(1621,0,1,100.0000,1),(1622,0,1,100.0000,1),(1623,0,1,100.0000,1),(1624,0,1,100.0000,1),(1625,0,1,100.0000,1),(1626,0,1,100.0000,1),(1627,0,1,100.0000,1),(1628,0,1,100.0000,1),(1629,0,1,100.0000,1),(1630,0,1,100.0000,1),(1631,0,1,100.0000,1),(1632,0,1,100.0000,1),(1633,0,1,100.0000,1),(1634,0,1,100.0000,1),(1635,0,1,100.0000,1),(1636,0,1,0.0000,1),(1637,0,1,100.0000,1),(1638,0,1,100.0000,1),(1639,0,1,100.0000,1),(1640,0,1,100.0000,1),(1641,0,1,100.0000,1),(1642,0,1,100.0000,1),(1643,0,1,100.0000,1),(1644,0,1,100.0000,1),(1645,0,1,100.0000,1),(1646,0,1,100.0000,1),(1647,0,1,100.0000,1),(1648,0,1,100.0000,1),(1649,0,1,100.0000,1),(1650,0,1,100.0000,1),(1651,0,1,100.0000,1),(1652,0,1,0.0000,1),(1653,0,1,100.0000,1),(1654,0,1,100.0000,1),(1655,0,1,100.0000,1),(1656,0,1,100.0000,1),(1657,0,1,100.0000,1),(1658,0,1,100.0000,1),(1659,0,1,100.0000,1),(1660,0,1,100.0000,1),(1661,0,1,100.0000,1),(1662,0,1,100.0000,1),(1663,0,1,100.0000,1),(1664,0,1,100.0000,1),(1665,0,1,100.0000,1),(1666,0,1,100.0000,1),(1667,0,1,100.0000,1),(1668,0,1,0.0000,1),(1669,0,1,100.0000,1),(1670,0,1,100.0000,1),(1671,0,1,100.0000,1),(1672,0,1,100.0000,1),(1673,0,1,100.0000,1),(1674,0,1,100.0000,1),(1675,0,1,100.0000,1),(1676,0,1,100.0000,1),(1677,0,1,100.0000,1),(1678,0,1,100.0000,1),(1679,0,1,100.0000,1),(1680,0,1,100.0000,1),(1681,0,1,100.0000,1),(1682,0,1,100.0000,1),(1683,0,1,100.0000,1),(1684,0,1,0.0000,1),(1685,0,1,100.0000,1),(1686,0,1,100.0000,1),(1687,0,1,100.0000,1),(1688,0,1,100.0000,1),(1689,0,1,100.0000,1),(1690,0,1,100.0000,1),(1691,0,1,100.0000,1),(1692,0,1,100.0000,1),(1693,0,1,100.0000,1),(1694,0,1,100.0000,1),(1695,0,1,100.0000,1),(1696,0,1,100.0000,1),(1697,0,1,100.0000,1),(1698,0,1,100.0000,1),(1699,0,1,100.0000,1),(1700,0,1,0.0000,1),(1701,0,1,100.0000,1),(1702,0,1,100.0000,1),(1703,0,1,100.0000,1),(1704,0,1,100.0000,1),(1705,0,1,100.0000,1),(1706,0,1,100.0000,1),(1707,0,1,100.0000,1),(1708,0,1,100.0000,1),(1709,0,1,100.0000,1),(1710,0,1,100.0000,1),(1711,0,1,100.0000,1),(1712,0,1,100.0000,1),(1713,0,1,100.0000,1),(1714,0,1,100.0000,1),(1715,0,1,100.0000,1),(1716,0,1,0.0000,1),(1717,0,1,100.0000,1),(1718,0,1,100.0000,1),(1719,0,1,100.0000,1),(1720,0,1,100.0000,1),(1721,0,1,100.0000,1),(1722,0,1,100.0000,1),(1723,0,1,100.0000,1),(1724,0,1,100.0000,1),(1725,0,1,100.0000,1),(1726,0,1,100.0000,1),(1727,0,1,100.0000,1),(1728,0,1,100.0000,1),(1729,0,1,100.0000,1),(1730,0,1,100.0000,1),(1731,0,1,100.0000,1),(1732,0,1,0.0000,1),(1733,0,1,100.0000,1),(1734,0,1,100.0000,1),(1735,0,1,100.0000,1),(1736,0,1,100.0000,1),(1737,0,1,100.0000,1),(1738,0,1,100.0000,1),(1739,0,1,100.0000,1),(1740,0,1,100.0000,1),(1741,0,1,100.0000,1),(1742,0,1,100.0000,1),(1743,0,1,100.0000,1),(1744,0,1,100.0000,1),(1745,0,1,100.0000,1),(1746,0,1,100.0000,1),(1747,0,1,100.0000,1),(1748,0,1,0.0000,1),(1749,0,1,100.0000,1),(1750,0,1,100.0000,1),(1751,0,1,100.0000,1),(1752,0,1,100.0000,1),(1753,0,1,100.0000,1),(1754,0,1,100.0000,1),(1755,0,1,100.0000,1),(1756,0,1,100.0000,1),(1757,0,1,100.0000,1),(1758,0,1,100.0000,1),(1759,0,1,100.0000,1),(1760,0,1,100.0000,1),(1761,0,1,100.0000,1),(1762,0,1,100.0000,1),(1763,0,1,100.0000,1),(1764,0,1,0.0000,1),(1765,0,1,100.0000,1),(1766,0,1,100.0000,1),(1767,0,1,100.0000,1),(1768,0,1,100.0000,1),(1769,0,1,100.0000,1),(1770,0,1,100.0000,1),(1771,0,1,100.0000,1),(1772,0,1,100.0000,1),(1773,0,1,100.0000,1),(1774,0,1,100.0000,1),(1775,0,1,100.0000,1),(1776,0,1,100.0000,1),(1777,0,1,100.0000,1),(1778,0,1,100.0000,1),(1779,0,1,100.0000,1),(1780,0,1,0.0000,1),(1781,0,1,100.0000,1),(1782,0,1,100.0000,1),(1783,0,1,100.0000,1),(1784,0,1,100.0000,1),(1785,0,1,100.0000,1),(1786,0,1,100.0000,1),(1787,0,1,100.0000,1),(1788,0,1,100.0000,1),(1789,0,1,100.0000,1),(1790,0,1,100.0000,1),(1791,0,1,100.0000,1),(1792,0,1,100.0000,1),(1793,0,1,100.0000,1),(1794,0,1,100.0000,1),(1795,0,1,100.0000,1),(1796,0,1,0.0000,1),(1797,0,1,100.0000,1),(1798,0,1,100.0000,1),(1799,0,1,100.0000,1),(1800,0,1,100.0000,1),(1801,0,1,100.0000,1),(1802,0,1,100.0000,1),(1803,0,1,100.0000,1),(1804,0,1,100.0000,1),(1805,0,1,100.0000,1),(1806,0,1,100.0000,1),(1807,0,1,100.0000,1),(1808,0,1,100.0000,1),(1809,0,1,100.0000,1),(1810,0,1,100.0000,1),(1811,0,1,100.0000,1),(1812,0,1,0.0000,1),(1813,0,1,100.0000,1),(1814,0,1,100.0000,1),(1815,0,1,100.0000,1),(1816,0,1,100.0000,1),(1817,0,1,100.0000,1),(1818,0,1,100.0000,1),(1819,0,1,0.0000,1),(1820,0,1,100.0000,1),(1821,0,1,100.0000,1),(1822,0,1,100.0000,1),(1823,0,1,100.0000,1),(1824,0,1,100.0000,1),(1825,0,1,100.0000,1),(1826,0,1,0.0000,1),(1827,0,1,100.0000,1),(1828,0,1,100.0000,1),(1829,0,1,100.0000,1),(1830,0,1,100.0000,1),(1831,0,1,100.0000,1),(1832,0,1,100.0000,1),(1833,0,1,0.0000,1),(1834,0,1,100.0000,1),(1835,0,1,100.0000,1),(1836,0,1,100.0000,1),(1837,0,1,100.0000,1),(1838,0,1,100.0000,1),(1839,0,1,100.0000,1),(1840,0,1,0.0000,1),(1841,0,1,100.0000,1),(1842,0,1,100.0000,1),(1843,0,1,100.0000,1),(1844,0,1,100.0000,1),(1845,0,1,100.0000,1),(1846,0,1,100.0000,1),(1847,0,1,0.0000,1),(1848,0,1,100.0000,1),(1849,0,1,100.0000,1),(1850,0,1,100.0000,1),(1851,0,1,100.0000,1),(1852,0,1,100.0000,1),(1853,0,1,100.0000,1),(1854,0,1,0.0000,1),(1855,0,1,100.0000,1),(1856,0,1,100.0000,1),(1857,0,1,100.0000,1),(1858,0,1,100.0000,1),(1859,0,1,100.0000,1),(1860,0,1,100.0000,1),(1861,0,1,0.0000,1),(1862,0,1,100.0000,1),(1863,0,1,100.0000,1),(1864,0,1,100.0000,1),(1865,0,1,100.0000,1),(1866,0,1,100.0000,1),(1867,0,1,100.0000,1),(1868,0,1,0.0000,1),(1869,0,1,100.0000,1),(1870,0,1,100.0000,1),(1871,0,1,100.0000,1),(1872,0,1,100.0000,1),(1873,0,1,100.0000,1),(1874,0,1,100.0000,1),(1875,0,1,0.0000,1),(1876,0,1,100.0000,1),(1877,0,1,100.0000,1),(1878,0,1,100.0000,1),(1879,0,1,100.0000,1),(1880,0,1,100.0000,1),(1881,0,1,100.0000,1),(1882,0,1,0.0000,1),(1883,0,1,100.0000,1),(1884,0,1,100.0000,1),(1885,0,1,100.0000,1),(1886,0,1,100.0000,1),(1887,0,1,100.0000,1),(1888,0,1,100.0000,1),(1889,0,1,0.0000,1),(1890,0,1,100.0000,1),(1891,0,1,100.0000,1),(1892,0,1,100.0000,1),(1893,0,1,100.0000,1),(1894,0,1,100.0000,1),(1895,0,1,100.0000,1),(1896,0,1,0.0000,1),(1897,0,1,100.0000,1),(1898,0,1,100.0000,1),(1899,0,1,100.0000,1),(1900,0,1,100.0000,1),(1901,0,1,100.0000,1),(1902,0,1,100.0000,1),(1903,0,1,0.0000,1),(1904,0,1,100.0000,1),(1905,0,1,100.0000,1),(1906,0,1,100.0000,1),(1907,0,1,100.0000,1),(1908,0,1,100.0000,1),(1909,0,1,100.0000,1),(1910,0,1,100.0000,1),(1911,0,1,100.0000,1),(1912,0,1,100.0000,1),(1913,0,1,100.0000,1),(1914,0,1,100.0000,1),(1915,0,1,100.0000,1),(1916,0,1,100.0000,1),(1917,0,1,100.0000,1),(1918,0,1,100.0000,1),(1919,0,1,0.0000,1),(1920,0,1,100.0000,1),(1921,0,1,100.0000,1),(1922,0,1,100.0000,1),(1923,0,1,100.0000,1),(1924,0,1,100.0000,1),(1925,0,1,100.0000,1),(1926,0,1,100.0000,1),(1927,0,1,100.0000,1),(1928,0,1,100.0000,1),(1929,0,1,100.0000,1),(1930,0,1,100.0000,1),(1931,0,1,100.0000,1),(1932,0,1,100.0000,1),(1933,0,1,100.0000,1),(1934,0,1,100.0000,1),(1935,0,1,0.0000,1),(1936,0,1,100.0000,1),(1937,0,1,100.0000,1),(1938,0,1,100.0000,1),(1939,0,1,100.0000,1),(1940,0,1,100.0000,1),(1941,0,1,100.0000,1),(1942,0,1,100.0000,1),(1943,0,1,100.0000,1),(1944,0,1,100.0000,1),(1945,0,1,100.0000,1),(1946,0,1,100.0000,1),(1947,0,1,100.0000,1),(1948,0,1,100.0000,1),(1949,0,1,100.0000,1),(1950,0,1,100.0000,1),(1951,0,1,0.0000,1),(1952,0,1,100.0000,1),(1953,0,1,100.0000,1),(1954,0,1,100.0000,1),(1955,0,1,100.0000,1),(1956,0,1,100.0000,1),(1957,0,1,100.0000,1),(1958,0,1,100.0000,1),(1959,0,1,100.0000,1),(1960,0,1,100.0000,1),(1961,0,1,100.0000,1),(1962,0,1,100.0000,1),(1963,0,1,100.0000,1),(1964,0,1,100.0000,1),(1965,0,1,100.0000,1),(1966,0,1,100.0000,1),(1967,0,1,0.0000,1),(1968,0,1,100.0000,1),(1969,0,1,100.0000,1),(1970,0,1,100.0000,1),(1971,0,1,100.0000,1),(1972,0,1,100.0000,1),(1973,0,1,100.0000,1),(1974,0,1,100.0000,1),(1975,0,1,100.0000,1),(1976,0,1,100.0000,1),(1977,0,1,100.0000,1),(1978,0,1,100.0000,1),(1979,0,1,100.0000,1),(1980,0,1,100.0000,1),(1981,0,1,100.0000,1),(1982,0,1,100.0000,1),(1983,0,1,0.0000,1),(1984,0,1,100.0000,1),(1985,0,1,100.0000,1),(1986,0,1,100.0000,1),(1987,0,1,100.0000,1),(1988,0,1,100.0000,1),(1989,0,1,100.0000,1),(1990,0,1,0.0000,1),(1991,0,1,100.0000,1),(1992,0,1,100.0000,1),(1993,0,1,100.0000,1),(1994,0,1,100.0000,1),(1995,0,1,100.0000,1),(1996,0,1,100.0000,1),(1997,0,1,0.0000,1),(1998,0,1,100.0000,1),(1999,0,1,100.0000,1),(2000,0,1,100.0000,1),(2001,0,1,100.0000,1),(2002,0,1,100.0000,1),(2003,0,1,0.0000,1),(2004,0,1,100.0000,1),(2005,0,1,100.0000,1),(2006,0,1,100.0000,1),(2007,0,1,100.0000,1),(2008,0,1,100.0000,1),(2009,0,1,100.0000,1),(2010,0,1,0.0000,1),(2011,0,1,100.0000,1),(2012,0,1,100.0000,1),(2013,0,1,100.0000,1),(2014,0,1,100.0000,1),(2015,0,1,100.0000,1),(2016,0,1,100.0000,1),(2017,0,1,0.0000,1),(2018,0,1,100.0000,1),(2019,0,1,100.0000,1),(2020,0,1,100.0000,1),(2021,0,1,100.0000,1),(2022,0,1,100.0000,1),(2023,0,1,100.0000,1),(2024,0,1,0.0000,1),(2025,0,1,100.0000,1),(2026,0,1,100.0000,1),(2027,0,1,100.0000,1),(2028,0,1,100.0000,1),(2029,0,1,100.0000,1),(2030,0,1,100.0000,1),(2031,0,1,100.0000,1),(2032,0,1,100.0000,1),(2033,0,1,100.0000,1),(2034,0,1,100.0000,1),(2035,0,1,100.0000,1),(2036,0,1,100.0000,1),(2037,0,1,100.0000,1),(2038,0,1,100.0000,1),(2039,0,1,100.0000,1),(2040,0,1,0.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cataloginventory_stock_status_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]cataloginventory_stock_status_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cataloginventory_stock_status_tmp` (
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  KEY `[[DBPREFIX]]CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status Indexer Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cataloginventory_stock_status_tmp`
--

LOCK TABLES `[[dbprefix]]cataloginventory_stock_status_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_tmp` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cataloginventory_stock_status_tmp` VALUES (46,0,1,0.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]cataloginventory_stock_status_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule` (
  `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `is_active` smallint NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `conditions_serialized` mediumtext COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Discount Amount',
  PRIMARY KEY (`rule_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule`
--

LOCK TABLES `[[dbprefix]]catalogrule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalogrule` VALUES (1,'20% off all Women’s and Men’s Pants','20% off all Women’s and Men’s Pants',NULL,NULL,1,'{\"type\":\"Magento\\\\CatalogRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\CatalogRule\\\\Model\\\\Rule\\\\Condition\\\\Product\",\"attribute\":\"category_ids\",\"operator\":\"()\",\"value\":\"27,18\",\"is_value_processed\":false}]}','{\"type\":\"Magento\\\\CatalogRule\\\\Model\\\\Rule\\\\Action\\\\Collection\",\"attribute\":null,\"operator\":\"=\",\"value\":null}',1,0,'by_percent',20.000000);
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_customer_group`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_customer_group` (
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `FK_CA21557BCA029C0082FC60E8C5C923DB` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOGRULE_CUSTOMER_GROUP_RULE_ID_[[DBPREFIX]]CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]catalogrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_customer_group`
--

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

--
-- Table structure for table `[[dbprefix]]catalogrule_group_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_group_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_group_website` (
  `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_group_website`
--

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

--
-- Table structure for table `[[dbprefix]]catalogrule_group_website_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_group_website_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_group_website_replica` (
  `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_group_website_replica`
--

LOCK TABLES `[[dbprefix]]catalogrule_group_website_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_group_website_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_group_website_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_product`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_product` (
  `rule_product_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID',
  `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `from_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'From Time',
  `to_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'To time',
  `customer_group_id` int DEFAULT NULL,
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount',
  `action_stop` smallint NOT NULL DEFAULT '0' COMMENT 'Action Stop',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_657F2C47A3462448AF8A19A447783F01` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=989 DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_product`
--

LOCK TABLES `[[dbprefix]]catalogrule_product` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalogrule_product` VALUES (1,1,0,0,0,725,'by_percent',20.000000,1,0,1),(2,1,0,0,1,725,'by_percent',20.000000,1,0,1),(3,1,0,0,2,725,'by_percent',20.000000,1,0,1),(4,1,0,0,3,725,'by_percent',20.000000,1,0,1),(5,1,0,0,0,726,'by_percent',20.000000,1,0,1),(6,1,0,0,1,726,'by_percent',20.000000,1,0,1),(7,1,0,0,2,726,'by_percent',20.000000,1,0,1),(8,1,0,0,3,726,'by_percent',20.000000,1,0,1),(9,1,0,0,0,727,'by_percent',20.000000,1,0,1),(10,1,0,0,1,727,'by_percent',20.000000,1,0,1),(11,1,0,0,2,727,'by_percent',20.000000,1,0,1),(12,1,0,0,3,727,'by_percent',20.000000,1,0,1),(13,1,0,0,0,728,'by_percent',20.000000,1,0,1),(14,1,0,0,1,728,'by_percent',20.000000,1,0,1),(15,1,0,0,2,728,'by_percent',20.000000,1,0,1),(16,1,0,0,3,728,'by_percent',20.000000,1,0,1),(17,1,0,0,0,729,'by_percent',20.000000,1,0,1),(18,1,0,0,1,729,'by_percent',20.000000,1,0,1),(19,1,0,0,2,729,'by_percent',20.000000,1,0,1),(20,1,0,0,3,729,'by_percent',20.000000,1,0,1),(21,1,0,0,0,730,'by_percent',20.000000,1,0,1),(22,1,0,0,1,730,'by_percent',20.000000,1,0,1),(23,1,0,0,2,730,'by_percent',20.000000,1,0,1),(24,1,0,0,3,730,'by_percent',20.000000,1,0,1),(25,1,0,0,0,731,'by_percent',20.000000,1,0,1),(26,1,0,0,1,731,'by_percent',20.000000,1,0,1),(27,1,0,0,2,731,'by_percent',20.000000,1,0,1),(28,1,0,0,3,731,'by_percent',20.000000,1,0,1),(29,1,0,0,0,732,'by_percent',20.000000,1,0,1),(30,1,0,0,1,732,'by_percent',20.000000,1,0,1),(31,1,0,0,2,732,'by_percent',20.000000,1,0,1),(32,1,0,0,3,732,'by_percent',20.000000,1,0,1),(33,1,0,0,0,733,'by_percent',20.000000,1,0,1),(34,1,0,0,1,733,'by_percent',20.000000,1,0,1),(35,1,0,0,2,733,'by_percent',20.000000,1,0,1),(36,1,0,0,3,733,'by_percent',20.000000,1,0,1),(37,1,0,0,0,734,'by_percent',20.000000,1,0,1),(38,1,0,0,1,734,'by_percent',20.000000,1,0,1),(39,1,0,0,2,734,'by_percent',20.000000,1,0,1),(40,1,0,0,3,734,'by_percent',20.000000,1,0,1),(41,1,0,0,0,735,'by_percent',20.000000,1,0,1),(42,1,0,0,1,735,'by_percent',20.000000,1,0,1),(43,1,0,0,2,735,'by_percent',20.000000,1,0,1),(44,1,0,0,3,735,'by_percent',20.000000,1,0,1),(45,1,0,0,0,736,'by_percent',20.000000,1,0,1),(46,1,0,0,1,736,'by_percent',20.000000,1,0,1),(47,1,0,0,2,736,'by_percent',20.000000,1,0,1),(48,1,0,0,3,736,'by_percent',20.000000,1,0,1),(49,1,0,0,0,737,'by_percent',20.000000,1,0,1),(50,1,0,0,1,737,'by_percent',20.000000,1,0,1),(51,1,0,0,2,737,'by_percent',20.000000,1,0,1),(52,1,0,0,3,737,'by_percent',20.000000,1,0,1),(53,1,0,0,0,738,'by_percent',20.000000,1,0,1),(54,1,0,0,1,738,'by_percent',20.000000,1,0,1),(55,1,0,0,2,738,'by_percent',20.000000,1,0,1),(56,1,0,0,3,738,'by_percent',20.000000,1,0,1),(57,1,0,0,0,739,'by_percent',20.000000,1,0,1),(58,1,0,0,1,739,'by_percent',20.000000,1,0,1),(59,1,0,0,2,739,'by_percent',20.000000,1,0,1),(60,1,0,0,3,739,'by_percent',20.000000,1,0,1),(61,1,0,0,0,740,'by_percent',20.000000,1,0,1),(62,1,0,0,1,740,'by_percent',20.000000,1,0,1),(63,1,0,0,2,740,'by_percent',20.000000,1,0,1),(64,1,0,0,3,740,'by_percent',20.000000,1,0,1),(65,1,0,0,0,741,'by_percent',20.000000,1,0,1),(66,1,0,0,1,741,'by_percent',20.000000,1,0,1),(67,1,0,0,2,741,'by_percent',20.000000,1,0,1),(68,1,0,0,3,741,'by_percent',20.000000,1,0,1),(69,1,0,0,0,742,'by_percent',20.000000,1,0,1),(70,1,0,0,1,742,'by_percent',20.000000,1,0,1),(71,1,0,0,2,742,'by_percent',20.000000,1,0,1),(72,1,0,0,3,742,'by_percent',20.000000,1,0,1),(73,1,0,0,0,743,'by_percent',20.000000,1,0,1),(74,1,0,0,1,743,'by_percent',20.000000,1,0,1),(75,1,0,0,2,743,'by_percent',20.000000,1,0,1),(76,1,0,0,3,743,'by_percent',20.000000,1,0,1),(77,1,0,0,0,744,'by_percent',20.000000,1,0,1),(78,1,0,0,1,744,'by_percent',20.000000,1,0,1),(79,1,0,0,2,744,'by_percent',20.000000,1,0,1),(80,1,0,0,3,744,'by_percent',20.000000,1,0,1),(81,1,0,0,0,745,'by_percent',20.000000,1,0,1),(82,1,0,0,1,745,'by_percent',20.000000,1,0,1),(83,1,0,0,2,745,'by_percent',20.000000,1,0,1),(84,1,0,0,3,745,'by_percent',20.000000,1,0,1),(85,1,0,0,0,746,'by_percent',20.000000,1,0,1),(86,1,0,0,1,746,'by_percent',20.000000,1,0,1),(87,1,0,0,2,746,'by_percent',20.000000,1,0,1),(88,1,0,0,3,746,'by_percent',20.000000,1,0,1),(89,1,0,0,0,747,'by_percent',20.000000,1,0,1),(90,1,0,0,1,747,'by_percent',20.000000,1,0,1),(91,1,0,0,2,747,'by_percent',20.000000,1,0,1),(92,1,0,0,3,747,'by_percent',20.000000,1,0,1),(93,1,0,0,0,748,'by_percent',20.000000,1,0,1),(94,1,0,0,1,748,'by_percent',20.000000,1,0,1),(95,1,0,0,2,748,'by_percent',20.000000,1,0,1),(96,1,0,0,3,748,'by_percent',20.000000,1,0,1),(97,1,0,0,0,749,'by_percent',20.000000,1,0,1),(98,1,0,0,1,749,'by_percent',20.000000,1,0,1),(99,1,0,0,2,749,'by_percent',20.000000,1,0,1),(100,1,0,0,3,749,'by_percent',20.000000,1,0,1),(101,1,0,0,0,750,'by_percent',20.000000,1,0,1),(102,1,0,0,1,750,'by_percent',20.000000,1,0,1),(103,1,0,0,2,750,'by_percent',20.000000,1,0,1),(104,1,0,0,3,750,'by_percent',20.000000,1,0,1),(105,1,0,0,0,751,'by_percent',20.000000,1,0,1),(106,1,0,0,1,751,'by_percent',20.000000,1,0,1),(107,1,0,0,2,751,'by_percent',20.000000,1,0,1),(108,1,0,0,3,751,'by_percent',20.000000,1,0,1),(109,1,0,0,0,752,'by_percent',20.000000,1,0,1),(110,1,0,0,1,752,'by_percent',20.000000,1,0,1),(111,1,0,0,2,752,'by_percent',20.000000,1,0,1),(112,1,0,0,3,752,'by_percent',20.000000,1,0,1),(113,1,0,0,0,753,'by_percent',20.000000,1,0,1),(114,1,0,0,1,753,'by_percent',20.000000,1,0,1),(115,1,0,0,2,753,'by_percent',20.000000,1,0,1),(116,1,0,0,3,753,'by_percent',20.000000,1,0,1),(117,1,0,0,0,754,'by_percent',20.000000,1,0,1),(118,1,0,0,1,754,'by_percent',20.000000,1,0,1),(119,1,0,0,2,754,'by_percent',20.000000,1,0,1),(120,1,0,0,3,754,'by_percent',20.000000,1,0,1),(121,1,0,0,0,755,'by_percent',20.000000,1,0,1),(122,1,0,0,1,755,'by_percent',20.000000,1,0,1),(123,1,0,0,2,755,'by_percent',20.000000,1,0,1),(124,1,0,0,3,755,'by_percent',20.000000,1,0,1),(125,1,0,0,0,756,'by_percent',20.000000,1,0,1),(126,1,0,0,1,756,'by_percent',20.000000,1,0,1),(127,1,0,0,2,756,'by_percent',20.000000,1,0,1),(128,1,0,0,3,756,'by_percent',20.000000,1,0,1),(129,1,0,0,0,757,'by_percent',20.000000,1,0,1),(130,1,0,0,1,757,'by_percent',20.000000,1,0,1),(131,1,0,0,2,757,'by_percent',20.000000,1,0,1),(132,1,0,0,3,757,'by_percent',20.000000,1,0,1),(133,1,0,0,0,758,'by_percent',20.000000,1,0,1),(134,1,0,0,1,758,'by_percent',20.000000,1,0,1),(135,1,0,0,2,758,'by_percent',20.000000,1,0,1),(136,1,0,0,3,758,'by_percent',20.000000,1,0,1),(137,1,0,0,0,759,'by_percent',20.000000,1,0,1),(138,1,0,0,1,759,'by_percent',20.000000,1,0,1),(139,1,0,0,2,759,'by_percent',20.000000,1,0,1),(140,1,0,0,3,759,'by_percent',20.000000,1,0,1),(141,1,0,0,0,760,'by_percent',20.000000,1,0,1),(142,1,0,0,1,760,'by_percent',20.000000,1,0,1),(143,1,0,0,2,760,'by_percent',20.000000,1,0,1),(144,1,0,0,3,760,'by_percent',20.000000,1,0,1),(145,1,0,0,0,761,'by_percent',20.000000,1,0,1),(146,1,0,0,1,761,'by_percent',20.000000,1,0,1),(147,1,0,0,2,761,'by_percent',20.000000,1,0,1),(148,1,0,0,3,761,'by_percent',20.000000,1,0,1),(149,1,0,0,0,762,'by_percent',20.000000,1,0,1),(150,1,0,0,1,762,'by_percent',20.000000,1,0,1),(151,1,0,0,2,762,'by_percent',20.000000,1,0,1),(152,1,0,0,3,762,'by_percent',20.000000,1,0,1),(153,1,0,0,0,763,'by_percent',20.000000,1,0,1),(154,1,0,0,1,763,'by_percent',20.000000,1,0,1),(155,1,0,0,2,763,'by_percent',20.000000,1,0,1),(156,1,0,0,3,763,'by_percent',20.000000,1,0,1),(157,1,0,0,0,764,'by_percent',20.000000,1,0,1),(158,1,0,0,1,764,'by_percent',20.000000,1,0,1),(159,1,0,0,2,764,'by_percent',20.000000,1,0,1),(160,1,0,0,3,764,'by_percent',20.000000,1,0,1),(161,1,0,0,0,765,'by_percent',20.000000,1,0,1),(162,1,0,0,1,765,'by_percent',20.000000,1,0,1),(163,1,0,0,2,765,'by_percent',20.000000,1,0,1),(164,1,0,0,3,765,'by_percent',20.000000,1,0,1),(165,1,0,0,0,766,'by_percent',20.000000,1,0,1),(166,1,0,0,1,766,'by_percent',20.000000,1,0,1),(167,1,0,0,2,766,'by_percent',20.000000,1,0,1),(168,1,0,0,3,766,'by_percent',20.000000,1,0,1),(169,1,0,0,0,767,'by_percent',20.000000,1,0,1),(170,1,0,0,1,767,'by_percent',20.000000,1,0,1),(171,1,0,0,2,767,'by_percent',20.000000,1,0,1),(172,1,0,0,3,767,'by_percent',20.000000,1,0,1),(173,1,0,0,0,768,'by_percent',20.000000,1,0,1),(174,1,0,0,1,768,'by_percent',20.000000,1,0,1),(175,1,0,0,2,768,'by_percent',20.000000,1,0,1),(176,1,0,0,3,768,'by_percent',20.000000,1,0,1),(177,1,0,0,0,769,'by_percent',20.000000,1,0,1),(178,1,0,0,1,769,'by_percent',20.000000,1,0,1),(179,1,0,0,2,769,'by_percent',20.000000,1,0,1),(180,1,0,0,3,769,'by_percent',20.000000,1,0,1),(181,1,0,0,0,770,'by_percent',20.000000,1,0,1),(182,1,0,0,1,770,'by_percent',20.000000,1,0,1),(183,1,0,0,2,770,'by_percent',20.000000,1,0,1),(184,1,0,0,3,770,'by_percent',20.000000,1,0,1),(185,1,0,0,0,771,'by_percent',20.000000,1,0,1),(186,1,0,0,1,771,'by_percent',20.000000,1,0,1),(187,1,0,0,2,771,'by_percent',20.000000,1,0,1),(188,1,0,0,3,771,'by_percent',20.000000,1,0,1),(189,1,0,0,0,772,'by_percent',20.000000,1,0,1),(190,1,0,0,1,772,'by_percent',20.000000,1,0,1),(191,1,0,0,2,772,'by_percent',20.000000,1,0,1),(192,1,0,0,3,772,'by_percent',20.000000,1,0,1),(193,1,0,0,0,773,'by_percent',20.000000,1,0,1),(194,1,0,0,1,773,'by_percent',20.000000,1,0,1),(195,1,0,0,2,773,'by_percent',20.000000,1,0,1),(196,1,0,0,3,773,'by_percent',20.000000,1,0,1),(197,1,0,0,0,774,'by_percent',20.000000,1,0,1),(198,1,0,0,1,774,'by_percent',20.000000,1,0,1),(199,1,0,0,2,774,'by_percent',20.000000,1,0,1),(200,1,0,0,3,774,'by_percent',20.000000,1,0,1),(201,1,0,0,0,775,'by_percent',20.000000,1,0,1),(202,1,0,0,1,775,'by_percent',20.000000,1,0,1),(203,1,0,0,2,775,'by_percent',20.000000,1,0,1),(204,1,0,0,3,775,'by_percent',20.000000,1,0,1),(205,1,0,0,0,776,'by_percent',20.000000,1,0,1),(206,1,0,0,1,776,'by_percent',20.000000,1,0,1),(207,1,0,0,2,776,'by_percent',20.000000,1,0,1),(208,1,0,0,3,776,'by_percent',20.000000,1,0,1),(209,1,0,0,0,777,'by_percent',20.000000,1,0,1),(210,1,0,0,1,777,'by_percent',20.000000,1,0,1),(211,1,0,0,2,777,'by_percent',20.000000,1,0,1),(212,1,0,0,3,777,'by_percent',20.000000,1,0,1),(213,1,0,0,0,778,'by_percent',20.000000,1,0,1),(214,1,0,0,1,778,'by_percent',20.000000,1,0,1),(215,1,0,0,2,778,'by_percent',20.000000,1,0,1),(216,1,0,0,3,778,'by_percent',20.000000,1,0,1),(217,1,0,0,0,779,'by_percent',20.000000,1,0,1),(218,1,0,0,1,779,'by_percent',20.000000,1,0,1),(219,1,0,0,2,779,'by_percent',20.000000,1,0,1),(220,1,0,0,3,779,'by_percent',20.000000,1,0,1),(221,1,0,0,0,780,'by_percent',20.000000,1,0,1),(222,1,0,0,1,780,'by_percent',20.000000,1,0,1),(223,1,0,0,2,780,'by_percent',20.000000,1,0,1),(224,1,0,0,3,780,'by_percent',20.000000,1,0,1),(225,1,0,0,0,781,'by_percent',20.000000,1,0,1),(226,1,0,0,1,781,'by_percent',20.000000,1,0,1),(227,1,0,0,2,781,'by_percent',20.000000,1,0,1),(228,1,0,0,3,781,'by_percent',20.000000,1,0,1),(229,1,0,0,0,782,'by_percent',20.000000,1,0,1),(230,1,0,0,1,782,'by_percent',20.000000,1,0,1),(231,1,0,0,2,782,'by_percent',20.000000,1,0,1),(232,1,0,0,3,782,'by_percent',20.000000,1,0,1),(233,1,0,0,0,783,'by_percent',20.000000,1,0,1),(234,1,0,0,1,783,'by_percent',20.000000,1,0,1),(235,1,0,0,2,783,'by_percent',20.000000,1,0,1),(236,1,0,0,3,783,'by_percent',20.000000,1,0,1),(237,1,0,0,0,784,'by_percent',20.000000,1,0,1),(238,1,0,0,1,784,'by_percent',20.000000,1,0,1),(239,1,0,0,2,784,'by_percent',20.000000,1,0,1),(240,1,0,0,3,784,'by_percent',20.000000,1,0,1),(241,1,0,0,0,785,'by_percent',20.000000,1,0,1),(242,1,0,0,1,785,'by_percent',20.000000,1,0,1),(243,1,0,0,2,785,'by_percent',20.000000,1,0,1),(244,1,0,0,3,785,'by_percent',20.000000,1,0,1),(245,1,0,0,0,786,'by_percent',20.000000,1,0,1),(246,1,0,0,1,786,'by_percent',20.000000,1,0,1),(247,1,0,0,2,786,'by_percent',20.000000,1,0,1),(248,1,0,0,3,786,'by_percent',20.000000,1,0,1),(249,1,0,0,0,787,'by_percent',20.000000,1,0,1),(250,1,0,0,1,787,'by_percent',20.000000,1,0,1),(251,1,0,0,2,787,'by_percent',20.000000,1,0,1),(252,1,0,0,3,787,'by_percent',20.000000,1,0,1),(253,1,0,0,0,788,'by_percent',20.000000,1,0,1),(254,1,0,0,1,788,'by_percent',20.000000,1,0,1),(255,1,0,0,2,788,'by_percent',20.000000,1,0,1),(256,1,0,0,3,788,'by_percent',20.000000,1,0,1),(257,1,0,0,0,789,'by_percent',20.000000,1,0,1),(258,1,0,0,1,789,'by_percent',20.000000,1,0,1),(259,1,0,0,2,789,'by_percent',20.000000,1,0,1),(260,1,0,0,3,789,'by_percent',20.000000,1,0,1),(261,1,0,0,0,790,'by_percent',20.000000,1,0,1),(262,1,0,0,1,790,'by_percent',20.000000,1,0,1),(263,1,0,0,2,790,'by_percent',20.000000,1,0,1),(264,1,0,0,3,790,'by_percent',20.000000,1,0,1),(265,1,0,0,0,791,'by_percent',20.000000,1,0,1),(266,1,0,0,1,791,'by_percent',20.000000,1,0,1),(267,1,0,0,2,791,'by_percent',20.000000,1,0,1),(268,1,0,0,3,791,'by_percent',20.000000,1,0,1),(269,1,0,0,0,792,'by_percent',20.000000,1,0,1),(270,1,0,0,1,792,'by_percent',20.000000,1,0,1),(271,1,0,0,2,792,'by_percent',20.000000,1,0,1),(272,1,0,0,3,792,'by_percent',20.000000,1,0,1),(273,1,0,0,0,793,'by_percent',20.000000,1,0,1),(274,1,0,0,1,793,'by_percent',20.000000,1,0,1),(275,1,0,0,2,793,'by_percent',20.000000,1,0,1),(276,1,0,0,3,793,'by_percent',20.000000,1,0,1),(277,1,0,0,0,794,'by_percent',20.000000,1,0,1),(278,1,0,0,1,794,'by_percent',20.000000,1,0,1),(279,1,0,0,2,794,'by_percent',20.000000,1,0,1),(280,1,0,0,3,794,'by_percent',20.000000,1,0,1),(281,1,0,0,0,795,'by_percent',20.000000,1,0,1),(282,1,0,0,1,795,'by_percent',20.000000,1,0,1),(283,1,0,0,2,795,'by_percent',20.000000,1,0,1),(284,1,0,0,3,795,'by_percent',20.000000,1,0,1),(285,1,0,0,0,796,'by_percent',20.000000,1,0,1),(286,1,0,0,1,796,'by_percent',20.000000,1,0,1),(287,1,0,0,2,796,'by_percent',20.000000,1,0,1),(288,1,0,0,3,796,'by_percent',20.000000,1,0,1),(289,1,0,0,0,797,'by_percent',20.000000,1,0,1),(290,1,0,0,1,797,'by_percent',20.000000,1,0,1),(291,1,0,0,2,797,'by_percent',20.000000,1,0,1),(292,1,0,0,3,797,'by_percent',20.000000,1,0,1),(293,1,0,0,0,798,'by_percent',20.000000,1,0,1),(294,1,0,0,1,798,'by_percent',20.000000,1,0,1),(295,1,0,0,2,798,'by_percent',20.000000,1,0,1),(296,1,0,0,3,798,'by_percent',20.000000,1,0,1),(297,1,0,0,0,799,'by_percent',20.000000,1,0,1),(298,1,0,0,1,799,'by_percent',20.000000,1,0,1),(299,1,0,0,2,799,'by_percent',20.000000,1,0,1),(300,1,0,0,3,799,'by_percent',20.000000,1,0,1),(301,1,0,0,0,800,'by_percent',20.000000,1,0,1),(302,1,0,0,1,800,'by_percent',20.000000,1,0,1),(303,1,0,0,2,800,'by_percent',20.000000,1,0,1),(304,1,0,0,3,800,'by_percent',20.000000,1,0,1),(305,1,0,0,0,801,'by_percent',20.000000,1,0,1),(306,1,0,0,1,801,'by_percent',20.000000,1,0,1),(307,1,0,0,2,801,'by_percent',20.000000,1,0,1),(308,1,0,0,3,801,'by_percent',20.000000,1,0,1),(309,1,0,0,0,802,'by_percent',20.000000,1,0,1),(310,1,0,0,1,802,'by_percent',20.000000,1,0,1),(311,1,0,0,2,802,'by_percent',20.000000,1,0,1),(312,1,0,0,3,802,'by_percent',20.000000,1,0,1),(313,1,0,0,0,803,'by_percent',20.000000,1,0,1),(314,1,0,0,1,803,'by_percent',20.000000,1,0,1),(315,1,0,0,2,803,'by_percent',20.000000,1,0,1),(316,1,0,0,3,803,'by_percent',20.000000,1,0,1),(317,1,0,0,0,804,'by_percent',20.000000,1,0,1),(318,1,0,0,1,804,'by_percent',20.000000,1,0,1),(319,1,0,0,2,804,'by_percent',20.000000,1,0,1),(320,1,0,0,3,804,'by_percent',20.000000,1,0,1),(321,1,0,0,0,805,'by_percent',20.000000,1,0,1),(322,1,0,0,1,805,'by_percent',20.000000,1,0,1),(323,1,0,0,2,805,'by_percent',20.000000,1,0,1),(324,1,0,0,3,805,'by_percent',20.000000,1,0,1),(325,1,0,0,0,806,'by_percent',20.000000,1,0,1),(326,1,0,0,1,806,'by_percent',20.000000,1,0,1),(327,1,0,0,2,806,'by_percent',20.000000,1,0,1),(328,1,0,0,3,806,'by_percent',20.000000,1,0,1),(329,1,0,0,0,807,'by_percent',20.000000,1,0,1),(330,1,0,0,1,807,'by_percent',20.000000,1,0,1),(331,1,0,0,2,807,'by_percent',20.000000,1,0,1),(332,1,0,0,3,807,'by_percent',20.000000,1,0,1),(333,1,0,0,0,808,'by_percent',20.000000,1,0,1),(334,1,0,0,1,808,'by_percent',20.000000,1,0,1),(335,1,0,0,2,808,'by_percent',20.000000,1,0,1),(336,1,0,0,3,808,'by_percent',20.000000,1,0,1),(337,1,0,0,0,809,'by_percent',20.000000,1,0,1),(338,1,0,0,1,809,'by_percent',20.000000,1,0,1),(339,1,0,0,2,809,'by_percent',20.000000,1,0,1),(340,1,0,0,3,809,'by_percent',20.000000,1,0,1),(341,1,0,0,0,810,'by_percent',20.000000,1,0,1),(342,1,0,0,1,810,'by_percent',20.000000,1,0,1),(343,1,0,0,2,810,'by_percent',20.000000,1,0,1),(344,1,0,0,3,810,'by_percent',20.000000,1,0,1),(345,1,0,0,0,811,'by_percent',20.000000,1,0,1),(346,1,0,0,1,811,'by_percent',20.000000,1,0,1),(347,1,0,0,2,811,'by_percent',20.000000,1,0,1),(348,1,0,0,3,811,'by_percent',20.000000,1,0,1),(349,1,0,0,0,812,'by_percent',20.000000,1,0,1),(350,1,0,0,1,812,'by_percent',20.000000,1,0,1),(351,1,0,0,2,812,'by_percent',20.000000,1,0,1),(352,1,0,0,3,812,'by_percent',20.000000,1,0,1),(353,1,0,0,0,813,'by_percent',20.000000,1,0,1),(354,1,0,0,1,813,'by_percent',20.000000,1,0,1),(355,1,0,0,2,813,'by_percent',20.000000,1,0,1),(356,1,0,0,3,813,'by_percent',20.000000,1,0,1),(357,1,0,0,0,814,'by_percent',20.000000,1,0,1),(358,1,0,0,1,814,'by_percent',20.000000,1,0,1),(359,1,0,0,2,814,'by_percent',20.000000,1,0,1),(360,1,0,0,3,814,'by_percent',20.000000,1,0,1),(361,1,0,0,0,815,'by_percent',20.000000,1,0,1),(362,1,0,0,1,815,'by_percent',20.000000,1,0,1),(363,1,0,0,2,815,'by_percent',20.000000,1,0,1),(364,1,0,0,3,815,'by_percent',20.000000,1,0,1),(365,1,0,0,0,816,'by_percent',20.000000,1,0,1),(366,1,0,0,1,816,'by_percent',20.000000,1,0,1),(367,1,0,0,2,816,'by_percent',20.000000,1,0,1),(368,1,0,0,3,816,'by_percent',20.000000,1,0,1),(369,1,0,0,0,817,'by_percent',20.000000,1,0,1),(370,1,0,0,1,817,'by_percent',20.000000,1,0,1),(371,1,0,0,2,817,'by_percent',20.000000,1,0,1),(372,1,0,0,3,817,'by_percent',20.000000,1,0,1),(373,1,0,0,0,818,'by_percent',20.000000,1,0,1),(374,1,0,0,1,818,'by_percent',20.000000,1,0,1),(375,1,0,0,2,818,'by_percent',20.000000,1,0,1),(376,1,0,0,3,818,'by_percent',20.000000,1,0,1),(377,1,0,0,0,819,'by_percent',20.000000,1,0,1),(378,1,0,0,1,819,'by_percent',20.000000,1,0,1),(379,1,0,0,2,819,'by_percent',20.000000,1,0,1),(380,1,0,0,3,819,'by_percent',20.000000,1,0,1),(381,1,0,0,0,820,'by_percent',20.000000,1,0,1),(382,1,0,0,1,820,'by_percent',20.000000,1,0,1),(383,1,0,0,2,820,'by_percent',20.000000,1,0,1),(384,1,0,0,3,820,'by_percent',20.000000,1,0,1),(385,1,0,0,0,821,'by_percent',20.000000,1,0,1),(386,1,0,0,1,821,'by_percent',20.000000,1,0,1),(387,1,0,0,2,821,'by_percent',20.000000,1,0,1),(388,1,0,0,3,821,'by_percent',20.000000,1,0,1),(389,1,0,0,0,822,'by_percent',20.000000,1,0,1),(390,1,0,0,1,822,'by_percent',20.000000,1,0,1),(391,1,0,0,2,822,'by_percent',20.000000,1,0,1),(392,1,0,0,3,822,'by_percent',20.000000,1,0,1),(393,1,0,0,0,823,'by_percent',20.000000,1,0,1),(394,1,0,0,1,823,'by_percent',20.000000,1,0,1),(395,1,0,0,2,823,'by_percent',20.000000,1,0,1),(396,1,0,0,3,823,'by_percent',20.000000,1,0,1),(397,1,0,0,0,824,'by_percent',20.000000,1,0,1),(398,1,0,0,1,824,'by_percent',20.000000,1,0,1),(399,1,0,0,2,824,'by_percent',20.000000,1,0,1),(400,1,0,0,3,824,'by_percent',20.000000,1,0,1),(401,1,0,0,0,825,'by_percent',20.000000,1,0,1),(402,1,0,0,1,825,'by_percent',20.000000,1,0,1),(403,1,0,0,2,825,'by_percent',20.000000,1,0,1),(404,1,0,0,3,825,'by_percent',20.000000,1,0,1),(405,1,0,0,0,826,'by_percent',20.000000,1,0,1),(406,1,0,0,1,826,'by_percent',20.000000,1,0,1),(407,1,0,0,2,826,'by_percent',20.000000,1,0,1),(408,1,0,0,3,826,'by_percent',20.000000,1,0,1),(409,1,0,0,0,827,'by_percent',20.000000,1,0,1),(410,1,0,0,1,827,'by_percent',20.000000,1,0,1),(411,1,0,0,2,827,'by_percent',20.000000,1,0,1),(412,1,0,0,3,827,'by_percent',20.000000,1,0,1),(413,1,0,0,0,828,'by_percent',20.000000,1,0,1),(414,1,0,0,1,828,'by_percent',20.000000,1,0,1),(415,1,0,0,2,828,'by_percent',20.000000,1,0,1),(416,1,0,0,3,828,'by_percent',20.000000,1,0,1),(417,1,0,0,0,829,'by_percent',20.000000,1,0,1),(418,1,0,0,1,829,'by_percent',20.000000,1,0,1),(419,1,0,0,2,829,'by_percent',20.000000,1,0,1),(420,1,0,0,3,829,'by_percent',20.000000,1,0,1),(421,1,0,0,0,830,'by_percent',20.000000,1,0,1),(422,1,0,0,1,830,'by_percent',20.000000,1,0,1),(423,1,0,0,2,830,'by_percent',20.000000,1,0,1),(424,1,0,0,3,830,'by_percent',20.000000,1,0,1),(425,1,0,0,0,831,'by_percent',20.000000,1,0,1),(426,1,0,0,1,831,'by_percent',20.000000,1,0,1),(427,1,0,0,2,831,'by_percent',20.000000,1,0,1),(428,1,0,0,3,831,'by_percent',20.000000,1,0,1),(429,1,0,0,0,832,'by_percent',20.000000,1,0,1),(430,1,0,0,1,832,'by_percent',20.000000,1,0,1),(431,1,0,0,2,832,'by_percent',20.000000,1,0,1),(432,1,0,0,3,832,'by_percent',20.000000,1,0,1),(433,1,0,0,0,833,'by_percent',20.000000,1,0,1),(434,1,0,0,1,833,'by_percent',20.000000,1,0,1),(435,1,0,0,2,833,'by_percent',20.000000,1,0,1),(436,1,0,0,3,833,'by_percent',20.000000,1,0,1),(437,1,0,0,0,834,'by_percent',20.000000,1,0,1),(438,1,0,0,1,834,'by_percent',20.000000,1,0,1),(439,1,0,0,2,834,'by_percent',20.000000,1,0,1),(440,1,0,0,3,834,'by_percent',20.000000,1,0,1),(441,1,0,0,0,835,'by_percent',20.000000,1,0,1),(442,1,0,0,1,835,'by_percent',20.000000,1,0,1),(443,1,0,0,2,835,'by_percent',20.000000,1,0,1),(444,1,0,0,3,835,'by_percent',20.000000,1,0,1),(445,1,0,0,0,836,'by_percent',20.000000,1,0,1),(446,1,0,0,1,836,'by_percent',20.000000,1,0,1),(447,1,0,0,2,836,'by_percent',20.000000,1,0,1),(448,1,0,0,3,836,'by_percent',20.000000,1,0,1),(449,1,0,0,0,837,'by_percent',20.000000,1,0,1),(450,1,0,0,1,837,'by_percent',20.000000,1,0,1),(451,1,0,0,2,837,'by_percent',20.000000,1,0,1),(452,1,0,0,3,837,'by_percent',20.000000,1,0,1),(453,1,0,0,0,838,'by_percent',20.000000,1,0,1),(454,1,0,0,1,838,'by_percent',20.000000,1,0,1),(455,1,0,0,2,838,'by_percent',20.000000,1,0,1),(456,1,0,0,3,838,'by_percent',20.000000,1,0,1),(457,1,0,0,0,839,'by_percent',20.000000,1,0,1),(458,1,0,0,1,839,'by_percent',20.000000,1,0,1),(459,1,0,0,2,839,'by_percent',20.000000,1,0,1),(460,1,0,0,3,839,'by_percent',20.000000,1,0,1),(461,1,0,0,0,840,'by_percent',20.000000,1,0,1),(462,1,0,0,1,840,'by_percent',20.000000,1,0,1),(463,1,0,0,2,840,'by_percent',20.000000,1,0,1),(464,1,0,0,3,840,'by_percent',20.000000,1,0,1),(465,1,0,0,0,841,'by_percent',20.000000,1,0,1),(466,1,0,0,1,841,'by_percent',20.000000,1,0,1),(467,1,0,0,2,841,'by_percent',20.000000,1,0,1),(468,1,0,0,3,841,'by_percent',20.000000,1,0,1),(469,1,0,0,0,842,'by_percent',20.000000,1,0,1),(470,1,0,0,1,842,'by_percent',20.000000,1,0,1),(471,1,0,0,2,842,'by_percent',20.000000,1,0,1),(472,1,0,0,3,842,'by_percent',20.000000,1,0,1),(473,1,0,0,0,843,'by_percent',20.000000,1,0,1),(474,1,0,0,1,843,'by_percent',20.000000,1,0,1),(475,1,0,0,2,843,'by_percent',20.000000,1,0,1),(476,1,0,0,3,843,'by_percent',20.000000,1,0,1),(477,1,0,0,0,844,'by_percent',20.000000,1,0,1),(478,1,0,0,1,844,'by_percent',20.000000,1,0,1),(479,1,0,0,2,844,'by_percent',20.000000,1,0,1),(480,1,0,0,3,844,'by_percent',20.000000,1,0,1),(481,1,0,0,0,845,'by_percent',20.000000,1,0,1),(482,1,0,0,1,845,'by_percent',20.000000,1,0,1),(483,1,0,0,2,845,'by_percent',20.000000,1,0,1),(484,1,0,0,3,845,'by_percent',20.000000,1,0,1),(485,1,0,0,0,846,'by_percent',20.000000,1,0,1),(486,1,0,0,1,846,'by_percent',20.000000,1,0,1),(487,1,0,0,2,846,'by_percent',20.000000,1,0,1),(488,1,0,0,3,846,'by_percent',20.000000,1,0,1),(489,1,0,0,0,847,'by_percent',20.000000,1,0,1),(490,1,0,0,1,847,'by_percent',20.000000,1,0,1),(491,1,0,0,2,847,'by_percent',20.000000,1,0,1),(492,1,0,0,3,847,'by_percent',20.000000,1,0,1),(493,1,0,0,0,848,'by_percent',20.000000,1,0,1),(494,1,0,0,1,848,'by_percent',20.000000,1,0,1),(495,1,0,0,2,848,'by_percent',20.000000,1,0,1),(496,1,0,0,3,848,'by_percent',20.000000,1,0,1),(497,1,0,0,0,849,'by_percent',20.000000,1,0,1),(498,1,0,0,1,849,'by_percent',20.000000,1,0,1),(499,1,0,0,2,849,'by_percent',20.000000,1,0,1),(500,1,0,0,3,849,'by_percent',20.000000,1,0,1),(501,1,0,0,0,850,'by_percent',20.000000,1,0,1),(502,1,0,0,1,850,'by_percent',20.000000,1,0,1),(503,1,0,0,2,850,'by_percent',20.000000,1,0,1),(504,1,0,0,3,850,'by_percent',20.000000,1,0,1),(505,1,0,0,0,851,'by_percent',20.000000,1,0,1),(506,1,0,0,1,851,'by_percent',20.000000,1,0,1),(507,1,0,0,2,851,'by_percent',20.000000,1,0,1),(508,1,0,0,3,851,'by_percent',20.000000,1,0,1),(509,1,0,0,0,852,'by_percent',20.000000,1,0,1),(510,1,0,0,1,852,'by_percent',20.000000,1,0,1),(511,1,0,0,2,852,'by_percent',20.000000,1,0,1),(512,1,0,0,3,852,'by_percent',20.000000,1,0,1),(513,1,0,0,0,853,'by_percent',20.000000,1,0,1),(514,1,0,0,1,853,'by_percent',20.000000,1,0,1),(515,1,0,0,2,853,'by_percent',20.000000,1,0,1),(516,1,0,0,3,853,'by_percent',20.000000,1,0,1),(517,1,0,0,0,854,'by_percent',20.000000,1,0,1),(518,1,0,0,1,854,'by_percent',20.000000,1,0,1),(519,1,0,0,2,854,'by_percent',20.000000,1,0,1),(520,1,0,0,3,854,'by_percent',20.000000,1,0,1),(521,1,0,0,0,855,'by_percent',20.000000,1,0,1),(522,1,0,0,1,855,'by_percent',20.000000,1,0,1),(523,1,0,0,2,855,'by_percent',20.000000,1,0,1),(524,1,0,0,3,855,'by_percent',20.000000,1,0,1),(525,1,0,0,0,856,'by_percent',20.000000,1,0,1),(526,1,0,0,1,856,'by_percent',20.000000,1,0,1),(527,1,0,0,2,856,'by_percent',20.000000,1,0,1),(528,1,0,0,3,856,'by_percent',20.000000,1,0,1),(529,1,0,0,0,857,'by_percent',20.000000,1,0,1),(530,1,0,0,1,857,'by_percent',20.000000,1,0,1),(531,1,0,0,2,857,'by_percent',20.000000,1,0,1),(532,1,0,0,3,857,'by_percent',20.000000,1,0,1),(533,1,0,0,0,858,'by_percent',20.000000,1,0,1),(534,1,0,0,1,858,'by_percent',20.000000,1,0,1),(535,1,0,0,2,858,'by_percent',20.000000,1,0,1),(536,1,0,0,3,858,'by_percent',20.000000,1,0,1),(537,1,0,0,0,859,'by_percent',20.000000,1,0,1),(538,1,0,0,1,859,'by_percent',20.000000,1,0,1),(539,1,0,0,2,859,'by_percent',20.000000,1,0,1),(540,1,0,0,3,859,'by_percent',20.000000,1,0,1),(541,1,0,0,0,860,'by_percent',20.000000,1,0,1),(542,1,0,0,1,860,'by_percent',20.000000,1,0,1),(543,1,0,0,2,860,'by_percent',20.000000,1,0,1),(544,1,0,0,3,860,'by_percent',20.000000,1,0,1),(545,1,0,0,0,861,'by_percent',20.000000,1,0,1),(546,1,0,0,1,861,'by_percent',20.000000,1,0,1),(547,1,0,0,2,861,'by_percent',20.000000,1,0,1),(548,1,0,0,3,861,'by_percent',20.000000,1,0,1),(549,1,0,0,0,862,'by_percent',20.000000,1,0,1),(550,1,0,0,1,862,'by_percent',20.000000,1,0,1),(551,1,0,0,2,862,'by_percent',20.000000,1,0,1),(552,1,0,0,3,862,'by_percent',20.000000,1,0,1),(553,1,0,0,0,863,'by_percent',20.000000,1,0,1),(554,1,0,0,1,863,'by_percent',20.000000,1,0,1),(555,1,0,0,2,863,'by_percent',20.000000,1,0,1),(556,1,0,0,3,863,'by_percent',20.000000,1,0,1),(557,1,0,0,0,864,'by_percent',20.000000,1,0,1),(558,1,0,0,1,864,'by_percent',20.000000,1,0,1),(559,1,0,0,2,864,'by_percent',20.000000,1,0,1),(560,1,0,0,3,864,'by_percent',20.000000,1,0,1),(561,1,0,0,0,865,'by_percent',20.000000,1,0,1),(562,1,0,0,1,865,'by_percent',20.000000,1,0,1),(563,1,0,0,2,865,'by_percent',20.000000,1,0,1),(564,1,0,0,3,865,'by_percent',20.000000,1,0,1),(565,1,0,0,0,866,'by_percent',20.000000,1,0,1),(566,1,0,0,1,866,'by_percent',20.000000,1,0,1),(567,1,0,0,2,866,'by_percent',20.000000,1,0,1),(568,1,0,0,3,866,'by_percent',20.000000,1,0,1),(569,1,0,0,0,867,'by_percent',20.000000,1,0,1),(570,1,0,0,1,867,'by_percent',20.000000,1,0,1),(571,1,0,0,2,867,'by_percent',20.000000,1,0,1),(572,1,0,0,3,867,'by_percent',20.000000,1,0,1),(573,1,0,0,0,868,'by_percent',20.000000,1,0,1),(574,1,0,0,1,868,'by_percent',20.000000,1,0,1),(575,1,0,0,2,868,'by_percent',20.000000,1,0,1),(576,1,0,0,3,868,'by_percent',20.000000,1,0,1),(577,1,0,0,0,869,'by_percent',20.000000,1,0,1),(578,1,0,0,1,869,'by_percent',20.000000,1,0,1),(579,1,0,0,2,869,'by_percent',20.000000,1,0,1),(580,1,0,0,3,869,'by_percent',20.000000,1,0,1),(581,1,0,0,0,870,'by_percent',20.000000,1,0,1),(582,1,0,0,1,870,'by_percent',20.000000,1,0,1),(583,1,0,0,2,870,'by_percent',20.000000,1,0,1),(584,1,0,0,3,870,'by_percent',20.000000,1,0,1),(585,1,0,0,0,871,'by_percent',20.000000,1,0,1),(586,1,0,0,1,871,'by_percent',20.000000,1,0,1),(587,1,0,0,2,871,'by_percent',20.000000,1,0,1),(588,1,0,0,3,871,'by_percent',20.000000,1,0,1),(589,1,0,0,0,872,'by_percent',20.000000,1,0,1),(590,1,0,0,1,872,'by_percent',20.000000,1,0,1),(591,1,0,0,2,872,'by_percent',20.000000,1,0,1),(592,1,0,0,3,872,'by_percent',20.000000,1,0,1),(593,1,0,0,0,873,'by_percent',20.000000,1,0,1),(594,1,0,0,1,873,'by_percent',20.000000,1,0,1),(595,1,0,0,2,873,'by_percent',20.000000,1,0,1),(596,1,0,0,3,873,'by_percent',20.000000,1,0,1),(597,1,0,0,0,874,'by_percent',20.000000,1,0,1),(598,1,0,0,1,874,'by_percent',20.000000,1,0,1),(599,1,0,0,2,874,'by_percent',20.000000,1,0,1),(600,1,0,0,3,874,'by_percent',20.000000,1,0,1),(601,1,0,0,0,875,'by_percent',20.000000,1,0,1),(602,1,0,0,1,875,'by_percent',20.000000,1,0,1),(603,1,0,0,2,875,'by_percent',20.000000,1,0,1),(604,1,0,0,3,875,'by_percent',20.000000,1,0,1),(605,1,0,0,0,876,'by_percent',20.000000,1,0,1),(606,1,0,0,1,876,'by_percent',20.000000,1,0,1),(607,1,0,0,2,876,'by_percent',20.000000,1,0,1),(608,1,0,0,3,876,'by_percent',20.000000,1,0,1),(609,1,0,0,0,877,'by_percent',20.000000,1,0,1),(610,1,0,0,1,877,'by_percent',20.000000,1,0,1),(611,1,0,0,2,877,'by_percent',20.000000,1,0,1),(612,1,0,0,3,877,'by_percent',20.000000,1,0,1),(613,1,0,0,0,878,'by_percent',20.000000,1,0,1),(614,1,0,0,1,878,'by_percent',20.000000,1,0,1),(615,1,0,0,2,878,'by_percent',20.000000,1,0,1),(616,1,0,0,3,878,'by_percent',20.000000,1,0,1),(617,1,0,0,0,879,'by_percent',20.000000,1,0,1),(618,1,0,0,1,879,'by_percent',20.000000,1,0,1),(619,1,0,0,2,879,'by_percent',20.000000,1,0,1),(620,1,0,0,3,879,'by_percent',20.000000,1,0,1),(621,1,0,0,0,880,'by_percent',20.000000,1,0,1),(622,1,0,0,1,880,'by_percent',20.000000,1,0,1),(623,1,0,0,2,880,'by_percent',20.000000,1,0,1),(624,1,0,0,3,880,'by_percent',20.000000,1,0,1),(625,1,0,0,0,1813,'by_percent',20.000000,1,0,1),(626,1,0,0,1,1813,'by_percent',20.000000,1,0,1),(627,1,0,0,2,1813,'by_percent',20.000000,1,0,1),(628,1,0,0,3,1813,'by_percent',20.000000,1,0,1),(629,1,0,0,0,1814,'by_percent',20.000000,1,0,1),(630,1,0,0,1,1814,'by_percent',20.000000,1,0,1),(631,1,0,0,2,1814,'by_percent',20.000000,1,0,1),(632,1,0,0,3,1814,'by_percent',20.000000,1,0,1),(633,1,0,0,0,1815,'by_percent',20.000000,1,0,1),(634,1,0,0,1,1815,'by_percent',20.000000,1,0,1),(635,1,0,0,2,1815,'by_percent',20.000000,1,0,1),(636,1,0,0,3,1815,'by_percent',20.000000,1,0,1),(637,1,0,0,0,1816,'by_percent',20.000000,1,0,1),(638,1,0,0,1,1816,'by_percent',20.000000,1,0,1),(639,1,0,0,2,1816,'by_percent',20.000000,1,0,1),(640,1,0,0,3,1816,'by_percent',20.000000,1,0,1),(641,1,0,0,0,1817,'by_percent',20.000000,1,0,1),(642,1,0,0,1,1817,'by_percent',20.000000,1,0,1),(643,1,0,0,2,1817,'by_percent',20.000000,1,0,1),(644,1,0,0,3,1817,'by_percent',20.000000,1,0,1),(645,1,0,0,0,1818,'by_percent',20.000000,1,0,1),(646,1,0,0,1,1818,'by_percent',20.000000,1,0,1),(647,1,0,0,2,1818,'by_percent',20.000000,1,0,1),(648,1,0,0,3,1818,'by_percent',20.000000,1,0,1),(649,1,0,0,0,1819,'by_percent',20.000000,1,0,1),(650,1,0,0,1,1819,'by_percent',20.000000,1,0,1),(651,1,0,0,2,1819,'by_percent',20.000000,1,0,1),(652,1,0,0,3,1819,'by_percent',20.000000,1,0,1),(653,1,0,0,0,1820,'by_percent',20.000000,1,0,1),(654,1,0,0,1,1820,'by_percent',20.000000,1,0,1),(655,1,0,0,2,1820,'by_percent',20.000000,1,0,1),(656,1,0,0,3,1820,'by_percent',20.000000,1,0,1),(657,1,0,0,0,1821,'by_percent',20.000000,1,0,1),(658,1,0,0,1,1821,'by_percent',20.000000,1,0,1),(659,1,0,0,2,1821,'by_percent',20.000000,1,0,1),(660,1,0,0,3,1821,'by_percent',20.000000,1,0,1),(661,1,0,0,0,1822,'by_percent',20.000000,1,0,1),(662,1,0,0,1,1822,'by_percent',20.000000,1,0,1),(663,1,0,0,2,1822,'by_percent',20.000000,1,0,1),(664,1,0,0,3,1822,'by_percent',20.000000,1,0,1),(665,1,0,0,0,1823,'by_percent',20.000000,1,0,1),(666,1,0,0,1,1823,'by_percent',20.000000,1,0,1),(667,1,0,0,2,1823,'by_percent',20.000000,1,0,1),(668,1,0,0,3,1823,'by_percent',20.000000,1,0,1),(669,1,0,0,0,1824,'by_percent',20.000000,1,0,1),(670,1,0,0,1,1824,'by_percent',20.000000,1,0,1),(671,1,0,0,2,1824,'by_percent',20.000000,1,0,1),(672,1,0,0,3,1824,'by_percent',20.000000,1,0,1),(673,1,0,0,0,1825,'by_percent',20.000000,1,0,1),(674,1,0,0,1,1825,'by_percent',20.000000,1,0,1),(675,1,0,0,2,1825,'by_percent',20.000000,1,0,1),(676,1,0,0,3,1825,'by_percent',20.000000,1,0,1),(677,1,0,0,0,1826,'by_percent',20.000000,1,0,1),(678,1,0,0,1,1826,'by_percent',20.000000,1,0,1),(679,1,0,0,2,1826,'by_percent',20.000000,1,0,1),(680,1,0,0,3,1826,'by_percent',20.000000,1,0,1),(681,1,0,0,0,1827,'by_percent',20.000000,1,0,1),(682,1,0,0,1,1827,'by_percent',20.000000,1,0,1),(683,1,0,0,2,1827,'by_percent',20.000000,1,0,1),(684,1,0,0,3,1827,'by_percent',20.000000,1,0,1),(685,1,0,0,0,1828,'by_percent',20.000000,1,0,1),(686,1,0,0,1,1828,'by_percent',20.000000,1,0,1),(687,1,0,0,2,1828,'by_percent',20.000000,1,0,1),(688,1,0,0,3,1828,'by_percent',20.000000,1,0,1),(689,1,0,0,0,1829,'by_percent',20.000000,1,0,1),(690,1,0,0,1,1829,'by_percent',20.000000,1,0,1),(691,1,0,0,2,1829,'by_percent',20.000000,1,0,1),(692,1,0,0,3,1829,'by_percent',20.000000,1,0,1),(693,1,0,0,0,1830,'by_percent',20.000000,1,0,1),(694,1,0,0,1,1830,'by_percent',20.000000,1,0,1),(695,1,0,0,2,1830,'by_percent',20.000000,1,0,1),(696,1,0,0,3,1830,'by_percent',20.000000,1,0,1),(697,1,0,0,0,1831,'by_percent',20.000000,1,0,1),(698,1,0,0,1,1831,'by_percent',20.000000,1,0,1),(699,1,0,0,2,1831,'by_percent',20.000000,1,0,1),(700,1,0,0,3,1831,'by_percent',20.000000,1,0,1),(701,1,0,0,0,1832,'by_percent',20.000000,1,0,1),(702,1,0,0,1,1832,'by_percent',20.000000,1,0,1),(703,1,0,0,2,1832,'by_percent',20.000000,1,0,1),(704,1,0,0,3,1832,'by_percent',20.000000,1,0,1),(705,1,0,0,0,1833,'by_percent',20.000000,1,0,1),(706,1,0,0,1,1833,'by_percent',20.000000,1,0,1),(707,1,0,0,2,1833,'by_percent',20.000000,1,0,1),(708,1,0,0,3,1833,'by_percent',20.000000,1,0,1),(709,1,0,0,0,1834,'by_percent',20.000000,1,0,1),(710,1,0,0,1,1834,'by_percent',20.000000,1,0,1),(711,1,0,0,2,1834,'by_percent',20.000000,1,0,1),(712,1,0,0,3,1834,'by_percent',20.000000,1,0,1),(713,1,0,0,0,1835,'by_percent',20.000000,1,0,1),(714,1,0,0,1,1835,'by_percent',20.000000,1,0,1),(715,1,0,0,2,1835,'by_percent',20.000000,1,0,1),(716,1,0,0,3,1835,'by_percent',20.000000,1,0,1),(717,1,0,0,0,1836,'by_percent',20.000000,1,0,1),(718,1,0,0,1,1836,'by_percent',20.000000,1,0,1),(719,1,0,0,2,1836,'by_percent',20.000000,1,0,1),(720,1,0,0,3,1836,'by_percent',20.000000,1,0,1),(721,1,0,0,0,1837,'by_percent',20.000000,1,0,1),(722,1,0,0,1,1837,'by_percent',20.000000,1,0,1),(723,1,0,0,2,1837,'by_percent',20.000000,1,0,1),(724,1,0,0,3,1837,'by_percent',20.000000,1,0,1),(725,1,0,0,0,1838,'by_percent',20.000000,1,0,1),(726,1,0,0,1,1838,'by_percent',20.000000,1,0,1),(727,1,0,0,2,1838,'by_percent',20.000000,1,0,1),(728,1,0,0,3,1838,'by_percent',20.000000,1,0,1),(729,1,0,0,0,1839,'by_percent',20.000000,1,0,1),(730,1,0,0,1,1839,'by_percent',20.000000,1,0,1),(731,1,0,0,2,1839,'by_percent',20.000000,1,0,1),(732,1,0,0,3,1839,'by_percent',20.000000,1,0,1),(733,1,0,0,0,1840,'by_percent',20.000000,1,0,1),(734,1,0,0,1,1840,'by_percent',20.000000,1,0,1),(735,1,0,0,2,1840,'by_percent',20.000000,1,0,1),(736,1,0,0,3,1840,'by_percent',20.000000,1,0,1),(737,1,0,0,0,1841,'by_percent',20.000000,1,0,1),(738,1,0,0,1,1841,'by_percent',20.000000,1,0,1),(739,1,0,0,2,1841,'by_percent',20.000000,1,0,1),(740,1,0,0,3,1841,'by_percent',20.000000,1,0,1),(741,1,0,0,0,1842,'by_percent',20.000000,1,0,1),(742,1,0,0,1,1842,'by_percent',20.000000,1,0,1),(743,1,0,0,2,1842,'by_percent',20.000000,1,0,1),(744,1,0,0,3,1842,'by_percent',20.000000,1,0,1),(745,1,0,0,0,1843,'by_percent',20.000000,1,0,1),(746,1,0,0,1,1843,'by_percent',20.000000,1,0,1),(747,1,0,0,2,1843,'by_percent',20.000000,1,0,1),(748,1,0,0,3,1843,'by_percent',20.000000,1,0,1),(749,1,0,0,0,1844,'by_percent',20.000000,1,0,1),(750,1,0,0,1,1844,'by_percent',20.000000,1,0,1),(751,1,0,0,2,1844,'by_percent',20.000000,1,0,1),(752,1,0,0,3,1844,'by_percent',20.000000,1,0,1),(753,1,0,0,0,1845,'by_percent',20.000000,1,0,1),(754,1,0,0,1,1845,'by_percent',20.000000,1,0,1),(755,1,0,0,2,1845,'by_percent',20.000000,1,0,1),(756,1,0,0,3,1845,'by_percent',20.000000,1,0,1),(757,1,0,0,0,1846,'by_percent',20.000000,1,0,1),(758,1,0,0,1,1846,'by_percent',20.000000,1,0,1),(759,1,0,0,2,1846,'by_percent',20.000000,1,0,1),(760,1,0,0,3,1846,'by_percent',20.000000,1,0,1),(761,1,0,0,0,1847,'by_percent',20.000000,1,0,1),(762,1,0,0,1,1847,'by_percent',20.000000,1,0,1),(763,1,0,0,2,1847,'by_percent',20.000000,1,0,1),(764,1,0,0,3,1847,'by_percent',20.000000,1,0,1),(765,1,0,0,0,1848,'by_percent',20.000000,1,0,1),(766,1,0,0,1,1848,'by_percent',20.000000,1,0,1),(767,1,0,0,2,1848,'by_percent',20.000000,1,0,1),(768,1,0,0,3,1848,'by_percent',20.000000,1,0,1),(769,1,0,0,0,1849,'by_percent',20.000000,1,0,1),(770,1,0,0,1,1849,'by_percent',20.000000,1,0,1),(771,1,0,0,2,1849,'by_percent',20.000000,1,0,1),(772,1,0,0,3,1849,'by_percent',20.000000,1,0,1),(773,1,0,0,0,1850,'by_percent',20.000000,1,0,1),(774,1,0,0,1,1850,'by_percent',20.000000,1,0,1),(775,1,0,0,2,1850,'by_percent',20.000000,1,0,1),(776,1,0,0,3,1850,'by_percent',20.000000,1,0,1),(777,1,0,0,0,1851,'by_percent',20.000000,1,0,1),(778,1,0,0,1,1851,'by_percent',20.000000,1,0,1),(779,1,0,0,2,1851,'by_percent',20.000000,1,0,1),(780,1,0,0,3,1851,'by_percent',20.000000,1,0,1),(781,1,0,0,0,1852,'by_percent',20.000000,1,0,1),(782,1,0,0,1,1852,'by_percent',20.000000,1,0,1),(783,1,0,0,2,1852,'by_percent',20.000000,1,0,1),(784,1,0,0,3,1852,'by_percent',20.000000,1,0,1),(785,1,0,0,0,1853,'by_percent',20.000000,1,0,1),(786,1,0,0,1,1853,'by_percent',20.000000,1,0,1),(787,1,0,0,2,1853,'by_percent',20.000000,1,0,1),(788,1,0,0,3,1853,'by_percent',20.000000,1,0,1),(789,1,0,0,0,1854,'by_percent',20.000000,1,0,1),(790,1,0,0,1,1854,'by_percent',20.000000,1,0,1),(791,1,0,0,2,1854,'by_percent',20.000000,1,0,1),(792,1,0,0,3,1854,'by_percent',20.000000,1,0,1),(793,1,0,0,0,1855,'by_percent',20.000000,1,0,1),(794,1,0,0,1,1855,'by_percent',20.000000,1,0,1),(795,1,0,0,2,1855,'by_percent',20.000000,1,0,1),(796,1,0,0,3,1855,'by_percent',20.000000,1,0,1),(797,1,0,0,0,1856,'by_percent',20.000000,1,0,1),(798,1,0,0,1,1856,'by_percent',20.000000,1,0,1),(799,1,0,0,2,1856,'by_percent',20.000000,1,0,1),(800,1,0,0,3,1856,'by_percent',20.000000,1,0,1),(801,1,0,0,0,1857,'by_percent',20.000000,1,0,1),(802,1,0,0,1,1857,'by_percent',20.000000,1,0,1),(803,1,0,0,2,1857,'by_percent',20.000000,1,0,1),(804,1,0,0,3,1857,'by_percent',20.000000,1,0,1),(805,1,0,0,0,1858,'by_percent',20.000000,1,0,1),(806,1,0,0,1,1858,'by_percent',20.000000,1,0,1),(807,1,0,0,2,1858,'by_percent',20.000000,1,0,1),(808,1,0,0,3,1858,'by_percent',20.000000,1,0,1),(809,1,0,0,0,1859,'by_percent',20.000000,1,0,1),(810,1,0,0,1,1859,'by_percent',20.000000,1,0,1),(811,1,0,0,2,1859,'by_percent',20.000000,1,0,1),(812,1,0,0,3,1859,'by_percent',20.000000,1,0,1),(813,1,0,0,0,1860,'by_percent',20.000000,1,0,1),(814,1,0,0,1,1860,'by_percent',20.000000,1,0,1),(815,1,0,0,2,1860,'by_percent',20.000000,1,0,1),(816,1,0,0,3,1860,'by_percent',20.000000,1,0,1),(817,1,0,0,0,1861,'by_percent',20.000000,1,0,1),(818,1,0,0,1,1861,'by_percent',20.000000,1,0,1),(819,1,0,0,2,1861,'by_percent',20.000000,1,0,1),(820,1,0,0,3,1861,'by_percent',20.000000,1,0,1),(821,1,0,0,0,1862,'by_percent',20.000000,1,0,1),(822,1,0,0,1,1862,'by_percent',20.000000,1,0,1),(823,1,0,0,2,1862,'by_percent',20.000000,1,0,1),(824,1,0,0,3,1862,'by_percent',20.000000,1,0,1),(825,1,0,0,0,1863,'by_percent',20.000000,1,0,1),(826,1,0,0,1,1863,'by_percent',20.000000,1,0,1),(827,1,0,0,2,1863,'by_percent',20.000000,1,0,1),(828,1,0,0,3,1863,'by_percent',20.000000,1,0,1),(829,1,0,0,0,1864,'by_percent',20.000000,1,0,1),(830,1,0,0,1,1864,'by_percent',20.000000,1,0,1),(831,1,0,0,2,1864,'by_percent',20.000000,1,0,1),(832,1,0,0,3,1864,'by_percent',20.000000,1,0,1),(833,1,0,0,0,1865,'by_percent',20.000000,1,0,1),(834,1,0,0,1,1865,'by_percent',20.000000,1,0,1),(835,1,0,0,2,1865,'by_percent',20.000000,1,0,1),(836,1,0,0,3,1865,'by_percent',20.000000,1,0,1),(837,1,0,0,0,1866,'by_percent',20.000000,1,0,1),(838,1,0,0,1,1866,'by_percent',20.000000,1,0,1),(839,1,0,0,2,1866,'by_percent',20.000000,1,0,1),(840,1,0,0,3,1866,'by_percent',20.000000,1,0,1),(841,1,0,0,0,1867,'by_percent',20.000000,1,0,1),(842,1,0,0,1,1867,'by_percent',20.000000,1,0,1),(843,1,0,0,2,1867,'by_percent',20.000000,1,0,1),(844,1,0,0,3,1867,'by_percent',20.000000,1,0,1),(845,1,0,0,0,1868,'by_percent',20.000000,1,0,1),(846,1,0,0,1,1868,'by_percent',20.000000,1,0,1),(847,1,0,0,2,1868,'by_percent',20.000000,1,0,1),(848,1,0,0,3,1868,'by_percent',20.000000,1,0,1),(849,1,0,0,0,1869,'by_percent',20.000000,1,0,1),(850,1,0,0,1,1869,'by_percent',20.000000,1,0,1),(851,1,0,0,2,1869,'by_percent',20.000000,1,0,1),(852,1,0,0,3,1869,'by_percent',20.000000,1,0,1),(853,1,0,0,0,1870,'by_percent',20.000000,1,0,1),(854,1,0,0,1,1870,'by_percent',20.000000,1,0,1),(855,1,0,0,2,1870,'by_percent',20.000000,1,0,1),(856,1,0,0,3,1870,'by_percent',20.000000,1,0,1),(857,1,0,0,0,1871,'by_percent',20.000000,1,0,1),(858,1,0,0,1,1871,'by_percent',20.000000,1,0,1),(859,1,0,0,2,1871,'by_percent',20.000000,1,0,1),(860,1,0,0,3,1871,'by_percent',20.000000,1,0,1),(861,1,0,0,0,1872,'by_percent',20.000000,1,0,1),(862,1,0,0,1,1872,'by_percent',20.000000,1,0,1),(863,1,0,0,2,1872,'by_percent',20.000000,1,0,1),(864,1,0,0,3,1872,'by_percent',20.000000,1,0,1),(865,1,0,0,0,1873,'by_percent',20.000000,1,0,1),(866,1,0,0,1,1873,'by_percent',20.000000,1,0,1),(867,1,0,0,2,1873,'by_percent',20.000000,1,0,1),(868,1,0,0,3,1873,'by_percent',20.000000,1,0,1),(869,1,0,0,0,1874,'by_percent',20.000000,1,0,1),(870,1,0,0,1,1874,'by_percent',20.000000,1,0,1),(871,1,0,0,2,1874,'by_percent',20.000000,1,0,1),(872,1,0,0,3,1874,'by_percent',20.000000,1,0,1),(873,1,0,0,0,1875,'by_percent',20.000000,1,0,1),(874,1,0,0,1,1875,'by_percent',20.000000,1,0,1),(875,1,0,0,2,1875,'by_percent',20.000000,1,0,1),(876,1,0,0,3,1875,'by_percent',20.000000,1,0,1),(877,1,0,0,0,1876,'by_percent',20.000000,1,0,1),(878,1,0,0,1,1876,'by_percent',20.000000,1,0,1),(879,1,0,0,2,1876,'by_percent',20.000000,1,0,1),(880,1,0,0,3,1876,'by_percent',20.000000,1,0,1),(881,1,0,0,0,1877,'by_percent',20.000000,1,0,1),(882,1,0,0,1,1877,'by_percent',20.000000,1,0,1),(883,1,0,0,2,1877,'by_percent',20.000000,1,0,1),(884,1,0,0,3,1877,'by_percent',20.000000,1,0,1),(885,1,0,0,0,1878,'by_percent',20.000000,1,0,1),(886,1,0,0,1,1878,'by_percent',20.000000,1,0,1),(887,1,0,0,2,1878,'by_percent',20.000000,1,0,1),(888,1,0,0,3,1878,'by_percent',20.000000,1,0,1),(889,1,0,0,0,1879,'by_percent',20.000000,1,0,1),(890,1,0,0,1,1879,'by_percent',20.000000,1,0,1),(891,1,0,0,2,1879,'by_percent',20.000000,1,0,1),(892,1,0,0,3,1879,'by_percent',20.000000,1,0,1),(893,1,0,0,0,1880,'by_percent',20.000000,1,0,1),(894,1,0,0,1,1880,'by_percent',20.000000,1,0,1),(895,1,0,0,2,1880,'by_percent',20.000000,1,0,1),(896,1,0,0,3,1880,'by_percent',20.000000,1,0,1),(897,1,0,0,0,1881,'by_percent',20.000000,1,0,1),(898,1,0,0,1,1881,'by_percent',20.000000,1,0,1),(899,1,0,0,2,1881,'by_percent',20.000000,1,0,1),(900,1,0,0,3,1881,'by_percent',20.000000,1,0,1),(901,1,0,0,0,1882,'by_percent',20.000000,1,0,1),(902,1,0,0,1,1882,'by_percent',20.000000,1,0,1),(903,1,0,0,2,1882,'by_percent',20.000000,1,0,1),(904,1,0,0,3,1882,'by_percent',20.000000,1,0,1),(905,1,0,0,0,1883,'by_percent',20.000000,1,0,1),(906,1,0,0,1,1883,'by_percent',20.000000,1,0,1),(907,1,0,0,2,1883,'by_percent',20.000000,1,0,1),(908,1,0,0,3,1883,'by_percent',20.000000,1,0,1),(909,1,0,0,0,1884,'by_percent',20.000000,1,0,1),(910,1,0,0,1,1884,'by_percent',20.000000,1,0,1),(911,1,0,0,2,1884,'by_percent',20.000000,1,0,1),(912,1,0,0,3,1884,'by_percent',20.000000,1,0,1),(913,1,0,0,0,1885,'by_percent',20.000000,1,0,1),(914,1,0,0,1,1885,'by_percent',20.000000,1,0,1),(915,1,0,0,2,1885,'by_percent',20.000000,1,0,1),(916,1,0,0,3,1885,'by_percent',20.000000,1,0,1),(917,1,0,0,0,1886,'by_percent',20.000000,1,0,1),(918,1,0,0,1,1886,'by_percent',20.000000,1,0,1),(919,1,0,0,2,1886,'by_percent',20.000000,1,0,1),(920,1,0,0,3,1886,'by_percent',20.000000,1,0,1),(921,1,0,0,0,1887,'by_percent',20.000000,1,0,1),(922,1,0,0,1,1887,'by_percent',20.000000,1,0,1),(923,1,0,0,2,1887,'by_percent',20.000000,1,0,1),(924,1,0,0,3,1887,'by_percent',20.000000,1,0,1),(925,1,0,0,0,1888,'by_percent',20.000000,1,0,1),(926,1,0,0,1,1888,'by_percent',20.000000,1,0,1),(927,1,0,0,2,1888,'by_percent',20.000000,1,0,1),(928,1,0,0,3,1888,'by_percent',20.000000,1,0,1),(929,1,0,0,0,1889,'by_percent',20.000000,1,0,1),(930,1,0,0,1,1889,'by_percent',20.000000,1,0,1),(931,1,0,0,2,1889,'by_percent',20.000000,1,0,1),(932,1,0,0,3,1889,'by_percent',20.000000,1,0,1),(933,1,0,0,0,1890,'by_percent',20.000000,1,0,1),(934,1,0,0,1,1890,'by_percent',20.000000,1,0,1),(935,1,0,0,2,1890,'by_percent',20.000000,1,0,1),(936,1,0,0,3,1890,'by_percent',20.000000,1,0,1),(937,1,0,0,0,1891,'by_percent',20.000000,1,0,1),(938,1,0,0,1,1891,'by_percent',20.000000,1,0,1),(939,1,0,0,2,1891,'by_percent',20.000000,1,0,1),(940,1,0,0,3,1891,'by_percent',20.000000,1,0,1),(941,1,0,0,0,1892,'by_percent',20.000000,1,0,1),(942,1,0,0,1,1892,'by_percent',20.000000,1,0,1),(943,1,0,0,2,1892,'by_percent',20.000000,1,0,1),(944,1,0,0,3,1892,'by_percent',20.000000,1,0,1),(945,1,0,0,0,1893,'by_percent',20.000000,1,0,1),(946,1,0,0,1,1893,'by_percent',20.000000,1,0,1),(947,1,0,0,2,1893,'by_percent',20.000000,1,0,1),(948,1,0,0,3,1893,'by_percent',20.000000,1,0,1),(949,1,0,0,0,1894,'by_percent',20.000000,1,0,1),(950,1,0,0,1,1894,'by_percent',20.000000,1,0,1),(951,1,0,0,2,1894,'by_percent',20.000000,1,0,1),(952,1,0,0,3,1894,'by_percent',20.000000,1,0,1),(953,1,0,0,0,1895,'by_percent',20.000000,1,0,1),(954,1,0,0,1,1895,'by_percent',20.000000,1,0,1),(955,1,0,0,2,1895,'by_percent',20.000000,1,0,1),(956,1,0,0,3,1895,'by_percent',20.000000,1,0,1),(957,1,0,0,0,1896,'by_percent',20.000000,1,0,1),(958,1,0,0,1,1896,'by_percent',20.000000,1,0,1),(959,1,0,0,2,1896,'by_percent',20.000000,1,0,1),(960,1,0,0,3,1896,'by_percent',20.000000,1,0,1),(961,1,0,0,0,1897,'by_percent',20.000000,1,0,1),(962,1,0,0,1,1897,'by_percent',20.000000,1,0,1),(963,1,0,0,2,1897,'by_percent',20.000000,1,0,1),(964,1,0,0,3,1897,'by_percent',20.000000,1,0,1),(965,1,0,0,0,1898,'by_percent',20.000000,1,0,1),(966,1,0,0,1,1898,'by_percent',20.000000,1,0,1),(967,1,0,0,2,1898,'by_percent',20.000000,1,0,1),(968,1,0,0,3,1898,'by_percent',20.000000,1,0,1),(969,1,0,0,0,1899,'by_percent',20.000000,1,0,1),(970,1,0,0,1,1899,'by_percent',20.000000,1,0,1),(971,1,0,0,2,1899,'by_percent',20.000000,1,0,1),(972,1,0,0,3,1899,'by_percent',20.000000,1,0,1),(973,1,0,0,0,1900,'by_percent',20.000000,1,0,1),(974,1,0,0,1,1900,'by_percent',20.000000,1,0,1),(975,1,0,0,2,1900,'by_percent',20.000000,1,0,1),(976,1,0,0,3,1900,'by_percent',20.000000,1,0,1),(977,1,0,0,0,1901,'by_percent',20.000000,1,0,1),(978,1,0,0,1,1901,'by_percent',20.000000,1,0,1),(979,1,0,0,2,1901,'by_percent',20.000000,1,0,1),(980,1,0,0,3,1901,'by_percent',20.000000,1,0,1),(981,1,0,0,0,1902,'by_percent',20.000000,1,0,1),(982,1,0,0,1,1902,'by_percent',20.000000,1,0,1),(983,1,0,0,2,1902,'by_percent',20.000000,1,0,1),(984,1,0,0,3,1902,'by_percent',20.000000,1,0,1),(985,1,0,0,0,1903,'by_percent',20.000000,1,0,1),(986,1,0,0,1,1903,'by_percent',20.000000,1,0,1),(987,1,0,0,2,1903,'by_percent',20.000000,1,0,1),(988,1,0,0,3,1903,'by_percent',20.000000,1,0,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_product_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_product_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_product_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalogrule_product_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_product_cl`
--

LOCK TABLES `[[dbprefix]]catalogrule_product_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_product_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_product_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_product_price` (
  `rule_product_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int DEFAULT NULL,
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `[[DBPREFIX]]CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2965 DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_product_price`
--

LOCK TABLES `[[dbprefix]]catalogrule_product_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_price` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalogrule_product_price` VALUES (1,'[[predate]]',0,725,28.000000,1,NULL,NULL),(2,'[[regdate]]',0,725,28.000000,1,NULL,NULL),(3,'[[postdate]]',0,725,28.000000,1,NULL,NULL),(4,'[[predate]]',0,726,28.000000,1,NULL,NULL),(5,'[[regdate]]',0,726,28.000000,1,NULL,NULL),(6,'[[postdate]]',0,726,28.000000,1,NULL,NULL),(7,'[[predate]]',0,727,28.000000,1,NULL,NULL),(8,'[[regdate]]',0,727,28.000000,1,NULL,NULL),(9,'[[postdate]]',0,727,28.000000,1,NULL,NULL),(10,'[[predate]]',0,728,28.000000,1,NULL,NULL),(11,'[[regdate]]',0,728,28.000000,1,NULL,NULL),(12,'[[postdate]]',0,728,28.000000,1,NULL,NULL),(13,'[[predate]]',0,729,28.000000,1,NULL,NULL),(14,'[[regdate]]',0,729,28.000000,1,NULL,NULL),(15,'[[postdate]]',0,729,28.000000,1,NULL,NULL),(16,'[[predate]]',0,730,28.000000,1,NULL,NULL),(17,'[[regdate]]',0,730,28.000000,1,NULL,NULL),(18,'[[postdate]]',0,730,28.000000,1,NULL,NULL),(19,'[[predate]]',0,731,28.000000,1,NULL,NULL),(20,'[[regdate]]',0,731,28.000000,1,NULL,NULL),(21,'[[postdate]]',0,731,28.000000,1,NULL,NULL),(22,'[[predate]]',0,732,28.000000,1,NULL,NULL),(23,'[[regdate]]',0,732,28.000000,1,NULL,NULL),(24,'[[postdate]]',0,732,28.000000,1,NULL,NULL),(25,'[[predate]]',0,733,28.000000,1,NULL,NULL),(26,'[[regdate]]',0,733,28.000000,1,NULL,NULL),(27,'[[postdate]]',0,733,28.000000,1,NULL,NULL),(28,'[[predate]]',0,734,28.000000,1,NULL,NULL),(29,'[[regdate]]',0,734,28.000000,1,NULL,NULL),(30,'[[postdate]]',0,734,28.000000,1,NULL,NULL),(31,'[[predate]]',0,735,28.000000,1,NULL,NULL),(32,'[[regdate]]',0,735,28.000000,1,NULL,NULL),(33,'[[postdate]]',0,735,28.000000,1,NULL,NULL),(34,'[[predate]]',0,736,28.000000,1,NULL,NULL),(35,'[[regdate]]',0,736,28.000000,1,NULL,NULL),(36,'[[postdate]]',0,736,28.000000,1,NULL,NULL),(37,'[[predate]]',0,737,28.000000,1,NULL,NULL),(38,'[[regdate]]',0,737,28.000000,1,NULL,NULL),(39,'[[postdate]]',0,737,28.000000,1,NULL,NULL),(40,'[[predate]]',0,738,36.800000,1,NULL,NULL),(41,'[[regdate]]',0,738,36.800000,1,NULL,NULL),(42,'[[postdate]]',0,738,36.800000,1,NULL,NULL),(43,'[[predate]]',0,739,36.800000,1,NULL,NULL),(44,'[[regdate]]',0,739,36.800000,1,NULL,NULL),(45,'[[postdate]]',0,739,36.800000,1,NULL,NULL),(46,'[[predate]]',0,740,36.800000,1,NULL,NULL),(47,'[[regdate]]',0,740,36.800000,1,NULL,NULL),(48,'[[postdate]]',0,740,36.800000,1,NULL,NULL),(49,'[[predate]]',0,741,36.800000,1,NULL,NULL),(50,'[[regdate]]',0,741,36.800000,1,NULL,NULL),(51,'[[postdate]]',0,741,36.800000,1,NULL,NULL),(52,'[[predate]]',0,742,36.800000,1,NULL,NULL),(53,'[[regdate]]',0,742,36.800000,1,NULL,NULL),(54,'[[postdate]]',0,742,36.800000,1,NULL,NULL),(55,'[[predate]]',0,743,36.800000,1,NULL,NULL),(56,'[[regdate]]',0,743,36.800000,1,NULL,NULL),(57,'[[postdate]]',0,743,36.800000,1,NULL,NULL),(58,'[[predate]]',0,744,36.800000,1,NULL,NULL),(59,'[[regdate]]',0,744,36.800000,1,NULL,NULL),(60,'[[postdate]]',0,744,36.800000,1,NULL,NULL),(61,'[[predate]]',0,745,36.800000,1,NULL,NULL),(62,'[[regdate]]',0,745,36.800000,1,NULL,NULL),(63,'[[postdate]]',0,745,36.800000,1,NULL,NULL),(64,'[[predate]]',0,746,36.800000,1,NULL,NULL),(65,'[[regdate]]',0,746,36.800000,1,NULL,NULL),(66,'[[postdate]]',0,746,36.800000,1,NULL,NULL),(67,'[[predate]]',0,747,36.800000,1,NULL,NULL),(68,'[[regdate]]',0,747,36.800000,1,NULL,NULL),(69,'[[postdate]]',0,747,36.800000,1,NULL,NULL),(70,'[[predate]]',0,748,36.800000,1,NULL,NULL),(71,'[[regdate]]',0,748,36.800000,1,NULL,NULL),(72,'[[postdate]]',0,748,36.800000,1,NULL,NULL),(73,'[[predate]]',0,749,36.800000,1,NULL,NULL),(74,'[[regdate]]',0,749,36.800000,1,NULL,NULL),(75,'[[postdate]]',0,749,36.800000,1,NULL,NULL),(76,'[[predate]]',0,750,36.800000,1,NULL,NULL),(77,'[[regdate]]',0,750,36.800000,1,NULL,NULL),(78,'[[postdate]]',0,750,36.800000,1,NULL,NULL),(79,'[[predate]]',0,751,40.800000,1,NULL,NULL),(80,'[[regdate]]',0,751,40.800000,1,NULL,NULL),(81,'[[postdate]]',0,751,40.800000,1,NULL,NULL),(82,'[[predate]]',0,752,40.800000,1,NULL,NULL),(83,'[[regdate]]',0,752,40.800000,1,NULL,NULL),(84,'[[postdate]]',0,752,40.800000,1,NULL,NULL),(85,'[[predate]]',0,753,40.800000,1,NULL,NULL),(86,'[[regdate]]',0,753,40.800000,1,NULL,NULL),(87,'[[postdate]]',0,753,40.800000,1,NULL,NULL),(88,'[[predate]]',0,754,40.800000,1,NULL,NULL),(89,'[[regdate]]',0,754,40.800000,1,NULL,NULL),(90,'[[postdate]]',0,754,40.800000,1,NULL,NULL),(91,'[[predate]]',0,755,40.800000,1,NULL,NULL),(92,'[[regdate]]',0,755,40.800000,1,NULL,NULL),(93,'[[postdate]]',0,755,40.800000,1,NULL,NULL),(94,'[[predate]]',0,756,40.800000,1,NULL,NULL),(95,'[[regdate]]',0,756,40.800000,1,NULL,NULL),(96,'[[postdate]]',0,756,40.800000,1,NULL,NULL),(97,'[[predate]]',0,757,40.800000,1,NULL,NULL),(98,'[[regdate]]',0,757,40.800000,1,NULL,NULL),(99,'[[postdate]]',0,757,40.800000,1,NULL,NULL),(100,'[[predate]]',0,758,40.800000,1,NULL,NULL),(101,'[[regdate]]',0,758,40.800000,1,NULL,NULL),(102,'[[postdate]]',0,758,40.800000,1,NULL,NULL),(103,'[[predate]]',0,759,40.800000,1,NULL,NULL),(104,'[[regdate]]',0,759,40.800000,1,NULL,NULL),(105,'[[postdate]]',0,759,40.800000,1,NULL,NULL),(106,'[[predate]]',0,760,40.800000,1,NULL,NULL),(107,'[[regdate]]',0,760,40.800000,1,NULL,NULL),(108,'[[postdate]]',0,760,40.800000,1,NULL,NULL),(109,'[[predate]]',0,761,40.800000,1,NULL,NULL),(110,'[[regdate]]',0,761,40.800000,1,NULL,NULL),(111,'[[postdate]]',0,761,40.800000,1,NULL,NULL),(112,'[[predate]]',0,762,40.800000,1,NULL,NULL),(113,'[[regdate]]',0,762,40.800000,1,NULL,NULL),(114,'[[postdate]]',0,762,40.800000,1,NULL,NULL),(115,'[[predate]]',0,763,40.800000,1,NULL,NULL),(116,'[[regdate]]',0,763,40.800000,1,NULL,NULL),(117,'[[postdate]]',0,763,40.800000,1,NULL,NULL),(118,'[[predate]]',0,764,36.000000,1,NULL,NULL),(119,'[[regdate]]',0,764,36.000000,1,NULL,NULL),(120,'[[postdate]]',0,764,36.000000,1,NULL,NULL),(121,'[[predate]]',0,765,36.000000,1,NULL,NULL),(122,'[[regdate]]',0,765,36.000000,1,NULL,NULL),(123,'[[postdate]]',0,765,36.000000,1,NULL,NULL),(124,'[[predate]]',0,766,36.000000,1,NULL,NULL),(125,'[[regdate]]',0,766,36.000000,1,NULL,NULL),(126,'[[postdate]]',0,766,36.000000,1,NULL,NULL),(127,'[[predate]]',0,767,36.000000,1,NULL,NULL),(128,'[[regdate]]',0,767,36.000000,1,NULL,NULL),(129,'[[postdate]]',0,767,36.000000,1,NULL,NULL),(130,'[[predate]]',0,768,36.000000,1,NULL,NULL),(131,'[[regdate]]',0,768,36.000000,1,NULL,NULL),(132,'[[postdate]]',0,768,36.000000,1,NULL,NULL),(133,'[[predate]]',0,769,36.000000,1,NULL,NULL),(134,'[[regdate]]',0,769,36.000000,1,NULL,NULL),(135,'[[postdate]]',0,769,36.000000,1,NULL,NULL),(136,'[[predate]]',0,770,36.000000,1,NULL,NULL),(137,'[[regdate]]',0,770,36.000000,1,NULL,NULL),(138,'[[postdate]]',0,770,36.000000,1,NULL,NULL),(139,'[[predate]]',0,771,36.000000,1,NULL,NULL),(140,'[[regdate]]',0,771,36.000000,1,NULL,NULL),(141,'[[postdate]]',0,771,36.000000,1,NULL,NULL),(142,'[[predate]]',0,772,36.000000,1,NULL,NULL),(143,'[[regdate]]',0,772,36.000000,1,NULL,NULL),(144,'[[postdate]]',0,772,36.000000,1,NULL,NULL),(145,'[[predate]]',0,773,36.000000,1,NULL,NULL),(146,'[[regdate]]',0,773,36.000000,1,NULL,NULL),(147,'[[postdate]]',0,773,36.000000,1,NULL,NULL),(148,'[[predate]]',0,774,36.000000,1,NULL,NULL),(149,'[[regdate]]',0,774,36.000000,1,NULL,NULL),(150,'[[postdate]]',0,774,36.000000,1,NULL,NULL),(151,'[[predate]]',0,775,36.000000,1,NULL,NULL),(152,'[[regdate]]',0,775,36.000000,1,NULL,NULL),(153,'[[postdate]]',0,775,36.000000,1,NULL,NULL),(154,'[[predate]]',0,776,36.000000,1,NULL,NULL),(155,'[[regdate]]',0,776,36.000000,1,NULL,NULL),(156,'[[postdate]]',0,776,36.000000,1,NULL,NULL),(157,'[[predate]]',0,777,45.600000,1,NULL,NULL),(158,'[[regdate]]',0,777,45.600000,1,NULL,NULL),(159,'[[postdate]]',0,777,45.600000,1,NULL,NULL),(160,'[[predate]]',0,778,45.600000,1,NULL,NULL),(161,'[[regdate]]',0,778,45.600000,1,NULL,NULL),(162,'[[postdate]]',0,778,45.600000,1,NULL,NULL),(163,'[[predate]]',0,779,45.600000,1,NULL,NULL),(164,'[[regdate]]',0,779,45.600000,1,NULL,NULL),(165,'[[postdate]]',0,779,45.600000,1,NULL,NULL),(166,'[[predate]]',0,780,45.600000,1,NULL,NULL),(167,'[[regdate]]',0,780,45.600000,1,NULL,NULL),(168,'[[postdate]]',0,780,45.600000,1,NULL,NULL),(169,'[[predate]]',0,781,45.600000,1,NULL,NULL),(170,'[[regdate]]',0,781,45.600000,1,NULL,NULL),(171,'[[postdate]]',0,781,45.600000,1,NULL,NULL),(172,'[[predate]]',0,782,45.600000,1,NULL,NULL),(173,'[[regdate]]',0,782,45.600000,1,NULL,NULL),(174,'[[postdate]]',0,782,45.600000,1,NULL,NULL),(175,'[[predate]]',0,783,45.600000,1,NULL,NULL),(176,'[[regdate]]',0,783,45.600000,1,NULL,NULL),(177,'[[postdate]]',0,783,45.600000,1,NULL,NULL),(178,'[[predate]]',0,784,45.600000,1,NULL,NULL),(179,'[[regdate]]',0,784,45.600000,1,NULL,NULL),(180,'[[postdate]]',0,784,45.600000,1,NULL,NULL),(181,'[[predate]]',0,785,45.600000,1,NULL,NULL),(182,'[[regdate]]',0,785,45.600000,1,NULL,NULL),(183,'[[postdate]]',0,785,45.600000,1,NULL,NULL),(184,'[[predate]]',0,786,45.600000,1,NULL,NULL),(185,'[[regdate]]',0,786,45.600000,1,NULL,NULL),(186,'[[postdate]]',0,786,45.600000,1,NULL,NULL),(187,'[[predate]]',0,787,45.600000,1,NULL,NULL),(188,'[[regdate]]',0,787,45.600000,1,NULL,NULL),(189,'[[postdate]]',0,787,45.600000,1,NULL,NULL),(190,'[[predate]]',0,788,45.600000,1,NULL,NULL),(191,'[[regdate]]',0,788,45.600000,1,NULL,NULL),(192,'[[postdate]]',0,788,45.600000,1,NULL,NULL),(193,'[[predate]]',0,789,45.600000,1,NULL,NULL),(194,'[[regdate]]',0,789,45.600000,1,NULL,NULL),(195,'[[postdate]]',0,789,45.600000,1,NULL,NULL),(196,'[[predate]]',0,790,22.400000,1,NULL,NULL),(197,'[[regdate]]',0,790,22.400000,1,NULL,NULL),(198,'[[postdate]]',0,790,22.400000,1,NULL,NULL),(199,'[[predate]]',0,791,22.400000,1,NULL,NULL),(200,'[[regdate]]',0,791,22.400000,1,NULL,NULL),(201,'[[postdate]]',0,791,22.400000,1,NULL,NULL),(202,'[[predate]]',0,792,22.400000,1,NULL,NULL),(203,'[[regdate]]',0,792,22.400000,1,NULL,NULL),(204,'[[postdate]]',0,792,22.400000,1,NULL,NULL),(205,'[[predate]]',0,793,22.400000,1,NULL,NULL),(206,'[[regdate]]',0,793,22.400000,1,NULL,NULL),(207,'[[postdate]]',0,793,22.400000,1,NULL,NULL),(208,'[[predate]]',0,794,22.400000,1,NULL,NULL),(209,'[[regdate]]',0,794,22.400000,1,NULL,NULL),(210,'[[postdate]]',0,794,22.400000,1,NULL,NULL),(211,'[[predate]]',0,795,22.400000,1,NULL,NULL),(212,'[[regdate]]',0,795,22.400000,1,NULL,NULL),(213,'[[postdate]]',0,795,22.400000,1,NULL,NULL),(214,'[[predate]]',0,796,22.400000,1,NULL,NULL),(215,'[[regdate]]',0,796,22.400000,1,NULL,NULL),(216,'[[postdate]]',0,796,22.400000,1,NULL,NULL),(217,'[[predate]]',0,797,22.400000,1,NULL,NULL),(218,'[[regdate]]',0,797,22.400000,1,NULL,NULL),(219,'[[postdate]]',0,797,22.400000,1,NULL,NULL),(220,'[[predate]]',0,798,22.400000,1,NULL,NULL),(221,'[[regdate]]',0,798,22.400000,1,NULL,NULL),(222,'[[postdate]]',0,798,22.400000,1,NULL,NULL),(223,'[[predate]]',0,799,22.400000,1,NULL,NULL),(224,'[[regdate]]',0,799,22.400000,1,NULL,NULL),(225,'[[postdate]]',0,799,22.400000,1,NULL,NULL),(226,'[[predate]]',0,800,22.400000,1,NULL,NULL),(227,'[[regdate]]',0,800,22.400000,1,NULL,NULL),(228,'[[postdate]]',0,800,22.400000,1,NULL,NULL),(229,'[[predate]]',0,801,22.400000,1,NULL,NULL),(230,'[[regdate]]',0,801,22.400000,1,NULL,NULL),(231,'[[postdate]]',0,801,22.400000,1,NULL,NULL),(232,'[[predate]]',0,802,22.400000,1,NULL,NULL),(233,'[[regdate]]',0,802,22.400000,1,NULL,NULL),(234,'[[postdate]]',0,802,22.400000,1,NULL,NULL),(235,'[[predate]]',0,803,54.400000,1,NULL,NULL),(236,'[[regdate]]',0,803,54.400000,1,NULL,NULL),(237,'[[postdate]]',0,803,54.400000,1,NULL,NULL),(238,'[[predate]]',0,804,54.400000,1,NULL,NULL),(239,'[[regdate]]',0,804,54.400000,1,NULL,NULL),(240,'[[postdate]]',0,804,54.400000,1,NULL,NULL),(241,'[[predate]]',0,805,54.400000,1,NULL,NULL),(242,'[[regdate]]',0,805,54.400000,1,NULL,NULL),(243,'[[postdate]]',0,805,54.400000,1,NULL,NULL),(244,'[[predate]]',0,806,54.400000,1,NULL,NULL),(245,'[[regdate]]',0,806,54.400000,1,NULL,NULL),(246,'[[postdate]]',0,806,54.400000,1,NULL,NULL),(247,'[[predate]]',0,807,54.400000,1,NULL,NULL),(248,'[[regdate]]',0,807,54.400000,1,NULL,NULL),(249,'[[postdate]]',0,807,54.400000,1,NULL,NULL),(250,'[[predate]]',0,808,54.400000,1,NULL,NULL),(251,'[[regdate]]',0,808,54.400000,1,NULL,NULL),(252,'[[postdate]]',0,808,54.400000,1,NULL,NULL),(253,'[[predate]]',0,809,54.400000,1,NULL,NULL),(254,'[[regdate]]',0,809,54.400000,1,NULL,NULL),(255,'[[postdate]]',0,809,54.400000,1,NULL,NULL),(256,'[[predate]]',0,810,54.400000,1,NULL,NULL),(257,'[[regdate]]',0,810,54.400000,1,NULL,NULL),(258,'[[postdate]]',0,810,54.400000,1,NULL,NULL),(259,'[[predate]]',0,811,54.400000,1,NULL,NULL),(260,'[[regdate]]',0,811,54.400000,1,NULL,NULL),(261,'[[postdate]]',0,811,54.400000,1,NULL,NULL),(262,'[[predate]]',0,812,54.400000,1,NULL,NULL),(263,'[[regdate]]',0,812,54.400000,1,NULL,NULL),(264,'[[postdate]]',0,812,54.400000,1,NULL,NULL),(265,'[[predate]]',0,813,54.400000,1,NULL,NULL),(266,'[[regdate]]',0,813,54.400000,1,NULL,NULL),(267,'[[postdate]]',0,813,54.400000,1,NULL,NULL),(268,'[[predate]]',0,814,54.400000,1,NULL,NULL),(269,'[[regdate]]',0,814,54.400000,1,NULL,NULL),(270,'[[postdate]]',0,814,54.400000,1,NULL,NULL),(271,'[[predate]]',0,815,54.400000,1,NULL,NULL),(272,'[[regdate]]',0,815,54.400000,1,NULL,NULL),(273,'[[postdate]]',0,815,54.400000,1,NULL,NULL),(274,'[[predate]]',0,816,65.600000,1,NULL,NULL),(275,'[[regdate]]',0,816,65.600000,1,NULL,NULL),(276,'[[postdate]]',0,816,65.600000,1,NULL,NULL),(277,'[[predate]]',0,817,65.600000,1,NULL,NULL),(278,'[[regdate]]',0,817,65.600000,1,NULL,NULL),(279,'[[postdate]]',0,817,65.600000,1,NULL,NULL),(280,'[[predate]]',0,818,65.600000,1,NULL,NULL),(281,'[[regdate]]',0,818,65.600000,1,NULL,NULL),(282,'[[postdate]]',0,818,65.600000,1,NULL,NULL),(283,'[[predate]]',0,819,65.600000,1,NULL,NULL),(284,'[[regdate]]',0,819,65.600000,1,NULL,NULL),(285,'[[postdate]]',0,819,65.600000,1,NULL,NULL),(286,'[[predate]]',0,820,65.600000,1,NULL,NULL),(287,'[[regdate]]',0,820,65.600000,1,NULL,NULL),(288,'[[postdate]]',0,820,65.600000,1,NULL,NULL),(289,'[[predate]]',0,821,65.600000,1,NULL,NULL),(290,'[[regdate]]',0,821,65.600000,1,NULL,NULL),(291,'[[postdate]]',0,821,65.600000,1,NULL,NULL),(292,'[[predate]]',0,822,65.600000,1,NULL,NULL),(293,'[[regdate]]',0,822,65.600000,1,NULL,NULL),(294,'[[postdate]]',0,822,65.600000,1,NULL,NULL),(295,'[[predate]]',0,823,65.600000,1,NULL,NULL),(296,'[[regdate]]',0,823,65.600000,1,NULL,NULL),(297,'[[postdate]]',0,823,65.600000,1,NULL,NULL),(298,'[[predate]]',0,824,65.600000,1,NULL,NULL),(299,'[[regdate]]',0,824,65.600000,1,NULL,NULL),(300,'[[postdate]]',0,824,65.600000,1,NULL,NULL),(301,'[[predate]]',0,825,65.600000,1,NULL,NULL),(302,'[[regdate]]',0,825,65.600000,1,NULL,NULL),(303,'[[postdate]]',0,825,65.600000,1,NULL,NULL),(304,'[[predate]]',0,826,65.600000,1,NULL,NULL),(305,'[[regdate]]',0,826,65.600000,1,NULL,NULL),(306,'[[postdate]]',0,826,65.600000,1,NULL,NULL),(307,'[[predate]]',0,827,65.600000,1,NULL,NULL),(308,'[[regdate]]',0,827,65.600000,1,NULL,NULL),(309,'[[postdate]]',0,827,65.600000,1,NULL,NULL),(310,'[[predate]]',0,828,65.600000,1,NULL,NULL),(311,'[[regdate]]',0,828,65.600000,1,NULL,NULL),(312,'[[postdate]]',0,828,65.600000,1,NULL,NULL),(313,'[[predate]]',0,829,60.000000,1,NULL,NULL),(314,'[[regdate]]',0,829,60.000000,1,NULL,NULL),(315,'[[postdate]]',0,829,60.000000,1,NULL,NULL),(316,'[[predate]]',0,830,60.000000,1,NULL,NULL),(317,'[[regdate]]',0,830,60.000000,1,NULL,NULL),(318,'[[postdate]]',0,830,60.000000,1,NULL,NULL),(319,'[[predate]]',0,831,60.000000,1,NULL,NULL),(320,'[[regdate]]',0,831,60.000000,1,NULL,NULL),(321,'[[postdate]]',0,831,60.000000,1,NULL,NULL),(322,'[[predate]]',0,832,60.000000,1,NULL,NULL),(323,'[[regdate]]',0,832,60.000000,1,NULL,NULL),(324,'[[postdate]]',0,832,60.000000,1,NULL,NULL),(325,'[[predate]]',0,833,60.000000,1,NULL,NULL),(326,'[[regdate]]',0,833,60.000000,1,NULL,NULL),(327,'[[postdate]]',0,833,60.000000,1,NULL,NULL),(328,'[[predate]]',0,834,60.000000,1,NULL,NULL),(329,'[[regdate]]',0,834,60.000000,1,NULL,NULL),(330,'[[postdate]]',0,834,60.000000,1,NULL,NULL),(331,'[[predate]]',0,835,60.000000,1,NULL,NULL),(332,'[[regdate]]',0,835,60.000000,1,NULL,NULL),(333,'[[postdate]]',0,835,60.000000,1,NULL,NULL),(334,'[[predate]]',0,836,60.000000,1,NULL,NULL),(335,'[[regdate]]',0,836,60.000000,1,NULL,NULL),(336,'[[postdate]]',0,836,60.000000,1,NULL,NULL),(337,'[[predate]]',0,837,60.000000,1,NULL,NULL),(338,'[[regdate]]',0,837,60.000000,1,NULL,NULL),(339,'[[postdate]]',0,837,60.000000,1,NULL,NULL),(340,'[[predate]]',0,838,60.000000,1,NULL,NULL),(341,'[[regdate]]',0,838,60.000000,1,NULL,NULL),(342,'[[postdate]]',0,838,60.000000,1,NULL,NULL),(343,'[[predate]]',0,839,60.000000,1,NULL,NULL),(344,'[[regdate]]',0,839,60.000000,1,NULL,NULL),(345,'[[postdate]]',0,839,60.000000,1,NULL,NULL),(346,'[[predate]]',0,840,60.000000,1,NULL,NULL),(347,'[[regdate]]',0,840,60.000000,1,NULL,NULL),(348,'[[postdate]]',0,840,60.000000,1,NULL,NULL),(349,'[[predate]]',0,841,60.000000,1,NULL,NULL),(350,'[[regdate]]',0,841,60.000000,1,NULL,NULL),(351,'[[postdate]]',0,841,60.000000,1,NULL,NULL),(352,'[[predate]]',0,842,52.800000,1,NULL,NULL),(353,'[[regdate]]',0,842,52.800000,1,NULL,NULL),(354,'[[postdate]]',0,842,52.800000,1,NULL,NULL),(355,'[[predate]]',0,843,52.800000,1,NULL,NULL),(356,'[[regdate]]',0,843,52.800000,1,NULL,NULL),(357,'[[postdate]]',0,843,52.800000,1,NULL,NULL),(358,'[[predate]]',0,844,52.800000,1,NULL,NULL),(359,'[[regdate]]',0,844,52.800000,1,NULL,NULL),(360,'[[postdate]]',0,844,52.800000,1,NULL,NULL),(361,'[[predate]]',0,845,52.800000,1,NULL,NULL),(362,'[[regdate]]',0,845,52.800000,1,NULL,NULL),(363,'[[postdate]]',0,845,52.800000,1,NULL,NULL),(364,'[[predate]]',0,846,52.800000,1,NULL,NULL),(365,'[[regdate]]',0,846,52.800000,1,NULL,NULL),(366,'[[postdate]]',0,846,52.800000,1,NULL,NULL),(367,'[[predate]]',0,847,52.800000,1,NULL,NULL),(368,'[[regdate]]',0,847,52.800000,1,NULL,NULL),(369,'[[postdate]]',0,847,52.800000,1,NULL,NULL),(370,'[[predate]]',0,848,52.800000,1,NULL,NULL),(371,'[[regdate]]',0,848,52.800000,1,NULL,NULL),(372,'[[postdate]]',0,848,52.800000,1,NULL,NULL),(373,'[[predate]]',0,849,52.800000,1,NULL,NULL),(374,'[[regdate]]',0,849,52.800000,1,NULL,NULL),(375,'[[postdate]]',0,849,52.800000,1,NULL,NULL),(376,'[[predate]]',0,850,52.800000,1,NULL,NULL),(377,'[[regdate]]',0,850,52.800000,1,NULL,NULL),(378,'[[postdate]]',0,850,52.800000,1,NULL,NULL),(379,'[[predate]]',0,851,52.800000,1,NULL,NULL),(380,'[[regdate]]',0,851,52.800000,1,NULL,NULL),(381,'[[postdate]]',0,851,52.800000,1,NULL,NULL),(382,'[[predate]]',0,852,52.800000,1,NULL,NULL),(383,'[[regdate]]',0,852,52.800000,1,NULL,NULL),(384,'[[postdate]]',0,852,52.800000,1,NULL,NULL),(385,'[[predate]]',0,853,52.800000,1,NULL,NULL),(386,'[[regdate]]',0,853,52.800000,1,NULL,NULL),(387,'[[postdate]]',0,853,52.800000,1,NULL,NULL),(388,'[[predate]]',0,854,52.800000,1,NULL,NULL),(389,'[[regdate]]',0,854,52.800000,1,NULL,NULL),(390,'[[postdate]]',0,854,52.800000,1,NULL,NULL),(391,'[[predate]]',0,855,59.200000,1,NULL,NULL),(392,'[[regdate]]',0,855,59.200000,1,NULL,NULL),(393,'[[postdate]]',0,855,59.200000,1,NULL,NULL),(394,'[[predate]]',0,856,59.200000,1,NULL,NULL),(395,'[[regdate]]',0,856,59.200000,1,NULL,NULL),(396,'[[postdate]]',0,856,59.200000,1,NULL,NULL),(397,'[[predate]]',0,857,59.200000,1,NULL,NULL),(398,'[[regdate]]',0,857,59.200000,1,NULL,NULL),(399,'[[postdate]]',0,857,59.200000,1,NULL,NULL),(400,'[[predate]]',0,858,59.200000,1,NULL,NULL),(401,'[[regdate]]',0,858,59.200000,1,NULL,NULL),(402,'[[postdate]]',0,858,59.200000,1,NULL,NULL),(403,'[[predate]]',0,859,59.200000,1,NULL,NULL),(404,'[[regdate]]',0,859,59.200000,1,NULL,NULL),(405,'[[postdate]]',0,859,59.200000,1,NULL,NULL),(406,'[[predate]]',0,860,59.200000,1,NULL,NULL),(407,'[[regdate]]',0,860,59.200000,1,NULL,NULL),(408,'[[postdate]]',0,860,59.200000,1,NULL,NULL),(409,'[[predate]]',0,861,59.200000,1,NULL,NULL),(410,'[[regdate]]',0,861,59.200000,1,NULL,NULL),(411,'[[postdate]]',0,861,59.200000,1,NULL,NULL),(412,'[[predate]]',0,862,59.200000,1,NULL,NULL),(413,'[[regdate]]',0,862,59.200000,1,NULL,NULL),(414,'[[postdate]]',0,862,59.200000,1,NULL,NULL),(415,'[[predate]]',0,863,59.200000,1,NULL,NULL),(416,'[[regdate]]',0,863,59.200000,1,NULL,NULL),(417,'[[postdate]]',0,863,59.200000,1,NULL,NULL),(418,'[[predate]]',0,864,59.200000,1,NULL,NULL),(419,'[[regdate]]',0,864,59.200000,1,NULL,NULL),(420,'[[postdate]]',0,864,59.200000,1,NULL,NULL),(421,'[[predate]]',0,865,59.200000,1,NULL,NULL),(422,'[[regdate]]',0,865,59.200000,1,NULL,NULL),(423,'[[postdate]]',0,865,59.200000,1,NULL,NULL),(424,'[[predate]]',0,866,59.200000,1,NULL,NULL),(425,'[[regdate]]',0,866,59.200000,1,NULL,NULL),(426,'[[postdate]]',0,866,59.200000,1,NULL,NULL),(427,'[[predate]]',0,867,59.200000,1,NULL,NULL),(428,'[[regdate]]',0,867,59.200000,1,NULL,NULL),(429,'[[postdate]]',0,867,59.200000,1,NULL,NULL),(430,'[[predate]]',0,868,38.400000,1,NULL,NULL),(431,'[[regdate]]',0,868,38.400000,1,NULL,NULL),(432,'[[postdate]]',0,868,38.400000,1,NULL,NULL),(433,'[[predate]]',0,869,38.400000,1,NULL,NULL),(434,'[[regdate]]',0,869,38.400000,1,NULL,NULL),(435,'[[postdate]]',0,869,38.400000,1,NULL,NULL),(436,'[[predate]]',0,870,38.400000,1,NULL,NULL),(437,'[[regdate]]',0,870,38.400000,1,NULL,NULL),(438,'[[postdate]]',0,870,38.400000,1,NULL,NULL),(439,'[[predate]]',0,871,38.400000,1,NULL,NULL),(440,'[[regdate]]',0,871,38.400000,1,NULL,NULL),(441,'[[postdate]]',0,871,38.400000,1,NULL,NULL),(442,'[[predate]]',0,872,38.400000,1,NULL,NULL),(443,'[[regdate]]',0,872,38.400000,1,NULL,NULL),(444,'[[postdate]]',0,872,38.400000,1,NULL,NULL),(445,'[[predate]]',0,873,38.400000,1,NULL,NULL),(446,'[[regdate]]',0,873,38.400000,1,NULL,NULL),(447,'[[postdate]]',0,873,38.400000,1,NULL,NULL),(448,'[[predate]]',0,874,38.400000,1,NULL,NULL),(449,'[[regdate]]',0,874,38.400000,1,NULL,NULL),(450,'[[postdate]]',0,874,38.400000,1,NULL,NULL),(451,'[[predate]]',0,875,38.400000,1,NULL,NULL),(452,'[[regdate]]',0,875,38.400000,1,NULL,NULL),(453,'[[postdate]]',0,875,38.400000,1,NULL,NULL),(454,'[[predate]]',0,876,38.400000,1,NULL,NULL),(455,'[[regdate]]',0,876,38.400000,1,NULL,NULL),(456,'[[postdate]]',0,876,38.400000,1,NULL,NULL),(457,'[[predate]]',0,877,38.400000,1,NULL,NULL),(458,'[[regdate]]',0,877,38.400000,1,NULL,NULL),(459,'[[postdate]]',0,877,38.400000,1,NULL,NULL),(460,'[[predate]]',0,878,38.400000,1,NULL,NULL),(461,'[[regdate]]',0,878,38.400000,1,NULL,NULL),(462,'[[postdate]]',0,878,38.400000,1,NULL,NULL),(463,'[[predate]]',0,879,38.400000,1,NULL,NULL),(464,'[[regdate]]',0,879,38.400000,1,NULL,NULL),(465,'[[postdate]]',0,879,38.400000,1,NULL,NULL),(466,'[[predate]]',0,880,38.400000,1,NULL,NULL),(467,'[[regdate]]',0,880,38.400000,1,NULL,NULL),(468,'[[postdate]]',0,880,38.400000,1,NULL,NULL),(469,'[[predate]]',0,1813,31.200000,1,NULL,NULL),(470,'[[regdate]]',0,1813,31.200000,1,NULL,NULL),(471,'[[postdate]]',0,1813,31.200000,1,NULL,NULL),(472,'[[predate]]',0,1814,31.200000,1,NULL,NULL),(473,'[[regdate]]',0,1814,31.200000,1,NULL,NULL),(474,'[[postdate]]',0,1814,31.200000,1,NULL,NULL),(475,'[[predate]]',0,1815,31.200000,1,NULL,NULL),(476,'[[regdate]]',0,1815,31.200000,1,NULL,NULL),(477,'[[postdate]]',0,1815,31.200000,1,NULL,NULL),(478,'[[predate]]',0,1816,31.200000,1,NULL,NULL),(479,'[[regdate]]',0,1816,31.200000,1,NULL,NULL),(480,'[[postdate]]',0,1816,31.200000,1,NULL,NULL),(481,'[[predate]]',0,1817,31.200000,1,NULL,NULL),(482,'[[regdate]]',0,1817,31.200000,1,NULL,NULL),(483,'[[postdate]]',0,1817,31.200000,1,NULL,NULL),(484,'[[predate]]',0,1818,31.200000,1,NULL,NULL),(485,'[[regdate]]',0,1818,31.200000,1,NULL,NULL),(486,'[[postdate]]',0,1818,31.200000,1,NULL,NULL),(487,'[[predate]]',0,1819,31.200000,1,NULL,NULL),(488,'[[regdate]]',0,1819,31.200000,1,NULL,NULL),(489,'[[postdate]]',0,1819,31.200000,1,NULL,NULL),(490,'[[predate]]',0,1820,33.600000,1,NULL,NULL),(491,'[[regdate]]',0,1820,33.600000,1,NULL,NULL),(492,'[[postdate]]',0,1820,33.600000,1,NULL,NULL),(493,'[[predate]]',0,1821,33.600000,1,NULL,NULL),(494,'[[regdate]]',0,1821,33.600000,1,NULL,NULL),(495,'[[postdate]]',0,1821,33.600000,1,NULL,NULL),(496,'[[predate]]',0,1822,33.600000,1,NULL,NULL),(497,'[[regdate]]',0,1822,33.600000,1,NULL,NULL),(498,'[[postdate]]',0,1822,33.600000,1,NULL,NULL),(499,'[[predate]]',0,1823,33.600000,1,NULL,NULL),(500,'[[regdate]]',0,1823,33.600000,1,NULL,NULL),(501,'[[postdate]]',0,1823,33.600000,1,NULL,NULL),(502,'[[predate]]',0,1824,33.600000,1,NULL,NULL),(503,'[[regdate]]',0,1824,33.600000,1,NULL,NULL),(504,'[[postdate]]',0,1824,33.600000,1,NULL,NULL),(505,'[[predate]]',0,1825,33.600000,1,NULL,NULL),(506,'[[regdate]]',0,1825,33.600000,1,NULL,NULL),(507,'[[postdate]]',0,1825,33.600000,1,NULL,NULL),(508,'[[predate]]',0,1826,33.600000,1,NULL,NULL),(509,'[[regdate]]',0,1826,33.600000,1,NULL,NULL),(510,'[[postdate]]',0,1826,33.600000,1,NULL,NULL),(511,'[[predate]]',0,1827,38.400000,1,NULL,NULL),(512,'[[regdate]]',0,1827,38.400000,1,NULL,NULL),(513,'[[postdate]]',0,1827,38.400000,1,NULL,NULL),(514,'[[predate]]',0,1828,38.400000,1,NULL,NULL),(515,'[[regdate]]',0,1828,38.400000,1,NULL,NULL),(516,'[[postdate]]',0,1828,38.400000,1,NULL,NULL),(517,'[[predate]]',0,1829,38.400000,1,NULL,NULL),(518,'[[regdate]]',0,1829,38.400000,1,NULL,NULL),(519,'[[postdate]]',0,1829,38.400000,1,NULL,NULL),(520,'[[predate]]',0,1830,38.400000,1,NULL,NULL),(521,'[[regdate]]',0,1830,38.400000,1,NULL,NULL),(522,'[[postdate]]',0,1830,38.400000,1,NULL,NULL),(523,'[[predate]]',0,1831,38.400000,1,NULL,NULL),(524,'[[regdate]]',0,1831,38.400000,1,NULL,NULL),(525,'[[postdate]]',0,1831,38.400000,1,NULL,NULL),(526,'[[predate]]',0,1832,38.400000,1,NULL,NULL),(527,'[[regdate]]',0,1832,38.400000,1,NULL,NULL),(528,'[[postdate]]',0,1832,38.400000,1,NULL,NULL),(529,'[[predate]]',0,1833,38.400000,1,NULL,NULL),(530,'[[regdate]]',0,1833,38.400000,1,NULL,NULL),(531,'[[postdate]]',0,1833,38.400000,1,NULL,NULL),(532,'[[predate]]',0,1834,60.000000,1,NULL,NULL),(533,'[[regdate]]',0,1834,60.000000,1,NULL,NULL),(534,'[[postdate]]',0,1834,60.000000,1,NULL,NULL),(535,'[[predate]]',0,1835,60.000000,1,NULL,NULL),(536,'[[regdate]]',0,1835,60.000000,1,NULL,NULL),(537,'[[postdate]]',0,1835,60.000000,1,NULL,NULL),(538,'[[predate]]',0,1836,60.000000,1,NULL,NULL),(539,'[[regdate]]',0,1836,60.000000,1,NULL,NULL),(540,'[[postdate]]',0,1836,60.000000,1,NULL,NULL),(541,'[[predate]]',0,1837,60.000000,1,NULL,NULL),(542,'[[regdate]]',0,1837,60.000000,1,NULL,NULL),(543,'[[postdate]]',0,1837,60.000000,1,NULL,NULL),(544,'[[predate]]',0,1838,60.000000,1,NULL,NULL),(545,'[[regdate]]',0,1838,60.000000,1,NULL,NULL),(546,'[[postdate]]',0,1838,60.000000,1,NULL,NULL),(547,'[[predate]]',0,1839,60.000000,1,NULL,NULL),(548,'[[regdate]]',0,1839,60.000000,1,NULL,NULL),(549,'[[postdate]]',0,1839,60.000000,1,NULL,NULL),(550,'[[predate]]',0,1840,60.000000,1,NULL,NULL),(551,'[[regdate]]',0,1840,60.000000,1,NULL,NULL),(552,'[[postdate]]',0,1840,60.000000,1,NULL,NULL),(553,'[[predate]]',0,1841,60.000000,1,NULL,NULL),(554,'[[regdate]]',0,1841,60.000000,1,NULL,NULL),(555,'[[postdate]]',0,1841,60.000000,1,NULL,NULL),(556,'[[predate]]',0,1842,60.000000,1,NULL,NULL),(557,'[[regdate]]',0,1842,60.000000,1,NULL,NULL),(558,'[[postdate]]',0,1842,60.000000,1,NULL,NULL),(559,'[[predate]]',0,1843,60.000000,1,NULL,NULL),(560,'[[regdate]]',0,1843,60.000000,1,NULL,NULL),(561,'[[postdate]]',0,1843,60.000000,1,NULL,NULL),(562,'[[predate]]',0,1844,60.000000,1,NULL,NULL),(563,'[[regdate]]',0,1844,60.000000,1,NULL,NULL),(564,'[[postdate]]',0,1844,60.000000,1,NULL,NULL),(565,'[[predate]]',0,1845,60.000000,1,NULL,NULL),(566,'[[regdate]]',0,1845,60.000000,1,NULL,NULL),(567,'[[postdate]]',0,1845,60.000000,1,NULL,NULL),(568,'[[predate]]',0,1846,60.000000,1,NULL,NULL),(569,'[[regdate]]',0,1846,60.000000,1,NULL,NULL),(570,'[[postdate]]',0,1846,60.000000,1,NULL,NULL),(571,'[[predate]]',0,1847,60.000000,1,NULL,NULL),(572,'[[regdate]]',0,1847,60.000000,1,NULL,NULL),(573,'[[postdate]]',0,1847,60.000000,1,NULL,NULL),(574,'[[predate]]',0,1848,47.200000,1,NULL,NULL),(575,'[[regdate]]',0,1848,47.200000,1,NULL,NULL),(576,'[[postdate]]',0,1848,47.200000,1,NULL,NULL),(577,'[[predate]]',0,1849,47.200000,1,NULL,NULL),(578,'[[regdate]]',0,1849,47.200000,1,NULL,NULL),(579,'[[postdate]]',0,1849,47.200000,1,NULL,NULL),(580,'[[predate]]',0,1850,47.200000,1,NULL,NULL),(581,'[[regdate]]',0,1850,47.200000,1,NULL,NULL),(582,'[[postdate]]',0,1850,47.200000,1,NULL,NULL),(583,'[[predate]]',0,1851,47.200000,1,NULL,NULL),(584,'[[regdate]]',0,1851,47.200000,1,NULL,NULL),(585,'[[postdate]]',0,1851,47.200000,1,NULL,NULL),(586,'[[predate]]',0,1852,47.200000,1,NULL,NULL),(587,'[[regdate]]',0,1852,47.200000,1,NULL,NULL),(588,'[[postdate]]',0,1852,47.200000,1,NULL,NULL),(589,'[[predate]]',0,1853,47.200000,1,NULL,NULL),(590,'[[regdate]]',0,1853,47.200000,1,NULL,NULL),(591,'[[postdate]]',0,1853,47.200000,1,NULL,NULL),(592,'[[predate]]',0,1854,47.200000,1,NULL,NULL),(593,'[[regdate]]',0,1854,47.200000,1,NULL,NULL),(594,'[[postdate]]',0,1854,47.200000,1,NULL,NULL),(595,'[[predate]]',0,1855,38.400000,1,NULL,NULL),(596,'[[regdate]]',0,1855,38.400000,1,NULL,NULL),(597,'[[postdate]]',0,1855,38.400000,1,NULL,NULL),(598,'[[predate]]',0,1856,38.400000,1,NULL,NULL),(599,'[[regdate]]',0,1856,38.400000,1,NULL,NULL),(600,'[[postdate]]',0,1856,38.400000,1,NULL,NULL),(601,'[[predate]]',0,1857,38.400000,1,NULL,NULL),(602,'[[regdate]]',0,1857,38.400000,1,NULL,NULL),(603,'[[postdate]]',0,1857,38.400000,1,NULL,NULL),(604,'[[predate]]',0,1858,38.400000,1,NULL,NULL),(605,'[[regdate]]',0,1858,38.400000,1,NULL,NULL),(606,'[[postdate]]',0,1858,38.400000,1,NULL,NULL),(607,'[[predate]]',0,1859,38.400000,1,NULL,NULL),(608,'[[regdate]]',0,1859,38.400000,1,NULL,NULL),(609,'[[postdate]]',0,1859,38.400000,1,NULL,NULL),(610,'[[predate]]',0,1860,38.400000,1,NULL,NULL),(611,'[[regdate]]',0,1860,38.400000,1,NULL,NULL),(612,'[[postdate]]',0,1860,38.400000,1,NULL,NULL),(613,'[[predate]]',0,1861,38.400000,1,NULL,NULL),(614,'[[regdate]]',0,1861,38.400000,1,NULL,NULL),(615,'[[postdate]]',0,1861,38.400000,1,NULL,NULL),(616,'[[predate]]',0,1862,38.400000,1,NULL,NULL),(617,'[[regdate]]',0,1862,38.400000,1,NULL,NULL),(618,'[[postdate]]',0,1862,38.400000,1,NULL,NULL),(619,'[[predate]]',0,1863,38.400000,1,NULL,NULL),(620,'[[regdate]]',0,1863,38.400000,1,NULL,NULL),(621,'[[postdate]]',0,1863,38.400000,1,NULL,NULL),(622,'[[predate]]',0,1864,38.400000,1,NULL,NULL),(623,'[[regdate]]',0,1864,38.400000,1,NULL,NULL),(624,'[[postdate]]',0,1864,38.400000,1,NULL,NULL),(625,'[[predate]]',0,1865,38.400000,1,NULL,NULL),(626,'[[regdate]]',0,1865,38.400000,1,NULL,NULL),(627,'[[postdate]]',0,1865,38.400000,1,NULL,NULL),(628,'[[predate]]',0,1866,38.400000,1,NULL,NULL),(629,'[[regdate]]',0,1866,38.400000,1,NULL,NULL),(630,'[[postdate]]',0,1866,38.400000,1,NULL,NULL),(631,'[[predate]]',0,1867,38.400000,1,NULL,NULL),(632,'[[regdate]]',0,1867,38.400000,1,NULL,NULL),(633,'[[postdate]]',0,1867,38.400000,1,NULL,NULL),(634,'[[predate]]',0,1868,38.400000,1,NULL,NULL),(635,'[[regdate]]',0,1868,38.400000,1,NULL,NULL),(636,'[[postdate]]',0,1868,38.400000,1,NULL,NULL),(637,'[[predate]]',0,1869,40.800000,1,NULL,NULL),(638,'[[regdate]]',0,1869,40.800000,1,NULL,NULL),(639,'[[postdate]]',0,1869,40.800000,1,NULL,NULL),(640,'[[predate]]',0,1870,40.800000,1,NULL,NULL),(641,'[[regdate]]',0,1870,40.800000,1,NULL,NULL),(642,'[[postdate]]',0,1870,40.800000,1,NULL,NULL),(643,'[[predate]]',0,1871,40.800000,1,NULL,NULL),(644,'[[regdate]]',0,1871,40.800000,1,NULL,NULL),(645,'[[postdate]]',0,1871,40.800000,1,NULL,NULL),(646,'[[predate]]',0,1872,40.800000,1,NULL,NULL),(647,'[[regdate]]',0,1872,40.800000,1,NULL,NULL),(648,'[[postdate]]',0,1872,40.800000,1,NULL,NULL),(649,'[[predate]]',0,1873,40.800000,1,NULL,NULL),(650,'[[regdate]]',0,1873,40.800000,1,NULL,NULL),(651,'[[postdate]]',0,1873,40.800000,1,NULL,NULL),(652,'[[predate]]',0,1874,40.800000,1,NULL,NULL),(653,'[[regdate]]',0,1874,40.800000,1,NULL,NULL),(654,'[[postdate]]',0,1874,40.800000,1,NULL,NULL),(655,'[[predate]]',0,1875,40.800000,1,NULL,NULL),(656,'[[regdate]]',0,1875,40.800000,1,NULL,NULL),(657,'[[postdate]]',0,1875,40.800000,1,NULL,NULL),(658,'[[predate]]',0,1876,40.800000,1,NULL,NULL),(659,'[[regdate]]',0,1876,40.800000,1,NULL,NULL),(660,'[[postdate]]',0,1876,40.800000,1,NULL,NULL),(661,'[[predate]]',0,1877,40.800000,1,NULL,NULL),(662,'[[regdate]]',0,1877,40.800000,1,NULL,NULL),(663,'[[postdate]]',0,1877,40.800000,1,NULL,NULL),(664,'[[predate]]',0,1878,40.800000,1,NULL,NULL),(665,'[[regdate]]',0,1878,40.800000,1,NULL,NULL),(666,'[[postdate]]',0,1878,40.800000,1,NULL,NULL),(667,'[[predate]]',0,1879,40.800000,1,NULL,NULL),(668,'[[regdate]]',0,1879,40.800000,1,NULL,NULL),(669,'[[postdate]]',0,1879,40.800000,1,NULL,NULL),(670,'[[predate]]',0,1880,40.800000,1,NULL,NULL),(671,'[[regdate]]',0,1880,40.800000,1,NULL,NULL),(672,'[[postdate]]',0,1880,40.800000,1,NULL,NULL),(673,'[[predate]]',0,1881,40.800000,1,NULL,NULL),(674,'[[regdate]]',0,1881,40.800000,1,NULL,NULL),(675,'[[postdate]]',0,1881,40.800000,1,NULL,NULL),(676,'[[predate]]',0,1882,40.800000,1,NULL,NULL),(677,'[[regdate]]',0,1882,40.800000,1,NULL,NULL),(678,'[[postdate]]',0,1882,40.800000,1,NULL,NULL),(679,'[[predate]]',0,1883,33.600000,1,NULL,NULL),(680,'[[regdate]]',0,1883,33.600000,1,NULL,NULL),(681,'[[postdate]]',0,1883,33.600000,1,NULL,NULL),(682,'[[predate]]',0,1884,33.600000,1,NULL,NULL),(683,'[[regdate]]',0,1884,33.600000,1,NULL,NULL),(684,'[[postdate]]',0,1884,33.600000,1,NULL,NULL),(685,'[[predate]]',0,1885,33.600000,1,NULL,NULL),(686,'[[regdate]]',0,1885,33.600000,1,NULL,NULL),(687,'[[postdate]]',0,1885,33.600000,1,NULL,NULL),(688,'[[predate]]',0,1886,33.600000,1,NULL,NULL),(689,'[[regdate]]',0,1886,33.600000,1,NULL,NULL),(690,'[[postdate]]',0,1886,33.600000,1,NULL,NULL),(691,'[[predate]]',0,1887,33.600000,1,NULL,NULL),(692,'[[regdate]]',0,1887,33.600000,1,NULL,NULL),(693,'[[postdate]]',0,1887,33.600000,1,NULL,NULL),(694,'[[predate]]',0,1888,33.600000,1,NULL,NULL),(695,'[[regdate]]',0,1888,33.600000,1,NULL,NULL),(696,'[[postdate]]',0,1888,33.600000,1,NULL,NULL),(697,'[[predate]]',0,1889,33.600000,1,NULL,NULL),(698,'[[regdate]]',0,1889,33.600000,1,NULL,NULL),(699,'[[postdate]]',0,1889,33.600000,1,NULL,NULL),(700,'[[predate]]',0,1890,50.400000,1,NULL,NULL),(701,'[[regdate]]',0,1890,50.400000,1,NULL,NULL),(702,'[[postdate]]',0,1890,50.400000,1,NULL,NULL),(703,'[[predate]]',0,1891,50.400000,1,NULL,NULL),(704,'[[regdate]]',0,1891,50.400000,1,NULL,NULL),(705,'[[postdate]]',0,1891,50.400000,1,NULL,NULL),(706,'[[predate]]',0,1892,50.400000,1,NULL,NULL),(707,'[[regdate]]',0,1892,50.400000,1,NULL,NULL),(708,'[[postdate]]',0,1892,50.400000,1,NULL,NULL),(709,'[[predate]]',0,1893,50.400000,1,NULL,NULL),(710,'[[regdate]]',0,1893,50.400000,1,NULL,NULL),(711,'[[postdate]]',0,1893,50.400000,1,NULL,NULL),(712,'[[predate]]',0,1894,50.400000,1,NULL,NULL),(713,'[[regdate]]',0,1894,50.400000,1,NULL,NULL),(714,'[[postdate]]',0,1894,50.400000,1,NULL,NULL),(715,'[[predate]]',0,1895,50.400000,1,NULL,NULL),(716,'[[regdate]]',0,1895,50.400000,1,NULL,NULL),(717,'[[postdate]]',0,1895,50.400000,1,NULL,NULL),(718,'[[predate]]',0,1896,50.400000,1,NULL,NULL),(719,'[[regdate]]',0,1896,50.400000,1,NULL,NULL),(720,'[[postdate]]',0,1896,50.400000,1,NULL,NULL),(721,'[[predate]]',0,1897,39.200000,1,NULL,NULL),(722,'[[regdate]]',0,1897,39.200000,1,NULL,NULL),(723,'[[postdate]]',0,1897,39.200000,1,NULL,NULL),(724,'[[predate]]',0,1898,39.200000,1,NULL,NULL),(725,'[[regdate]]',0,1898,39.200000,1,NULL,NULL),(726,'[[postdate]]',0,1898,39.200000,1,NULL,NULL),(727,'[[predate]]',0,1899,39.200000,1,NULL,NULL),(728,'[[regdate]]',0,1899,39.200000,1,NULL,NULL),(729,'[[postdate]]',0,1899,39.200000,1,NULL,NULL),(730,'[[predate]]',0,1900,39.200000,1,NULL,NULL),(731,'[[regdate]]',0,1900,39.200000,1,NULL,NULL),(732,'[[postdate]]',0,1900,39.200000,1,NULL,NULL),(733,'[[predate]]',0,1901,39.200000,1,NULL,NULL),(734,'[[regdate]]',0,1901,39.200000,1,NULL,NULL),(735,'[[postdate]]',0,1901,39.200000,1,NULL,NULL),(736,'[[predate]]',0,1902,39.200000,1,NULL,NULL),(737,'[[regdate]]',0,1902,39.200000,1,NULL,NULL),(738,'[[postdate]]',0,1902,39.200000,1,NULL,NULL),(739,'[[predate]]',0,1903,39.200000,1,NULL,NULL),(740,'[[regdate]]',0,1903,39.200000,1,NULL,NULL),(741,'[[postdate]]',0,1903,39.200000,1,NULL,NULL),(742,'[[predate]]',1,725,28.000000,1,NULL,NULL),(743,'[[regdate]]',1,725,28.000000,1,NULL,NULL),(744,'[[postdate]]',1,725,28.000000,1,NULL,NULL),(745,'[[predate]]',1,726,28.000000,1,NULL,NULL),(746,'[[regdate]]',1,726,28.000000,1,NULL,NULL),(747,'[[postdate]]',1,726,28.000000,1,NULL,NULL),(748,'[[predate]]',1,727,28.000000,1,NULL,NULL),(749,'[[regdate]]',1,727,28.000000,1,NULL,NULL),(750,'[[postdate]]',1,727,28.000000,1,NULL,NULL),(751,'[[predate]]',1,728,28.000000,1,NULL,NULL),(752,'[[regdate]]',1,728,28.000000,1,NULL,NULL),(753,'[[postdate]]',1,728,28.000000,1,NULL,NULL),(754,'[[predate]]',1,729,28.000000,1,NULL,NULL),(755,'[[regdate]]',1,729,28.000000,1,NULL,NULL),(756,'[[postdate]]',1,729,28.000000,1,NULL,NULL),(757,'[[predate]]',1,730,28.000000,1,NULL,NULL),(758,'[[regdate]]',1,730,28.000000,1,NULL,NULL),(759,'[[postdate]]',1,730,28.000000,1,NULL,NULL),(760,'[[predate]]',1,731,28.000000,1,NULL,NULL),(761,'[[regdate]]',1,731,28.000000,1,NULL,NULL),(762,'[[postdate]]',1,731,28.000000,1,NULL,NULL),(763,'[[predate]]',1,732,28.000000,1,NULL,NULL),(764,'[[regdate]]',1,732,28.000000,1,NULL,NULL),(765,'[[postdate]]',1,732,28.000000,1,NULL,NULL),(766,'[[predate]]',1,733,28.000000,1,NULL,NULL),(767,'[[regdate]]',1,733,28.000000,1,NULL,NULL),(768,'[[postdate]]',1,733,28.000000,1,NULL,NULL),(769,'[[predate]]',1,734,28.000000,1,NULL,NULL),(770,'[[regdate]]',1,734,28.000000,1,NULL,NULL),(771,'[[postdate]]',1,734,28.000000,1,NULL,NULL),(772,'[[predate]]',1,735,28.000000,1,NULL,NULL),(773,'[[regdate]]',1,735,28.000000,1,NULL,NULL),(774,'[[postdate]]',1,735,28.000000,1,NULL,NULL),(775,'[[predate]]',1,736,28.000000,1,NULL,NULL),(776,'[[regdate]]',1,736,28.000000,1,NULL,NULL),(777,'[[postdate]]',1,736,28.000000,1,NULL,NULL),(778,'[[predate]]',1,737,28.000000,1,NULL,NULL),(779,'[[regdate]]',1,737,28.000000,1,NULL,NULL),(780,'[[postdate]]',1,737,28.000000,1,NULL,NULL),(781,'[[predate]]',1,738,36.800000,1,NULL,NULL),(782,'[[regdate]]',1,738,36.800000,1,NULL,NULL),(783,'[[postdate]]',1,738,36.800000,1,NULL,NULL),(784,'[[predate]]',1,739,36.800000,1,NULL,NULL),(785,'[[regdate]]',1,739,36.800000,1,NULL,NULL),(786,'[[postdate]]',1,739,36.800000,1,NULL,NULL),(787,'[[predate]]',1,740,36.800000,1,NULL,NULL),(788,'[[regdate]]',1,740,36.800000,1,NULL,NULL),(789,'[[postdate]]',1,740,36.800000,1,NULL,NULL),(790,'[[predate]]',1,741,36.800000,1,NULL,NULL),(791,'[[regdate]]',1,741,36.800000,1,NULL,NULL),(792,'[[postdate]]',1,741,36.800000,1,NULL,NULL),(793,'[[predate]]',1,742,36.800000,1,NULL,NULL),(794,'[[regdate]]',1,742,36.800000,1,NULL,NULL),(795,'[[postdate]]',1,742,36.800000,1,NULL,NULL),(796,'[[predate]]',1,743,36.800000,1,NULL,NULL),(797,'[[regdate]]',1,743,36.800000,1,NULL,NULL),(798,'[[postdate]]',1,743,36.800000,1,NULL,NULL),(799,'[[predate]]',1,744,36.800000,1,NULL,NULL),(800,'[[regdate]]',1,744,36.800000,1,NULL,NULL),(801,'[[postdate]]',1,744,36.800000,1,NULL,NULL),(802,'[[predate]]',1,745,36.800000,1,NULL,NULL),(803,'[[regdate]]',1,745,36.800000,1,NULL,NULL),(804,'[[postdate]]',1,745,36.800000,1,NULL,NULL),(805,'[[predate]]',1,746,36.800000,1,NULL,NULL),(806,'[[regdate]]',1,746,36.800000,1,NULL,NULL),(807,'[[postdate]]',1,746,36.800000,1,NULL,NULL),(808,'[[predate]]',1,747,36.800000,1,NULL,NULL),(809,'[[regdate]]',1,747,36.800000,1,NULL,NULL),(810,'[[postdate]]',1,747,36.800000,1,NULL,NULL),(811,'[[predate]]',1,748,36.800000,1,NULL,NULL),(812,'[[regdate]]',1,748,36.800000,1,NULL,NULL),(813,'[[postdate]]',1,748,36.800000,1,NULL,NULL),(814,'[[predate]]',1,749,36.800000,1,NULL,NULL),(815,'[[regdate]]',1,749,36.800000,1,NULL,NULL),(816,'[[postdate]]',1,749,36.800000,1,NULL,NULL),(817,'[[predate]]',1,750,36.800000,1,NULL,NULL),(818,'[[regdate]]',1,750,36.800000,1,NULL,NULL),(819,'[[postdate]]',1,750,36.800000,1,NULL,NULL),(820,'[[predate]]',1,751,40.800000,1,NULL,NULL),(821,'[[regdate]]',1,751,40.800000,1,NULL,NULL),(822,'[[postdate]]',1,751,40.800000,1,NULL,NULL),(823,'[[predate]]',1,752,40.800000,1,NULL,NULL),(824,'[[regdate]]',1,752,40.800000,1,NULL,NULL),(825,'[[postdate]]',1,752,40.800000,1,NULL,NULL),(826,'[[predate]]',1,753,40.800000,1,NULL,NULL),(827,'[[regdate]]',1,753,40.800000,1,NULL,NULL),(828,'[[postdate]]',1,753,40.800000,1,NULL,NULL),(829,'[[predate]]',1,754,40.800000,1,NULL,NULL),(830,'[[regdate]]',1,754,40.800000,1,NULL,NULL),(831,'[[postdate]]',1,754,40.800000,1,NULL,NULL),(832,'[[predate]]',1,755,40.800000,1,NULL,NULL),(833,'[[regdate]]',1,755,40.800000,1,NULL,NULL),(834,'[[postdate]]',1,755,40.800000,1,NULL,NULL),(835,'[[predate]]',1,756,40.800000,1,NULL,NULL),(836,'[[regdate]]',1,756,40.800000,1,NULL,NULL),(837,'[[postdate]]',1,756,40.800000,1,NULL,NULL),(838,'[[predate]]',1,757,40.800000,1,NULL,NULL),(839,'[[regdate]]',1,757,40.800000,1,NULL,NULL),(840,'[[postdate]]',1,757,40.800000,1,NULL,NULL),(841,'[[predate]]',1,758,40.800000,1,NULL,NULL),(842,'[[regdate]]',1,758,40.800000,1,NULL,NULL),(843,'[[postdate]]',1,758,40.800000,1,NULL,NULL),(844,'[[predate]]',1,759,40.800000,1,NULL,NULL),(845,'[[regdate]]',1,759,40.800000,1,NULL,NULL),(846,'[[postdate]]',1,759,40.800000,1,NULL,NULL),(847,'[[predate]]',1,760,40.800000,1,NULL,NULL),(848,'[[regdate]]',1,760,40.800000,1,NULL,NULL),(849,'[[postdate]]',1,760,40.800000,1,NULL,NULL),(850,'[[predate]]',1,761,40.800000,1,NULL,NULL),(851,'[[regdate]]',1,761,40.800000,1,NULL,NULL),(852,'[[postdate]]',1,761,40.800000,1,NULL,NULL),(853,'[[predate]]',1,762,40.800000,1,NULL,NULL),(854,'[[regdate]]',1,762,40.800000,1,NULL,NULL),(855,'[[postdate]]',1,762,40.800000,1,NULL,NULL),(856,'[[predate]]',1,763,40.800000,1,NULL,NULL),(857,'[[regdate]]',1,763,40.800000,1,NULL,NULL),(858,'[[postdate]]',1,763,40.800000,1,NULL,NULL),(859,'[[predate]]',1,764,36.000000,1,NULL,NULL),(860,'[[regdate]]',1,764,36.000000,1,NULL,NULL),(861,'[[postdate]]',1,764,36.000000,1,NULL,NULL),(862,'[[predate]]',1,765,36.000000,1,NULL,NULL),(863,'[[regdate]]',1,765,36.000000,1,NULL,NULL),(864,'[[postdate]]',1,765,36.000000,1,NULL,NULL),(865,'[[predate]]',1,766,36.000000,1,NULL,NULL),(866,'[[regdate]]',1,766,36.000000,1,NULL,NULL),(867,'[[postdate]]',1,766,36.000000,1,NULL,NULL),(868,'[[predate]]',1,767,36.000000,1,NULL,NULL),(869,'[[regdate]]',1,767,36.000000,1,NULL,NULL),(870,'[[postdate]]',1,767,36.000000,1,NULL,NULL),(871,'[[predate]]',1,768,36.000000,1,NULL,NULL),(872,'[[regdate]]',1,768,36.000000,1,NULL,NULL),(873,'[[postdate]]',1,768,36.000000,1,NULL,NULL),(874,'[[predate]]',1,769,36.000000,1,NULL,NULL),(875,'[[regdate]]',1,769,36.000000,1,NULL,NULL),(876,'[[postdate]]',1,769,36.000000,1,NULL,NULL),(877,'[[predate]]',1,770,36.000000,1,NULL,NULL),(878,'[[regdate]]',1,770,36.000000,1,NULL,NULL),(879,'[[postdate]]',1,770,36.000000,1,NULL,NULL),(880,'[[predate]]',1,771,36.000000,1,NULL,NULL),(881,'[[regdate]]',1,771,36.000000,1,NULL,NULL),(882,'[[postdate]]',1,771,36.000000,1,NULL,NULL),(883,'[[predate]]',1,772,36.000000,1,NULL,NULL),(884,'[[regdate]]',1,772,36.000000,1,NULL,NULL),(885,'[[postdate]]',1,772,36.000000,1,NULL,NULL),(886,'[[predate]]',1,773,36.000000,1,NULL,NULL),(887,'[[regdate]]',1,773,36.000000,1,NULL,NULL),(888,'[[postdate]]',1,773,36.000000,1,NULL,NULL),(889,'[[predate]]',1,774,36.000000,1,NULL,NULL),(890,'[[regdate]]',1,774,36.000000,1,NULL,NULL),(891,'[[postdate]]',1,774,36.000000,1,NULL,NULL),(892,'[[predate]]',1,775,36.000000,1,NULL,NULL),(893,'[[regdate]]',1,775,36.000000,1,NULL,NULL),(894,'[[postdate]]',1,775,36.000000,1,NULL,NULL),(895,'[[predate]]',1,776,36.000000,1,NULL,NULL),(896,'[[regdate]]',1,776,36.000000,1,NULL,NULL),(897,'[[postdate]]',1,776,36.000000,1,NULL,NULL),(898,'[[predate]]',1,777,45.600000,1,NULL,NULL),(899,'[[regdate]]',1,777,45.600000,1,NULL,NULL),(900,'[[postdate]]',1,777,45.600000,1,NULL,NULL),(901,'[[predate]]',1,778,45.600000,1,NULL,NULL),(902,'[[regdate]]',1,778,45.600000,1,NULL,NULL),(903,'[[postdate]]',1,778,45.600000,1,NULL,NULL),(904,'[[predate]]',1,779,45.600000,1,NULL,NULL),(905,'[[regdate]]',1,779,45.600000,1,NULL,NULL),(906,'[[postdate]]',1,779,45.600000,1,NULL,NULL),(907,'[[predate]]',1,780,45.600000,1,NULL,NULL),(908,'[[regdate]]',1,780,45.600000,1,NULL,NULL),(909,'[[postdate]]',1,780,45.600000,1,NULL,NULL),(910,'[[predate]]',1,781,45.600000,1,NULL,NULL),(911,'[[regdate]]',1,781,45.600000,1,NULL,NULL),(912,'[[postdate]]',1,781,45.600000,1,NULL,NULL),(913,'[[predate]]',1,782,45.600000,1,NULL,NULL),(914,'[[regdate]]',1,782,45.600000,1,NULL,NULL),(915,'[[postdate]]',1,782,45.600000,1,NULL,NULL),(916,'[[predate]]',1,783,45.600000,1,NULL,NULL),(917,'[[regdate]]',1,783,45.600000,1,NULL,NULL),(918,'[[postdate]]',1,783,45.600000,1,NULL,NULL),(919,'[[predate]]',1,784,45.600000,1,NULL,NULL),(920,'[[regdate]]',1,784,45.600000,1,NULL,NULL),(921,'[[postdate]]',1,784,45.600000,1,NULL,NULL),(922,'[[predate]]',1,785,45.600000,1,NULL,NULL),(923,'[[regdate]]',1,785,45.600000,1,NULL,NULL),(924,'[[postdate]]',1,785,45.600000,1,NULL,NULL),(925,'[[predate]]',1,786,45.600000,1,NULL,NULL),(926,'[[regdate]]',1,786,45.600000,1,NULL,NULL),(927,'[[postdate]]',1,786,45.600000,1,NULL,NULL),(928,'[[predate]]',1,787,45.600000,1,NULL,NULL),(929,'[[regdate]]',1,787,45.600000,1,NULL,NULL),(930,'[[postdate]]',1,787,45.600000,1,NULL,NULL),(931,'[[predate]]',1,788,45.600000,1,NULL,NULL),(932,'[[regdate]]',1,788,45.600000,1,NULL,NULL),(933,'[[postdate]]',1,788,45.600000,1,NULL,NULL),(934,'[[predate]]',1,789,45.600000,1,NULL,NULL),(935,'[[regdate]]',1,789,45.600000,1,NULL,NULL),(936,'[[postdate]]',1,789,45.600000,1,NULL,NULL),(937,'[[predate]]',1,790,22.400000,1,NULL,NULL),(938,'[[regdate]]',1,790,22.400000,1,NULL,NULL),(939,'[[postdate]]',1,790,22.400000,1,NULL,NULL),(940,'[[predate]]',1,791,22.400000,1,NULL,NULL),(941,'[[regdate]]',1,791,22.400000,1,NULL,NULL),(942,'[[postdate]]',1,791,22.400000,1,NULL,NULL),(943,'[[predate]]',1,792,22.400000,1,NULL,NULL),(944,'[[regdate]]',1,792,22.400000,1,NULL,NULL),(945,'[[postdate]]',1,792,22.400000,1,NULL,NULL),(946,'[[predate]]',1,793,22.400000,1,NULL,NULL),(947,'[[regdate]]',1,793,22.400000,1,NULL,NULL),(948,'[[postdate]]',1,793,22.400000,1,NULL,NULL),(949,'[[predate]]',1,794,22.400000,1,NULL,NULL),(950,'[[regdate]]',1,794,22.400000,1,NULL,NULL),(951,'[[postdate]]',1,794,22.400000,1,NULL,NULL),(952,'[[predate]]',1,795,22.400000,1,NULL,NULL),(953,'[[regdate]]',1,795,22.400000,1,NULL,NULL),(954,'[[postdate]]',1,795,22.400000,1,NULL,NULL),(955,'[[predate]]',1,796,22.400000,1,NULL,NULL),(956,'[[regdate]]',1,796,22.400000,1,NULL,NULL),(957,'[[postdate]]',1,796,22.400000,1,NULL,NULL),(958,'[[predate]]',1,797,22.400000,1,NULL,NULL),(959,'[[regdate]]',1,797,22.400000,1,NULL,NULL),(960,'[[postdate]]',1,797,22.400000,1,NULL,NULL),(961,'[[predate]]',1,798,22.400000,1,NULL,NULL),(962,'[[regdate]]',1,798,22.400000,1,NULL,NULL),(963,'[[postdate]]',1,798,22.400000,1,NULL,NULL),(964,'[[predate]]',1,799,22.400000,1,NULL,NULL),(965,'[[regdate]]',1,799,22.400000,1,NULL,NULL),(966,'[[postdate]]',1,799,22.400000,1,NULL,NULL),(967,'[[predate]]',1,800,22.400000,1,NULL,NULL),(968,'[[regdate]]',1,800,22.400000,1,NULL,NULL),(969,'[[postdate]]',1,800,22.400000,1,NULL,NULL),(970,'[[predate]]',1,801,22.400000,1,NULL,NULL),(971,'[[regdate]]',1,801,22.400000,1,NULL,NULL),(972,'[[postdate]]',1,801,22.400000,1,NULL,NULL),(973,'[[predate]]',1,802,22.400000,1,NULL,NULL),(974,'[[regdate]]',1,802,22.400000,1,NULL,NULL),(975,'[[postdate]]',1,802,22.400000,1,NULL,NULL),(976,'[[predate]]',1,803,54.400000,1,NULL,NULL),(977,'[[regdate]]',1,803,54.400000,1,NULL,NULL),(978,'[[postdate]]',1,803,54.400000,1,NULL,NULL),(979,'[[predate]]',1,804,54.400000,1,NULL,NULL),(980,'[[regdate]]',1,804,54.400000,1,NULL,NULL),(981,'[[postdate]]',1,804,54.400000,1,NULL,NULL),(982,'[[predate]]',1,805,54.400000,1,NULL,NULL),(983,'[[regdate]]',1,805,54.400000,1,NULL,NULL),(984,'[[postdate]]',1,805,54.400000,1,NULL,NULL),(985,'[[predate]]',1,806,54.400000,1,NULL,NULL),(986,'[[regdate]]',1,806,54.400000,1,NULL,NULL),(987,'[[postdate]]',1,806,54.400000,1,NULL,NULL),(988,'[[predate]]',1,807,54.400000,1,NULL,NULL),(989,'[[regdate]]',1,807,54.400000,1,NULL,NULL),(990,'[[postdate]]',1,807,54.400000,1,NULL,NULL),(991,'[[predate]]',1,808,54.400000,1,NULL,NULL),(992,'[[regdate]]',1,808,54.400000,1,NULL,NULL),(993,'[[postdate]]',1,808,54.400000,1,NULL,NULL),(994,'[[predate]]',1,809,54.400000,1,NULL,NULL),(995,'[[regdate]]',1,809,54.400000,1,NULL,NULL),(996,'[[postdate]]',1,809,54.400000,1,NULL,NULL),(997,'[[predate]]',1,810,54.400000,1,NULL,NULL),(998,'[[regdate]]',1,810,54.400000,1,NULL,NULL),(999,'[[postdate]]',1,810,54.400000,1,NULL,NULL),(1000,'[[predate]]',1,811,54.400000,1,NULL,NULL),(1001,'[[regdate]]',1,811,54.400000,1,NULL,NULL),(1002,'[[postdate]]',1,811,54.400000,1,NULL,NULL),(1003,'[[predate]]',1,812,54.400000,1,NULL,NULL),(1004,'[[regdate]]',1,812,54.400000,1,NULL,NULL),(1005,'[[postdate]]',1,812,54.400000,1,NULL,NULL),(1006,'[[predate]]',1,813,54.400000,1,NULL,NULL),(1007,'[[regdate]]',1,813,54.400000,1,NULL,NULL),(1008,'[[postdate]]',1,813,54.400000,1,NULL,NULL),(1009,'[[predate]]',1,814,54.400000,1,NULL,NULL),(1010,'[[regdate]]',1,814,54.400000,1,NULL,NULL),(1011,'[[postdate]]',1,814,54.400000,1,NULL,NULL),(1012,'[[predate]]',1,815,54.400000,1,NULL,NULL),(1013,'[[regdate]]',1,815,54.400000,1,NULL,NULL),(1014,'[[postdate]]',1,815,54.400000,1,NULL,NULL),(1015,'[[predate]]',1,816,65.600000,1,NULL,NULL),(1016,'[[regdate]]',1,816,65.600000,1,NULL,NULL),(1017,'[[postdate]]',1,816,65.600000,1,NULL,NULL),(1018,'[[predate]]',1,817,65.600000,1,NULL,NULL),(1019,'[[regdate]]',1,817,65.600000,1,NULL,NULL),(1020,'[[postdate]]',1,817,65.600000,1,NULL,NULL),(1021,'[[predate]]',1,818,65.600000,1,NULL,NULL),(1022,'[[regdate]]',1,818,65.600000,1,NULL,NULL),(1023,'[[postdate]]',1,818,65.600000,1,NULL,NULL),(1024,'[[predate]]',1,819,65.600000,1,NULL,NULL),(1025,'[[regdate]]',1,819,65.600000,1,NULL,NULL),(1026,'[[postdate]]',1,819,65.600000,1,NULL,NULL),(1027,'[[predate]]',1,820,65.600000,1,NULL,NULL),(1028,'[[regdate]]',1,820,65.600000,1,NULL,NULL),(1029,'[[postdate]]',1,820,65.600000,1,NULL,NULL),(1030,'[[predate]]',1,821,65.600000,1,NULL,NULL),(1031,'[[regdate]]',1,821,65.600000,1,NULL,NULL),(1032,'[[postdate]]',1,821,65.600000,1,NULL,NULL),(1033,'[[predate]]',1,822,65.600000,1,NULL,NULL),(1034,'[[regdate]]',1,822,65.600000,1,NULL,NULL),(1035,'[[postdate]]',1,822,65.600000,1,NULL,NULL),(1036,'[[predate]]',1,823,65.600000,1,NULL,NULL),(1037,'[[regdate]]',1,823,65.600000,1,NULL,NULL),(1038,'[[postdate]]',1,823,65.600000,1,NULL,NULL),(1039,'[[predate]]',1,824,65.600000,1,NULL,NULL),(1040,'[[regdate]]',1,824,65.600000,1,NULL,NULL),(1041,'[[postdate]]',1,824,65.600000,1,NULL,NULL),(1042,'[[predate]]',1,825,65.600000,1,NULL,NULL),(1043,'[[regdate]]',1,825,65.600000,1,NULL,NULL),(1044,'[[postdate]]',1,825,65.600000,1,NULL,NULL),(1045,'[[predate]]',1,826,65.600000,1,NULL,NULL),(1046,'[[regdate]]',1,826,65.600000,1,NULL,NULL),(1047,'[[postdate]]',1,826,65.600000,1,NULL,NULL),(1048,'[[predate]]',1,827,65.600000,1,NULL,NULL),(1049,'[[regdate]]',1,827,65.600000,1,NULL,NULL),(1050,'[[postdate]]',1,827,65.600000,1,NULL,NULL),(1051,'[[predate]]',1,828,65.600000,1,NULL,NULL),(1052,'[[regdate]]',1,828,65.600000,1,NULL,NULL),(1053,'[[postdate]]',1,828,65.600000,1,NULL,NULL),(1054,'[[predate]]',1,829,60.000000,1,NULL,NULL),(1055,'[[regdate]]',1,829,60.000000,1,NULL,NULL),(1056,'[[postdate]]',1,829,60.000000,1,NULL,NULL),(1057,'[[predate]]',1,830,60.000000,1,NULL,NULL),(1058,'[[regdate]]',1,830,60.000000,1,NULL,NULL),(1059,'[[postdate]]',1,830,60.000000,1,NULL,NULL),(1060,'[[predate]]',1,831,60.000000,1,NULL,NULL),(1061,'[[regdate]]',1,831,60.000000,1,NULL,NULL),(1062,'[[postdate]]',1,831,60.000000,1,NULL,NULL),(1063,'[[predate]]',1,832,60.000000,1,NULL,NULL),(1064,'[[regdate]]',1,832,60.000000,1,NULL,NULL),(1065,'[[postdate]]',1,832,60.000000,1,NULL,NULL),(1066,'[[predate]]',1,833,60.000000,1,NULL,NULL),(1067,'[[regdate]]',1,833,60.000000,1,NULL,NULL),(1068,'[[postdate]]',1,833,60.000000,1,NULL,NULL),(1069,'[[predate]]',1,834,60.000000,1,NULL,NULL),(1070,'[[regdate]]',1,834,60.000000,1,NULL,NULL),(1071,'[[postdate]]',1,834,60.000000,1,NULL,NULL),(1072,'[[predate]]',1,835,60.000000,1,NULL,NULL),(1073,'[[regdate]]',1,835,60.000000,1,NULL,NULL),(1074,'[[postdate]]',1,835,60.000000,1,NULL,NULL),(1075,'[[predate]]',1,836,60.000000,1,NULL,NULL),(1076,'[[regdate]]',1,836,60.000000,1,NULL,NULL),(1077,'[[postdate]]',1,836,60.000000,1,NULL,NULL),(1078,'[[predate]]',1,837,60.000000,1,NULL,NULL),(1079,'[[regdate]]',1,837,60.000000,1,NULL,NULL),(1080,'[[postdate]]',1,837,60.000000,1,NULL,NULL),(1081,'[[predate]]',1,838,60.000000,1,NULL,NULL),(1082,'[[regdate]]',1,838,60.000000,1,NULL,NULL),(1083,'[[postdate]]',1,838,60.000000,1,NULL,NULL),(1084,'[[predate]]',1,839,60.000000,1,NULL,NULL),(1085,'[[regdate]]',1,839,60.000000,1,NULL,NULL),(1086,'[[postdate]]',1,839,60.000000,1,NULL,NULL),(1087,'[[predate]]',1,840,60.000000,1,NULL,NULL),(1088,'[[regdate]]',1,840,60.000000,1,NULL,NULL),(1089,'[[postdate]]',1,840,60.000000,1,NULL,NULL),(1090,'[[predate]]',1,841,60.000000,1,NULL,NULL),(1091,'[[regdate]]',1,841,60.000000,1,NULL,NULL),(1092,'[[postdate]]',1,841,60.000000,1,NULL,NULL),(1093,'[[predate]]',1,842,52.800000,1,NULL,NULL),(1094,'[[regdate]]',1,842,52.800000,1,NULL,NULL),(1095,'[[postdate]]',1,842,52.800000,1,NULL,NULL),(1096,'[[predate]]',1,843,52.800000,1,NULL,NULL),(1097,'[[regdate]]',1,843,52.800000,1,NULL,NULL),(1098,'[[postdate]]',1,843,52.800000,1,NULL,NULL),(1099,'[[predate]]',1,844,52.800000,1,NULL,NULL),(1100,'[[regdate]]',1,844,52.800000,1,NULL,NULL),(1101,'[[postdate]]',1,844,52.800000,1,NULL,NULL),(1102,'[[predate]]',1,845,52.800000,1,NULL,NULL),(1103,'[[regdate]]',1,845,52.800000,1,NULL,NULL),(1104,'[[postdate]]',1,845,52.800000,1,NULL,NULL),(1105,'[[predate]]',1,846,52.800000,1,NULL,NULL),(1106,'[[regdate]]',1,846,52.800000,1,NULL,NULL),(1107,'[[postdate]]',1,846,52.800000,1,NULL,NULL),(1108,'[[predate]]',1,847,52.800000,1,NULL,NULL),(1109,'[[regdate]]',1,847,52.800000,1,NULL,NULL),(1110,'[[postdate]]',1,847,52.800000,1,NULL,NULL),(1111,'[[predate]]',1,848,52.800000,1,NULL,NULL),(1112,'[[regdate]]',1,848,52.800000,1,NULL,NULL),(1113,'[[postdate]]',1,848,52.800000,1,NULL,NULL),(1114,'[[predate]]',1,849,52.800000,1,NULL,NULL),(1115,'[[regdate]]',1,849,52.800000,1,NULL,NULL),(1116,'[[postdate]]',1,849,52.800000,1,NULL,NULL),(1117,'[[predate]]',1,850,52.800000,1,NULL,NULL),(1118,'[[regdate]]',1,850,52.800000,1,NULL,NULL),(1119,'[[postdate]]',1,850,52.800000,1,NULL,NULL),(1120,'[[predate]]',1,851,52.800000,1,NULL,NULL),(1121,'[[regdate]]',1,851,52.800000,1,NULL,NULL),(1122,'[[postdate]]',1,851,52.800000,1,NULL,NULL),(1123,'[[predate]]',1,852,52.800000,1,NULL,NULL),(1124,'[[regdate]]',1,852,52.800000,1,NULL,NULL),(1125,'[[postdate]]',1,852,52.800000,1,NULL,NULL),(1126,'[[predate]]',1,853,52.800000,1,NULL,NULL),(1127,'[[regdate]]',1,853,52.800000,1,NULL,NULL),(1128,'[[postdate]]',1,853,52.800000,1,NULL,NULL),(1129,'[[predate]]',1,854,52.800000,1,NULL,NULL),(1130,'[[regdate]]',1,854,52.800000,1,NULL,NULL),(1131,'[[postdate]]',1,854,52.800000,1,NULL,NULL),(1132,'[[predate]]',1,855,59.200000,1,NULL,NULL),(1133,'[[regdate]]',1,855,59.200000,1,NULL,NULL),(1134,'[[postdate]]',1,855,59.200000,1,NULL,NULL),(1135,'[[predate]]',1,856,59.200000,1,NULL,NULL),(1136,'[[regdate]]',1,856,59.200000,1,NULL,NULL),(1137,'[[postdate]]',1,856,59.200000,1,NULL,NULL),(1138,'[[predate]]',1,857,59.200000,1,NULL,NULL),(1139,'[[regdate]]',1,857,59.200000,1,NULL,NULL),(1140,'[[postdate]]',1,857,59.200000,1,NULL,NULL),(1141,'[[predate]]',1,858,59.200000,1,NULL,NULL),(1142,'[[regdate]]',1,858,59.200000,1,NULL,NULL),(1143,'[[postdate]]',1,858,59.200000,1,NULL,NULL),(1144,'[[predate]]',1,859,59.200000,1,NULL,NULL),(1145,'[[regdate]]',1,859,59.200000,1,NULL,NULL),(1146,'[[postdate]]',1,859,59.200000,1,NULL,NULL),(1147,'[[predate]]',1,860,59.200000,1,NULL,NULL),(1148,'[[regdate]]',1,860,59.200000,1,NULL,NULL),(1149,'[[postdate]]',1,860,59.200000,1,NULL,NULL),(1150,'[[predate]]',1,861,59.200000,1,NULL,NULL),(1151,'[[regdate]]',1,861,59.200000,1,NULL,NULL),(1152,'[[postdate]]',1,861,59.200000,1,NULL,NULL),(1153,'[[predate]]',1,862,59.200000,1,NULL,NULL),(1154,'[[regdate]]',1,862,59.200000,1,NULL,NULL),(1155,'[[postdate]]',1,862,59.200000,1,NULL,NULL),(1156,'[[predate]]',1,863,59.200000,1,NULL,NULL),(1157,'[[regdate]]',1,863,59.200000,1,NULL,NULL),(1158,'[[postdate]]',1,863,59.200000,1,NULL,NULL),(1159,'[[predate]]',1,864,59.200000,1,NULL,NULL),(1160,'[[regdate]]',1,864,59.200000,1,NULL,NULL),(1161,'[[postdate]]',1,864,59.200000,1,NULL,NULL),(1162,'[[predate]]',1,865,59.200000,1,NULL,NULL),(1163,'[[regdate]]',1,865,59.200000,1,NULL,NULL),(1164,'[[postdate]]',1,865,59.200000,1,NULL,NULL),(1165,'[[predate]]',1,866,59.200000,1,NULL,NULL),(1166,'[[regdate]]',1,866,59.200000,1,NULL,NULL),(1167,'[[postdate]]',1,866,59.200000,1,NULL,NULL),(1168,'[[predate]]',1,867,59.200000,1,NULL,NULL),(1169,'[[regdate]]',1,867,59.200000,1,NULL,NULL),(1170,'[[postdate]]',1,867,59.200000,1,NULL,NULL),(1171,'[[predate]]',1,868,38.400000,1,NULL,NULL),(1172,'[[regdate]]',1,868,38.400000,1,NULL,NULL),(1173,'[[postdate]]',1,868,38.400000,1,NULL,NULL),(1174,'[[predate]]',1,869,38.400000,1,NULL,NULL),(1175,'[[regdate]]',1,869,38.400000,1,NULL,NULL),(1176,'[[postdate]]',1,869,38.400000,1,NULL,NULL),(1177,'[[predate]]',1,870,38.400000,1,NULL,NULL),(1178,'[[regdate]]',1,870,38.400000,1,NULL,NULL),(1179,'[[postdate]]',1,870,38.400000,1,NULL,NULL),(1180,'[[predate]]',1,871,38.400000,1,NULL,NULL),(1181,'[[regdate]]',1,871,38.400000,1,NULL,NULL),(1182,'[[postdate]]',1,871,38.400000,1,NULL,NULL),(1183,'[[predate]]',1,872,38.400000,1,NULL,NULL),(1184,'[[regdate]]',1,872,38.400000,1,NULL,NULL),(1185,'[[postdate]]',1,872,38.400000,1,NULL,NULL),(1186,'[[predate]]',1,873,38.400000,1,NULL,NULL),(1187,'[[regdate]]',1,873,38.400000,1,NULL,NULL),(1188,'[[postdate]]',1,873,38.400000,1,NULL,NULL),(1189,'[[predate]]',1,874,38.400000,1,NULL,NULL),(1190,'[[regdate]]',1,874,38.400000,1,NULL,NULL),(1191,'[[postdate]]',1,874,38.400000,1,NULL,NULL),(1192,'[[predate]]',1,875,38.400000,1,NULL,NULL),(1193,'[[regdate]]',1,875,38.400000,1,NULL,NULL),(1194,'[[postdate]]',1,875,38.400000,1,NULL,NULL),(1195,'[[predate]]',1,876,38.400000,1,NULL,NULL),(1196,'[[regdate]]',1,876,38.400000,1,NULL,NULL),(1197,'[[postdate]]',1,876,38.400000,1,NULL,NULL),(1198,'[[predate]]',1,877,38.400000,1,NULL,NULL),(1199,'[[regdate]]',1,877,38.400000,1,NULL,NULL),(1200,'[[postdate]]',1,877,38.400000,1,NULL,NULL),(1201,'[[predate]]',1,878,38.400000,1,NULL,NULL),(1202,'[[regdate]]',1,878,38.400000,1,NULL,NULL),(1203,'[[postdate]]',1,878,38.400000,1,NULL,NULL),(1204,'[[predate]]',1,879,38.400000,1,NULL,NULL),(1205,'[[regdate]]',1,879,38.400000,1,NULL,NULL),(1206,'[[postdate]]',1,879,38.400000,1,NULL,NULL),(1207,'[[predate]]',1,880,38.400000,1,NULL,NULL),(1208,'[[regdate]]',1,880,38.400000,1,NULL,NULL),(1209,'[[postdate]]',1,880,38.400000,1,NULL,NULL),(1210,'[[predate]]',1,1813,31.200000,1,NULL,NULL),(1211,'[[regdate]]',1,1813,31.200000,1,NULL,NULL),(1212,'[[postdate]]',1,1813,31.200000,1,NULL,NULL),(1213,'[[predate]]',1,1814,31.200000,1,NULL,NULL),(1214,'[[regdate]]',1,1814,31.200000,1,NULL,NULL),(1215,'[[postdate]]',1,1814,31.200000,1,NULL,NULL),(1216,'[[predate]]',1,1815,31.200000,1,NULL,NULL),(1217,'[[regdate]]',1,1815,31.200000,1,NULL,NULL),(1218,'[[postdate]]',1,1815,31.200000,1,NULL,NULL),(1219,'[[predate]]',1,1816,31.200000,1,NULL,NULL),(1220,'[[regdate]]',1,1816,31.200000,1,NULL,NULL),(1221,'[[postdate]]',1,1816,31.200000,1,NULL,NULL),(1222,'[[predate]]',1,1817,31.200000,1,NULL,NULL),(1223,'[[regdate]]',1,1817,31.200000,1,NULL,NULL),(1224,'[[postdate]]',1,1817,31.200000,1,NULL,NULL),(1225,'[[predate]]',1,1818,31.200000,1,NULL,NULL),(1226,'[[regdate]]',1,1818,31.200000,1,NULL,NULL),(1227,'[[postdate]]',1,1818,31.200000,1,NULL,NULL),(1228,'[[predate]]',1,1819,31.200000,1,NULL,NULL),(1229,'[[regdate]]',1,1819,31.200000,1,NULL,NULL),(1230,'[[postdate]]',1,1819,31.200000,1,NULL,NULL),(1231,'[[predate]]',1,1820,33.600000,1,NULL,NULL),(1232,'[[regdate]]',1,1820,33.600000,1,NULL,NULL),(1233,'[[postdate]]',1,1820,33.600000,1,NULL,NULL),(1234,'[[predate]]',1,1821,33.600000,1,NULL,NULL),(1235,'[[regdate]]',1,1821,33.600000,1,NULL,NULL),(1236,'[[postdate]]',1,1821,33.600000,1,NULL,NULL),(1237,'[[predate]]',1,1822,33.600000,1,NULL,NULL),(1238,'[[regdate]]',1,1822,33.600000,1,NULL,NULL),(1239,'[[postdate]]',1,1822,33.600000,1,NULL,NULL),(1240,'[[predate]]',1,1823,33.600000,1,NULL,NULL),(1241,'[[regdate]]',1,1823,33.600000,1,NULL,NULL),(1242,'[[postdate]]',1,1823,33.600000,1,NULL,NULL),(1243,'[[predate]]',1,1824,33.600000,1,NULL,NULL),(1244,'[[regdate]]',1,1824,33.600000,1,NULL,NULL),(1245,'[[postdate]]',1,1824,33.600000,1,NULL,NULL),(1246,'[[predate]]',1,1825,33.600000,1,NULL,NULL),(1247,'[[regdate]]',1,1825,33.600000,1,NULL,NULL),(1248,'[[postdate]]',1,1825,33.600000,1,NULL,NULL),(1249,'[[predate]]',1,1826,33.600000,1,NULL,NULL),(1250,'[[regdate]]',1,1826,33.600000,1,NULL,NULL),(1251,'[[postdate]]',1,1826,33.600000,1,NULL,NULL),(1252,'[[predate]]',1,1827,38.400000,1,NULL,NULL),(1253,'[[regdate]]',1,1827,38.400000,1,NULL,NULL),(1254,'[[postdate]]',1,1827,38.400000,1,NULL,NULL),(1255,'[[predate]]',1,1828,38.400000,1,NULL,NULL),(1256,'[[regdate]]',1,1828,38.400000,1,NULL,NULL),(1257,'[[postdate]]',1,1828,38.400000,1,NULL,NULL),(1258,'[[predate]]',1,1829,38.400000,1,NULL,NULL),(1259,'[[regdate]]',1,1829,38.400000,1,NULL,NULL),(1260,'[[postdate]]',1,1829,38.400000,1,NULL,NULL),(1261,'[[predate]]',1,1830,38.400000,1,NULL,NULL),(1262,'[[regdate]]',1,1830,38.400000,1,NULL,NULL),(1263,'[[postdate]]',1,1830,38.400000,1,NULL,NULL),(1264,'[[predate]]',1,1831,38.400000,1,NULL,NULL),(1265,'[[regdate]]',1,1831,38.400000,1,NULL,NULL),(1266,'[[postdate]]',1,1831,38.400000,1,NULL,NULL),(1267,'[[predate]]',1,1832,38.400000,1,NULL,NULL),(1268,'[[regdate]]',1,1832,38.400000,1,NULL,NULL),(1269,'[[postdate]]',1,1832,38.400000,1,NULL,NULL),(1270,'[[predate]]',1,1833,38.400000,1,NULL,NULL),(1271,'[[regdate]]',1,1833,38.400000,1,NULL,NULL),(1272,'[[postdate]]',1,1833,38.400000,1,NULL,NULL),(1273,'[[predate]]',1,1834,60.000000,1,NULL,NULL),(1274,'[[regdate]]',1,1834,60.000000,1,NULL,NULL),(1275,'[[postdate]]',1,1834,60.000000,1,NULL,NULL),(1276,'[[predate]]',1,1835,60.000000,1,NULL,NULL),(1277,'[[regdate]]',1,1835,60.000000,1,NULL,NULL),(1278,'[[postdate]]',1,1835,60.000000,1,NULL,NULL),(1279,'[[predate]]',1,1836,60.000000,1,NULL,NULL),(1280,'[[regdate]]',1,1836,60.000000,1,NULL,NULL),(1281,'[[postdate]]',1,1836,60.000000,1,NULL,NULL),(1282,'[[predate]]',1,1837,60.000000,1,NULL,NULL),(1283,'[[regdate]]',1,1837,60.000000,1,NULL,NULL),(1284,'[[postdate]]',1,1837,60.000000,1,NULL,NULL),(1285,'[[predate]]',1,1838,60.000000,1,NULL,NULL),(1286,'[[regdate]]',1,1838,60.000000,1,NULL,NULL),(1287,'[[postdate]]',1,1838,60.000000,1,NULL,NULL),(1288,'[[predate]]',1,1839,60.000000,1,NULL,NULL),(1289,'[[regdate]]',1,1839,60.000000,1,NULL,NULL),(1290,'[[postdate]]',1,1839,60.000000,1,NULL,NULL),(1291,'[[predate]]',1,1840,60.000000,1,NULL,NULL),(1292,'[[regdate]]',1,1840,60.000000,1,NULL,NULL),(1293,'[[postdate]]',1,1840,60.000000,1,NULL,NULL),(1294,'[[predate]]',1,1841,60.000000,1,NULL,NULL),(1295,'[[regdate]]',1,1841,60.000000,1,NULL,NULL),(1296,'[[postdate]]',1,1841,60.000000,1,NULL,NULL),(1297,'[[predate]]',1,1842,60.000000,1,NULL,NULL),(1298,'[[regdate]]',1,1842,60.000000,1,NULL,NULL),(1299,'[[postdate]]',1,1842,60.000000,1,NULL,NULL),(1300,'[[predate]]',1,1843,60.000000,1,NULL,NULL),(1301,'[[regdate]]',1,1843,60.000000,1,NULL,NULL),(1302,'[[postdate]]',1,1843,60.000000,1,NULL,NULL),(1303,'[[predate]]',1,1844,60.000000,1,NULL,NULL),(1304,'[[regdate]]',1,1844,60.000000,1,NULL,NULL),(1305,'[[postdate]]',1,1844,60.000000,1,NULL,NULL),(1306,'[[predate]]',1,1845,60.000000,1,NULL,NULL),(1307,'[[regdate]]',1,1845,60.000000,1,NULL,NULL),(1308,'[[postdate]]',1,1845,60.000000,1,NULL,NULL),(1309,'[[predate]]',1,1846,60.000000,1,NULL,NULL),(1310,'[[regdate]]',1,1846,60.000000,1,NULL,NULL),(1311,'[[postdate]]',1,1846,60.000000,1,NULL,NULL),(1312,'[[predate]]',1,1847,60.000000,1,NULL,NULL),(1313,'[[regdate]]',1,1847,60.000000,1,NULL,NULL),(1314,'[[postdate]]',1,1847,60.000000,1,NULL,NULL),(1315,'[[predate]]',1,1848,47.200000,1,NULL,NULL),(1316,'[[regdate]]',1,1848,47.200000,1,NULL,NULL),(1317,'[[postdate]]',1,1848,47.200000,1,NULL,NULL),(1318,'[[predate]]',1,1849,47.200000,1,NULL,NULL),(1319,'[[regdate]]',1,1849,47.200000,1,NULL,NULL),(1320,'[[postdate]]',1,1849,47.200000,1,NULL,NULL),(1321,'[[predate]]',1,1850,47.200000,1,NULL,NULL),(1322,'[[regdate]]',1,1850,47.200000,1,NULL,NULL),(1323,'[[postdate]]',1,1850,47.200000,1,NULL,NULL),(1324,'[[predate]]',1,1851,47.200000,1,NULL,NULL),(1325,'[[regdate]]',1,1851,47.200000,1,NULL,NULL),(1326,'[[postdate]]',1,1851,47.200000,1,NULL,NULL),(1327,'[[predate]]',1,1852,47.200000,1,NULL,NULL),(1328,'[[regdate]]',1,1852,47.200000,1,NULL,NULL),(1329,'[[postdate]]',1,1852,47.200000,1,NULL,NULL),(1330,'[[predate]]',1,1853,47.200000,1,NULL,NULL),(1331,'[[regdate]]',1,1853,47.200000,1,NULL,NULL),(1332,'[[postdate]]',1,1853,47.200000,1,NULL,NULL),(1333,'[[predate]]',1,1854,47.200000,1,NULL,NULL),(1334,'[[regdate]]',1,1854,47.200000,1,NULL,NULL),(1335,'[[postdate]]',1,1854,47.200000,1,NULL,NULL),(1336,'[[predate]]',1,1855,38.400000,1,NULL,NULL),(1337,'[[regdate]]',1,1855,38.400000,1,NULL,NULL),(1338,'[[postdate]]',1,1855,38.400000,1,NULL,NULL),(1339,'[[predate]]',1,1856,38.400000,1,NULL,NULL),(1340,'[[regdate]]',1,1856,38.400000,1,NULL,NULL),(1341,'[[postdate]]',1,1856,38.400000,1,NULL,NULL),(1342,'[[predate]]',1,1857,38.400000,1,NULL,NULL),(1343,'[[regdate]]',1,1857,38.400000,1,NULL,NULL),(1344,'[[postdate]]',1,1857,38.400000,1,NULL,NULL),(1345,'[[predate]]',1,1858,38.400000,1,NULL,NULL),(1346,'[[regdate]]',1,1858,38.400000,1,NULL,NULL),(1347,'[[postdate]]',1,1858,38.400000,1,NULL,NULL),(1348,'[[predate]]',1,1859,38.400000,1,NULL,NULL),(1349,'[[regdate]]',1,1859,38.400000,1,NULL,NULL),(1350,'[[postdate]]',1,1859,38.400000,1,NULL,NULL),(1351,'[[predate]]',1,1860,38.400000,1,NULL,NULL),(1352,'[[regdate]]',1,1860,38.400000,1,NULL,NULL),(1353,'[[postdate]]',1,1860,38.400000,1,NULL,NULL),(1354,'[[predate]]',1,1861,38.400000,1,NULL,NULL),(1355,'[[regdate]]',1,1861,38.400000,1,NULL,NULL),(1356,'[[postdate]]',1,1861,38.400000,1,NULL,NULL),(1357,'[[predate]]',1,1862,38.400000,1,NULL,NULL),(1358,'[[regdate]]',1,1862,38.400000,1,NULL,NULL),(1359,'[[postdate]]',1,1862,38.400000,1,NULL,NULL),(1360,'[[predate]]',1,1863,38.400000,1,NULL,NULL),(1361,'[[regdate]]',1,1863,38.400000,1,NULL,NULL),(1362,'[[postdate]]',1,1863,38.400000,1,NULL,NULL),(1363,'[[predate]]',1,1864,38.400000,1,NULL,NULL),(1364,'[[regdate]]',1,1864,38.400000,1,NULL,NULL),(1365,'[[postdate]]',1,1864,38.400000,1,NULL,NULL),(1366,'[[predate]]',1,1865,38.400000,1,NULL,NULL),(1367,'[[regdate]]',1,1865,38.400000,1,NULL,NULL),(1368,'[[postdate]]',1,1865,38.400000,1,NULL,NULL),(1369,'[[predate]]',1,1866,38.400000,1,NULL,NULL),(1370,'[[regdate]]',1,1866,38.400000,1,NULL,NULL),(1371,'[[postdate]]',1,1866,38.400000,1,NULL,NULL),(1372,'[[predate]]',1,1867,38.400000,1,NULL,NULL),(1373,'[[regdate]]',1,1867,38.400000,1,NULL,NULL),(1374,'[[postdate]]',1,1867,38.400000,1,NULL,NULL),(1375,'[[predate]]',1,1868,38.400000,1,NULL,NULL),(1376,'[[regdate]]',1,1868,38.400000,1,NULL,NULL),(1377,'[[postdate]]',1,1868,38.400000,1,NULL,NULL),(1378,'[[predate]]',1,1869,40.800000,1,NULL,NULL),(1379,'[[regdate]]',1,1869,40.800000,1,NULL,NULL),(1380,'[[postdate]]',1,1869,40.800000,1,NULL,NULL),(1381,'[[predate]]',1,1870,40.800000,1,NULL,NULL),(1382,'[[regdate]]',1,1870,40.800000,1,NULL,NULL),(1383,'[[postdate]]',1,1870,40.800000,1,NULL,NULL),(1384,'[[predate]]',1,1871,40.800000,1,NULL,NULL),(1385,'[[regdate]]',1,1871,40.800000,1,NULL,NULL),(1386,'[[postdate]]',1,1871,40.800000,1,NULL,NULL),(1387,'[[predate]]',1,1872,40.800000,1,NULL,NULL),(1388,'[[regdate]]',1,1872,40.800000,1,NULL,NULL),(1389,'[[postdate]]',1,1872,40.800000,1,NULL,NULL),(1390,'[[predate]]',1,1873,40.800000,1,NULL,NULL),(1391,'[[regdate]]',1,1873,40.800000,1,NULL,NULL),(1392,'[[postdate]]',1,1873,40.800000,1,NULL,NULL),(1393,'[[predate]]',1,1874,40.800000,1,NULL,NULL),(1394,'[[regdate]]',1,1874,40.800000,1,NULL,NULL),(1395,'[[postdate]]',1,1874,40.800000,1,NULL,NULL),(1396,'[[predate]]',1,1875,40.800000,1,NULL,NULL),(1397,'[[regdate]]',1,1875,40.800000,1,NULL,NULL),(1398,'[[postdate]]',1,1875,40.800000,1,NULL,NULL),(1399,'[[predate]]',1,1876,40.800000,1,NULL,NULL),(1400,'[[regdate]]',1,1876,40.800000,1,NULL,NULL),(1401,'[[postdate]]',1,1876,40.800000,1,NULL,NULL),(1402,'[[predate]]',1,1877,40.800000,1,NULL,NULL),(1403,'[[regdate]]',1,1877,40.800000,1,NULL,NULL),(1404,'[[postdate]]',1,1877,40.800000,1,NULL,NULL),(1405,'[[predate]]',1,1878,40.800000,1,NULL,NULL),(1406,'[[regdate]]',1,1878,40.800000,1,NULL,NULL),(1407,'[[postdate]]',1,1878,40.800000,1,NULL,NULL),(1408,'[[predate]]',1,1879,40.800000,1,NULL,NULL),(1409,'[[regdate]]',1,1879,40.800000,1,NULL,NULL),(1410,'[[postdate]]',1,1879,40.800000,1,NULL,NULL),(1411,'[[predate]]',1,1880,40.800000,1,NULL,NULL),(1412,'[[regdate]]',1,1880,40.800000,1,NULL,NULL),(1413,'[[postdate]]',1,1880,40.800000,1,NULL,NULL),(1414,'[[predate]]',1,1881,40.800000,1,NULL,NULL),(1415,'[[regdate]]',1,1881,40.800000,1,NULL,NULL),(1416,'[[postdate]]',1,1881,40.800000,1,NULL,NULL),(1417,'[[predate]]',1,1882,40.800000,1,NULL,NULL),(1418,'[[regdate]]',1,1882,40.800000,1,NULL,NULL),(1419,'[[postdate]]',1,1882,40.800000,1,NULL,NULL),(1420,'[[predate]]',1,1883,33.600000,1,NULL,NULL),(1421,'[[regdate]]',1,1883,33.600000,1,NULL,NULL),(1422,'[[postdate]]',1,1883,33.600000,1,NULL,NULL),(1423,'[[predate]]',1,1884,33.600000,1,NULL,NULL),(1424,'[[regdate]]',1,1884,33.600000,1,NULL,NULL),(1425,'[[postdate]]',1,1884,33.600000,1,NULL,NULL),(1426,'[[predate]]',1,1885,33.600000,1,NULL,NULL),(1427,'[[regdate]]',1,1885,33.600000,1,NULL,NULL),(1428,'[[postdate]]',1,1885,33.600000,1,NULL,NULL),(1429,'[[predate]]',1,1886,33.600000,1,NULL,NULL),(1430,'[[regdate]]',1,1886,33.600000,1,NULL,NULL),(1431,'[[postdate]]',1,1886,33.600000,1,NULL,NULL),(1432,'[[predate]]',1,1887,33.600000,1,NULL,NULL),(1433,'[[regdate]]',1,1887,33.600000,1,NULL,NULL),(1434,'[[postdate]]',1,1887,33.600000,1,NULL,NULL),(1435,'[[predate]]',1,1888,33.600000,1,NULL,NULL),(1436,'[[regdate]]',1,1888,33.600000,1,NULL,NULL),(1437,'[[postdate]]',1,1888,33.600000,1,NULL,NULL),(1438,'[[predate]]',1,1889,33.600000,1,NULL,NULL),(1439,'[[regdate]]',1,1889,33.600000,1,NULL,NULL),(1440,'[[postdate]]',1,1889,33.600000,1,NULL,NULL),(1441,'[[predate]]',1,1890,50.400000,1,NULL,NULL),(1442,'[[regdate]]',1,1890,50.400000,1,NULL,NULL),(1443,'[[postdate]]',1,1890,50.400000,1,NULL,NULL),(1444,'[[predate]]',1,1891,50.400000,1,NULL,NULL),(1445,'[[regdate]]',1,1891,50.400000,1,NULL,NULL),(1446,'[[postdate]]',1,1891,50.400000,1,NULL,NULL),(1447,'[[predate]]',1,1892,50.400000,1,NULL,NULL),(1448,'[[regdate]]',1,1892,50.400000,1,NULL,NULL),(1449,'[[postdate]]',1,1892,50.400000,1,NULL,NULL),(1450,'[[predate]]',1,1893,50.400000,1,NULL,NULL),(1451,'[[regdate]]',1,1893,50.400000,1,NULL,NULL),(1452,'[[postdate]]',1,1893,50.400000,1,NULL,NULL),(1453,'[[predate]]',1,1894,50.400000,1,NULL,NULL),(1454,'[[regdate]]',1,1894,50.400000,1,NULL,NULL),(1455,'[[postdate]]',1,1894,50.400000,1,NULL,NULL),(1456,'[[predate]]',1,1895,50.400000,1,NULL,NULL),(1457,'[[regdate]]',1,1895,50.400000,1,NULL,NULL),(1458,'[[postdate]]',1,1895,50.400000,1,NULL,NULL),(1459,'[[predate]]',1,1896,50.400000,1,NULL,NULL),(1460,'[[regdate]]',1,1896,50.400000,1,NULL,NULL),(1461,'[[postdate]]',1,1896,50.400000,1,NULL,NULL),(1462,'[[predate]]',1,1897,39.200000,1,NULL,NULL),(1463,'[[regdate]]',1,1897,39.200000,1,NULL,NULL),(1464,'[[postdate]]',1,1897,39.200000,1,NULL,NULL),(1465,'[[predate]]',1,1898,39.200000,1,NULL,NULL),(1466,'[[regdate]]',1,1898,39.200000,1,NULL,NULL),(1467,'[[postdate]]',1,1898,39.200000,1,NULL,NULL),(1468,'[[predate]]',1,1899,39.200000,1,NULL,NULL),(1469,'[[regdate]]',1,1899,39.200000,1,NULL,NULL),(1470,'[[postdate]]',1,1899,39.200000,1,NULL,NULL),(1471,'[[predate]]',1,1900,39.200000,1,NULL,NULL),(1472,'[[regdate]]',1,1900,39.200000,1,NULL,NULL),(1473,'[[postdate]]',1,1900,39.200000,1,NULL,NULL),(1474,'[[predate]]',1,1901,39.200000,1,NULL,NULL),(1475,'[[regdate]]',1,1901,39.200000,1,NULL,NULL),(1476,'[[postdate]]',1,1901,39.200000,1,NULL,NULL),(1477,'[[predate]]',1,1902,39.200000,1,NULL,NULL),(1478,'[[regdate]]',1,1902,39.200000,1,NULL,NULL),(1479,'[[postdate]]',1,1902,39.200000,1,NULL,NULL),(1480,'[[predate]]',1,1903,39.200000,1,NULL,NULL),(1481,'[[regdate]]',1,1903,39.200000,1,NULL,NULL),(1482,'[[postdate]]',1,1903,39.200000,1,NULL,NULL),(1483,'[[predate]]',2,725,28.000000,1,NULL,NULL),(1484,'[[regdate]]',2,725,28.000000,1,NULL,NULL),(1485,'[[postdate]]',2,725,28.000000,1,NULL,NULL),(1486,'[[predate]]',2,726,28.000000,1,NULL,NULL),(1487,'[[regdate]]',2,726,28.000000,1,NULL,NULL),(1488,'[[postdate]]',2,726,28.000000,1,NULL,NULL),(1489,'[[predate]]',2,727,28.000000,1,NULL,NULL),(1490,'[[regdate]]',2,727,28.000000,1,NULL,NULL),(1491,'[[postdate]]',2,727,28.000000,1,NULL,NULL),(1492,'[[predate]]',2,728,28.000000,1,NULL,NULL),(1493,'[[regdate]]',2,728,28.000000,1,NULL,NULL),(1494,'[[postdate]]',2,728,28.000000,1,NULL,NULL),(1495,'[[predate]]',2,729,28.000000,1,NULL,NULL),(1496,'[[regdate]]',2,729,28.000000,1,NULL,NULL),(1497,'[[postdate]]',2,729,28.000000,1,NULL,NULL),(1498,'[[predate]]',2,730,28.000000,1,NULL,NULL),(1499,'[[regdate]]',2,730,28.000000,1,NULL,NULL),(1500,'[[postdate]]',2,730,28.000000,1,NULL,NULL),(1501,'[[predate]]',2,731,28.000000,1,NULL,NULL),(1502,'[[regdate]]',2,731,28.000000,1,NULL,NULL),(1503,'[[postdate]]',2,731,28.000000,1,NULL,NULL),(1504,'[[predate]]',2,732,28.000000,1,NULL,NULL),(1505,'[[regdate]]',2,732,28.000000,1,NULL,NULL),(1506,'[[postdate]]',2,732,28.000000,1,NULL,NULL),(1507,'[[predate]]',2,733,28.000000,1,NULL,NULL),(1508,'[[regdate]]',2,733,28.000000,1,NULL,NULL),(1509,'[[postdate]]',2,733,28.000000,1,NULL,NULL),(1510,'[[predate]]',2,734,28.000000,1,NULL,NULL),(1511,'[[regdate]]',2,734,28.000000,1,NULL,NULL),(1512,'[[postdate]]',2,734,28.000000,1,NULL,NULL),(1513,'[[predate]]',2,735,28.000000,1,NULL,NULL),(1514,'[[regdate]]',2,735,28.000000,1,NULL,NULL),(1515,'[[postdate]]',2,735,28.000000,1,NULL,NULL),(1516,'[[predate]]',2,736,28.000000,1,NULL,NULL),(1517,'[[regdate]]',2,736,28.000000,1,NULL,NULL),(1518,'[[postdate]]',2,736,28.000000,1,NULL,NULL),(1519,'[[predate]]',2,737,28.000000,1,NULL,NULL),(1520,'[[regdate]]',2,737,28.000000,1,NULL,NULL),(1521,'[[postdate]]',2,737,28.000000,1,NULL,NULL),(1522,'[[predate]]',2,738,36.800000,1,NULL,NULL),(1523,'[[regdate]]',2,738,36.800000,1,NULL,NULL),(1524,'[[postdate]]',2,738,36.800000,1,NULL,NULL),(1525,'[[predate]]',2,739,36.800000,1,NULL,NULL),(1526,'[[regdate]]',2,739,36.800000,1,NULL,NULL),(1527,'[[postdate]]',2,739,36.800000,1,NULL,NULL),(1528,'[[predate]]',2,740,36.800000,1,NULL,NULL),(1529,'[[regdate]]',2,740,36.800000,1,NULL,NULL),(1530,'[[postdate]]',2,740,36.800000,1,NULL,NULL),(1531,'[[predate]]',2,741,36.800000,1,NULL,NULL),(1532,'[[regdate]]',2,741,36.800000,1,NULL,NULL),(1533,'[[postdate]]',2,741,36.800000,1,NULL,NULL),(1534,'[[predate]]',2,742,36.800000,1,NULL,NULL),(1535,'[[regdate]]',2,742,36.800000,1,NULL,NULL),(1536,'[[postdate]]',2,742,36.800000,1,NULL,NULL),(1537,'[[predate]]',2,743,36.800000,1,NULL,NULL),(1538,'[[regdate]]',2,743,36.800000,1,NULL,NULL),(1539,'[[postdate]]',2,743,36.800000,1,NULL,NULL),(1540,'[[predate]]',2,744,36.800000,1,NULL,NULL),(1541,'[[regdate]]',2,744,36.800000,1,NULL,NULL),(1542,'[[postdate]]',2,744,36.800000,1,NULL,NULL),(1543,'[[predate]]',2,745,36.800000,1,NULL,NULL),(1544,'[[regdate]]',2,745,36.800000,1,NULL,NULL),(1545,'[[postdate]]',2,745,36.800000,1,NULL,NULL),(1546,'[[predate]]',2,746,36.800000,1,NULL,NULL),(1547,'[[regdate]]',2,746,36.800000,1,NULL,NULL),(1548,'[[postdate]]',2,746,36.800000,1,NULL,NULL),(1549,'[[predate]]',2,747,36.800000,1,NULL,NULL),(1550,'[[regdate]]',2,747,36.800000,1,NULL,NULL),(1551,'[[postdate]]',2,747,36.800000,1,NULL,NULL),(1552,'[[predate]]',2,748,36.800000,1,NULL,NULL),(1553,'[[regdate]]',2,748,36.800000,1,NULL,NULL),(1554,'[[postdate]]',2,748,36.800000,1,NULL,NULL),(1555,'[[predate]]',2,749,36.800000,1,NULL,NULL),(1556,'[[regdate]]',2,749,36.800000,1,NULL,NULL),(1557,'[[postdate]]',2,749,36.800000,1,NULL,NULL),(1558,'[[predate]]',2,750,36.800000,1,NULL,NULL),(1559,'[[regdate]]',2,750,36.800000,1,NULL,NULL),(1560,'[[postdate]]',2,750,36.800000,1,NULL,NULL),(1561,'[[predate]]',2,751,40.800000,1,NULL,NULL),(1562,'[[regdate]]',2,751,40.800000,1,NULL,NULL),(1563,'[[postdate]]',2,751,40.800000,1,NULL,NULL),(1564,'[[predate]]',2,752,40.800000,1,NULL,NULL),(1565,'[[regdate]]',2,752,40.800000,1,NULL,NULL),(1566,'[[postdate]]',2,752,40.800000,1,NULL,NULL),(1567,'[[predate]]',2,753,40.800000,1,NULL,NULL),(1568,'[[regdate]]',2,753,40.800000,1,NULL,NULL),(1569,'[[postdate]]',2,753,40.800000,1,NULL,NULL),(1570,'[[predate]]',2,754,40.800000,1,NULL,NULL),(1571,'[[regdate]]',2,754,40.800000,1,NULL,NULL),(1572,'[[postdate]]',2,754,40.800000,1,NULL,NULL),(1573,'[[predate]]',2,755,40.800000,1,NULL,NULL),(1574,'[[regdate]]',2,755,40.800000,1,NULL,NULL),(1575,'[[postdate]]',2,755,40.800000,1,NULL,NULL),(1576,'[[predate]]',2,756,40.800000,1,NULL,NULL),(1577,'[[regdate]]',2,756,40.800000,1,NULL,NULL),(1578,'[[postdate]]',2,756,40.800000,1,NULL,NULL),(1579,'[[predate]]',2,757,40.800000,1,NULL,NULL),(1580,'[[regdate]]',2,757,40.800000,1,NULL,NULL),(1581,'[[postdate]]',2,757,40.800000,1,NULL,NULL),(1582,'[[predate]]',2,758,40.800000,1,NULL,NULL),(1583,'[[regdate]]',2,758,40.800000,1,NULL,NULL),(1584,'[[postdate]]',2,758,40.800000,1,NULL,NULL),(1585,'[[predate]]',2,759,40.800000,1,NULL,NULL),(1586,'[[regdate]]',2,759,40.800000,1,NULL,NULL),(1587,'[[postdate]]',2,759,40.800000,1,NULL,NULL),(1588,'[[predate]]',2,760,40.800000,1,NULL,NULL),(1589,'[[regdate]]',2,760,40.800000,1,NULL,NULL),(1590,'[[postdate]]',2,760,40.800000,1,NULL,NULL),(1591,'[[predate]]',2,761,40.800000,1,NULL,NULL),(1592,'[[regdate]]',2,761,40.800000,1,NULL,NULL),(1593,'[[postdate]]',2,761,40.800000,1,NULL,NULL),(1594,'[[predate]]',2,762,40.800000,1,NULL,NULL),(1595,'[[regdate]]',2,762,40.800000,1,NULL,NULL),(1596,'[[postdate]]',2,762,40.800000,1,NULL,NULL),(1597,'[[predate]]',2,763,40.800000,1,NULL,NULL),(1598,'[[regdate]]',2,763,40.800000,1,NULL,NULL),(1599,'[[postdate]]',2,763,40.800000,1,NULL,NULL),(1600,'[[predate]]',2,764,36.000000,1,NULL,NULL),(1601,'[[regdate]]',2,764,36.000000,1,NULL,NULL),(1602,'[[postdate]]',2,764,36.000000,1,NULL,NULL),(1603,'[[predate]]',2,765,36.000000,1,NULL,NULL),(1604,'[[regdate]]',2,765,36.000000,1,NULL,NULL),(1605,'[[postdate]]',2,765,36.000000,1,NULL,NULL),(1606,'[[predate]]',2,766,36.000000,1,NULL,NULL),(1607,'[[regdate]]',2,766,36.000000,1,NULL,NULL),(1608,'[[postdate]]',2,766,36.000000,1,NULL,NULL),(1609,'[[predate]]',2,767,36.000000,1,NULL,NULL),(1610,'[[regdate]]',2,767,36.000000,1,NULL,NULL),(1611,'[[postdate]]',2,767,36.000000,1,NULL,NULL),(1612,'[[predate]]',2,768,36.000000,1,NULL,NULL),(1613,'[[regdate]]',2,768,36.000000,1,NULL,NULL),(1614,'[[postdate]]',2,768,36.000000,1,NULL,NULL),(1615,'[[predate]]',2,769,36.000000,1,NULL,NULL),(1616,'[[regdate]]',2,769,36.000000,1,NULL,NULL),(1617,'[[postdate]]',2,769,36.000000,1,NULL,NULL),(1618,'[[predate]]',2,770,36.000000,1,NULL,NULL),(1619,'[[regdate]]',2,770,36.000000,1,NULL,NULL),(1620,'[[postdate]]',2,770,36.000000,1,NULL,NULL),(1621,'[[predate]]',2,771,36.000000,1,NULL,NULL),(1622,'[[regdate]]',2,771,36.000000,1,NULL,NULL),(1623,'[[postdate]]',2,771,36.000000,1,NULL,NULL),(1624,'[[predate]]',2,772,36.000000,1,NULL,NULL),(1625,'[[regdate]]',2,772,36.000000,1,NULL,NULL),(1626,'[[postdate]]',2,772,36.000000,1,NULL,NULL),(1627,'[[predate]]',2,773,36.000000,1,NULL,NULL),(1628,'[[regdate]]',2,773,36.000000,1,NULL,NULL),(1629,'[[postdate]]',2,773,36.000000,1,NULL,NULL),(1630,'[[predate]]',2,774,36.000000,1,NULL,NULL),(1631,'[[regdate]]',2,774,36.000000,1,NULL,NULL),(1632,'[[postdate]]',2,774,36.000000,1,NULL,NULL),(1633,'[[predate]]',2,775,36.000000,1,NULL,NULL),(1634,'[[regdate]]',2,775,36.000000,1,NULL,NULL),(1635,'[[postdate]]',2,775,36.000000,1,NULL,NULL),(1636,'[[predate]]',2,776,36.000000,1,NULL,NULL),(1637,'[[regdate]]',2,776,36.000000,1,NULL,NULL),(1638,'[[postdate]]',2,776,36.000000,1,NULL,NULL),(1639,'[[predate]]',2,777,45.600000,1,NULL,NULL),(1640,'[[regdate]]',2,777,45.600000,1,NULL,NULL),(1641,'[[postdate]]',2,777,45.600000,1,NULL,NULL),(1642,'[[predate]]',2,778,45.600000,1,NULL,NULL),(1643,'[[regdate]]',2,778,45.600000,1,NULL,NULL),(1644,'[[postdate]]',2,778,45.600000,1,NULL,NULL),(1645,'[[predate]]',2,779,45.600000,1,NULL,NULL),(1646,'[[regdate]]',2,779,45.600000,1,NULL,NULL),(1647,'[[postdate]]',2,779,45.600000,1,NULL,NULL),(1648,'[[predate]]',2,780,45.600000,1,NULL,NULL),(1649,'[[regdate]]',2,780,45.600000,1,NULL,NULL),(1650,'[[postdate]]',2,780,45.600000,1,NULL,NULL),(1651,'[[predate]]',2,781,45.600000,1,NULL,NULL),(1652,'[[regdate]]',2,781,45.600000,1,NULL,NULL),(1653,'[[postdate]]',2,781,45.600000,1,NULL,NULL),(1654,'[[predate]]',2,782,45.600000,1,NULL,NULL),(1655,'[[regdate]]',2,782,45.600000,1,NULL,NULL),(1656,'[[postdate]]',2,782,45.600000,1,NULL,NULL),(1657,'[[predate]]',2,783,45.600000,1,NULL,NULL),(1658,'[[regdate]]',2,783,45.600000,1,NULL,NULL),(1659,'[[postdate]]',2,783,45.600000,1,NULL,NULL),(1660,'[[predate]]',2,784,45.600000,1,NULL,NULL),(1661,'[[regdate]]',2,784,45.600000,1,NULL,NULL),(1662,'[[postdate]]',2,784,45.600000,1,NULL,NULL),(1663,'[[predate]]',2,785,45.600000,1,NULL,NULL),(1664,'[[regdate]]',2,785,45.600000,1,NULL,NULL),(1665,'[[postdate]]',2,785,45.600000,1,NULL,NULL),(1666,'[[predate]]',2,786,45.600000,1,NULL,NULL),(1667,'[[regdate]]',2,786,45.600000,1,NULL,NULL),(1668,'[[postdate]]',2,786,45.600000,1,NULL,NULL),(1669,'[[predate]]',2,787,45.600000,1,NULL,NULL),(1670,'[[regdate]]',2,787,45.600000,1,NULL,NULL),(1671,'[[postdate]]',2,787,45.600000,1,NULL,NULL),(1672,'[[predate]]',2,788,45.600000,1,NULL,NULL),(1673,'[[regdate]]',2,788,45.600000,1,NULL,NULL),(1674,'[[postdate]]',2,788,45.600000,1,NULL,NULL),(1675,'[[predate]]',2,789,45.600000,1,NULL,NULL),(1676,'[[regdate]]',2,789,45.600000,1,NULL,NULL),(1677,'[[postdate]]',2,789,45.600000,1,NULL,NULL),(1678,'[[predate]]',2,790,22.400000,1,NULL,NULL),(1679,'[[regdate]]',2,790,22.400000,1,NULL,NULL),(1680,'[[postdate]]',2,790,22.400000,1,NULL,NULL),(1681,'[[predate]]',2,791,22.400000,1,NULL,NULL),(1682,'[[regdate]]',2,791,22.400000,1,NULL,NULL),(1683,'[[postdate]]',2,791,22.400000,1,NULL,NULL),(1684,'[[predate]]',2,792,22.400000,1,NULL,NULL),(1685,'[[regdate]]',2,792,22.400000,1,NULL,NULL),(1686,'[[postdate]]',2,792,22.400000,1,NULL,NULL),(1687,'[[predate]]',2,793,22.400000,1,NULL,NULL),(1688,'[[regdate]]',2,793,22.400000,1,NULL,NULL),(1689,'[[postdate]]',2,793,22.400000,1,NULL,NULL),(1690,'[[predate]]',2,794,22.400000,1,NULL,NULL),(1691,'[[regdate]]',2,794,22.400000,1,NULL,NULL),(1692,'[[postdate]]',2,794,22.400000,1,NULL,NULL),(1693,'[[predate]]',2,795,22.400000,1,NULL,NULL),(1694,'[[regdate]]',2,795,22.400000,1,NULL,NULL),(1695,'[[postdate]]',2,795,22.400000,1,NULL,NULL),(1696,'[[predate]]',2,796,22.400000,1,NULL,NULL),(1697,'[[regdate]]',2,796,22.400000,1,NULL,NULL),(1698,'[[postdate]]',2,796,22.400000,1,NULL,NULL),(1699,'[[predate]]',2,797,22.400000,1,NULL,NULL),(1700,'[[regdate]]',2,797,22.400000,1,NULL,NULL),(1701,'[[postdate]]',2,797,22.400000,1,NULL,NULL),(1702,'[[predate]]',2,798,22.400000,1,NULL,NULL),(1703,'[[regdate]]',2,798,22.400000,1,NULL,NULL),(1704,'[[postdate]]',2,798,22.400000,1,NULL,NULL),(1705,'[[predate]]',2,799,22.400000,1,NULL,NULL),(1706,'[[regdate]]',2,799,22.400000,1,NULL,NULL),(1707,'[[postdate]]',2,799,22.400000,1,NULL,NULL),(1708,'[[predate]]',2,800,22.400000,1,NULL,NULL),(1709,'[[regdate]]',2,800,22.400000,1,NULL,NULL),(1710,'[[postdate]]',2,800,22.400000,1,NULL,NULL),(1711,'[[predate]]',2,801,22.400000,1,NULL,NULL),(1712,'[[regdate]]',2,801,22.400000,1,NULL,NULL),(1713,'[[postdate]]',2,801,22.400000,1,NULL,NULL),(1714,'[[predate]]',2,802,22.400000,1,NULL,NULL),(1715,'[[regdate]]',2,802,22.400000,1,NULL,NULL),(1716,'[[postdate]]',2,802,22.400000,1,NULL,NULL),(1717,'[[predate]]',2,803,54.400000,1,NULL,NULL),(1718,'[[regdate]]',2,803,54.400000,1,NULL,NULL),(1719,'[[postdate]]',2,803,54.400000,1,NULL,NULL),(1720,'[[predate]]',2,804,54.400000,1,NULL,NULL),(1721,'[[regdate]]',2,804,54.400000,1,NULL,NULL),(1722,'[[postdate]]',2,804,54.400000,1,NULL,NULL),(1723,'[[predate]]',2,805,54.400000,1,NULL,NULL),(1724,'[[regdate]]',2,805,54.400000,1,NULL,NULL),(1725,'[[postdate]]',2,805,54.400000,1,NULL,NULL),(1726,'[[predate]]',2,806,54.400000,1,NULL,NULL),(1727,'[[regdate]]',2,806,54.400000,1,NULL,NULL),(1728,'[[postdate]]',2,806,54.400000,1,NULL,NULL),(1729,'[[predate]]',2,807,54.400000,1,NULL,NULL),(1730,'[[regdate]]',2,807,54.400000,1,NULL,NULL),(1731,'[[postdate]]',2,807,54.400000,1,NULL,NULL),(1732,'[[predate]]',2,808,54.400000,1,NULL,NULL),(1733,'[[regdate]]',2,808,54.400000,1,NULL,NULL),(1734,'[[postdate]]',2,808,54.400000,1,NULL,NULL),(1735,'[[predate]]',2,809,54.400000,1,NULL,NULL),(1736,'[[regdate]]',2,809,54.400000,1,NULL,NULL),(1737,'[[postdate]]',2,809,54.400000,1,NULL,NULL),(1738,'[[predate]]',2,810,54.400000,1,NULL,NULL),(1739,'[[regdate]]',2,810,54.400000,1,NULL,NULL),(1740,'[[postdate]]',2,810,54.400000,1,NULL,NULL),(1741,'[[predate]]',2,811,54.400000,1,NULL,NULL),(1742,'[[regdate]]',2,811,54.400000,1,NULL,NULL),(1743,'[[postdate]]',2,811,54.400000,1,NULL,NULL),(1744,'[[predate]]',2,812,54.400000,1,NULL,NULL),(1745,'[[regdate]]',2,812,54.400000,1,NULL,NULL),(1746,'[[postdate]]',2,812,54.400000,1,NULL,NULL),(1747,'[[predate]]',2,813,54.400000,1,NULL,NULL),(1748,'[[regdate]]',2,813,54.400000,1,NULL,NULL),(1749,'[[postdate]]',2,813,54.400000,1,NULL,NULL),(1750,'[[predate]]',2,814,54.400000,1,NULL,NULL),(1751,'[[regdate]]',2,814,54.400000,1,NULL,NULL),(1752,'[[postdate]]',2,814,54.400000,1,NULL,NULL),(1753,'[[predate]]',2,815,54.400000,1,NULL,NULL),(1754,'[[regdate]]',2,815,54.400000,1,NULL,NULL),(1755,'[[postdate]]',2,815,54.400000,1,NULL,NULL),(1756,'[[predate]]',2,816,65.600000,1,NULL,NULL),(1757,'[[regdate]]',2,816,65.600000,1,NULL,NULL),(1758,'[[postdate]]',2,816,65.600000,1,NULL,NULL),(1759,'[[predate]]',2,817,65.600000,1,NULL,NULL),(1760,'[[regdate]]',2,817,65.600000,1,NULL,NULL),(1761,'[[postdate]]',2,817,65.600000,1,NULL,NULL),(1762,'[[predate]]',2,818,65.600000,1,NULL,NULL),(1763,'[[regdate]]',2,818,65.600000,1,NULL,NULL),(1764,'[[postdate]]',2,818,65.600000,1,NULL,NULL),(1765,'[[predate]]',2,819,65.600000,1,NULL,NULL),(1766,'[[regdate]]',2,819,65.600000,1,NULL,NULL),(1767,'[[postdate]]',2,819,65.600000,1,NULL,NULL),(1768,'[[predate]]',2,820,65.600000,1,NULL,NULL),(1769,'[[regdate]]',2,820,65.600000,1,NULL,NULL),(1770,'[[postdate]]',2,820,65.600000,1,NULL,NULL),(1771,'[[predate]]',2,821,65.600000,1,NULL,NULL),(1772,'[[regdate]]',2,821,65.600000,1,NULL,NULL),(1773,'[[postdate]]',2,821,65.600000,1,NULL,NULL),(1774,'[[predate]]',2,822,65.600000,1,NULL,NULL),(1775,'[[regdate]]',2,822,65.600000,1,NULL,NULL),(1776,'[[postdate]]',2,822,65.600000,1,NULL,NULL),(1777,'[[predate]]',2,823,65.600000,1,NULL,NULL),(1778,'[[regdate]]',2,823,65.600000,1,NULL,NULL),(1779,'[[postdate]]',2,823,65.600000,1,NULL,NULL),(1780,'[[predate]]',2,824,65.600000,1,NULL,NULL),(1781,'[[regdate]]',2,824,65.600000,1,NULL,NULL),(1782,'[[postdate]]',2,824,65.600000,1,NULL,NULL),(1783,'[[predate]]',2,825,65.600000,1,NULL,NULL),(1784,'[[regdate]]',2,825,65.600000,1,NULL,NULL),(1785,'[[postdate]]',2,825,65.600000,1,NULL,NULL),(1786,'[[predate]]',2,826,65.600000,1,NULL,NULL),(1787,'[[regdate]]',2,826,65.600000,1,NULL,NULL),(1788,'[[postdate]]',2,826,65.600000,1,NULL,NULL),(1789,'[[predate]]',2,827,65.600000,1,NULL,NULL),(1790,'[[regdate]]',2,827,65.600000,1,NULL,NULL),(1791,'[[postdate]]',2,827,65.600000,1,NULL,NULL),(1792,'[[predate]]',2,828,65.600000,1,NULL,NULL),(1793,'[[regdate]]',2,828,65.600000,1,NULL,NULL),(1794,'[[postdate]]',2,828,65.600000,1,NULL,NULL),(1795,'[[predate]]',2,829,60.000000,1,NULL,NULL),(1796,'[[regdate]]',2,829,60.000000,1,NULL,NULL),(1797,'[[postdate]]',2,829,60.000000,1,NULL,NULL),(1798,'[[predate]]',2,830,60.000000,1,NULL,NULL),(1799,'[[regdate]]',2,830,60.000000,1,NULL,NULL),(1800,'[[postdate]]',2,830,60.000000,1,NULL,NULL),(1801,'[[predate]]',2,831,60.000000,1,NULL,NULL),(1802,'[[regdate]]',2,831,60.000000,1,NULL,NULL),(1803,'[[postdate]]',2,831,60.000000,1,NULL,NULL),(1804,'[[predate]]',2,832,60.000000,1,NULL,NULL),(1805,'[[regdate]]',2,832,60.000000,1,NULL,NULL),(1806,'[[postdate]]',2,832,60.000000,1,NULL,NULL),(1807,'[[predate]]',2,833,60.000000,1,NULL,NULL),(1808,'[[regdate]]',2,833,60.000000,1,NULL,NULL),(1809,'[[postdate]]',2,833,60.000000,1,NULL,NULL),(1810,'[[predate]]',2,834,60.000000,1,NULL,NULL),(1811,'[[regdate]]',2,834,60.000000,1,NULL,NULL),(1812,'[[postdate]]',2,834,60.000000,1,NULL,NULL),(1813,'[[predate]]',2,835,60.000000,1,NULL,NULL),(1814,'[[regdate]]',2,835,60.000000,1,NULL,NULL),(1815,'[[postdate]]',2,835,60.000000,1,NULL,NULL),(1816,'[[predate]]',2,836,60.000000,1,NULL,NULL),(1817,'[[regdate]]',2,836,60.000000,1,NULL,NULL),(1818,'[[postdate]]',2,836,60.000000,1,NULL,NULL),(1819,'[[predate]]',2,837,60.000000,1,NULL,NULL),(1820,'[[regdate]]',2,837,60.000000,1,NULL,NULL),(1821,'[[postdate]]',2,837,60.000000,1,NULL,NULL),(1822,'[[predate]]',2,838,60.000000,1,NULL,NULL),(1823,'[[regdate]]',2,838,60.000000,1,NULL,NULL),(1824,'[[postdate]]',2,838,60.000000,1,NULL,NULL),(1825,'[[predate]]',2,839,60.000000,1,NULL,NULL),(1826,'[[regdate]]',2,839,60.000000,1,NULL,NULL),(1827,'[[postdate]]',2,839,60.000000,1,NULL,NULL),(1828,'[[predate]]',2,840,60.000000,1,NULL,NULL),(1829,'[[regdate]]',2,840,60.000000,1,NULL,NULL),(1830,'[[postdate]]',2,840,60.000000,1,NULL,NULL),(1831,'[[predate]]',2,841,60.000000,1,NULL,NULL),(1832,'[[regdate]]',2,841,60.000000,1,NULL,NULL),(1833,'[[postdate]]',2,841,60.000000,1,NULL,NULL),(1834,'[[predate]]',2,842,52.800000,1,NULL,NULL),(1835,'[[regdate]]',2,842,52.800000,1,NULL,NULL),(1836,'[[postdate]]',2,842,52.800000,1,NULL,NULL),(1837,'[[predate]]',2,843,52.800000,1,NULL,NULL),(1838,'[[regdate]]',2,843,52.800000,1,NULL,NULL),(1839,'[[postdate]]',2,843,52.800000,1,NULL,NULL),(1840,'[[predate]]',2,844,52.800000,1,NULL,NULL),(1841,'[[regdate]]',2,844,52.800000,1,NULL,NULL),(1842,'[[postdate]]',2,844,52.800000,1,NULL,NULL),(1843,'[[predate]]',2,845,52.800000,1,NULL,NULL),(1844,'[[regdate]]',2,845,52.800000,1,NULL,NULL),(1845,'[[postdate]]',2,845,52.800000,1,NULL,NULL),(1846,'[[predate]]',2,846,52.800000,1,NULL,NULL),(1847,'[[regdate]]',2,846,52.800000,1,NULL,NULL),(1848,'[[postdate]]',2,846,52.800000,1,NULL,NULL),(1849,'[[predate]]',2,847,52.800000,1,NULL,NULL),(1850,'[[regdate]]',2,847,52.800000,1,NULL,NULL),(1851,'[[postdate]]',2,847,52.800000,1,NULL,NULL),(1852,'[[predate]]',2,848,52.800000,1,NULL,NULL),(1853,'[[regdate]]',2,848,52.800000,1,NULL,NULL),(1854,'[[postdate]]',2,848,52.800000,1,NULL,NULL),(1855,'[[predate]]',2,849,52.800000,1,NULL,NULL),(1856,'[[regdate]]',2,849,52.800000,1,NULL,NULL),(1857,'[[postdate]]',2,849,52.800000,1,NULL,NULL),(1858,'[[predate]]',2,850,52.800000,1,NULL,NULL),(1859,'[[regdate]]',2,850,52.800000,1,NULL,NULL),(1860,'[[postdate]]',2,850,52.800000,1,NULL,NULL),(1861,'[[predate]]',2,851,52.800000,1,NULL,NULL),(1862,'[[regdate]]',2,851,52.800000,1,NULL,NULL),(1863,'[[postdate]]',2,851,52.800000,1,NULL,NULL),(1864,'[[predate]]',2,852,52.800000,1,NULL,NULL),(1865,'[[regdate]]',2,852,52.800000,1,NULL,NULL),(1866,'[[postdate]]',2,852,52.800000,1,NULL,NULL),(1867,'[[predate]]',2,853,52.800000,1,NULL,NULL),(1868,'[[regdate]]',2,853,52.800000,1,NULL,NULL),(1869,'[[postdate]]',2,853,52.800000,1,NULL,NULL),(1870,'[[predate]]',2,854,52.800000,1,NULL,NULL),(1871,'[[regdate]]',2,854,52.800000,1,NULL,NULL),(1872,'[[postdate]]',2,854,52.800000,1,NULL,NULL),(1873,'[[predate]]',2,855,59.200000,1,NULL,NULL),(1874,'[[regdate]]',2,855,59.200000,1,NULL,NULL),(1875,'[[postdate]]',2,855,59.200000,1,NULL,NULL),(1876,'[[predate]]',2,856,59.200000,1,NULL,NULL),(1877,'[[regdate]]',2,856,59.200000,1,NULL,NULL),(1878,'[[postdate]]',2,856,59.200000,1,NULL,NULL),(1879,'[[predate]]',2,857,59.200000,1,NULL,NULL),(1880,'[[regdate]]',2,857,59.200000,1,NULL,NULL),(1881,'[[postdate]]',2,857,59.200000,1,NULL,NULL),(1882,'[[predate]]',2,858,59.200000,1,NULL,NULL),(1883,'[[regdate]]',2,858,59.200000,1,NULL,NULL),(1884,'[[postdate]]',2,858,59.200000,1,NULL,NULL),(1885,'[[predate]]',2,859,59.200000,1,NULL,NULL),(1886,'[[regdate]]',2,859,59.200000,1,NULL,NULL),(1887,'[[postdate]]',2,859,59.200000,1,NULL,NULL),(1888,'[[predate]]',2,860,59.200000,1,NULL,NULL),(1889,'[[regdate]]',2,860,59.200000,1,NULL,NULL),(1890,'[[postdate]]',2,860,59.200000,1,NULL,NULL),(1891,'[[predate]]',2,861,59.200000,1,NULL,NULL),(1892,'[[regdate]]',2,861,59.200000,1,NULL,NULL),(1893,'[[postdate]]',2,861,59.200000,1,NULL,NULL),(1894,'[[predate]]',2,862,59.200000,1,NULL,NULL),(1895,'[[regdate]]',2,862,59.200000,1,NULL,NULL),(1896,'[[postdate]]',2,862,59.200000,1,NULL,NULL),(1897,'[[predate]]',2,863,59.200000,1,NULL,NULL),(1898,'[[regdate]]',2,863,59.200000,1,NULL,NULL),(1899,'[[postdate]]',2,863,59.200000,1,NULL,NULL),(1900,'[[predate]]',2,864,59.200000,1,NULL,NULL),(1901,'[[regdate]]',2,864,59.200000,1,NULL,NULL),(1902,'[[postdate]]',2,864,59.200000,1,NULL,NULL),(1903,'[[predate]]',2,865,59.200000,1,NULL,NULL),(1904,'[[regdate]]',2,865,59.200000,1,NULL,NULL),(1905,'[[postdate]]',2,865,59.200000,1,NULL,NULL),(1906,'[[predate]]',2,866,59.200000,1,NULL,NULL),(1907,'[[regdate]]',2,866,59.200000,1,NULL,NULL),(1908,'[[postdate]]',2,866,59.200000,1,NULL,NULL),(1909,'[[predate]]',2,867,59.200000,1,NULL,NULL),(1910,'[[regdate]]',2,867,59.200000,1,NULL,NULL),(1911,'[[postdate]]',2,867,59.200000,1,NULL,NULL),(1912,'[[predate]]',2,868,38.400000,1,NULL,NULL),(1913,'[[regdate]]',2,868,38.400000,1,NULL,NULL),(1914,'[[postdate]]',2,868,38.400000,1,NULL,NULL),(1915,'[[predate]]',2,869,38.400000,1,NULL,NULL),(1916,'[[regdate]]',2,869,38.400000,1,NULL,NULL),(1917,'[[postdate]]',2,869,38.400000,1,NULL,NULL),(1918,'[[predate]]',2,870,38.400000,1,NULL,NULL),(1919,'[[regdate]]',2,870,38.400000,1,NULL,NULL),(1920,'[[postdate]]',2,870,38.400000,1,NULL,NULL),(1921,'[[predate]]',2,871,38.400000,1,NULL,NULL),(1922,'[[regdate]]',2,871,38.400000,1,NULL,NULL),(1923,'[[postdate]]',2,871,38.400000,1,NULL,NULL),(1924,'[[predate]]',2,872,38.400000,1,NULL,NULL),(1925,'[[regdate]]',2,872,38.400000,1,NULL,NULL),(1926,'[[postdate]]',2,872,38.400000,1,NULL,NULL),(1927,'[[predate]]',2,873,38.400000,1,NULL,NULL),(1928,'[[regdate]]',2,873,38.400000,1,NULL,NULL),(1929,'[[postdate]]',2,873,38.400000,1,NULL,NULL),(1930,'[[predate]]',2,874,38.400000,1,NULL,NULL),(1931,'[[regdate]]',2,874,38.400000,1,NULL,NULL),(1932,'[[postdate]]',2,874,38.400000,1,NULL,NULL),(1933,'[[predate]]',2,875,38.400000,1,NULL,NULL),(1934,'[[regdate]]',2,875,38.400000,1,NULL,NULL),(1935,'[[postdate]]',2,875,38.400000,1,NULL,NULL),(1936,'[[predate]]',2,876,38.400000,1,NULL,NULL),(1937,'[[regdate]]',2,876,38.400000,1,NULL,NULL),(1938,'[[postdate]]',2,876,38.400000,1,NULL,NULL),(1939,'[[predate]]',2,877,38.400000,1,NULL,NULL),(1940,'[[regdate]]',2,877,38.400000,1,NULL,NULL),(1941,'[[postdate]]',2,877,38.400000,1,NULL,NULL),(1942,'[[predate]]',2,878,38.400000,1,NULL,NULL),(1943,'[[regdate]]',2,878,38.400000,1,NULL,NULL),(1944,'[[postdate]]',2,878,38.400000,1,NULL,NULL),(1945,'[[predate]]',2,879,38.400000,1,NULL,NULL),(1946,'[[regdate]]',2,879,38.400000,1,NULL,NULL),(1947,'[[postdate]]',2,879,38.400000,1,NULL,NULL),(1948,'[[predate]]',2,880,38.400000,1,NULL,NULL),(1949,'[[regdate]]',2,880,38.400000,1,NULL,NULL),(1950,'[[postdate]]',2,880,38.400000,1,NULL,NULL),(1951,'[[predate]]',2,1813,31.200000,1,NULL,NULL),(1952,'[[regdate]]',2,1813,31.200000,1,NULL,NULL),(1953,'[[postdate]]',2,1813,31.200000,1,NULL,NULL),(1954,'[[predate]]',2,1814,31.200000,1,NULL,NULL),(1955,'[[regdate]]',2,1814,31.200000,1,NULL,NULL),(1956,'[[postdate]]',2,1814,31.200000,1,NULL,NULL),(1957,'[[predate]]',2,1815,31.200000,1,NULL,NULL),(1958,'[[regdate]]',2,1815,31.200000,1,NULL,NULL),(1959,'[[postdate]]',2,1815,31.200000,1,NULL,NULL),(1960,'[[predate]]',2,1816,31.200000,1,NULL,NULL),(1961,'[[regdate]]',2,1816,31.200000,1,NULL,NULL),(1962,'[[postdate]]',2,1816,31.200000,1,NULL,NULL),(1963,'[[predate]]',2,1817,31.200000,1,NULL,NULL),(1964,'[[regdate]]',2,1817,31.200000,1,NULL,NULL),(1965,'[[postdate]]',2,1817,31.200000,1,NULL,NULL),(1966,'[[predate]]',2,1818,31.200000,1,NULL,NULL),(1967,'[[regdate]]',2,1818,31.200000,1,NULL,NULL),(1968,'[[postdate]]',2,1818,31.200000,1,NULL,NULL),(1969,'[[predate]]',2,1819,31.200000,1,NULL,NULL),(1970,'[[regdate]]',2,1819,31.200000,1,NULL,NULL),(1971,'[[postdate]]',2,1819,31.200000,1,NULL,NULL),(1972,'[[predate]]',2,1820,33.600000,1,NULL,NULL),(1973,'[[regdate]]',2,1820,33.600000,1,NULL,NULL),(1974,'[[postdate]]',2,1820,33.600000,1,NULL,NULL),(1975,'[[predate]]',2,1821,33.600000,1,NULL,NULL),(1976,'[[regdate]]',2,1821,33.600000,1,NULL,NULL),(1977,'[[postdate]]',2,1821,33.600000,1,NULL,NULL),(1978,'[[predate]]',2,1822,33.600000,1,NULL,NULL),(1979,'[[regdate]]',2,1822,33.600000,1,NULL,NULL),(1980,'[[postdate]]',2,1822,33.600000,1,NULL,NULL),(1981,'[[predate]]',2,1823,33.600000,1,NULL,NULL),(1982,'[[regdate]]',2,1823,33.600000,1,NULL,NULL),(1983,'[[postdate]]',2,1823,33.600000,1,NULL,NULL),(1984,'[[predate]]',2,1824,33.600000,1,NULL,NULL),(1985,'[[regdate]]',2,1824,33.600000,1,NULL,NULL),(1986,'[[postdate]]',2,1824,33.600000,1,NULL,NULL),(1987,'[[predate]]',2,1825,33.600000,1,NULL,NULL),(1988,'[[regdate]]',2,1825,33.600000,1,NULL,NULL),(1989,'[[postdate]]',2,1825,33.600000,1,NULL,NULL),(1990,'[[predate]]',2,1826,33.600000,1,NULL,NULL),(1991,'[[regdate]]',2,1826,33.600000,1,NULL,NULL),(1992,'[[postdate]]',2,1826,33.600000,1,NULL,NULL),(1993,'[[predate]]',2,1827,38.400000,1,NULL,NULL),(1994,'[[regdate]]',2,1827,38.400000,1,NULL,NULL),(1995,'[[postdate]]',2,1827,38.400000,1,NULL,NULL),(1996,'[[predate]]',2,1828,38.400000,1,NULL,NULL),(1997,'[[regdate]]',2,1828,38.400000,1,NULL,NULL),(1998,'[[postdate]]',2,1828,38.400000,1,NULL,NULL),(1999,'[[predate]]',2,1829,38.400000,1,NULL,NULL),(2000,'[[regdate]]',2,1829,38.400000,1,NULL,NULL),(2001,'[[postdate]]',2,1829,38.400000,1,NULL,NULL),(2002,'[[predate]]',2,1830,38.400000,1,NULL,NULL),(2003,'[[regdate]]',2,1830,38.400000,1,NULL,NULL),(2004,'[[postdate]]',2,1830,38.400000,1,NULL,NULL),(2005,'[[predate]]',2,1831,38.400000,1,NULL,NULL),(2006,'[[regdate]]',2,1831,38.400000,1,NULL,NULL),(2007,'[[postdate]]',2,1831,38.400000,1,NULL,NULL),(2008,'[[predate]]',2,1832,38.400000,1,NULL,NULL),(2009,'[[regdate]]',2,1832,38.400000,1,NULL,NULL),(2010,'[[postdate]]',2,1832,38.400000,1,NULL,NULL),(2011,'[[predate]]',2,1833,38.400000,1,NULL,NULL),(2012,'[[regdate]]',2,1833,38.400000,1,NULL,NULL),(2013,'[[postdate]]',2,1833,38.400000,1,NULL,NULL),(2014,'[[predate]]',2,1834,60.000000,1,NULL,NULL),(2015,'[[regdate]]',2,1834,60.000000,1,NULL,NULL),(2016,'[[postdate]]',2,1834,60.000000,1,NULL,NULL),(2017,'[[predate]]',2,1835,60.000000,1,NULL,NULL),(2018,'[[regdate]]',2,1835,60.000000,1,NULL,NULL),(2019,'[[postdate]]',2,1835,60.000000,1,NULL,NULL),(2020,'[[predate]]',2,1836,60.000000,1,NULL,NULL),(2021,'[[regdate]]',2,1836,60.000000,1,NULL,NULL),(2022,'[[postdate]]',2,1836,60.000000,1,NULL,NULL),(2023,'[[predate]]',2,1837,60.000000,1,NULL,NULL),(2024,'[[regdate]]',2,1837,60.000000,1,NULL,NULL),(2025,'[[postdate]]',2,1837,60.000000,1,NULL,NULL),(2026,'[[predate]]',2,1838,60.000000,1,NULL,NULL),(2027,'[[regdate]]',2,1838,60.000000,1,NULL,NULL),(2028,'[[postdate]]',2,1838,60.000000,1,NULL,NULL),(2029,'[[predate]]',2,1839,60.000000,1,NULL,NULL),(2030,'[[regdate]]',2,1839,60.000000,1,NULL,NULL),(2031,'[[postdate]]',2,1839,60.000000,1,NULL,NULL),(2032,'[[predate]]',2,1840,60.000000,1,NULL,NULL),(2033,'[[regdate]]',2,1840,60.000000,1,NULL,NULL),(2034,'[[postdate]]',2,1840,60.000000,1,NULL,NULL),(2035,'[[predate]]',2,1841,60.000000,1,NULL,NULL),(2036,'[[regdate]]',2,1841,60.000000,1,NULL,NULL),(2037,'[[postdate]]',2,1841,60.000000,1,NULL,NULL),(2038,'[[predate]]',2,1842,60.000000,1,NULL,NULL),(2039,'[[regdate]]',2,1842,60.000000,1,NULL,NULL),(2040,'[[postdate]]',2,1842,60.000000,1,NULL,NULL),(2041,'[[predate]]',2,1843,60.000000,1,NULL,NULL),(2042,'[[regdate]]',2,1843,60.000000,1,NULL,NULL),(2043,'[[postdate]]',2,1843,60.000000,1,NULL,NULL),(2044,'[[predate]]',2,1844,60.000000,1,NULL,NULL),(2045,'[[regdate]]',2,1844,60.000000,1,NULL,NULL),(2046,'[[postdate]]',2,1844,60.000000,1,NULL,NULL),(2047,'[[predate]]',2,1845,60.000000,1,NULL,NULL),(2048,'[[regdate]]',2,1845,60.000000,1,NULL,NULL),(2049,'[[postdate]]',2,1845,60.000000,1,NULL,NULL),(2050,'[[predate]]',2,1846,60.000000,1,NULL,NULL),(2051,'[[regdate]]',2,1846,60.000000,1,NULL,NULL),(2052,'[[postdate]]',2,1846,60.000000,1,NULL,NULL),(2053,'[[predate]]',2,1847,60.000000,1,NULL,NULL),(2054,'[[regdate]]',2,1847,60.000000,1,NULL,NULL),(2055,'[[postdate]]',2,1847,60.000000,1,NULL,NULL),(2056,'[[predate]]',2,1848,47.200000,1,NULL,NULL),(2057,'[[regdate]]',2,1848,47.200000,1,NULL,NULL),(2058,'[[postdate]]',2,1848,47.200000,1,NULL,NULL),(2059,'[[predate]]',2,1849,47.200000,1,NULL,NULL),(2060,'[[regdate]]',2,1849,47.200000,1,NULL,NULL),(2061,'[[postdate]]',2,1849,47.200000,1,NULL,NULL),(2062,'[[predate]]',2,1850,47.200000,1,NULL,NULL),(2063,'[[regdate]]',2,1850,47.200000,1,NULL,NULL),(2064,'[[postdate]]',2,1850,47.200000,1,NULL,NULL),(2065,'[[predate]]',2,1851,47.200000,1,NULL,NULL),(2066,'[[regdate]]',2,1851,47.200000,1,NULL,NULL),(2067,'[[postdate]]',2,1851,47.200000,1,NULL,NULL),(2068,'[[predate]]',2,1852,47.200000,1,NULL,NULL),(2069,'[[regdate]]',2,1852,47.200000,1,NULL,NULL),(2070,'[[postdate]]',2,1852,47.200000,1,NULL,NULL),(2071,'[[predate]]',2,1853,47.200000,1,NULL,NULL),(2072,'[[regdate]]',2,1853,47.200000,1,NULL,NULL),(2073,'[[postdate]]',2,1853,47.200000,1,NULL,NULL),(2074,'[[predate]]',2,1854,47.200000,1,NULL,NULL),(2075,'[[regdate]]',2,1854,47.200000,1,NULL,NULL),(2076,'[[postdate]]',2,1854,47.200000,1,NULL,NULL),(2077,'[[predate]]',2,1855,38.400000,1,NULL,NULL),(2078,'[[regdate]]',2,1855,38.400000,1,NULL,NULL),(2079,'[[postdate]]',2,1855,38.400000,1,NULL,NULL),(2080,'[[predate]]',2,1856,38.400000,1,NULL,NULL),(2081,'[[regdate]]',2,1856,38.400000,1,NULL,NULL),(2082,'[[postdate]]',2,1856,38.400000,1,NULL,NULL),(2083,'[[predate]]',2,1857,38.400000,1,NULL,NULL),(2084,'[[regdate]]',2,1857,38.400000,1,NULL,NULL),(2085,'[[postdate]]',2,1857,38.400000,1,NULL,NULL),(2086,'[[predate]]',2,1858,38.400000,1,NULL,NULL),(2087,'[[regdate]]',2,1858,38.400000,1,NULL,NULL),(2088,'[[postdate]]',2,1858,38.400000,1,NULL,NULL),(2089,'[[predate]]',2,1859,38.400000,1,NULL,NULL),(2090,'[[regdate]]',2,1859,38.400000,1,NULL,NULL),(2091,'[[postdate]]',2,1859,38.400000,1,NULL,NULL),(2092,'[[predate]]',2,1860,38.400000,1,NULL,NULL),(2093,'[[regdate]]',2,1860,38.400000,1,NULL,NULL),(2094,'[[postdate]]',2,1860,38.400000,1,NULL,NULL),(2095,'[[predate]]',2,1861,38.400000,1,NULL,NULL),(2096,'[[regdate]]',2,1861,38.400000,1,NULL,NULL),(2097,'[[postdate]]',2,1861,38.400000,1,NULL,NULL),(2098,'[[predate]]',2,1862,38.400000,1,NULL,NULL),(2099,'[[regdate]]',2,1862,38.400000,1,NULL,NULL),(2100,'[[postdate]]',2,1862,38.400000,1,NULL,NULL),(2101,'[[predate]]',2,1863,38.400000,1,NULL,NULL),(2102,'[[regdate]]',2,1863,38.400000,1,NULL,NULL),(2103,'[[postdate]]',2,1863,38.400000,1,NULL,NULL),(2104,'[[predate]]',2,1864,38.400000,1,NULL,NULL),(2105,'[[regdate]]',2,1864,38.400000,1,NULL,NULL),(2106,'[[postdate]]',2,1864,38.400000,1,NULL,NULL),(2107,'[[predate]]',2,1865,38.400000,1,NULL,NULL),(2108,'[[regdate]]',2,1865,38.400000,1,NULL,NULL),(2109,'[[postdate]]',2,1865,38.400000,1,NULL,NULL),(2110,'[[predate]]',2,1866,38.400000,1,NULL,NULL),(2111,'[[regdate]]',2,1866,38.400000,1,NULL,NULL),(2112,'[[postdate]]',2,1866,38.400000,1,NULL,NULL),(2113,'[[predate]]',2,1867,38.400000,1,NULL,NULL),(2114,'[[regdate]]',2,1867,38.400000,1,NULL,NULL),(2115,'[[postdate]]',2,1867,38.400000,1,NULL,NULL),(2116,'[[predate]]',2,1868,38.400000,1,NULL,NULL),(2117,'[[regdate]]',2,1868,38.400000,1,NULL,NULL),(2118,'[[postdate]]',2,1868,38.400000,1,NULL,NULL),(2119,'[[predate]]',2,1869,40.800000,1,NULL,NULL),(2120,'[[regdate]]',2,1869,40.800000,1,NULL,NULL),(2121,'[[postdate]]',2,1869,40.800000,1,NULL,NULL),(2122,'[[predate]]',2,1870,40.800000,1,NULL,NULL),(2123,'[[regdate]]',2,1870,40.800000,1,NULL,NULL),(2124,'[[postdate]]',2,1870,40.800000,1,NULL,NULL),(2125,'[[predate]]',2,1871,40.800000,1,NULL,NULL),(2126,'[[regdate]]',2,1871,40.800000,1,NULL,NULL),(2127,'[[postdate]]',2,1871,40.800000,1,NULL,NULL),(2128,'[[predate]]',2,1872,40.800000,1,NULL,NULL),(2129,'[[regdate]]',2,1872,40.800000,1,NULL,NULL),(2130,'[[postdate]]',2,1872,40.800000,1,NULL,NULL),(2131,'[[predate]]',2,1873,40.800000,1,NULL,NULL),(2132,'[[regdate]]',2,1873,40.800000,1,NULL,NULL),(2133,'[[postdate]]',2,1873,40.800000,1,NULL,NULL),(2134,'[[predate]]',2,1874,40.800000,1,NULL,NULL),(2135,'[[regdate]]',2,1874,40.800000,1,NULL,NULL),(2136,'[[postdate]]',2,1874,40.800000,1,NULL,NULL),(2137,'[[predate]]',2,1875,40.800000,1,NULL,NULL),(2138,'[[regdate]]',2,1875,40.800000,1,NULL,NULL),(2139,'[[postdate]]',2,1875,40.800000,1,NULL,NULL),(2140,'[[predate]]',2,1876,40.800000,1,NULL,NULL),(2141,'[[regdate]]',2,1876,40.800000,1,NULL,NULL),(2142,'[[postdate]]',2,1876,40.800000,1,NULL,NULL),(2143,'[[predate]]',2,1877,40.800000,1,NULL,NULL),(2144,'[[regdate]]',2,1877,40.800000,1,NULL,NULL),(2145,'[[postdate]]',2,1877,40.800000,1,NULL,NULL),(2146,'[[predate]]',2,1878,40.800000,1,NULL,NULL),(2147,'[[regdate]]',2,1878,40.800000,1,NULL,NULL),(2148,'[[postdate]]',2,1878,40.800000,1,NULL,NULL),(2149,'[[predate]]',2,1879,40.800000,1,NULL,NULL),(2150,'[[regdate]]',2,1879,40.800000,1,NULL,NULL),(2151,'[[postdate]]',2,1879,40.800000,1,NULL,NULL),(2152,'[[predate]]',2,1880,40.800000,1,NULL,NULL),(2153,'[[regdate]]',2,1880,40.800000,1,NULL,NULL),(2154,'[[postdate]]',2,1880,40.800000,1,NULL,NULL),(2155,'[[predate]]',2,1881,40.800000,1,NULL,NULL),(2156,'[[regdate]]',2,1881,40.800000,1,NULL,NULL),(2157,'[[postdate]]',2,1881,40.800000,1,NULL,NULL),(2158,'[[predate]]',2,1882,40.800000,1,NULL,NULL),(2159,'[[regdate]]',2,1882,40.800000,1,NULL,NULL),(2160,'[[postdate]]',2,1882,40.800000,1,NULL,NULL),(2161,'[[predate]]',2,1883,33.600000,1,NULL,NULL),(2162,'[[regdate]]',2,1883,33.600000,1,NULL,NULL),(2163,'[[postdate]]',2,1883,33.600000,1,NULL,NULL),(2164,'[[predate]]',2,1884,33.600000,1,NULL,NULL),(2165,'[[regdate]]',2,1884,33.600000,1,NULL,NULL),(2166,'[[postdate]]',2,1884,33.600000,1,NULL,NULL),(2167,'[[predate]]',2,1885,33.600000,1,NULL,NULL),(2168,'[[regdate]]',2,1885,33.600000,1,NULL,NULL),(2169,'[[postdate]]',2,1885,33.600000,1,NULL,NULL),(2170,'[[predate]]',2,1886,33.600000,1,NULL,NULL),(2171,'[[regdate]]',2,1886,33.600000,1,NULL,NULL),(2172,'[[postdate]]',2,1886,33.600000,1,NULL,NULL),(2173,'[[predate]]',2,1887,33.600000,1,NULL,NULL),(2174,'[[regdate]]',2,1887,33.600000,1,NULL,NULL),(2175,'[[postdate]]',2,1887,33.600000,1,NULL,NULL),(2176,'[[predate]]',2,1888,33.600000,1,NULL,NULL),(2177,'[[regdate]]',2,1888,33.600000,1,NULL,NULL),(2178,'[[postdate]]',2,1888,33.600000,1,NULL,NULL),(2179,'[[predate]]',2,1889,33.600000,1,NULL,NULL),(2180,'[[regdate]]',2,1889,33.600000,1,NULL,NULL),(2181,'[[postdate]]',2,1889,33.600000,1,NULL,NULL),(2182,'[[predate]]',2,1890,50.400000,1,NULL,NULL),(2183,'[[regdate]]',2,1890,50.400000,1,NULL,NULL),(2184,'[[postdate]]',2,1890,50.400000,1,NULL,NULL),(2185,'[[predate]]',2,1891,50.400000,1,NULL,NULL),(2186,'[[regdate]]',2,1891,50.400000,1,NULL,NULL),(2187,'[[postdate]]',2,1891,50.400000,1,NULL,NULL),(2188,'[[predate]]',2,1892,50.400000,1,NULL,NULL),(2189,'[[regdate]]',2,1892,50.400000,1,NULL,NULL),(2190,'[[postdate]]',2,1892,50.400000,1,NULL,NULL),(2191,'[[predate]]',2,1893,50.400000,1,NULL,NULL),(2192,'[[regdate]]',2,1893,50.400000,1,NULL,NULL),(2193,'[[postdate]]',2,1893,50.400000,1,NULL,NULL),(2194,'[[predate]]',2,1894,50.400000,1,NULL,NULL),(2195,'[[regdate]]',2,1894,50.400000,1,NULL,NULL),(2196,'[[postdate]]',2,1894,50.400000,1,NULL,NULL),(2197,'[[predate]]',2,1895,50.400000,1,NULL,NULL),(2198,'[[regdate]]',2,1895,50.400000,1,NULL,NULL),(2199,'[[postdate]]',2,1895,50.400000,1,NULL,NULL),(2200,'[[predate]]',2,1896,50.400000,1,NULL,NULL),(2201,'[[regdate]]',2,1896,50.400000,1,NULL,NULL),(2202,'[[postdate]]',2,1896,50.400000,1,NULL,NULL),(2203,'[[predate]]',2,1897,39.200000,1,NULL,NULL),(2204,'[[regdate]]',2,1897,39.200000,1,NULL,NULL),(2205,'[[postdate]]',2,1897,39.200000,1,NULL,NULL),(2206,'[[predate]]',2,1898,39.200000,1,NULL,NULL),(2207,'[[regdate]]',2,1898,39.200000,1,NULL,NULL),(2208,'[[postdate]]',2,1898,39.200000,1,NULL,NULL),(2209,'[[predate]]',2,1899,39.200000,1,NULL,NULL),(2210,'[[regdate]]',2,1899,39.200000,1,NULL,NULL),(2211,'[[postdate]]',2,1899,39.200000,1,NULL,NULL),(2212,'[[predate]]',2,1900,39.200000,1,NULL,NULL),(2213,'[[regdate]]',2,1900,39.200000,1,NULL,NULL),(2214,'[[postdate]]',2,1900,39.200000,1,NULL,NULL),(2215,'[[predate]]',2,1901,39.200000,1,NULL,NULL),(2216,'[[regdate]]',2,1901,39.200000,1,NULL,NULL),(2217,'[[postdate]]',2,1901,39.200000,1,NULL,NULL),(2218,'[[predate]]',2,1902,39.200000,1,NULL,NULL),(2219,'[[regdate]]',2,1902,39.200000,1,NULL,NULL),(2220,'[[postdate]]',2,1902,39.200000,1,NULL,NULL),(2221,'[[predate]]',2,1903,39.200000,1,NULL,NULL),(2222,'[[regdate]]',2,1903,39.200000,1,NULL,NULL),(2223,'[[postdate]]',2,1903,39.200000,1,NULL,NULL),(2224,'[[predate]]',3,725,28.000000,1,NULL,NULL),(2225,'[[regdate]]',3,725,28.000000,1,NULL,NULL),(2226,'[[postdate]]',3,725,28.000000,1,NULL,NULL),(2227,'[[predate]]',3,726,28.000000,1,NULL,NULL),(2228,'[[regdate]]',3,726,28.000000,1,NULL,NULL),(2229,'[[postdate]]',3,726,28.000000,1,NULL,NULL),(2230,'[[predate]]',3,727,28.000000,1,NULL,NULL),(2231,'[[regdate]]',3,727,28.000000,1,NULL,NULL),(2232,'[[postdate]]',3,727,28.000000,1,NULL,NULL),(2233,'[[predate]]',3,728,28.000000,1,NULL,NULL),(2234,'[[regdate]]',3,728,28.000000,1,NULL,NULL),(2235,'[[postdate]]',3,728,28.000000,1,NULL,NULL),(2236,'[[predate]]',3,729,28.000000,1,NULL,NULL),(2237,'[[regdate]]',3,729,28.000000,1,NULL,NULL),(2238,'[[postdate]]',3,729,28.000000,1,NULL,NULL),(2239,'[[predate]]',3,730,28.000000,1,NULL,NULL),(2240,'[[regdate]]',3,730,28.000000,1,NULL,NULL),(2241,'[[postdate]]',3,730,28.000000,1,NULL,NULL),(2242,'[[predate]]',3,731,28.000000,1,NULL,NULL),(2243,'[[regdate]]',3,731,28.000000,1,NULL,NULL),(2244,'[[postdate]]',3,731,28.000000,1,NULL,NULL),(2245,'[[predate]]',3,732,28.000000,1,NULL,NULL),(2246,'[[regdate]]',3,732,28.000000,1,NULL,NULL),(2247,'[[postdate]]',3,732,28.000000,1,NULL,NULL),(2248,'[[predate]]',3,733,28.000000,1,NULL,NULL),(2249,'[[regdate]]',3,733,28.000000,1,NULL,NULL),(2250,'[[postdate]]',3,733,28.000000,1,NULL,NULL),(2251,'[[predate]]',3,734,28.000000,1,NULL,NULL),(2252,'[[regdate]]',3,734,28.000000,1,NULL,NULL),(2253,'[[postdate]]',3,734,28.000000,1,NULL,NULL),(2254,'[[predate]]',3,735,28.000000,1,NULL,NULL),(2255,'[[regdate]]',3,735,28.000000,1,NULL,NULL),(2256,'[[postdate]]',3,735,28.000000,1,NULL,NULL),(2257,'[[predate]]',3,736,28.000000,1,NULL,NULL),(2258,'[[regdate]]',3,736,28.000000,1,NULL,NULL),(2259,'[[postdate]]',3,736,28.000000,1,NULL,NULL),(2260,'[[predate]]',3,737,28.000000,1,NULL,NULL),(2261,'[[regdate]]',3,737,28.000000,1,NULL,NULL),(2262,'[[postdate]]',3,737,28.000000,1,NULL,NULL),(2263,'[[predate]]',3,738,36.800000,1,NULL,NULL),(2264,'[[regdate]]',3,738,36.800000,1,NULL,NULL),(2265,'[[postdate]]',3,738,36.800000,1,NULL,NULL),(2266,'[[predate]]',3,739,36.800000,1,NULL,NULL),(2267,'[[regdate]]',3,739,36.800000,1,NULL,NULL),(2268,'[[postdate]]',3,739,36.800000,1,NULL,NULL),(2269,'[[predate]]',3,740,36.800000,1,NULL,NULL),(2270,'[[regdate]]',3,740,36.800000,1,NULL,NULL),(2271,'[[postdate]]',3,740,36.800000,1,NULL,NULL),(2272,'[[predate]]',3,741,36.800000,1,NULL,NULL),(2273,'[[regdate]]',3,741,36.800000,1,NULL,NULL),(2274,'[[postdate]]',3,741,36.800000,1,NULL,NULL),(2275,'[[predate]]',3,742,36.800000,1,NULL,NULL),(2276,'[[regdate]]',3,742,36.800000,1,NULL,NULL),(2277,'[[postdate]]',3,742,36.800000,1,NULL,NULL),(2278,'[[predate]]',3,743,36.800000,1,NULL,NULL),(2279,'[[regdate]]',3,743,36.800000,1,NULL,NULL),(2280,'[[postdate]]',3,743,36.800000,1,NULL,NULL),(2281,'[[predate]]',3,744,36.800000,1,NULL,NULL),(2282,'[[regdate]]',3,744,36.800000,1,NULL,NULL),(2283,'[[postdate]]',3,744,36.800000,1,NULL,NULL),(2284,'[[predate]]',3,745,36.800000,1,NULL,NULL),(2285,'[[regdate]]',3,745,36.800000,1,NULL,NULL),(2286,'[[postdate]]',3,745,36.800000,1,NULL,NULL),(2287,'[[predate]]',3,746,36.800000,1,NULL,NULL),(2288,'[[regdate]]',3,746,36.800000,1,NULL,NULL),(2289,'[[postdate]]',3,746,36.800000,1,NULL,NULL),(2290,'[[predate]]',3,747,36.800000,1,NULL,NULL),(2291,'[[regdate]]',3,747,36.800000,1,NULL,NULL),(2292,'[[postdate]]',3,747,36.800000,1,NULL,NULL),(2293,'[[predate]]',3,748,36.800000,1,NULL,NULL),(2294,'[[regdate]]',3,748,36.800000,1,NULL,NULL),(2295,'[[postdate]]',3,748,36.800000,1,NULL,NULL),(2296,'[[predate]]',3,749,36.800000,1,NULL,NULL),(2297,'[[regdate]]',3,749,36.800000,1,NULL,NULL),(2298,'[[postdate]]',3,749,36.800000,1,NULL,NULL),(2299,'[[predate]]',3,750,36.800000,1,NULL,NULL),(2300,'[[regdate]]',3,750,36.800000,1,NULL,NULL),(2301,'[[postdate]]',3,750,36.800000,1,NULL,NULL),(2302,'[[predate]]',3,751,40.800000,1,NULL,NULL),(2303,'[[regdate]]',3,751,40.800000,1,NULL,NULL),(2304,'[[postdate]]',3,751,40.800000,1,NULL,NULL),(2305,'[[predate]]',3,752,40.800000,1,NULL,NULL),(2306,'[[regdate]]',3,752,40.800000,1,NULL,NULL),(2307,'[[postdate]]',3,752,40.800000,1,NULL,NULL),(2308,'[[predate]]',3,753,40.800000,1,NULL,NULL),(2309,'[[regdate]]',3,753,40.800000,1,NULL,NULL),(2310,'[[postdate]]',3,753,40.800000,1,NULL,NULL),(2311,'[[predate]]',3,754,40.800000,1,NULL,NULL),(2312,'[[regdate]]',3,754,40.800000,1,NULL,NULL),(2313,'[[postdate]]',3,754,40.800000,1,NULL,NULL),(2314,'[[predate]]',3,755,40.800000,1,NULL,NULL),(2315,'[[regdate]]',3,755,40.800000,1,NULL,NULL),(2316,'[[postdate]]',3,755,40.800000,1,NULL,NULL),(2317,'[[predate]]',3,756,40.800000,1,NULL,NULL),(2318,'[[regdate]]',3,756,40.800000,1,NULL,NULL),(2319,'[[postdate]]',3,756,40.800000,1,NULL,NULL),(2320,'[[predate]]',3,757,40.800000,1,NULL,NULL),(2321,'[[regdate]]',3,757,40.800000,1,NULL,NULL),(2322,'[[postdate]]',3,757,40.800000,1,NULL,NULL),(2323,'[[predate]]',3,758,40.800000,1,NULL,NULL),(2324,'[[regdate]]',3,758,40.800000,1,NULL,NULL),(2325,'[[postdate]]',3,758,40.800000,1,NULL,NULL),(2326,'[[predate]]',3,759,40.800000,1,NULL,NULL),(2327,'[[regdate]]',3,759,40.800000,1,NULL,NULL),(2328,'[[postdate]]',3,759,40.800000,1,NULL,NULL),(2329,'[[predate]]',3,760,40.800000,1,NULL,NULL),(2330,'[[regdate]]',3,760,40.800000,1,NULL,NULL),(2331,'[[postdate]]',3,760,40.800000,1,NULL,NULL),(2332,'[[predate]]',3,761,40.800000,1,NULL,NULL),(2333,'[[regdate]]',3,761,40.800000,1,NULL,NULL),(2334,'[[postdate]]',3,761,40.800000,1,NULL,NULL),(2335,'[[predate]]',3,762,40.800000,1,NULL,NULL),(2336,'[[regdate]]',3,762,40.800000,1,NULL,NULL),(2337,'[[postdate]]',3,762,40.800000,1,NULL,NULL),(2338,'[[predate]]',3,763,40.800000,1,NULL,NULL),(2339,'[[regdate]]',3,763,40.800000,1,NULL,NULL),(2340,'[[postdate]]',3,763,40.800000,1,NULL,NULL),(2341,'[[predate]]',3,764,36.000000,1,NULL,NULL),(2342,'[[regdate]]',3,764,36.000000,1,NULL,NULL),(2343,'[[postdate]]',3,764,36.000000,1,NULL,NULL),(2344,'[[predate]]',3,765,36.000000,1,NULL,NULL),(2345,'[[regdate]]',3,765,36.000000,1,NULL,NULL),(2346,'[[postdate]]',3,765,36.000000,1,NULL,NULL),(2347,'[[predate]]',3,766,36.000000,1,NULL,NULL),(2348,'[[regdate]]',3,766,36.000000,1,NULL,NULL),(2349,'[[postdate]]',3,766,36.000000,1,NULL,NULL),(2350,'[[predate]]',3,767,36.000000,1,NULL,NULL),(2351,'[[regdate]]',3,767,36.000000,1,NULL,NULL),(2352,'[[postdate]]',3,767,36.000000,1,NULL,NULL),(2353,'[[predate]]',3,768,36.000000,1,NULL,NULL),(2354,'[[regdate]]',3,768,36.000000,1,NULL,NULL),(2355,'[[postdate]]',3,768,36.000000,1,NULL,NULL),(2356,'[[predate]]',3,769,36.000000,1,NULL,NULL),(2357,'[[regdate]]',3,769,36.000000,1,NULL,NULL),(2358,'[[postdate]]',3,769,36.000000,1,NULL,NULL),(2359,'[[predate]]',3,770,36.000000,1,NULL,NULL),(2360,'[[regdate]]',3,770,36.000000,1,NULL,NULL),(2361,'[[postdate]]',3,770,36.000000,1,NULL,NULL),(2362,'[[predate]]',3,771,36.000000,1,NULL,NULL),(2363,'[[regdate]]',3,771,36.000000,1,NULL,NULL),(2364,'[[postdate]]',3,771,36.000000,1,NULL,NULL),(2365,'[[predate]]',3,772,36.000000,1,NULL,NULL),(2366,'[[regdate]]',3,772,36.000000,1,NULL,NULL),(2367,'[[postdate]]',3,772,36.000000,1,NULL,NULL),(2368,'[[predate]]',3,773,36.000000,1,NULL,NULL),(2369,'[[regdate]]',3,773,36.000000,1,NULL,NULL),(2370,'[[postdate]]',3,773,36.000000,1,NULL,NULL),(2371,'[[predate]]',3,774,36.000000,1,NULL,NULL),(2372,'[[regdate]]',3,774,36.000000,1,NULL,NULL),(2373,'[[postdate]]',3,774,36.000000,1,NULL,NULL),(2374,'[[predate]]',3,775,36.000000,1,NULL,NULL),(2375,'[[regdate]]',3,775,36.000000,1,NULL,NULL),(2376,'[[postdate]]',3,775,36.000000,1,NULL,NULL),(2377,'[[predate]]',3,776,36.000000,1,NULL,NULL),(2378,'[[regdate]]',3,776,36.000000,1,NULL,NULL),(2379,'[[postdate]]',3,776,36.000000,1,NULL,NULL),(2380,'[[predate]]',3,777,45.600000,1,NULL,NULL),(2381,'[[regdate]]',3,777,45.600000,1,NULL,NULL),(2382,'[[postdate]]',3,777,45.600000,1,NULL,NULL),(2383,'[[predate]]',3,778,45.600000,1,NULL,NULL),(2384,'[[regdate]]',3,778,45.600000,1,NULL,NULL),(2385,'[[postdate]]',3,778,45.600000,1,NULL,NULL),(2386,'[[predate]]',3,779,45.600000,1,NULL,NULL),(2387,'[[regdate]]',3,779,45.600000,1,NULL,NULL),(2388,'[[postdate]]',3,779,45.600000,1,NULL,NULL),(2389,'[[predate]]',3,780,45.600000,1,NULL,NULL),(2390,'[[regdate]]',3,780,45.600000,1,NULL,NULL),(2391,'[[postdate]]',3,780,45.600000,1,NULL,NULL),(2392,'[[predate]]',3,781,45.600000,1,NULL,NULL),(2393,'[[regdate]]',3,781,45.600000,1,NULL,NULL),(2394,'[[postdate]]',3,781,45.600000,1,NULL,NULL),(2395,'[[predate]]',3,782,45.600000,1,NULL,NULL),(2396,'[[regdate]]',3,782,45.600000,1,NULL,NULL),(2397,'[[postdate]]',3,782,45.600000,1,NULL,NULL),(2398,'[[predate]]',3,783,45.600000,1,NULL,NULL),(2399,'[[regdate]]',3,783,45.600000,1,NULL,NULL),(2400,'[[postdate]]',3,783,45.600000,1,NULL,NULL),(2401,'[[predate]]',3,784,45.600000,1,NULL,NULL),(2402,'[[regdate]]',3,784,45.600000,1,NULL,NULL),(2403,'[[postdate]]',3,784,45.600000,1,NULL,NULL),(2404,'[[predate]]',3,785,45.600000,1,NULL,NULL),(2405,'[[regdate]]',3,785,45.600000,1,NULL,NULL),(2406,'[[postdate]]',3,785,45.600000,1,NULL,NULL),(2407,'[[predate]]',3,786,45.600000,1,NULL,NULL),(2408,'[[regdate]]',3,786,45.600000,1,NULL,NULL),(2409,'[[postdate]]',3,786,45.600000,1,NULL,NULL),(2410,'[[predate]]',3,787,45.600000,1,NULL,NULL),(2411,'[[regdate]]',3,787,45.600000,1,NULL,NULL),(2412,'[[postdate]]',3,787,45.600000,1,NULL,NULL),(2413,'[[predate]]',3,788,45.600000,1,NULL,NULL),(2414,'[[regdate]]',3,788,45.600000,1,NULL,NULL),(2415,'[[postdate]]',3,788,45.600000,1,NULL,NULL),(2416,'[[predate]]',3,789,45.600000,1,NULL,NULL),(2417,'[[regdate]]',3,789,45.600000,1,NULL,NULL),(2418,'[[postdate]]',3,789,45.600000,1,NULL,NULL),(2419,'[[predate]]',3,790,22.400000,1,NULL,NULL),(2420,'[[regdate]]',3,790,22.400000,1,NULL,NULL),(2421,'[[postdate]]',3,790,22.400000,1,NULL,NULL),(2422,'[[predate]]',3,791,22.400000,1,NULL,NULL),(2423,'[[regdate]]',3,791,22.400000,1,NULL,NULL),(2424,'[[postdate]]',3,791,22.400000,1,NULL,NULL),(2425,'[[predate]]',3,792,22.400000,1,NULL,NULL),(2426,'[[regdate]]',3,792,22.400000,1,NULL,NULL),(2427,'[[postdate]]',3,792,22.400000,1,NULL,NULL),(2428,'[[predate]]',3,793,22.400000,1,NULL,NULL),(2429,'[[regdate]]',3,793,22.400000,1,NULL,NULL),(2430,'[[postdate]]',3,793,22.400000,1,NULL,NULL),(2431,'[[predate]]',3,794,22.400000,1,NULL,NULL),(2432,'[[regdate]]',3,794,22.400000,1,NULL,NULL),(2433,'[[postdate]]',3,794,22.400000,1,NULL,NULL),(2434,'[[predate]]',3,795,22.400000,1,NULL,NULL),(2435,'[[regdate]]',3,795,22.400000,1,NULL,NULL),(2436,'[[postdate]]',3,795,22.400000,1,NULL,NULL),(2437,'[[predate]]',3,796,22.400000,1,NULL,NULL),(2438,'[[regdate]]',3,796,22.400000,1,NULL,NULL),(2439,'[[postdate]]',3,796,22.400000,1,NULL,NULL),(2440,'[[predate]]',3,797,22.400000,1,NULL,NULL),(2441,'[[regdate]]',3,797,22.400000,1,NULL,NULL),(2442,'[[postdate]]',3,797,22.400000,1,NULL,NULL),(2443,'[[predate]]',3,798,22.400000,1,NULL,NULL),(2444,'[[regdate]]',3,798,22.400000,1,NULL,NULL),(2445,'[[postdate]]',3,798,22.400000,1,NULL,NULL),(2446,'[[predate]]',3,799,22.400000,1,NULL,NULL),(2447,'[[regdate]]',3,799,22.400000,1,NULL,NULL),(2448,'[[postdate]]',3,799,22.400000,1,NULL,NULL),(2449,'[[predate]]',3,800,22.400000,1,NULL,NULL),(2450,'[[regdate]]',3,800,22.400000,1,NULL,NULL),(2451,'[[postdate]]',3,800,22.400000,1,NULL,NULL),(2452,'[[predate]]',3,801,22.400000,1,NULL,NULL),(2453,'[[regdate]]',3,801,22.400000,1,NULL,NULL),(2454,'[[postdate]]',3,801,22.400000,1,NULL,NULL),(2455,'[[predate]]',3,802,22.400000,1,NULL,NULL),(2456,'[[regdate]]',3,802,22.400000,1,NULL,NULL),(2457,'[[postdate]]',3,802,22.400000,1,NULL,NULL),(2458,'[[predate]]',3,803,54.400000,1,NULL,NULL),(2459,'[[regdate]]',3,803,54.400000,1,NULL,NULL),(2460,'[[postdate]]',3,803,54.400000,1,NULL,NULL),(2461,'[[predate]]',3,804,54.400000,1,NULL,NULL),(2462,'[[regdate]]',3,804,54.400000,1,NULL,NULL),(2463,'[[postdate]]',3,804,54.400000,1,NULL,NULL),(2464,'[[predate]]',3,805,54.400000,1,NULL,NULL),(2465,'[[regdate]]',3,805,54.400000,1,NULL,NULL),(2466,'[[postdate]]',3,805,54.400000,1,NULL,NULL),(2467,'[[predate]]',3,806,54.400000,1,NULL,NULL),(2468,'[[regdate]]',3,806,54.400000,1,NULL,NULL),(2469,'[[postdate]]',3,806,54.400000,1,NULL,NULL),(2470,'[[predate]]',3,807,54.400000,1,NULL,NULL),(2471,'[[regdate]]',3,807,54.400000,1,NULL,NULL),(2472,'[[postdate]]',3,807,54.400000,1,NULL,NULL),(2473,'[[predate]]',3,808,54.400000,1,NULL,NULL),(2474,'[[regdate]]',3,808,54.400000,1,NULL,NULL),(2475,'[[postdate]]',3,808,54.400000,1,NULL,NULL),(2476,'[[predate]]',3,809,54.400000,1,NULL,NULL),(2477,'[[regdate]]',3,809,54.400000,1,NULL,NULL),(2478,'[[postdate]]',3,809,54.400000,1,NULL,NULL),(2479,'[[predate]]',3,810,54.400000,1,NULL,NULL),(2480,'[[regdate]]',3,810,54.400000,1,NULL,NULL),(2481,'[[postdate]]',3,810,54.400000,1,NULL,NULL),(2482,'[[predate]]',3,811,54.400000,1,NULL,NULL),(2483,'[[regdate]]',3,811,54.400000,1,NULL,NULL),(2484,'[[postdate]]',3,811,54.400000,1,NULL,NULL),(2485,'[[predate]]',3,812,54.400000,1,NULL,NULL),(2486,'[[regdate]]',3,812,54.400000,1,NULL,NULL),(2487,'[[postdate]]',3,812,54.400000,1,NULL,NULL),(2488,'[[predate]]',3,813,54.400000,1,NULL,NULL),(2489,'[[regdate]]',3,813,54.400000,1,NULL,NULL),(2490,'[[postdate]]',3,813,54.400000,1,NULL,NULL),(2491,'[[predate]]',3,814,54.400000,1,NULL,NULL),(2492,'[[regdate]]',3,814,54.400000,1,NULL,NULL),(2493,'[[postdate]]',3,814,54.400000,1,NULL,NULL),(2494,'[[predate]]',3,815,54.400000,1,NULL,NULL),(2495,'[[regdate]]',3,815,54.400000,1,NULL,NULL),(2496,'[[postdate]]',3,815,54.400000,1,NULL,NULL),(2497,'[[predate]]',3,816,65.600000,1,NULL,NULL),(2498,'[[regdate]]',3,816,65.600000,1,NULL,NULL),(2499,'[[postdate]]',3,816,65.600000,1,NULL,NULL),(2500,'[[predate]]',3,817,65.600000,1,NULL,NULL),(2501,'[[regdate]]',3,817,65.600000,1,NULL,NULL),(2502,'[[postdate]]',3,817,65.600000,1,NULL,NULL),(2503,'[[predate]]',3,818,65.600000,1,NULL,NULL),(2504,'[[regdate]]',3,818,65.600000,1,NULL,NULL),(2505,'[[postdate]]',3,818,65.600000,1,NULL,NULL),(2506,'[[predate]]',3,819,65.600000,1,NULL,NULL),(2507,'[[regdate]]',3,819,65.600000,1,NULL,NULL),(2508,'[[postdate]]',3,819,65.600000,1,NULL,NULL),(2509,'[[predate]]',3,820,65.600000,1,NULL,NULL),(2510,'[[regdate]]',3,820,65.600000,1,NULL,NULL),(2511,'[[postdate]]',3,820,65.600000,1,NULL,NULL),(2512,'[[predate]]',3,821,65.600000,1,NULL,NULL),(2513,'[[regdate]]',3,821,65.600000,1,NULL,NULL),(2514,'[[postdate]]',3,821,65.600000,1,NULL,NULL),(2515,'[[predate]]',3,822,65.600000,1,NULL,NULL),(2516,'[[regdate]]',3,822,65.600000,1,NULL,NULL),(2517,'[[postdate]]',3,822,65.600000,1,NULL,NULL),(2518,'[[predate]]',3,823,65.600000,1,NULL,NULL),(2519,'[[regdate]]',3,823,65.600000,1,NULL,NULL),(2520,'[[postdate]]',3,823,65.600000,1,NULL,NULL),(2521,'[[predate]]',3,824,65.600000,1,NULL,NULL),(2522,'[[regdate]]',3,824,65.600000,1,NULL,NULL),(2523,'[[postdate]]',3,824,65.600000,1,NULL,NULL),(2524,'[[predate]]',3,825,65.600000,1,NULL,NULL),(2525,'[[regdate]]',3,825,65.600000,1,NULL,NULL),(2526,'[[postdate]]',3,825,65.600000,1,NULL,NULL),(2527,'[[predate]]',3,826,65.600000,1,NULL,NULL),(2528,'[[regdate]]',3,826,65.600000,1,NULL,NULL),(2529,'[[postdate]]',3,826,65.600000,1,NULL,NULL),(2530,'[[predate]]',3,827,65.600000,1,NULL,NULL),(2531,'[[regdate]]',3,827,65.600000,1,NULL,NULL),(2532,'[[postdate]]',3,827,65.600000,1,NULL,NULL),(2533,'[[predate]]',3,828,65.600000,1,NULL,NULL),(2534,'[[regdate]]',3,828,65.600000,1,NULL,NULL),(2535,'[[postdate]]',3,828,65.600000,1,NULL,NULL),(2536,'[[predate]]',3,829,60.000000,1,NULL,NULL),(2537,'[[regdate]]',3,829,60.000000,1,NULL,NULL),(2538,'[[postdate]]',3,829,60.000000,1,NULL,NULL),(2539,'[[predate]]',3,830,60.000000,1,NULL,NULL),(2540,'[[regdate]]',3,830,60.000000,1,NULL,NULL),(2541,'[[postdate]]',3,830,60.000000,1,NULL,NULL),(2542,'[[predate]]',3,831,60.000000,1,NULL,NULL),(2543,'[[regdate]]',3,831,60.000000,1,NULL,NULL),(2544,'[[postdate]]',3,831,60.000000,1,NULL,NULL),(2545,'[[predate]]',3,832,60.000000,1,NULL,NULL),(2546,'[[regdate]]',3,832,60.000000,1,NULL,NULL),(2547,'[[postdate]]',3,832,60.000000,1,NULL,NULL),(2548,'[[predate]]',3,833,60.000000,1,NULL,NULL),(2549,'[[regdate]]',3,833,60.000000,1,NULL,NULL),(2550,'[[postdate]]',3,833,60.000000,1,NULL,NULL),(2551,'[[predate]]',3,834,60.000000,1,NULL,NULL),(2552,'[[regdate]]',3,834,60.000000,1,NULL,NULL),(2553,'[[postdate]]',3,834,60.000000,1,NULL,NULL),(2554,'[[predate]]',3,835,60.000000,1,NULL,NULL),(2555,'[[regdate]]',3,835,60.000000,1,NULL,NULL),(2556,'[[postdate]]',3,835,60.000000,1,NULL,NULL),(2557,'[[predate]]',3,836,60.000000,1,NULL,NULL),(2558,'[[regdate]]',3,836,60.000000,1,NULL,NULL),(2559,'[[postdate]]',3,836,60.000000,1,NULL,NULL),(2560,'[[predate]]',3,837,60.000000,1,NULL,NULL),(2561,'[[regdate]]',3,837,60.000000,1,NULL,NULL),(2562,'[[postdate]]',3,837,60.000000,1,NULL,NULL),(2563,'[[predate]]',3,838,60.000000,1,NULL,NULL),(2564,'[[regdate]]',3,838,60.000000,1,NULL,NULL),(2565,'[[postdate]]',3,838,60.000000,1,NULL,NULL),(2566,'[[predate]]',3,839,60.000000,1,NULL,NULL),(2567,'[[regdate]]',3,839,60.000000,1,NULL,NULL),(2568,'[[postdate]]',3,839,60.000000,1,NULL,NULL),(2569,'[[predate]]',3,840,60.000000,1,NULL,NULL),(2570,'[[regdate]]',3,840,60.000000,1,NULL,NULL),(2571,'[[postdate]]',3,840,60.000000,1,NULL,NULL),(2572,'[[predate]]',3,841,60.000000,1,NULL,NULL),(2573,'[[regdate]]',3,841,60.000000,1,NULL,NULL),(2574,'[[postdate]]',3,841,60.000000,1,NULL,NULL),(2575,'[[predate]]',3,842,52.800000,1,NULL,NULL),(2576,'[[regdate]]',3,842,52.800000,1,NULL,NULL),(2577,'[[postdate]]',3,842,52.800000,1,NULL,NULL),(2578,'[[predate]]',3,843,52.800000,1,NULL,NULL),(2579,'[[regdate]]',3,843,52.800000,1,NULL,NULL),(2580,'[[postdate]]',3,843,52.800000,1,NULL,NULL),(2581,'[[predate]]',3,844,52.800000,1,NULL,NULL),(2582,'[[regdate]]',3,844,52.800000,1,NULL,NULL),(2583,'[[postdate]]',3,844,52.800000,1,NULL,NULL),(2584,'[[predate]]',3,845,52.800000,1,NULL,NULL),(2585,'[[regdate]]',3,845,52.800000,1,NULL,NULL),(2586,'[[postdate]]',3,845,52.800000,1,NULL,NULL),(2587,'[[predate]]',3,846,52.800000,1,NULL,NULL),(2588,'[[regdate]]',3,846,52.800000,1,NULL,NULL),(2589,'[[postdate]]',3,846,52.800000,1,NULL,NULL),(2590,'[[predate]]',3,847,52.800000,1,NULL,NULL),(2591,'[[regdate]]',3,847,52.800000,1,NULL,NULL),(2592,'[[postdate]]',3,847,52.800000,1,NULL,NULL),(2593,'[[predate]]',3,848,52.800000,1,NULL,NULL),(2594,'[[regdate]]',3,848,52.800000,1,NULL,NULL),(2595,'[[postdate]]',3,848,52.800000,1,NULL,NULL),(2596,'[[predate]]',3,849,52.800000,1,NULL,NULL),(2597,'[[regdate]]',3,849,52.800000,1,NULL,NULL),(2598,'[[postdate]]',3,849,52.800000,1,NULL,NULL),(2599,'[[predate]]',3,850,52.800000,1,NULL,NULL),(2600,'[[regdate]]',3,850,52.800000,1,NULL,NULL),(2601,'[[postdate]]',3,850,52.800000,1,NULL,NULL),(2602,'[[predate]]',3,851,52.800000,1,NULL,NULL),(2603,'[[regdate]]',3,851,52.800000,1,NULL,NULL),(2604,'[[postdate]]',3,851,52.800000,1,NULL,NULL),(2605,'[[predate]]',3,852,52.800000,1,NULL,NULL),(2606,'[[regdate]]',3,852,52.800000,1,NULL,NULL),(2607,'[[postdate]]',3,852,52.800000,1,NULL,NULL),(2608,'[[predate]]',3,853,52.800000,1,NULL,NULL),(2609,'[[regdate]]',3,853,52.800000,1,NULL,NULL),(2610,'[[postdate]]',3,853,52.800000,1,NULL,NULL),(2611,'[[predate]]',3,854,52.800000,1,NULL,NULL),(2612,'[[regdate]]',3,854,52.800000,1,NULL,NULL),(2613,'[[postdate]]',3,854,52.800000,1,NULL,NULL),(2614,'[[predate]]',3,855,59.200000,1,NULL,NULL),(2615,'[[regdate]]',3,855,59.200000,1,NULL,NULL),(2616,'[[postdate]]',3,855,59.200000,1,NULL,NULL),(2617,'[[predate]]',3,856,59.200000,1,NULL,NULL),(2618,'[[regdate]]',3,856,59.200000,1,NULL,NULL),(2619,'[[postdate]]',3,856,59.200000,1,NULL,NULL),(2620,'[[predate]]',3,857,59.200000,1,NULL,NULL),(2621,'[[regdate]]',3,857,59.200000,1,NULL,NULL),(2622,'[[postdate]]',3,857,59.200000,1,NULL,NULL),(2623,'[[predate]]',3,858,59.200000,1,NULL,NULL),(2624,'[[regdate]]',3,858,59.200000,1,NULL,NULL),(2625,'[[postdate]]',3,858,59.200000,1,NULL,NULL),(2626,'[[predate]]',3,859,59.200000,1,NULL,NULL),(2627,'[[regdate]]',3,859,59.200000,1,NULL,NULL),(2628,'[[postdate]]',3,859,59.200000,1,NULL,NULL),(2629,'[[predate]]',3,860,59.200000,1,NULL,NULL),(2630,'[[regdate]]',3,860,59.200000,1,NULL,NULL),(2631,'[[postdate]]',3,860,59.200000,1,NULL,NULL),(2632,'[[predate]]',3,861,59.200000,1,NULL,NULL),(2633,'[[regdate]]',3,861,59.200000,1,NULL,NULL),(2634,'[[postdate]]',3,861,59.200000,1,NULL,NULL),(2635,'[[predate]]',3,862,59.200000,1,NULL,NULL),(2636,'[[regdate]]',3,862,59.200000,1,NULL,NULL),(2637,'[[postdate]]',3,862,59.200000,1,NULL,NULL),(2638,'[[predate]]',3,863,59.200000,1,NULL,NULL),(2639,'[[regdate]]',3,863,59.200000,1,NULL,NULL),(2640,'[[postdate]]',3,863,59.200000,1,NULL,NULL),(2641,'[[predate]]',3,864,59.200000,1,NULL,NULL),(2642,'[[regdate]]',3,864,59.200000,1,NULL,NULL),(2643,'[[postdate]]',3,864,59.200000,1,NULL,NULL),(2644,'[[predate]]',3,865,59.200000,1,NULL,NULL),(2645,'[[regdate]]',3,865,59.200000,1,NULL,NULL),(2646,'[[postdate]]',3,865,59.200000,1,NULL,NULL),(2647,'[[predate]]',3,866,59.200000,1,NULL,NULL),(2648,'[[regdate]]',3,866,59.200000,1,NULL,NULL),(2649,'[[postdate]]',3,866,59.200000,1,NULL,NULL),(2650,'[[predate]]',3,867,59.200000,1,NULL,NULL),(2651,'[[regdate]]',3,867,59.200000,1,NULL,NULL),(2652,'[[postdate]]',3,867,59.200000,1,NULL,NULL),(2653,'[[predate]]',3,868,38.400000,1,NULL,NULL),(2654,'[[regdate]]',3,868,38.400000,1,NULL,NULL),(2655,'[[postdate]]',3,868,38.400000,1,NULL,NULL),(2656,'[[predate]]',3,869,38.400000,1,NULL,NULL),(2657,'[[regdate]]',3,869,38.400000,1,NULL,NULL),(2658,'[[postdate]]',3,869,38.400000,1,NULL,NULL),(2659,'[[predate]]',3,870,38.400000,1,NULL,NULL),(2660,'[[regdate]]',3,870,38.400000,1,NULL,NULL),(2661,'[[postdate]]',3,870,38.400000,1,NULL,NULL),(2662,'[[predate]]',3,871,38.400000,1,NULL,NULL),(2663,'[[regdate]]',3,871,38.400000,1,NULL,NULL),(2664,'[[postdate]]',3,871,38.400000,1,NULL,NULL),(2665,'[[predate]]',3,872,38.400000,1,NULL,NULL),(2666,'[[regdate]]',3,872,38.400000,1,NULL,NULL),(2667,'[[postdate]]',3,872,38.400000,1,NULL,NULL),(2668,'[[predate]]',3,873,38.400000,1,NULL,NULL),(2669,'[[regdate]]',3,873,38.400000,1,NULL,NULL),(2670,'[[postdate]]',3,873,38.400000,1,NULL,NULL),(2671,'[[predate]]',3,874,38.400000,1,NULL,NULL),(2672,'[[regdate]]',3,874,38.400000,1,NULL,NULL),(2673,'[[postdate]]',3,874,38.400000,1,NULL,NULL),(2674,'[[predate]]',3,875,38.400000,1,NULL,NULL),(2675,'[[regdate]]',3,875,38.400000,1,NULL,NULL),(2676,'[[postdate]]',3,875,38.400000,1,NULL,NULL),(2677,'[[predate]]',3,876,38.400000,1,NULL,NULL),(2678,'[[regdate]]',3,876,38.400000,1,NULL,NULL),(2679,'[[postdate]]',3,876,38.400000,1,NULL,NULL),(2680,'[[predate]]',3,877,38.400000,1,NULL,NULL),(2681,'[[regdate]]',3,877,38.400000,1,NULL,NULL),(2682,'[[postdate]]',3,877,38.400000,1,NULL,NULL),(2683,'[[predate]]',3,878,38.400000,1,NULL,NULL),(2684,'[[regdate]]',3,878,38.400000,1,NULL,NULL),(2685,'[[postdate]]',3,878,38.400000,1,NULL,NULL),(2686,'[[predate]]',3,879,38.400000,1,NULL,NULL),(2687,'[[regdate]]',3,879,38.400000,1,NULL,NULL),(2688,'[[postdate]]',3,879,38.400000,1,NULL,NULL),(2689,'[[predate]]',3,880,38.400000,1,NULL,NULL),(2690,'[[regdate]]',3,880,38.400000,1,NULL,NULL),(2691,'[[postdate]]',3,880,38.400000,1,NULL,NULL),(2692,'[[predate]]',3,1813,31.200000,1,NULL,NULL),(2693,'[[regdate]]',3,1813,31.200000,1,NULL,NULL),(2694,'[[postdate]]',3,1813,31.200000,1,NULL,NULL),(2695,'[[predate]]',3,1814,31.200000,1,NULL,NULL),(2696,'[[regdate]]',3,1814,31.200000,1,NULL,NULL),(2697,'[[postdate]]',3,1814,31.200000,1,NULL,NULL),(2698,'[[predate]]',3,1815,31.200000,1,NULL,NULL),(2699,'[[regdate]]',3,1815,31.200000,1,NULL,NULL),(2700,'[[postdate]]',3,1815,31.200000,1,NULL,NULL),(2701,'[[predate]]',3,1816,31.200000,1,NULL,NULL),(2702,'[[regdate]]',3,1816,31.200000,1,NULL,NULL),(2703,'[[postdate]]',3,1816,31.200000,1,NULL,NULL),(2704,'[[predate]]',3,1817,31.200000,1,NULL,NULL),(2705,'[[regdate]]',3,1817,31.200000,1,NULL,NULL),(2706,'[[postdate]]',3,1817,31.200000,1,NULL,NULL),(2707,'[[predate]]',3,1818,31.200000,1,NULL,NULL),(2708,'[[regdate]]',3,1818,31.200000,1,NULL,NULL),(2709,'[[postdate]]',3,1818,31.200000,1,NULL,NULL),(2710,'[[predate]]',3,1819,31.200000,1,NULL,NULL),(2711,'[[regdate]]',3,1819,31.200000,1,NULL,NULL),(2712,'[[postdate]]',3,1819,31.200000,1,NULL,NULL),(2713,'[[predate]]',3,1820,33.600000,1,NULL,NULL),(2714,'[[regdate]]',3,1820,33.600000,1,NULL,NULL),(2715,'[[postdate]]',3,1820,33.600000,1,NULL,NULL),(2716,'[[predate]]',3,1821,33.600000,1,NULL,NULL),(2717,'[[regdate]]',3,1821,33.600000,1,NULL,NULL),(2718,'[[postdate]]',3,1821,33.600000,1,NULL,NULL),(2719,'[[predate]]',3,1822,33.600000,1,NULL,NULL),(2720,'[[regdate]]',3,1822,33.600000,1,NULL,NULL),(2721,'[[postdate]]',3,1822,33.600000,1,NULL,NULL),(2722,'[[predate]]',3,1823,33.600000,1,NULL,NULL),(2723,'[[regdate]]',3,1823,33.600000,1,NULL,NULL),(2724,'[[postdate]]',3,1823,33.600000,1,NULL,NULL),(2725,'[[predate]]',3,1824,33.600000,1,NULL,NULL),(2726,'[[regdate]]',3,1824,33.600000,1,NULL,NULL),(2727,'[[postdate]]',3,1824,33.600000,1,NULL,NULL),(2728,'[[predate]]',3,1825,33.600000,1,NULL,NULL),(2729,'[[regdate]]',3,1825,33.600000,1,NULL,NULL),(2730,'[[postdate]]',3,1825,33.600000,1,NULL,NULL),(2731,'[[predate]]',3,1826,33.600000,1,NULL,NULL),(2732,'[[regdate]]',3,1826,33.600000,1,NULL,NULL),(2733,'[[postdate]]',3,1826,33.600000,1,NULL,NULL),(2734,'[[predate]]',3,1827,38.400000,1,NULL,NULL),(2735,'[[regdate]]',3,1827,38.400000,1,NULL,NULL),(2736,'[[postdate]]',3,1827,38.400000,1,NULL,NULL),(2737,'[[predate]]',3,1828,38.400000,1,NULL,NULL),(2738,'[[regdate]]',3,1828,38.400000,1,NULL,NULL),(2739,'[[postdate]]',3,1828,38.400000,1,NULL,NULL),(2740,'[[predate]]',3,1829,38.400000,1,NULL,NULL),(2741,'[[regdate]]',3,1829,38.400000,1,NULL,NULL),(2742,'[[postdate]]',3,1829,38.400000,1,NULL,NULL),(2743,'[[predate]]',3,1830,38.400000,1,NULL,NULL),(2744,'[[regdate]]',3,1830,38.400000,1,NULL,NULL),(2745,'[[postdate]]',3,1830,38.400000,1,NULL,NULL),(2746,'[[predate]]',3,1831,38.400000,1,NULL,NULL),(2747,'[[regdate]]',3,1831,38.400000,1,NULL,NULL),(2748,'[[postdate]]',3,1831,38.400000,1,NULL,NULL),(2749,'[[predate]]',3,1832,38.400000,1,NULL,NULL),(2750,'[[regdate]]',3,1832,38.400000,1,NULL,NULL),(2751,'[[postdate]]',3,1832,38.400000,1,NULL,NULL),(2752,'[[predate]]',3,1833,38.400000,1,NULL,NULL),(2753,'[[regdate]]',3,1833,38.400000,1,NULL,NULL),(2754,'[[postdate]]',3,1833,38.400000,1,NULL,NULL),(2755,'[[predate]]',3,1834,60.000000,1,NULL,NULL),(2756,'[[regdate]]',3,1834,60.000000,1,NULL,NULL),(2757,'[[postdate]]',3,1834,60.000000,1,NULL,NULL),(2758,'[[predate]]',3,1835,60.000000,1,NULL,NULL),(2759,'[[regdate]]',3,1835,60.000000,1,NULL,NULL),(2760,'[[postdate]]',3,1835,60.000000,1,NULL,NULL),(2761,'[[predate]]',3,1836,60.000000,1,NULL,NULL),(2762,'[[regdate]]',3,1836,60.000000,1,NULL,NULL),(2763,'[[postdate]]',3,1836,60.000000,1,NULL,NULL),(2764,'[[predate]]',3,1837,60.000000,1,NULL,NULL),(2765,'[[regdate]]',3,1837,60.000000,1,NULL,NULL),(2766,'[[postdate]]',3,1837,60.000000,1,NULL,NULL),(2767,'[[predate]]',3,1838,60.000000,1,NULL,NULL),(2768,'[[regdate]]',3,1838,60.000000,1,NULL,NULL),(2769,'[[postdate]]',3,1838,60.000000,1,NULL,NULL),(2770,'[[predate]]',3,1839,60.000000,1,NULL,NULL),(2771,'[[regdate]]',3,1839,60.000000,1,NULL,NULL),(2772,'[[postdate]]',3,1839,60.000000,1,NULL,NULL),(2773,'[[predate]]',3,1840,60.000000,1,NULL,NULL),(2774,'[[regdate]]',3,1840,60.000000,1,NULL,NULL),(2775,'[[postdate]]',3,1840,60.000000,1,NULL,NULL),(2776,'[[predate]]',3,1841,60.000000,1,NULL,NULL),(2777,'[[regdate]]',3,1841,60.000000,1,NULL,NULL),(2778,'[[postdate]]',3,1841,60.000000,1,NULL,NULL),(2779,'[[predate]]',3,1842,60.000000,1,NULL,NULL),(2780,'[[regdate]]',3,1842,60.000000,1,NULL,NULL),(2781,'[[postdate]]',3,1842,60.000000,1,NULL,NULL),(2782,'[[predate]]',3,1843,60.000000,1,NULL,NULL),(2783,'[[regdate]]',3,1843,60.000000,1,NULL,NULL),(2784,'[[postdate]]',3,1843,60.000000,1,NULL,NULL),(2785,'[[predate]]',3,1844,60.000000,1,NULL,NULL),(2786,'[[regdate]]',3,1844,60.000000,1,NULL,NULL),(2787,'[[postdate]]',3,1844,60.000000,1,NULL,NULL),(2788,'[[predate]]',3,1845,60.000000,1,NULL,NULL),(2789,'[[regdate]]',3,1845,60.000000,1,NULL,NULL),(2790,'[[postdate]]',3,1845,60.000000,1,NULL,NULL),(2791,'[[predate]]',3,1846,60.000000,1,NULL,NULL),(2792,'[[regdate]]',3,1846,60.000000,1,NULL,NULL),(2793,'[[postdate]]',3,1846,60.000000,1,NULL,NULL),(2794,'[[predate]]',3,1847,60.000000,1,NULL,NULL),(2795,'[[regdate]]',3,1847,60.000000,1,NULL,NULL),(2796,'[[postdate]]',3,1847,60.000000,1,NULL,NULL),(2797,'[[predate]]',3,1848,47.200000,1,NULL,NULL),(2798,'[[regdate]]',3,1848,47.200000,1,NULL,NULL),(2799,'[[postdate]]',3,1848,47.200000,1,NULL,NULL),(2800,'[[predate]]',3,1849,47.200000,1,NULL,NULL),(2801,'[[regdate]]',3,1849,47.200000,1,NULL,NULL),(2802,'[[postdate]]',3,1849,47.200000,1,NULL,NULL),(2803,'[[predate]]',3,1850,47.200000,1,NULL,NULL),(2804,'[[regdate]]',3,1850,47.200000,1,NULL,NULL),(2805,'[[postdate]]',3,1850,47.200000,1,NULL,NULL),(2806,'[[predate]]',3,1851,47.200000,1,NULL,NULL),(2807,'[[regdate]]',3,1851,47.200000,1,NULL,NULL),(2808,'[[postdate]]',3,1851,47.200000,1,NULL,NULL),(2809,'[[predate]]',3,1852,47.200000,1,NULL,NULL),(2810,'[[regdate]]',3,1852,47.200000,1,NULL,NULL),(2811,'[[postdate]]',3,1852,47.200000,1,NULL,NULL),(2812,'[[predate]]',3,1853,47.200000,1,NULL,NULL),(2813,'[[regdate]]',3,1853,47.200000,1,NULL,NULL),(2814,'[[postdate]]',3,1853,47.200000,1,NULL,NULL),(2815,'[[predate]]',3,1854,47.200000,1,NULL,NULL),(2816,'[[regdate]]',3,1854,47.200000,1,NULL,NULL),(2817,'[[postdate]]',3,1854,47.200000,1,NULL,NULL),(2818,'[[predate]]',3,1855,38.400000,1,NULL,NULL),(2819,'[[regdate]]',3,1855,38.400000,1,NULL,NULL),(2820,'[[postdate]]',3,1855,38.400000,1,NULL,NULL),(2821,'[[predate]]',3,1856,38.400000,1,NULL,NULL),(2822,'[[regdate]]',3,1856,38.400000,1,NULL,NULL),(2823,'[[postdate]]',3,1856,38.400000,1,NULL,NULL),(2824,'[[predate]]',3,1857,38.400000,1,NULL,NULL),(2825,'[[regdate]]',3,1857,38.400000,1,NULL,NULL),(2826,'[[postdate]]',3,1857,38.400000,1,NULL,NULL),(2827,'[[predate]]',3,1858,38.400000,1,NULL,NULL),(2828,'[[regdate]]',3,1858,38.400000,1,NULL,NULL),(2829,'[[postdate]]',3,1858,38.400000,1,NULL,NULL),(2830,'[[predate]]',3,1859,38.400000,1,NULL,NULL),(2831,'[[regdate]]',3,1859,38.400000,1,NULL,NULL),(2832,'[[postdate]]',3,1859,38.400000,1,NULL,NULL),(2833,'[[predate]]',3,1860,38.400000,1,NULL,NULL),(2834,'[[regdate]]',3,1860,38.400000,1,NULL,NULL),(2835,'[[postdate]]',3,1860,38.400000,1,NULL,NULL),(2836,'[[predate]]',3,1861,38.400000,1,NULL,NULL),(2837,'[[regdate]]',3,1861,38.400000,1,NULL,NULL),(2838,'[[postdate]]',3,1861,38.400000,1,NULL,NULL),(2839,'[[predate]]',3,1862,38.400000,1,NULL,NULL),(2840,'[[regdate]]',3,1862,38.400000,1,NULL,NULL),(2841,'[[postdate]]',3,1862,38.400000,1,NULL,NULL),(2842,'[[predate]]',3,1863,38.400000,1,NULL,NULL),(2843,'[[regdate]]',3,1863,38.400000,1,NULL,NULL),(2844,'[[postdate]]',3,1863,38.400000,1,NULL,NULL),(2845,'[[predate]]',3,1864,38.400000,1,NULL,NULL),(2846,'[[regdate]]',3,1864,38.400000,1,NULL,NULL),(2847,'[[postdate]]',3,1864,38.400000,1,NULL,NULL),(2848,'[[predate]]',3,1865,38.400000,1,NULL,NULL),(2849,'[[regdate]]',3,1865,38.400000,1,NULL,NULL),(2850,'[[postdate]]',3,1865,38.400000,1,NULL,NULL),(2851,'[[predate]]',3,1866,38.400000,1,NULL,NULL),(2852,'[[regdate]]',3,1866,38.400000,1,NULL,NULL),(2853,'[[postdate]]',3,1866,38.400000,1,NULL,NULL),(2854,'[[predate]]',3,1867,38.400000,1,NULL,NULL),(2855,'[[regdate]]',3,1867,38.400000,1,NULL,NULL),(2856,'[[postdate]]',3,1867,38.400000,1,NULL,NULL),(2857,'[[predate]]',3,1868,38.400000,1,NULL,NULL),(2858,'[[regdate]]',3,1868,38.400000,1,NULL,NULL),(2859,'[[postdate]]',3,1868,38.400000,1,NULL,NULL),(2860,'[[predate]]',3,1869,40.800000,1,NULL,NULL),(2861,'[[regdate]]',3,1869,40.800000,1,NULL,NULL),(2862,'[[postdate]]',3,1869,40.800000,1,NULL,NULL),(2863,'[[predate]]',3,1870,40.800000,1,NULL,NULL),(2864,'[[regdate]]',3,1870,40.800000,1,NULL,NULL),(2865,'[[postdate]]',3,1870,40.800000,1,NULL,NULL),(2866,'[[predate]]',3,1871,40.800000,1,NULL,NULL),(2867,'[[regdate]]',3,1871,40.800000,1,NULL,NULL),(2868,'[[postdate]]',3,1871,40.800000,1,NULL,NULL),(2869,'[[predate]]',3,1872,40.800000,1,NULL,NULL),(2870,'[[regdate]]',3,1872,40.800000,1,NULL,NULL),(2871,'[[postdate]]',3,1872,40.800000,1,NULL,NULL),(2872,'[[predate]]',3,1873,40.800000,1,NULL,NULL),(2873,'[[regdate]]',3,1873,40.800000,1,NULL,NULL),(2874,'[[postdate]]',3,1873,40.800000,1,NULL,NULL),(2875,'[[predate]]',3,1874,40.800000,1,NULL,NULL),(2876,'[[regdate]]',3,1874,40.800000,1,NULL,NULL),(2877,'[[postdate]]',3,1874,40.800000,1,NULL,NULL),(2878,'[[predate]]',3,1875,40.800000,1,NULL,NULL),(2879,'[[regdate]]',3,1875,40.800000,1,NULL,NULL),(2880,'[[postdate]]',3,1875,40.800000,1,NULL,NULL),(2881,'[[predate]]',3,1876,40.800000,1,NULL,NULL),(2882,'[[regdate]]',3,1876,40.800000,1,NULL,NULL),(2883,'[[postdate]]',3,1876,40.800000,1,NULL,NULL),(2884,'[[predate]]',3,1877,40.800000,1,NULL,NULL),(2885,'[[regdate]]',3,1877,40.800000,1,NULL,NULL),(2886,'[[postdate]]',3,1877,40.800000,1,NULL,NULL),(2887,'[[predate]]',3,1878,40.800000,1,NULL,NULL),(2888,'[[regdate]]',3,1878,40.800000,1,NULL,NULL),(2889,'[[postdate]]',3,1878,40.800000,1,NULL,NULL),(2890,'[[predate]]',3,1879,40.800000,1,NULL,NULL),(2891,'[[regdate]]',3,1879,40.800000,1,NULL,NULL),(2892,'[[postdate]]',3,1879,40.800000,1,NULL,NULL),(2893,'[[predate]]',3,1880,40.800000,1,NULL,NULL),(2894,'[[regdate]]',3,1880,40.800000,1,NULL,NULL),(2895,'[[postdate]]',3,1880,40.800000,1,NULL,NULL),(2896,'[[predate]]',3,1881,40.800000,1,NULL,NULL),(2897,'[[regdate]]',3,1881,40.800000,1,NULL,NULL),(2898,'[[postdate]]',3,1881,40.800000,1,NULL,NULL),(2899,'[[predate]]',3,1882,40.800000,1,NULL,NULL),(2900,'[[regdate]]',3,1882,40.800000,1,NULL,NULL),(2901,'[[postdate]]',3,1882,40.800000,1,NULL,NULL),(2902,'[[predate]]',3,1883,33.600000,1,NULL,NULL),(2903,'[[regdate]]',3,1883,33.600000,1,NULL,NULL),(2904,'[[postdate]]',3,1883,33.600000,1,NULL,NULL),(2905,'[[predate]]',3,1884,33.600000,1,NULL,NULL),(2906,'[[regdate]]',3,1884,33.600000,1,NULL,NULL),(2907,'[[postdate]]',3,1884,33.600000,1,NULL,NULL),(2908,'[[predate]]',3,1885,33.600000,1,NULL,NULL),(2909,'[[regdate]]',3,1885,33.600000,1,NULL,NULL),(2910,'[[postdate]]',3,1885,33.600000,1,NULL,NULL),(2911,'[[predate]]',3,1886,33.600000,1,NULL,NULL),(2912,'[[regdate]]',3,1886,33.600000,1,NULL,NULL),(2913,'[[postdate]]',3,1886,33.600000,1,NULL,NULL),(2914,'[[predate]]',3,1887,33.600000,1,NULL,NULL),(2915,'[[regdate]]',3,1887,33.600000,1,NULL,NULL),(2916,'[[postdate]]',3,1887,33.600000,1,NULL,NULL),(2917,'[[predate]]',3,1888,33.600000,1,NULL,NULL),(2918,'[[regdate]]',3,1888,33.600000,1,NULL,NULL),(2919,'[[postdate]]',3,1888,33.600000,1,NULL,NULL),(2920,'[[predate]]',3,1889,33.600000,1,NULL,NULL),(2921,'[[regdate]]',3,1889,33.600000,1,NULL,NULL),(2922,'[[postdate]]',3,1889,33.600000,1,NULL,NULL),(2923,'[[predate]]',3,1890,50.400000,1,NULL,NULL),(2924,'[[regdate]]',3,1890,50.400000,1,NULL,NULL),(2925,'[[postdate]]',3,1890,50.400000,1,NULL,NULL),(2926,'[[predate]]',3,1891,50.400000,1,NULL,NULL),(2927,'[[regdate]]',3,1891,50.400000,1,NULL,NULL),(2928,'[[postdate]]',3,1891,50.400000,1,NULL,NULL),(2929,'[[predate]]',3,1892,50.400000,1,NULL,NULL),(2930,'[[regdate]]',3,1892,50.400000,1,NULL,NULL),(2931,'[[postdate]]',3,1892,50.400000,1,NULL,NULL),(2932,'[[predate]]',3,1893,50.400000,1,NULL,NULL),(2933,'[[regdate]]',3,1893,50.400000,1,NULL,NULL),(2934,'[[postdate]]',3,1893,50.400000,1,NULL,NULL),(2935,'[[predate]]',3,1894,50.400000,1,NULL,NULL),(2936,'[[regdate]]',3,1894,50.400000,1,NULL,NULL),(2937,'[[postdate]]',3,1894,50.400000,1,NULL,NULL),(2938,'[[predate]]',3,1895,50.400000,1,NULL,NULL),(2939,'[[regdate]]',3,1895,50.400000,1,NULL,NULL),(2940,'[[postdate]]',3,1895,50.400000,1,NULL,NULL),(2941,'[[predate]]',3,1896,50.400000,1,NULL,NULL),(2942,'[[regdate]]',3,1896,50.400000,1,NULL,NULL),(2943,'[[postdate]]',3,1896,50.400000,1,NULL,NULL),(2944,'[[predate]]',3,1897,39.200000,1,NULL,NULL),(2945,'[[regdate]]',3,1897,39.200000,1,NULL,NULL),(2946,'[[postdate]]',3,1897,39.200000,1,NULL,NULL),(2947,'[[predate]]',3,1898,39.200000,1,NULL,NULL),(2948,'[[regdate]]',3,1898,39.200000,1,NULL,NULL),(2949,'[[postdate]]',3,1898,39.200000,1,NULL,NULL),(2950,'[[predate]]',3,1899,39.200000,1,NULL,NULL),(2951,'[[regdate]]',3,1899,39.200000,1,NULL,NULL),(2952,'[[postdate]]',3,1899,39.200000,1,NULL,NULL),(2953,'[[predate]]',3,1900,39.200000,1,NULL,NULL),(2954,'[[regdate]]',3,1900,39.200000,1,NULL,NULL),(2955,'[[postdate]]',3,1900,39.200000,1,NULL,NULL),(2956,'[[predate]]',3,1901,39.200000,1,NULL,NULL),(2957,'[[regdate]]',3,1901,39.200000,1,NULL,NULL),(2958,'[[postdate]]',3,1901,39.200000,1,NULL,NULL),(2959,'[[predate]]',3,1902,39.200000,1,NULL,NULL),(2960,'[[regdate]]',3,1902,39.200000,1,NULL,NULL),(2961,'[[postdate]]',3,1902,39.200000,1,NULL,NULL),(2962,'[[predate]]',3,1903,39.200000,1,NULL,NULL),(2963,'[[regdate]]',3,1903,39.200000,1,NULL,NULL),(2964,'[[postdate]]',3,1903,39.200000,1,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_product_price_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_product_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_product_price_replica` (
  `rule_product_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int DEFAULT NULL,
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `[[DBPREFIX]]CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_product_price_replica`
--

LOCK TABLES `[[dbprefix]]catalogrule_product_price_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_price_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_price_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_product_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_product_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_product_replica` (
  `rule_product_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID',
  `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `from_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'From Time',
  `to_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'To time',
  `customer_group_id` int DEFAULT NULL,
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount',
  `action_stop` smallint NOT NULL DEFAULT '0' COMMENT 'Action Stop',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_657F2C47A3462448AF8A19A447783F01` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `[[DBPREFIX]]CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_product_replica`
--

LOCK TABLES `[[dbprefix]]catalogrule_product_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_rule_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_rule_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_rule_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalogrule_rule_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_rule_cl`
--

LOCK TABLES `[[dbprefix]]catalogrule_rule_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_rule_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_rule_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogrule_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogrule_website` (
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]CATALOGRULE_WEBSITE_RULE_ID_[[DBPREFIX]]CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATRULE_WS_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogrule_website`
--

LOCK TABLES `[[dbprefix]]catalogrule_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_website` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalogrule_website` VALUES (1,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalogrule_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogsearch_fulltext_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogsearch_fulltext_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogsearch_fulltext_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]catalogsearch_fulltext_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogsearch_fulltext_cl`
--

LOCK TABLES `[[dbprefix]]catalogsearch_fulltext_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_fulltext_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_fulltext_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalogsearch_recommendations`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalogsearch_recommendations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalogsearch_recommendations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `query_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Query ID',
  `relation_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Relation ID',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_QR_ID_[[DBPREFIX]]SRCH_QR_QR_ID` (`query_id`),
  KEY `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_RELATION_ID_[[DBPREFIX]]SRCH_QR_QR_ID` (`relation_id`),
  CONSTRAINT `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_QR_ID_[[DBPREFIX]]SRCH_QR_QR_ID` FOREIGN KEY (`query_id`) REFERENCES `[[dbprefix]]search_query` (`query_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_RELATION_ID_[[DBPREFIX]]SRCH_QR_QR_ID` FOREIGN KEY (`relation_id`) REFERENCES `[[dbprefix]]search_query` (`query_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Advanced Search Recommendations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalogsearch_recommendations`
--

LOCK TABLES `[[dbprefix]]catalogsearch_recommendations` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_recommendations` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_recommendations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]checkout_agreement`
--

DROP TABLE IF EXISTS `[[dbprefix]]checkout_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]checkout_agreement` (
  `agreement_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `content` text COMMENT 'Content',
  `content_height` varchar(25) DEFAULT NULL COMMENT 'Content Height',
  `checkbox_text` text COMMENT 'Checkbox Text',
  `is_active` smallint NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `is_html` smallint NOT NULL DEFAULT '0' COMMENT 'Is Html',
  `mode` smallint NOT NULL DEFAULT '0' COMMENT 'Applied mode',
  PRIMARY KEY (`agreement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Checkout Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]checkout_agreement`
--

LOCK TABLES `[[dbprefix]]checkout_agreement` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]checkout_agreement_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]checkout_agreement_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]checkout_agreement_store` (
  `agreement_id` int unsigned NOT NULL COMMENT 'Agreement ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`agreement_id`,`store_id`),
  KEY `[[DBPREFIX]]CHECKOUT_AGREEMENT_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CHECKOUT_AGREEMENT_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CHKT_AGRT_STORE_AGRT_ID_[[DBPREFIX]]CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `[[dbprefix]]checkout_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Checkout Agreement Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]checkout_agreement_store`
--

LOCK TABLES `[[dbprefix]]checkout_agreement_store` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cms_block`
--

DROP TABLE IF EXISTS `[[dbprefix]]cms_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cms_block` (
  `block_id` smallint NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) NOT NULL COMMENT 'Block Title',
  `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier',
  `content` mediumtext COMMENT 'Block Content',
  `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Block Creation Time',
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Block Modification Time',
  `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'Is Block Active',
  PRIMARY KEY (`block_id`),
  KEY `[[DBPREFIX]]CMS_BLOCK_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `[[DBPREFIX]]CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='CMS Block Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cms_block`
--

LOCK TABLES `[[dbprefix]]cms_block` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cms_block` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cms_block` VALUES (1,'Footer Links Block','footer_links_block','<ul class=\"footer links\">\n    <li class=\"nav item\"><a href=\"{{store url=\"about-us\"}}\">About us</a></li>\n    <li class=\"nav item\"><a href=\"{{store url=\"customer-service\"}}\">Customer Service</a></li>\n</ul>\n','[[regtime]]','[[regtime]]',1),(2,'Contact us info','contact-us-info','<div class=\"contact-info cms-content\">\n   <p class=\"cms-content-important\">We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like</p>\n   <div class=\"block block-contact-info\">\n       <div class=\"block-title\">\n           <strong>Contact Us Info</strong>\n       </div>\n       <div class=\"block-content\">\n           <div class=\"box box-phone\">\n               <strong class=\"box-title\">\n                   <span>Phone</span>\n               </strong>\n               <div class=\"box-content\">\n                   <span class=\"contact-info-number\">1-800-403-8838</span>\n                   <p>Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.</p>\n               </div>\n           </div>\n           <div class=\"box box-design-inquiries\">\n               <strong class=\"box-title\">\n                   <span>Apparel Design Inquiries</span>\n               </strong>\n               <div class=\"box-content\">\n                   <p>Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: <a href=\"mailto:cs@luma.com\">cs@luma.com</a></p>\n               </div>\n           </div>\n           <div class=\"box box-press-inquiries\">\n               <strong class=\"box-title\">\n                   <span>Press Inquiries</span>\n               </strong>\n               <div class=\"box-content\">\n                   <p>Please direct all media inquiries via email to: <a href=\"mailto:pr@luma.com\">pr@luma.com</a></p>\n               </div>\n           </div>\n       </div>\n   </div>\n</div>\n','[[regtime]]','[[regtime]]',1),(3,'Sale Left Menu Block','sale-left-menu-block','<div class=\"categories-menu\"><strong class=\"title\"><span>Women\'s Deals</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/hoodies-and-sweatshirts-women.html\">Hoodies and Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/jackets-women.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tees-women.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tanks-women.html\">Bras & Tanks</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/pants-women.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/shorts-women.html\">Shorts</a></li>\n</ul>\n\n<strong class=\"title\"><span>Mens\'s Deals</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/hoodies-and-sweatshirts-men.html\">Hoodies and Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/jackets-men.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/tees-men.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/pants-men.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/shorts-men.html\">Shorts</a></li>\n</ul>\n\n<strong class=\"title\"><span>Gear Deals</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}gear/bags.html\">Bags</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}gear/fitness-equipment.html\">Fitness Equipment</a></li>\n</ul>\n</div>','[[regtime]]','[[regtime]]',1),(4,'Gear Left Menu Block','gear-left-menu-block','<div class=\"categories-menu\"><strong class=\"title\"><span></span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}gear/bags.html\">Bags</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}gear/fitness-equipment.html\">Fitness Equipment</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}gear/watches.html\">Watches</a></li>\n</ul>\n</div>','[[regtime]]','[[regtime]]',1),(5,'Men Left Menu Block','men-left-menu-block','<div class=\"categories-menu\"><strong class=\"title\"><span>Tops</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/hoodies-and-sweatshirts-men.html\">Hoodies & Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/jackets-men.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/tees-men.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/tanks-men.html\">Tanks</a></li>\n</ul>\n\n<strong class=\"title\"><span>Bottoms</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/pants-men.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/shorts-men.html\">Shorts</a></li>\n</ul>\n</div>','[[regtime]]','[[regtime]]',1),(6,'Women Left Menu Block','women-left-menu-block','<div class=\"categories-menu\"><strong class=\"title\"><span>Tops</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/hoodies-and-sweatshirts-women.html\">Hoodies & Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/jackets-women.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tees-women.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tanks-women.html\">Bras & Tanks</a></li>\n</ul>\n\n<strong class=\"title\"><span>Bottoms</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/pants-women.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/shorts-women.html\">Shorts</a></li>\n</ul>\n</div>','[[regtime]]','[[regtime]]',1),(7,'New Left Menu Block','new-left-menu-block','<div class=\"categories-menu\"><strong class=\"title\"><span>New in women\'s</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/hoodies-and-sweatshirts-women.html\">Hoodies & Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/jackets-women.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tees-women.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/tops-women/tanks-women.html\">Bras & Tanks</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/pants-women.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}women/bottoms-women/shorts-women.html\">Shorts</a></li>\n</ul>\n\n<strong class=\"title\"><span>New in men\'s</span></strong>\n<ul class=\"items\">\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/hoodies-and-sweatshirts-men.html\">Hoodies & Sweatshirts</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/jackets-men.html\">Jackets</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/tees-men.html\">Tees</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/tops-men/tanks-men.html\">Tanks</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/pants-men.html\">Pants</a></li>\n    <li class=\"item\"><a href=\"{{store url=\"\"}}men/bottoms-men/shorts-men.html\">Shorts</a></li>\n</ul>\n</div>','[[regtime]]','[[regtime]]',1),(8,'Women Block','women-block','<div class=\"blocks-promo\">\n    <a href=\"{{store url=\"\"}}women.html\" class=\"block-promo womens-main\">\n        <img src=\"{{media url=\"wysiwyg/womens/womens-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <span class=\"info\">New Luma Yoga Collection</span>\n            <strong class=\"title\">Yoga is ancient<br />Clothing shouldn’t be</strong>\n            <span class=\"more button\">Shop New Yoga</span>\n        </span>\n    </a>\n    <div class=\"block-promo-wrapper block-promo-2columns\">\n        <a href=\"{{store url=\"\"}}women/tops-women/tees-women.html\" class=\"block-promo womens-t-shirts\">\n            <span class=\"content\">\n                <strong class=\"title\">You can’t have too many tees</strong>\n                <img src=\"{{media url=\"wysiwyg/womens/womens-t-shirts.png\"}}\" alt=\"\" />\n                <span class=\"info\">4 tees for the price of 3. Right now</span>\n                <span class=\"more icon\">Women’s Tees</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}women/bottoms-women/pants-women.html\" class=\"block-promo womens-pants\">\n            <img src=\"{{media url=\"wysiwyg/womens/womens-pants.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Hot pants<br />Hot deals</strong>\n                <span class=\"info\"><span>20% OFF</span>Luma pants when you shop today*</span>\n                <span class=\"more icon\">Shop Pants</span>\n            </span>\n        </a>\n    </div>\n    <a href=\"{{store url=\"\"}}collections/erin-recommends.html\" class=\"block-promo womens-erin\">\n        <span class=\"content\">\n            <strong class=\"title\">What would Erin wear?</strong>\n            <span class=\"info\">It’s no secret: see Luma founder Erin Renny’s wardrobe go-to’s</span>\n            <span class=\"more icon\">Shop Erin Recommends</span>\n        </span>\n        <span class=\"image\"><img src=\"{{media url=\"wysiwyg/womens/womens-erin.jpg\"}}\" alt=\"\" /></span>\n    </a>\n    <div class=\"block-promo-wrapper block-promo-3columns\">\n        <a href=\"{{store url=\"\"}}women/bottoms-women/pants-women.html\" class=\"block-promo womens-category-pants\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma pants</strong>\n                <span class=\"info\">Pants for yoga, gym and outdoors</span>\n                <span class=\"more icon\">Shop Pants</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/womens/womens-category-pants.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}women/bottoms-women/shorts-women.html\" class=\"block-promo womens-category-shorts\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma shorts</strong>\n                <span class=\"info\">Exercise comfort</span>\n                <span class=\"more icon\">Shop Shorts</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/womens/womens-category-shorts.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}women/tops-women/tanks-women.html\" class=\"block-promo womens-category-tanks\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma Bras<br />Tanks</strong>\n                <span class=\"info\">Stock up for summer!</span>\n                <span class=\"more icon\">Shop Now</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/womens/womens-category-tanks.jpg\"}}\" alt=\"\" /></span>\n        </a>\n    </div>\n</div>\n<div class=\"content-heading\">\n    <h2 class=\"title\">Hot Sellers</h2>\n    <p class=\"info\">Favorites from Luma shoppers</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_per_page=\"4\" products_count=\"4\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`sku`,`operator`:`()`,`value`:`WS12, WT09, WH05, WP12`^]^]\"}}','[[regtime]]','[[regtime]]',1),(9,'Training Block','training-block','<div class=\"blocks-promo\">\n\n    <a href=\"{{store url=\"\"}}training.html\" class=\"block-promo training-main\">\n        <img src=\"{{media url=\"wysiwyg/training/training-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <strong class=\"title\">\n                <span>Motivate</span> yourself.<br />\n                <span>Reach</span> goals.<br />\n                <span>Boost</span> ambition.<br />\n                <span>Max</span> fitness.<br />\n                <span>Upgrade</span> lifestyle.\n            </strong>\n        </span>\n    </a>\n    <a href=\"{{store url=\"\"}}collections/erin-recommends.html\" class=\"block-promo training-erin\">\n        <img src=\"{{media url=\"wysiwyg/training/training-erin.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <strong class=\"title\">Before creating Luma, pro trainer Erin Renny helped world-class athletes reach peak fitness</strong>\n            <span class=\"info\">Hand-selected by Erin, our training downloads reflect a commitment to yoga, health and wellness.</span>\n        </span>\n    </a>\n    <a href=\"{{store url=\"\"}}training/training-video.html\" class=\"block-promo training-on-demand\">\n        <span class=\"content\">\n            <span class=\"icon download\"><span>Download</span></span>\n            <strong class=\"title\">Training on demand</strong>\n            <span class=\"info\">Luma downloads to inspire and&nbsp;challenge.<br />Your space, your pace</span>\n            <span class=\"more icon\">Videos</span>\n        </span>\n    </a>\n</div>\n<div class=\"content-heading\">\n    <h2 class=\"title\">Top Videos</h2>\n    <p class=\"info\">Stream free with subscription</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_count=\"4\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`sku`,`operator`:`()`,`value`:`241-MB08, 240-LV05, 240-LV09, 240-LV07`^]^]\"}}','[[regtime]]','[[regtime]]',1),(10,'Men Block','men-block','<div class=\"blocks-promo\">\n    <a href=\"{{store url=\"\"}}men.html\" class=\"block-promo mens-main\">\n        <img src=\"{{media url=\"wysiwyg/mens/mens-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <span class=\"info\">Luma’s Performance Fabric collection</span>\n            <strong class=\"title\">Going the extra mile just got extra comfortable</strong>\n            <span class=\"more button\">Shop Performance</span>\n        </span>\n    </a>\n    <div class=\"block-promo-wrapper block-promo-2columns\">\n        <a href=\"{{store url=\"\"}}men/tops-men/tees-men.html\" class=\"block-promo mens-t-shirts\">\n            <span class=\"content\">\n                <strong class=\"title\">Save up to $24!</strong>\n                <img src=\"{{media url=\"wysiwyg/mens/mens-t-shirts.png\"}}\" alt=\"\" />\n                <span class=\"info\">Buy 3 Luma tees, get 4 instead</span>\n                <span class=\"more icon\">Shop Tees</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}men/bottoms-men/pants-men.html\" class=\"block-promo mens-pants\">\n            <img src=\"{{media url=\"wysiwyg/mens/mens-pants.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Last chance<br />for pants</strong>\n                <span class=\"info\">Take <span>20% OFF</span>and save bigtime*</span>\n                <span class=\"more icon\">Shop Pants</span>\n            </span>\n        </a>\n    </div>\n    <div class=\"block-promo-wrapper block-promo-3columns\">\n        <a href=\"{{store url=\"\"}}men/bottoms-men/shorts-men.html\" class=\"block-promo mens-category-shorts\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma shorts</strong>\n                <span class=\"info\">Cool it now</span>\n                <span class=\"more icon\">Shop Shorts</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/mens/mens-category-shorts.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}men/tops-men/tees-men.html\" class=\"block-promo mens-category-tees\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma tees</strong>\n                <span class=\"info\">Grab a tee or two!</span>\n                <span class=\"more icon\">Shop Tees</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/mens/mens-category-tees.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}men/tops-men/hoodies-and-sweatshirts-men.html\" class=\"block-promo mens-category-hoodies\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma hoodies</strong>\n                <span class=\"info\">Dress for fitness</span>\n                <span class=\"more icon\">Shop Hoodies</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/mens/mens-category-hoodies.jpg\"}}\" alt=\"\" /></span>\n        </a>\n    </div>\n</div>\n<div class=\"content-heading\">\n    <h2 class=\"title\">Hot Sellers</h2>\n    <p class=\"info\">Favorites from Luma shoppers</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_per_page=\"4\" products_count=\"4\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`sku`,`operator`:`()`,`value`:`MT07, MH07, MSH03, MP03`^]^]\"}}','[[regtime]]','[[regtime]]',1),(11,'Gear Block','gear-block','<div class=\"blocks-promo\">\n    <a href=\"{{store url=\"\"}}gear.html\" class=\"block-promo gear-main\">\n        <img src=\"{{media url=\"wysiwyg/gear/gear-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <strong class=\"title\">Sprite Yoga Companion Kit</strong>\n            <span class=\"info\">Save up to 20% on a&nbsp;bundle!</span>\n            <span class=\"more button\">Shop Yoga Kit</span>\n        </span>\n    </a>\n    <div class=\"block-promo-wrapper block-promo-2columns\">\n        <a href=\"{{store url=\"\"}}gear/fitness-equipment.html\" class=\"block-promo gear-fitnes\">\n            <img src=\"{{media url=\"wysiwyg/gear/gear-fitnes.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Loosen Up</strong>\n                <span class=\"info\">Extend your training with yoga straps, tone bands,<br />and jump ropes</span>\n                <span class=\"more icon\">Shop Fitness</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}gear/fitness-equipment.html\" class=\"block-promo gear-equipment\">\n            <img src=\"{{media url=\"wysiwyg/gear/gear-equipment.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Here’s to you!</strong>\n                <span class=\"info\">$4 Luma water bottle<br />(save&nbsp;70%)</span>\n                <span class=\"note\">Enter promo code H2O<br />at check out</span>\n            </span>\n        </a>\n    </div>\n    <div class=\"block-promo-wrapper block-promo-3columns\">\n        <a href=\"{{store url=\"\"}}gear/bags.html\" class=\"block-promo gear-category-bags\">\n            <span class=\"content\">\n                <strong class=\"title\">Tote, cart or carry</strong>\n                <span class=\"info\">Luma bags go the distance</span>\n                <span class=\"more icon\">Shop Bags</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/gear/gear-category-bags.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}gear/fitness-equipment.html\" class=\"block-promo gear-category-equipment\">\n            <span class=\"content\">\n                <strong class=\"title\">Let’s get after it!</strong>\n                <span class=\"info\">Luma gym equipment fits your goals and&nbsp;style</span>\n                <span class=\"more icon\">Shop Equipment</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/gear/gear-category-equipment.jpg\"}}\" alt=\"\" /></span>\n        </a>\n        <a href=\"{{store url=\"\"}}gear/watches.html\" class=\"block-promo gear-category-watches\">\n            <span class=\"content\">\n                <strong class=\"title\">Luma watches</strong>\n                <span class=\"info\">Keeping pace has never been more stylish</span>\n                <span class=\"more icon\">Shop Watches</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/gear/gear-category-watches.jpg\"}}\" alt=\"\" /></span>\n        </a>\n    </div>\n</div>\n<div class=\"content-heading\">\n    <h2 class=\"title\">Hot Sellers</h2>\n    <p class=\"info\">Favorites from Luma shoppers</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_per_page=\"4\" products_count=\"4\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`sku`,`operator`:`()`,`value`:`24-MB02, 24-WB04, 24-UG06, 24-WG080`^]^]\"}}','[[regtime]]','[[regtime]]',1),(12,'Sale Block','sale-block','<div class=\"blocks-promo\">\n    <a href=\"{{store url=\"\"}}promotions/women-sale.html\" class=\"block-promo sale-main\">\n        <img src=\"{{media url=\"wysiwyg/sale/sale-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <span class=\"info\">Women’s Deals</span>\n            <strong class=\"title\">Pristine prices on pants, tanks and bras.</strong>\n            <span class=\"more button\">Shop Women’s Deals</span>\n        </span>\n    </a>\n    <div class=\"block-promo-wrapper block-promo-2columns\">\n        <a href=\"{{store url=\"\"}}promotions/men-sale.html\" class=\"block-promo sale-mens\">\n            <img src=\"{{media url=\"wysiwyg/sale/sale-mens.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Men’s Bargains</strong>\n                <span class=\"info\">Stretch your budget with active attire</span>\n                <span class=\"more icon\">Shop Men’s Deals</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}gear.html\" class=\"block-promo sale-women\">\n            <img src=\"{{media url=\"wysiwyg/sale/sale-gear.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Luma Gear Steals</strong>\n                <span class=\"info\">Your best efforts deserve a deal</span>\n                <span class=\"more icon\">Shop Luma Gear</span>\n            </span>\n        </a>\n    </div>\n    <div class=\"block-promo-wrapper block-promo-3columns\">\n        <a class=\"block-promo sale-20-off\">\n            <span class=\"content\">\n                <strong class=\"title\">20% OFF</strong>\n                <span class=\"info\">Every $200-plus purchase!</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/sale/sale-20-off.png\"}}\" alt=\"\" /></span>\n        </a>\n        <a class=\"block-promo sale-free-shipping\">\n            <span class=\"content\">\n                <strong class=\"title\">Spend $50 or more&nbsp;&mdash; shipping is free!</strong>\n                <img src=\"{{media url=\"wysiwyg/sale/sale-free-shipping.png\"}}\" alt=\"\" />\n                <span class=\"info\">Buy more, save more</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}women/tops-women/tees-women.html\" class=\"block-promo sale-womens-t-shirts\">\n            <span class=\"content\">\n                <strong class=\"title\">You can\'t have too many tees</strong>\n                <span class=\"info\">4 tees for the price of 3. Right now</span>\n                <span class=\"more icon\">Tees on sale</span>\n            </span>\n            <span class=\"image\"><img src=\"{{media url=\"wysiwyg/womens/womens-t-shirts.png\"}}\" alt=\"\" /></span>\n        </a>\n    </div>\n</div>','[[regtime]]','[[regtime]]',1),(13,'New Block','new-block','<div class=\"blocks-promo\">\n    <a href=\"{{store url=\"\"}}collections/yoga-new.html\" class=\"block-promo new-main\">\n        <img src=\"{{media url=\"wysiwyg/new/new-main.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <span class=\"info\">New Luma Yoga Collection</span>\n            <strong class=\"title\">The very latest yoga styles  plus twists on timeless classics</strong>\n            <span class=\"more button\">Shop New Yoga</span>\n        </span>\n    </a>\n\n    <div class=\"block-promo-wrapper block-promo-2columns\">\n        <a href=\"{{store url=\"\"}}collections/performance-new.html\" class=\"block-promo new-performance\">\n            <img src=\"{{media url=\"wysiwyg/new/new-performance.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">Whatever day brings</strong>\n                <span class=\"info\">Luma Cocona<sup>™</sup> for breathability, CoolTech<sup>™</sup> for wicking, or a blend of&nbsp;both.</span>\n                <span class=\"more icon\">Performance Fabrics</span>\n            </span>\n        </a>\n        <a href=\"{{store url=\"\"}}collections/eco-new.html\" class=\"block-promo new-eco\">\n            <img src=\"{{media url=\"wysiwyg/new/new-eco.jpg\"}}\" alt=\"\" />\n            <span class=\"content\">\n                <strong class=\"title\">A sense of renewal</strong>\n                <span class=\"info\">Enjoy comfort of body and mind with Luma eco-friendly choices</span>\n                <span class=\"more icon\">Shop Eco Friendly </span>\n            </span>\n        </a>\n    </div>\n</div>\n<div class=\"content-heading\">\n    <h2 class=\"title\">Luma\'s Latest</h2>\n    <p class=\"info\">Just in time for the new season!</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_per_page=\"4\" products_count=\"4\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`new`,`operator`:`==`,`value`:`1`^]^]\"}}','[[regtime]]','[[regtime]]',1),(14,'Home Page Block','home-page-block','<div class=\"blocks-promo\">\n   <a href=\"{{store url=\"\"}}collections/yoga-new.html\" class=\"block-promo home-main\">\n       <img src=\"{{media url=\"wysiwyg/home/home-main.jpg\"}}\" alt=\"\" />\n       <span class=\"content bg-white\">\n           <span class=\"info\">New Luma Yoga Collection</span>\n           <strong class=\"title\">Get fit and look fab in new seasonal styles</strong>\n           <span class=\"action more button\">Shop New Yoga</span>\n       </span>\n   </a>\n   <div class=\"block-promo-wrapper block-promo-hp\">\n       <a href=\"{{store url=\"\"}}promotions/pants-all.html\" class=\"block-promo home-pants\">\n           <img src=\"{{media url=\"wysiwyg/home/home-pants.jpg\"}}\" alt=\"\" />\n           <span class=\"content\">\n               <strong class=\"title\">20% OFF</strong>\n               <span class=\"info\">Luma pants when you shop today*</span>\n               <span class=\"action more icon\">Shop Pants</span>\n           </span>\n       </a>\n       <a href=\"{{store url=\"\"}}promotions/tees-all.html\" class=\"block-promo home-t-shirts\">\n           <span class=\"image\"><img src=\"{{media url=\"wysiwyg/home/home-t-shirts.png\"}}\" alt=\"\" /></span>\n           <span class=\"content\">\n               <strong class=\"title\">Even more ways to mix and match</strong>\n               <span class=\"info\">Buy 3 Luma tees get a 4th free</span>\n               <span class=\"action more icon\">Shop Tees</span>\n           </span>\n       </a>\n       <a href=\"{{store url=\"\"}}collections/erin-recommends.html\" class=\"block-promo home-erin\">\n           <img src=\"{{media url=\"wysiwyg/home/home-erin.jpg\"}}\" alt=\"\" />\n           <span class=\"content\">\n               <strong class=\"title\">Take it from Erin</strong>\n               <span class=\"info\">Luma founder Erin Renny shares her favorites!</span>\n               <span class=\"action more icon\">Shop Erin Recommends</span>\n           </span>\n       </a>\n       <a href=\"{{store url=\"\"}}collections/performance-fabrics.html\" class=\"block-promo home-performance\">\n           <img src=\"{{media url=\"wysiwyg/home/home-performance.jpg\"}}\" alt=\"\" />\n           <span class=\"content bg-white\">\n               <strong class=\"title\">Science meets performance</strong>\n               <span class=\"info\">Wicking to raingear, Luma covers&nbsp;you</span>\n               <span class=\"action more icon\">Shop Performance</span>\n           </span>\n       </a>\n       <a href=\"{{store url=\"\"}}collections/eco-friendly.html\" class=\"block-promo home-eco\">\n           <img src=\"{{media url=\"wysiwyg/home/home-eco.jpg\"}}\" alt=\"\" />\n           <span class=\"content bg-white\">\n               <strong class=\"title\">Twice around, twice as nice</strong>\n               <span class=\"info\">Find conscientious, comfy clothing in our <nobr>eco-friendly</nobr> collection</span>\n               <span class=\"action more icon\">Shop Eco-Friendly</span>\n           </span>\n       </a>\n   </div>\n</div>\n<div class=\"content-heading\">\n   <h2 class=\"title\">Hot Sellers</h2>\n   <p class=\"info\">Here is what`s trending on Luma right now</p>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_per_page=\"8\" products_count=\"8\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`sku`,`operator`:`()`,`value`:`WS12, WT09, MT07, MH07, 24-MB02, 24-WB04, 241-MB08, 240-LV05`^]^]\"}}','[[regtime]]','[[regtime]]',1),(15,'Performance Fabrics Block','performance-fabrics-block','<div class=\"blocks-promo\">\n   <div class=\"block-promo collection-performance\">\n       <img src=\"{{media url=\"wysiwyg/collection/collection-performance.jpg\"}}\" alt=\"\" />\n       <span class=\"content\">\n           <strong class=\"title\">You\'re the best</strong>\n           <span class=\"info\">Make a strong statement with Luma Performance sportswear</span>\n       </span>\n   </div>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_count=\"5\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`performance_fabric`,`operator`:`==`,`value`:`1`^],`1--2`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`new`,`operator`:`==`,`value`:`1`^]^]\"}}','[[regtime]]','[[regtime]]',1),(16,'Eco Friendly Block','eco-friendly-block','<div class=\"blocks-promo\">\n    <div class=\"block-promo collection-eco\">\n        <img src=\"{{media url=\"wysiwyg/collection/collection-eco.jpg\"}}\" alt=\"\" />\n        <span class=\"content\">\n            <strong class=\"title\">Eco-friendly, ego-friendly</strong>\n            <span class=\"info\">Recycled polyester, hemp and organic cotton apperel</span>\n        </span>\n    </div>\n</div>\n{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" products_count=\"5\" template=\"product/widget/content/grid.phtml\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`all`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`eco_collection`,`operator`:`==`,`value`:`1`^],`1--2`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`new`,`operator`:`==`,`value`:`1`^]^]\"}}','[[regtime]]','[[regtime]]',1),(17,'Login Info Block','login-data','<div class=\"message info\" style=\"margin-top: 50px;\">\n    <p><strong>Try Demo Customer Access</strong></p>\n    <p><span style=\"display:inline-block; width: 80px; padding-right: 10px;\">Email:</span>roni_cost@example.com</p>\n    <p><span style=\"display:inline-block; width: 80px; padding-right: 10px;\">Password:</span>roni_cost3@example.com</p>\n</div>','[[regtime]]','[[regtime]]',1);
/*!40000 ALTER TABLE `[[dbprefix]]cms_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cms_block_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]cms_block_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cms_block_store` (
  `block_id` smallint NOT NULL,
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`block_id`,`store_id`),
  KEY `[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CMS_BLOCK_STORE_BLOCK_ID_[[DBPREFIX]]CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `[[dbprefix]]cms_block` (`block_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CMS Block To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cms_block_store`
--

LOCK TABLES `[[dbprefix]]cms_block_store` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cms_block_store` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cms_block_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,0),(8,0),(9,0),(10,0),(11,0),(12,0),(13,0),(14,0),(15,0),(16,0),(17,0);
/*!40000 ALTER TABLE `[[dbprefix]]cms_block_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cms_page`
--

DROP TABLE IF EXISTS `[[dbprefix]]cms_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cms_page` (
  `page_id` smallint NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Page Title',
  `page_layout` varchar(255) DEFAULT NULL COMMENT 'Page Layout',
  `meta_keywords` text COMMENT 'Page Meta Keywords',
  `meta_description` text COMMENT 'Page Meta Description',
  `identifier` varchar(100) DEFAULT NULL COMMENT 'Page String Identifier',
  `content_heading` varchar(255) DEFAULT NULL COMMENT 'Page Content Heading',
  `content` mediumtext COMMENT 'Page Content',
  `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Page Creation Time',
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Page Modification Time',
  `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'Is Page Active',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Page Sort Order',
  `layout_update_xml` text COMMENT 'Page Layout Update Content',
  `custom_theme` varchar(100) DEFAULT NULL COMMENT 'Page Custom Theme',
  `custom_root_template` varchar(255) DEFAULT NULL COMMENT 'Page Custom Template',
  `custom_layout_update_xml` text COMMENT 'Page Custom Layout Update Content',
  `layout_update_selected` varchar(128) DEFAULT NULL COMMENT 'Page Custom Layout File',
  `custom_theme_from` date DEFAULT NULL COMMENT 'Page Custom Theme Active From Date',
  `custom_theme_to` date DEFAULT NULL COMMENT 'Page Custom Theme Active To Date',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Page Meta Title',
  PRIMARY KEY (`page_id`),
  KEY `[[DBPREFIX]]CMS_PAGE_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `FTI_2B3F6DC425D914597AB7E76AC87078A1` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='CMS Page Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cms_page`
--

LOCK TABLES `[[dbprefix]]cms_page` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cms_page` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]cms_page` VALUES (1,'404 Not Found','2columns-right','Page keywords','Page description','no-route','Whoops, our bad...','<dl>\r\n<dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n<li>If you clicked on a link to get here, the link is outdated.</li>\r\n</ul></dd>\r\n</dl>\r\n<dl>\r\n<dt>What can you do?</dt>\r\n<dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n<li>Use the search bar at the top of the page to search for your products.</li>\r\n<li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a> <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl>\r\n','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home Page','1column','','','home','Home Page','','[[regtime]]','[[regtime]]',1,0,'','','',NULL,NULL,NULL,NULL,NULL),(3,'Enable Cookies','1column',NULL,NULL,'enable-cookies','What are Cookies?','<div class=\"enable-cookies cms-content\">\r\n<p>\"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.</p>\r\n<p style=\"margin-bottom: 20px;\">Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:</p>\r\n<ul>\r\n<li><a href=\"https://support.google.com/accounts/answer/61416?hl=en\" target=\"_blank\">Google Chrome</a></li>\r\n<li><a href=\"http://windows.microsoft.com/en-us/internet-explorer/delete-manage-cookies\" target=\"_blank\">Internet Explorer</a></li>\r\n<li><a href=\"http://support.apple.com/kb/PH19214\" target=\"_blank\">Safari</a></li>\r\n<li><a href=\"https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences\" target=\"_blank\">Mozilla/Firefox</a></li>\r\n</ul>\r\n</div>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Privacy Policy','1column','','','privacy-policy-cookie-restriction-mode','Privacy Policy','<div class=\"privacy-policy cms-content\">\n    <div class=\"privacy-policy-content\">\n        <p>This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.</p>\n\n        <h2 id=\"privacy-policy-title-1\">Luma Security</h2>\n        <p>Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.</p>\n\n        <p>Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.</p>\n\n        <h2 id=\"privacy-policy-title-2\">Luma Privacy Policy</h2>\n        <p>To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.</p>\n\n        <p>As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.</p>\n\n        <h2 id=\"privacy-policy-title-3\">The Information We Collect</h2>\n        <p>Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.</p>\n\n        <p>We may collect the following information:</p>\n        <ul>\n            <li>name</li>\n            <li>contact information including email address</li>\n            <li>demographic information such as postcode, preferences and interests</li>\n            <li>other information relevant to customer surveys and/or offers</li>\n        </ul>\n        <p>For the exhaustive list of cookies we collect see the <a href=\"#privacy-policy-title-10\">List of cookies we collect</a> section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.</p>\n        <h2 id=\"privacy-policy-title-4\">How We Use The Information We Collect</h2>\n        <p>We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:</p>\n        <ul>\n            <li>Internal record keeping.</li>\n            <li>We may use the information to improve our products and services.</li>\n            <li>We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.</li>\n            <li>From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.</li>\n        </ul>\n\n        <h2 id=\"privacy-policy-title-5\">Security</h2>\n        <p>We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.</p>\n\n        <h2 id=\"privacy-policy-title-6\">Others With Whom We Share Your Information.</h2>\n        <p><b>The Luma Group:</b> All of the above information that we collect, as described  above, may be shared among all Luma entities, including Luma Venia and Luma  Terra stores, website and Private Sales.</p>\n\n        <p><b>Service Providers:</b> We also may disclose information to outside companies that  help us bring you the products and services we offer. For example, we may work  with an outside company to: (a) manage a database of customer information; (b)  assist us in distributing emails; (c) assist us with direct marketing and data  collection; (d) provide us storage and analysis; (d) provide fraud prevention; and  (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.</p>\n\n        <p><b>Other Companies:</b> We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.</p>\n\n        <p><b>Business Transitions:</b> We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.</p>\n\n        <p>Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.</p>\n\n        <p><b>Compliance with Law:</b> We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.</p>\n\n        <p>Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.</p>\n\n        <h2 id=\"privacy-policy-title-7\">Your Choices Regarding Use Of The Information We Collect</h2>\n\n        <p>You have several choices regarding our handling of your nonpublic personally identifiable information.</p>\n\n        <p>\n            <b>Direct Mail or Telephone Marketing:</b> If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West  34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n            <ul>\n                <li>\"NO MAIL OFFERS\" (if you don\'t want to receive offers by mail);</li>\n                <li>\"NO PHONE OFFERS\" (if you don\'t want to receive offers by phone);</li>\n                <li>\"NO PHONE OR MAIL OFFERS\" (if you don\'t want to receive either).</li>\n            </ul>\n        </p>\n\n        <p>Because customer lists often are prepared well in advance of an offering  (sometimes a few months before the offer is made), you may continue to receive  some offers after you send us a request not to use your information for specified  marketing purposes. We appreciate your patience and understanding in giving us  time to carry out your request.</p>\n\n        <h2 id=\"privacy-policy-title-8\">Your California Privacy Rights</h2>\n        <p>Under California Civil Code sections 1798.83-1798.84, California residents are  entitled to ask us for a notice describing what categories of personal customer  information we share with third parties or corporate affiliates for those third  parties or corporate affiliates\' direct marketing purposes. That notice will identify  the categories of information shared and will include a list of the third parties and  affiliates with which it was shared, along with their names and addresses. If you  are a California resident and would like a copy of this notice, please submit a  written request to the following address: Luma Customer Care, 112 West 34th  Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.</p>\n\n        <h2 id=\"privacy-policy-title-9\">Cookies, Web Beacons, and How We Use Them</h2>\n        <p>A cookie is a small file which asks permission to be placed on your computer\'s hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.</p>\n\n        <p>We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.</p>\n\n        <p>Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.</p>\n\n        <p>A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.</p>\n\n        <p>We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.</p>\n\n        <p>We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.</p>\n\n        <h2 id=\"privacy-policy-title-10\">List of cookies we collect</h2>\n        <p>The table below lists the cookies we collect and the information they store.</p>\n        <table class=\"data-table\">\n            <thead>\n                <tr>\n                    <th>COOKIE name</th>\n                    <th>COOKIE Description</th>\n                </tr>\n            </thead>\n            <tbody>\n                <tr>\n                    <th>CART</th>\n                    <td>The association with your shopping cart.</td>\n                </tr>\n                <tr>\n                    <th>CATEGORY_INFO</th>\n                    <td>Allows pages to be displayed more quickly.</td>\n                </tr>\n                <tr>\n                    <th>COMPARE</th>\n                    <td>The items that you have in the Compare Products list.</td>\n                </tr>\n                <tr>\n                    <th>CUSTOMER</th>\n                    <td>An encrypted version of your customer id.</td>\n                </tr>\n                <tr>\n                    <th>CUSTOMER_AUTH</th>\n                    <td>An indicator if you are signed into the store.</td>\n                </tr>\n                <tr>\n                    <th>CUSTOMER_INFO</th>\n                    <td>An encrypted version of the customer group you belong to.</td>\n                </tr>\n                <tr>\n                    <th>CUSTOMER_SEGMENT_IDS</th>\n                    <td>Stores your Customer Segment ID</td>\n                </tr>\n                <tr>\n                    <th>EXTERNAL_NO_CACHE</th>\n                    <td>A flag that, indicates whether caching is on or off.</td>\n                </tr>\n                <tr>\n                    <th>FRONTEND</th>\n                    <td>Your session ID on the server.</td>\n                </tr>\n                <tr>\n                    <th>GUEST-VIEW</th>\n                    <td>Allows guests to edit their orders.</td>\n                </tr>\n                <tr>\n                    <th>LAST_CATEGORY</th>\n                    <td>The last category you visited.</td>\n                </tr>\n                <tr>\n                    <th>LAST_PRODUCT</th>\n                    <td>The last product you looked at.</td>\n                </tr>\n                <tr>\n                    <th>NEWMESSAGE</th>\n                    <td>Indicates whether a new message has been received.</td>\n                </tr>\n                <tr>\n                    <th>NO_CACHE</th>\n                    <td>Indicates whether it is allowed to use cache.</td>\n                </tr>\n                <tr>\n                    <th>PERSISTENT_SHOPPING_CART</th>\n                    <td>A link to information about your cart and viewing history if you have asked the site.</td>\n                </tr>\n                <tr>\n                    <th>RECENTLYCOMPARED</th>\n                    <td>The items you recently compared.</td>\n                </tr>\n                <tr>\n                    <th>STF</th>\n                    <td>Information on products you emailed to friends.</td>\n                </tr>\n                <tr>\n                    <th>STORE</th>\n                    <td>The store view or language you have selected.</td>\n                </tr>\n                <tr>\n                    <th>USER_ALLOWED_SAVE_COOKIE</th>\n                    <td>Indicates whether a customer authorized cookies.</td>\n                </tr>\n                <tr>\n                    <th>VIEWED_PRODUCT_IDS</th>\n                    <td>The products that you recently looked at.</td>\n                </tr>\n                <tr>\n                    <th>WISHLIST</th>\n                    <td>An encrypted list of products added to your wish list.</td>\n                </tr>\n                <tr>\n                    <th>WISHLIST_CNT</th>\n                    <td>The number of items in your wish list.</td>\n                </tr>\n            </tbody>\n        </table>\n\n        <h2 id=\"privacy-policy-title-11\">Online Account Registration</h2>\n        <p>To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.</p>\n\n        <h2 id=\"privacy-policy-title-12\">Emails</h2>\n        <p>You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.</p>\n\n        <h2 id=\"privacy-policy-title-13\">Acceptance</h2>\n        <p>By using this website, you accept the policies set forth in this Privacy Policy.</p>\n\n        <h2 id=\"privacy-policy-title-14\">Questions for Luma?</h2>\n        <p><a href=\"{{store url=\"contact\"}}\">Contact Us</a></p>\n    </div>\n    <div class=\"block block-collapsible-nav\">\n        <div class=\"title block-collapsible-nav-title\" data-mage-init=\"{&quot;toggleAdvanced&quot;: {&quot;toggleContainers&quot;: &quot;#privacy-policy-nav-content&quot;, &quot;selectorsToggleClass&quot;: &quot;active&quot;}}\">Privacy Menu</div>\n        <div class=\"block-collapsible-content content\" id=\"privacy-policy-nav-content\">\n            <ul class=\"items\">\n                <li class=\"item current\"><a href=\"#privacy-policy-title-1\">Luma Security</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-2\">Luma Privacy Policy</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-3\">The Information We Collect</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-4\">How We Use The Information We Collect</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-5\">Security</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-6\">Others With Whom We Share Your Information.</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-7\">Your Choices Regarding Use Of The Information We Collect</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-8\">Your California Privacy Rights</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-9\">Cookies, Web Beacons, and How We Use Them</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-10\">List of cookies we collect</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-11\">Online Account Registration</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-12\">Emails</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-13\">Acceptance</a></li>\n                <li class=\"item\"><a href=\"#privacy-policy-title-14\">Questions for Luma?</a></li>\n            </ul>\n        </div>\n    </div>\n</div>\n','[[regtime]]','[[regtime]]',1,0,'','','',NULL,NULL,NULL,NULL,NULL),(5,'About us','1column','','','about-us','About us','<div class=\"about-info cms-content\">\n      <p class=\"cms-content-important\">With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.</p>\n\n      <p>At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.</p>\n\n      <p>We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.</p>\n\n      <ul style=\"list-style: none; margin-top: 20px; padding: 0;\">\n          <li><a href=\"{{store url=\"contact\"}}\">Contact Luma</a></li>\n          <li><a href=\"{{store url=\"customer-service\"}}\">Customer Service</a></li>\n          <li><a href=\"{{store url=\"privacy-policy\"}}\">Luma Privacy Policy</a></li>\n          <li><a href=\"{{store url=\"\"}}\">Shop Luma</a></li>\n      </ul>\n  </div>\n','[[regtime]]','[[regtime]]',1,0,'','','',NULL,NULL,NULL,NULL,NULL),(6,'Customer Service','1column','','','customer-service','Customer Service','<div class=\"customer-service cms-content\">\n  <div class=\"cms-content-important\">\n      <h2>Luma Delivery and Returns</h2>\n      <p>We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. <a href=\"{{store url=\"contact\"}}\">Contact Us.</a></p>\n  </div>\n\n  <h2>Shipping and Delivery</h2>\n  <p>Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.</p>\n\n  <p>Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.</p>\n\n  <p>Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).</p>\n\n  <div class=\"table-wrapper\">\n      <table>\n          <caption>Shipping and Delivery</caption>\n          <thead>\n              <tr>\n                  <th><strong>Merchandise total *</strong></th>\n                  <th><strong>STANDARD</strong><br />5&mdash;7 day shipping **</th>\n                  <th><strong>PRIORITY</strong><br />2&mdash;3 day shipping **</th>\n                  <th><strong>OVERNIGHT</strong><br />Next business day **</th>\n              </tr>\n          </thead>\n          <tbody>\n              <tr>\n                  <th>Up to $200</th>\n                  <td>$16</td>\n                  <td>$26</td>\n                  <td>$33</td>\n              </tr>\n              <tr>\n                  <th>$200.01&mdash;500.00</th>\n                  <td>$21</td>\n                  <td>$31</td>\n                  <td>$38</td>\n              </tr>\n              <tr>\n                  <th>$500.01&mdash;1000.00</th>\n                  <td>$29</td>\n                  <td>$39</td>\n                  <td>$46</td>\n              </tr>\n              <tr>\n                  <th>Over $1000.00</th>\n                  <td>$34</td>\n                  <td>$44</td>\n                  <td>$51</td>\n              </tr>\n          </tbody>\n      </table>\n  </div>\n\n  <p>\n      <small>*before tax and additional charges</small><br />\n      <small>**after processing if ordered by 12:00 noon PST</small>\n  </p>\n\n  <h2 style=\"margin-top: 40px;\">Returns and Replacements</h2>\n  <p>We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.</p>\n\n  <h3>Returning Gifts</h3>\n  <p>When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.</p>\n\n  <h3>Returning Merchandise by Mail</h3>\n  <p>On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to  exchange the item(s) or receive a credit/refund (depending on the original form of  payment).</p>\n  <p>Enclose the return section of the packing slip with your item(s). Please use one  of the return labels provided on the front of your packing slip to ensure proper  return address and credit information. Restricted items must be returned using  ground transportation.</p>\n  <p>Please allow 10 to 14 days for Luma to process your return.</p>\n</div>\n','[[regtime]]','[[regtime]]',1,0,'','','',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]cms_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cms_page_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]cms_page_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cms_page_store` (
  `page_id` smallint NOT NULL COMMENT 'Entity ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`page_id`,`store_id`),
  KEY `[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CMS_PAGE_STORE_PAGE_ID_[[DBPREFIX]]CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]cms_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CMS Page To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cms_page_store`
--

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

--
-- Table structure for table `[[dbprefix]]core_config_data`
--

DROP TABLE IF EXISTS `[[dbprefix]]core_config_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]core_config_data` (
  `config_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config ID',
  `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  `scope_id` int NOT NULL DEFAULT '0' COMMENT 'Config Scope ID',
  `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  `value` text COMMENT 'Config Value',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`config_id`),
  UNIQUE KEY `[[DBPREFIX]]CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb3 COMMENT='Config Data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]core_config_data`
--

LOCK TABLES `[[dbprefix]]core_config_data` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]core_config_data` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1','[[regtime]]'),(2,'default',0,'web/unsecure/base_url','[[https_protocol]]://[[domhost]]/','[[regtime]]'),(3,'default',0,'general/locale/code','en_US','[[regtime]]'),(4,'default',0,'web/secure/use_in_frontend','[[https_enable]]','[[regtime]]'),(5,'default',0,'web/secure/use_in_adminhtml','[[https_enable]]','[[regtime]]'),(6,'default',0,'general/locale/timezone','America/New_York','[[regtime]]'),(7,'default',0,'currency/options/base','USD','[[regtime]]'),(8,'default',0,'currency/options/default','USD','[[regtime]]'),(9,'default',0,'currency/options/allow','USD','[[regtime]]'),(10,'default',0,'general/region/display_all','1','[[regtime]]'),(11,'default',0,'general/region/state_required','AL,AR,AU,BG,BO,BR,BY,CA,CH,CL,CN,CO,CR,CZ,DK,EC,EE,ES,GR,GY,HR,IN,IS,IT,LT,LV,MX,PE,PL,PT,PY,RO,SE,SR,UA,US,UY,VE','[[regtime]]'),(12,'default',0,'catalog/category/root_id','2','[[regtime]]'),(13,'default',0,'twofactorauth/duo/application_key','[[duo_security_key]]','[[regtime]]'),(14,'default',0,'analytics/subscription/enabled','1','[[regtime]]'),(15,'default',0,'crontab/default/jobs/analytics_subscribe/schedule/cron_expr','0 * * * *','[[regtime]]'),(16,'default',0,'crontab/default/jobs/analytics_collect_data/schedule/cron_expr','00 02 * * *','[[regtime]]'),(17,'default',0,'design/theme/theme_id','3','[[regtime]]'),(18,'default',0,'design/head/includes','<link  rel=\"stylesheet\" type=\"text/css\"  media=\"all\" href=\"{{MEDIA_URL}}styles.css\" />','[[regtime]]'),(19,'default',0,'msp_securitysuite_recaptcha/frontend/enabled','0','[[regtime]]'),(20,'default',0,'msp_securitysuite_recaptcha/backend/enabled','0','[[regtime]]'),(21,'default',0,'carriers/tablerate/active','1','[[regtime]]'),(22,'default',0,'carriers/tablerate/condition_name','package_value_with_discount','[[regtime]]'),(23,'default',0,'sales/msrp/enabled','1','[[regtime]]'),(24,'default',0,'twofactorauth/general/force_providers','google','[[regtime]]'),(25,'default',0,'admin/usage/enabled','0','[[regtime]]'),(26,'default',0,'trans_email/ident_general/name','Owner','[[regtime]]'),(27,'default',0,'trans_email/ident_general/email','[[owner_email]]','[[regtime]]'),(28,'default',0,'trans_email/ident_sales/name','Sales','[[regtime]]'),(29,'default',0,'trans_email/ident_sales/email','[[sales_email]]','[[regtime]]'),(30,'default',0,'trans_email/ident_support/name','CustomerSupport','[[regtime]]'),(31,'default',0,'trans_email/ident_support/email','[[support_email]]','[[regtime]]'),(32,'default',0,'trans_email/ident_custom1/name','Custom 1','[[regtime]]'),(33,'default',0,'trans_email/ident_custom1/email','[[owner_email]]','[[regtime]]'),(34,'default',0,'trans_email/ident_custom2/name','Custom 2','[[regtime]]'),(35,'default',0,'trans_email/ident_custom2/email','[[owner_email]]','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]core_config_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cron_schedule`
--

DROP TABLE IF EXISTS `[[dbprefix]]cron_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cron_schedule` (
  `schedule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Schedule ID',
  `job_code` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Job Code',
  `status` varchar(7) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  `messages` text COMMENT 'Messages',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Scheduled At',
  `executed_at` timestamp NULL DEFAULT NULL COMMENT 'Executed At',
  `finished_at` timestamp NULL DEFAULT NULL COMMENT 'Finished At',
  PRIMARY KEY (`schedule_id`),
  KEY `[[DBPREFIX]]CRON_SCHEDULE_JOB_CODE_STATUS_SCHEDULED_AT` (`job_code`,`status`,`scheduled_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cron Schedule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cron_schedule`
--

LOCK TABLES `[[dbprefix]]cron_schedule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cron_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cron_schedule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `country_id` varchar(255) NOT NULL COMMENT 'Country',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `firstname` varchar(255) NOT NULL COMMENT 'First Name',
  `lastname` varchar(255) NOT NULL COMMENT 'Last Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Zip/Postal Code',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `region` varchar(255) DEFAULT NULL COMMENT 'State/Province',
  `region_id` int unsigned DEFAULT NULL COMMENT 'State/Province',
  `street` text NOT NULL COMMENT 'Street Address',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `telephone` varchar(255) NOT NULL COMMENT 'Phone Number',
  `vat_id` varchar(255) DEFAULT NULL COMMENT 'VAT number',
  `vat_is_valid` int unsigned DEFAULT NULL COMMENT 'VAT number validity',
  `vat_request_date` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request date',
  `vat_request_id` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request ID',
  `vat_request_success` int unsigned DEFAULT NULL COMMENT 'VAT number validation request success',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_PARENT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity`
--

LOCK TABLES `[[dbprefix]]customer_address_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_address_entity` VALUES (1,NULL,1,'[[regtime]]','[[regtime]]',1,'Calder',NULL,'US',NULL,'Veronica','Costello',NULL,'49628-7978',NULL,'Michigan',33,'6146 Honey Bluff Parkway',NULL,'(555) 229-3326',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CSTR_ADDR_ENTT_DTIME_ENTT_ID_ATTR_ID_VAL` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity_datetime`
--

LOCK TABLES `[[dbprefix]]customer_address_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CSTR_ADDR_ENTT_DEC_ENTT_ID_ATTR_ID_VAL` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity_decimal`
--

LOCK TABLES `[[dbprefix]]customer_address_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_INT_ENTT_ID_[[DBPREFIX]]CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity_int`
--

LOCK TABLES `[[dbprefix]]customer_address_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_TEXT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_TEXT_ENTT_ID_[[DBPREFIX]]CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity_text`
--

LOCK TABLES `[[dbprefix]]customer_address_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_address_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_address_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_address_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CSTR_ADDR_ENTT_VCHR_ENTT_ID_ATTR_ID_VAL` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_VCHR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ADDR_ENTT_VCHR_ENTT_ID_[[DBPREFIX]]CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_address_entity_varchar`
--

LOCK TABLES `[[dbprefix]]customer_address_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_address_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_dummy_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_dummy_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_dummy_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]customer_dummy_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_dummy_cl`
--

LOCK TABLES `[[dbprefix]]customer_dummy_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_dummy_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_dummy_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_eav_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_eav_attribute` (
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `is_visible` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible',
  `input_filter` varchar(255) DEFAULT NULL COMMENT 'Input Filter',
  `multiline_count` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Multiline Count',
  `validate_rules` text COMMENT 'Validate Rules',
  `is_system` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is System',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `data_model` varchar(255) DEFAULT NULL COMMENT 'Data Model',
  `is_used_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid',
  `is_searchable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable in Grid',
  `grid_filter_condition_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Grid Filter Condition Type',
  PRIMARY KEY (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_EAV_ATTRIBUTE_SORT_ORDER` (`sort_order`),
  CONSTRAINT `[[DBPREFIX]]CSTR_EAV_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_eav_attribute`
--

LOCK TABLES `[[dbprefix]]customer_eav_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_eav_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL,1,1,1,0,0),(2,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(3,1,NULL,0,NULL,1,20,NULL,1,1,0,1,0),(4,0,NULL,0,NULL,0,30,NULL,0,0,0,0,0),(5,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,0,0,0,0,0),(6,0,'trim',0,NULL,0,50,NULL,0,0,0,0,0),(7,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,0,0,0,0,0),(8,0,NULL,0,NULL,0,70,NULL,0,0,0,0,0),(9,1,NULL,0,'{\"input_validation\":\"email\"}',1,80,NULL,1,1,1,1,0),(10,1,NULL,0,NULL,1,25,NULL,1,1,1,0,0),(11,0,'date',0,'{\"input_validation\":\"date\"}',0,90,NULL,1,1,1,0,0),(12,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(13,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(14,0,NULL,0,'{\"input_validation\":\"date\"}',1,0,NULL,0,0,0,0,0),(15,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(16,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(17,0,NULL,0,'{\"max_text_length\":255}',0,100,NULL,1,1,0,1,0),(18,0,NULL,0,NULL,1,0,NULL,1,1,1,0,0),(19,0,NULL,0,NULL,0,0,NULL,1,1,1,0,0),(20,0,NULL,0,'[]',0,110,NULL,1,1,1,0,0),(21,1,NULL,0,NULL,1,28,NULL,0,0,0,0,0),(22,0,NULL,0,NULL,0,10,NULL,0,0,0,0,0),(23,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,20,NULL,1,0,0,1,0),(24,0,'trim',0,NULL,0,30,NULL,0,0,0,0,0),(25,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,1,0,0,1,0),(26,0,NULL,0,NULL,0,50,NULL,0,0,0,0,0),(27,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,1,0,0,1,0),(28,1,NULL,2,'{\"max_text_length\":255,\"min_text_length\":1}',1,70,NULL,1,0,0,1,0),(29,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,100,NULL,1,0,0,1,0),(30,1,NULL,0,NULL,1,80,NULL,1,1,1,0,0),(31,1,NULL,0,NULL,1,90,NULL,1,1,0,1,0),(32,1,NULL,0,NULL,1,90,NULL,0,0,0,0,0),(33,1,NULL,0,'[]',1,110,'Magento\\Customer\\Model\\Attribute\\Data\\Postcode',1,1,1,1,0),(34,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,120,NULL,1,1,1,1,0),(35,0,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',0,130,NULL,1,0,0,1,0),(36,1,NULL,0,NULL,1,140,NULL,0,0,0,0,0),(37,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(38,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(39,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(40,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(41,0,NULL,0,NULL,0,0,NULL,0,0,0,0,0),(42,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(43,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(44,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0);
/*!40000 ALTER TABLE `[[dbprefix]]customer_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_eav_attribute_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_eav_attribute_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_eav_attribute_website` (
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `is_visible` smallint unsigned DEFAULT NULL COMMENT 'Is Visible',
  `is_required` smallint unsigned DEFAULT NULL COMMENT 'Is Required',
  `default_value` text COMMENT 'Default Value',
  `multiline_count` smallint unsigned DEFAULT NULL COMMENT 'Multiline Count',
  PRIMARY KEY (`attribute_id`,`website_id`),
  KEY `[[DBPREFIX]]CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]CSTR_EAV_ATTR_WS_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_EAV_ATTR_WS_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Eav Attribute Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_eav_attribute_website`
--

LOCK TABLES `[[dbprefix]]customer_eav_attribute_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_eav_attribute_website` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_eav_attribute_website` VALUES (1,1,NULL,NULL,NULL,NULL),(3,1,NULL,NULL,NULL,NULL),(5,1,NULL,NULL,NULL,NULL),(6,1,NULL,NULL,NULL,NULL),(7,1,NULL,NULL,NULL,NULL),(9,1,NULL,NULL,NULL,NULL),(10,1,NULL,NULL,NULL,NULL),(11,1,NULL,NULL,NULL,NULL),(17,1,NULL,NULL,NULL,NULL),(18,1,NULL,NULL,NULL,NULL),(19,1,NULL,NULL,NULL,NULL),(20,1,NULL,NULL,NULL,NULL),(21,1,NULL,NULL,NULL,NULL),(23,1,NULL,NULL,NULL,NULL),(24,1,NULL,NULL,NULL,NULL),(25,1,NULL,NULL,NULL,NULL),(27,1,NULL,NULL,NULL,NULL),(28,1,NULL,NULL,NULL,NULL),(29,1,NULL,NULL,NULL,NULL),(30,1,NULL,NULL,NULL,NULL),(31,1,NULL,NULL,NULL,NULL),(32,1,NULL,NULL,NULL,NULL),(33,1,NULL,NULL,NULL,NULL),(34,1,NULL,NULL,NULL,NULL),(35,1,NULL,NULL,NULL,NULL),(36,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]customer_eav_attribute_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `website_id` smallint unsigned DEFAULT NULL COMMENT 'Website ID',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Group ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active',
  `disable_auto_group_change` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Disable automatic group change based on VAT ID',
  `created_in` varchar(255) DEFAULT NULL COMMENT 'Created From',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'First Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name/Initial',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Last Name',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `dob` date DEFAULT NULL COMMENT 'Date of Birth',
  `password_hash` varchar(128) DEFAULT NULL COMMENT 'Password_hash',
  `rp_token` varchar(128) DEFAULT NULL COMMENT 'Reset password token',
  `rp_token_created_at` datetime DEFAULT NULL COMMENT 'Reset password token creation time',
  `default_billing` int unsigned DEFAULT NULL COMMENT 'Default Billing Address',
  `default_shipping` int unsigned DEFAULT NULL COMMENT 'Default Shipping Address',
  `taxvat` varchar(50) DEFAULT NULL COMMENT 'Tax/VAT Number',
  `confirmation` varchar(64) DEFAULT NULL COMMENT 'Is Confirmed',
  `gender` smallint unsigned DEFAULT NULL COMMENT 'Gender',
  `failures_num` smallint DEFAULT '0' COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock Expiration Date',
  `session_cutoff` timestamp NULL DEFAULT NULL COMMENT 'Session Cutoff Time',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_FIRSTNAME` (`firstname`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_LASTNAME` (`lastname`),
  CONSTRAINT `[[DBPREFIX]]CUSTOMER_ENTITY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]CUSTOMER_ENTITY_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity`
--

LOCK TABLES `[[dbprefix]]customer_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_entity` VALUES (1,1,'roni_cost@example.com',1,NULL,1,'[[regtime]]','[[regtime]]',1,0,'Default Store View',NULL,'Veronica',NULL,'Costello',NULL,'1973-12-15','9d00f6ed78d680228a72a72030fe7e6fb9dc691f9a78a364ffb847464363d01e:HPKqySvDp1l8qKSorfDtuCVkzvlNNdqQ:3_32_2_67108864','0:3:4ukfbfh8OYvPnQXuUzvOvzsra8Muo34Tc97kCDHiYmWp4INkNk99XO7J6MMiUo1rrA0POx9vWxr8w2Jd','[[regtime]]',1,1,NULL,NULL,2,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity_datetime`
--

LOCK TABLES `[[dbprefix]]customer_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity_decimal`
--

LOCK TABLES `[[dbprefix]]customer_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_INT_ENTT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity_int`
--

LOCK TABLES `[[dbprefix]]customer_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_TEXT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_TEXT_ENTT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity_text`
--

LOCK TABLES `[[dbprefix]]customer_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_VCHR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CSTR_ENTT_VCHR_ENTT_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_entity_varchar`
--

LOCK TABLES `[[dbprefix]]customer_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_form_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_form_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_form_attribute` (
  `form_code` varchar(32) NOT NULL COMMENT 'Form Code',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`form_code`,`attribute_id`),
  KEY `[[DBPREFIX]]CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CSTR_FORM_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Form Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_form_attribute`
--

LOCK TABLES `[[dbprefix]]customer_form_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_form_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_form_attribute` VALUES ('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('customer_account_create',4),('customer_account_edit',4),('adminhtml_customer',5),('customer_account_create',5),('customer_account_edit',5),('adminhtml_customer',6),('customer_account_create',6),('customer_account_edit',6),('adminhtml_customer',7),('customer_account_create',7),('customer_account_edit',7),('adminhtml_customer',8),('customer_account_create',8),('customer_account_edit',8),('adminhtml_checkout',9),('adminhtml_customer',9),('customer_account_create',9),('customer_account_edit',9),('adminhtml_checkout',10),('adminhtml_customer',10),('adminhtml_checkout',11),('adminhtml_customer',11),('customer_account_create',11),('customer_account_edit',11),('adminhtml_checkout',17),('adminhtml_customer',17),('customer_account_create',17),('customer_account_edit',17),('adminhtml_customer',19),('customer_account_create',19),('customer_account_edit',19),('adminhtml_checkout',20),('adminhtml_customer',20),('customer_account_create',20),('customer_account_edit',20),('adminhtml_customer',21),('adminhtml_customer_address',22),('customer_address_edit',22),('customer_register_address',22),('adminhtml_customer_address',23),('customer_address_edit',23),('customer_register_address',23),('adminhtml_customer_address',24),('customer_address_edit',24),('customer_register_address',24),('adminhtml_customer_address',25),('customer_address_edit',25),('customer_register_address',25),('adminhtml_customer_address',26),('customer_address_edit',26),('customer_register_address',26),('adminhtml_customer_address',27),('customer_address_edit',27),('customer_register_address',27),('adminhtml_customer_address',28),('customer_address_edit',28),('customer_register_address',28),('adminhtml_customer_address',29),('customer_address_edit',29),('customer_register_address',29),('adminhtml_customer_address',30),('customer_address_edit',30),('customer_register_address',30),('adminhtml_customer_address',31),('customer_address_edit',31),('customer_register_address',31),('adminhtml_customer_address',32),('customer_address_edit',32),('customer_register_address',32),('adminhtml_customer_address',33),('customer_address_edit',33),('customer_register_address',33),('adminhtml_customer_address',34),('customer_address_edit',34),('customer_register_address',34),('adminhtml_customer_address',35),('customer_address_edit',35),('customer_register_address',35),('adminhtml_customer_address',36),('customer_address_edit',36),('customer_register_address',36);
/*!40000 ALTER TABLE `[[dbprefix]]customer_form_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_grid_flat`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_grid_flat` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `name` text COMMENT 'Name',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` int DEFAULT NULL COMMENT 'Group_id',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `website_id` int DEFAULT NULL COMMENT 'Website_id',
  `confirmation` varchar(255) DEFAULT NULL COMMENT 'Confirmation',
  `created_in` text COMMENT 'Created_in',
  `dob` date DEFAULT NULL COMMENT 'Dob',
  `gender` int DEFAULT NULL COMMENT 'Gender',
  `taxvat` varchar(255) DEFAULT NULL COMMENT 'Taxvat',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock_expires',
  `shipping_full` text COMMENT 'Shipping_full',
  `billing_full` text COMMENT 'Billing_full',
  `billing_firstname` varchar(255) DEFAULT NULL COMMENT 'Billing_firstname',
  `billing_lastname` varchar(255) DEFAULT NULL COMMENT 'Billing_lastname',
  `billing_telephone` varchar(255) DEFAULT NULL COMMENT 'Billing_telephone',
  `billing_postcode` varchar(255) DEFAULT NULL COMMENT 'Billing_postcode',
  `billing_country_id` varchar(255) DEFAULT NULL COMMENT 'Billing_country_id',
  `billing_region` varchar(255) DEFAULT NULL COMMENT 'Billing_region',
  `billing_region_id` int DEFAULT NULL COMMENT 'Billing_region_id',
  `billing_street` varchar(255) DEFAULT NULL COMMENT 'Billing_street',
  `billing_city` varchar(255) DEFAULT NULL COMMENT 'Billing_city',
  `billing_fax` varchar(255) DEFAULT NULL COMMENT 'Billing_fax',
  `billing_vat_id` varchar(255) DEFAULT NULL COMMENT 'Billing_vat_id',
  `billing_company` varchar(255) DEFAULT NULL COMMENT 'Billing_company',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_DOB` (`dob`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_GENDER` (`gender`),
  KEY `[[DBPREFIX]]CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`),
  FULLTEXT KEY `FTI_38B1555C2C11EB50FB2A7E2896B09176` (`name`,`email`,`created_in`,`taxvat`,`shipping_full`,`billing_full`,`billing_firstname`,`billing_lastname`,`billing_telephone`,`billing_postcode`,`billing_region`,`billing_city`,`billing_fax`,`billing_company`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]customer_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_grid_flat`
--

LOCK TABLES `[[dbprefix]]customer_grid_flat` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_grid_flat` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_grid_flat` VALUES (1,'Veronica Costello','roni_cost@example.com',1,'[[regtime]]',1,NULL,'Default Store View','1973-12-15',2,NULL,NULL,'6146 Honey Bluff Parkway Calder Michigan 49628-7978','6146 Honey Bluff Parkway Calder Michigan 49628-7978','Veronica','Costello','(555) 229-3326','49628-7978','US','Michigan',33,'6146 Honey Bluff Parkway','Calder',NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]customer_grid_flat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_group`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_group` (
  `customer_group_id` int unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code',
  `tax_class_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Tax Class ID',
  PRIMARY KEY (`customer_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_group`
--

LOCK TABLES `[[dbprefix]]customer_group` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_group` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3);
/*!40000 ALTER TABLE `[[dbprefix]]customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_group_excluded_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_group_excluded_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_group_excluded_website` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Excluded Website ID from Customer Group',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CSTR_GROUP_EXCLUDED_WS_CSTR_GROUP_ID_WS_ID` (`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Excluded Websites From Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_group_excluded_website`
--

LOCK TABLES `[[dbprefix]]customer_group_excluded_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_group_excluded_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_group_excluded_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_log` (
  `log_id` int NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `customer_id` int NOT NULL COMMENT 'Customer ID',
  `last_login_at` timestamp NULL DEFAULT NULL COMMENT 'Last Login Time',
  `last_logout_at` timestamp NULL DEFAULT NULL COMMENT 'Last Logout Time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `[[DBPREFIX]]CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_log`
--

LOCK TABLES `[[dbprefix]]customer_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]customer_visitor`
--

DROP TABLE IF EXISTS `[[dbprefix]]customer_visitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]customer_visitor` (
  `visitor_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID',
  `customer_id` int DEFAULT NULL COMMENT 'Customer ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `last_visit_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Visit Time',
  PRIMARY KEY (`visitor_id`),
  KEY `[[DBPREFIX]]CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Visitor Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]customer_visitor`
--

LOCK TABLES `[[dbprefix]]customer_visitor` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]customer_visitor` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]customer_visitor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]data_exporter_uuid`
--

DROP TABLE IF EXISTS `[[dbprefix]]data_exporter_uuid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]data_exporter_uuid` (
  `uuid` varchar(36) NOT NULL COMMENT 'Entity UUID',
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `type` varchar(36) NOT NULL COMMENT 'Entity type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`uuid`),
  UNIQUE KEY `[[DBPREFIX]]DATA_EXPORTER_UUID_ENTITY_ID_TYPE` (`entity_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Data Export Items UUID References Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]data_exporter_uuid`
--

LOCK TABLES `[[dbprefix]]data_exporter_uuid` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]data_exporter_uuid` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]data_exporter_uuid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]design_change`
--

DROP TABLE IF EXISTS `[[dbprefix]]design_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]design_change` (
  `design_change_id` int NOT NULL AUTO_INCREMENT COMMENT 'Design Change ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `design` varchar(255) DEFAULT NULL COMMENT 'Design',
  `date_from` date DEFAULT NULL COMMENT 'First Date of Design Activity',
  `date_to` date DEFAULT NULL COMMENT 'Last Date of Design Activity',
  PRIMARY KEY (`design_change_id`),
  KEY `[[DBPREFIX]]DESIGN_CHANGE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]DESIGN_CHANGE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Design Changes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]design_change`
--

LOCK TABLES `[[dbprefix]]design_change` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]design_change` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]design_change` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]design_config_dummy_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]design_config_dummy_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]design_config_dummy_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]design_config_dummy_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]design_config_dummy_cl`
--

LOCK TABLES `[[dbprefix]]design_config_dummy_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]design_config_dummy_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]design_config_dummy_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]design_config_grid_flat`
--

DROP TABLE IF EXISTS `[[dbprefix]]design_config_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]design_config_grid_flat` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `store_website_id` int DEFAULT NULL COMMENT 'Store_website_id',
  `store_group_id` int DEFAULT NULL COMMENT 'Store_group_id',
  `store_id` int DEFAULT NULL COMMENT 'Store_id',
  `theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`),
  KEY `[[DBPREFIX]]DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`),
  KEY `[[DBPREFIX]]DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`),
  FULLTEXT KEY `[[DBPREFIX]]DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]design_config_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]design_config_grid_flat`
--

LOCK TABLES `[[dbprefix]]design_config_grid_flat` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]design_config_grid_flat` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]design_config_grid_flat` VALUES (0,NULL,NULL,NULL,'3'),(1,1,NULL,NULL,'3'),(2,1,1,1,'3');
/*!40000 ALTER TABLE `[[dbprefix]]design_config_grid_flat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]directory_country`
--

DROP TABLE IF EXISTS `[[dbprefix]]directory_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]directory_country` (
  `country_id` varchar(2) NOT NULL COMMENT 'Country ID in ISO-2',
  `iso2_code` varchar(2) DEFAULT NULL COMMENT 'Country ISO-2 format',
  `iso3_code` varchar(3) DEFAULT NULL COMMENT 'Country ISO-3',
  PRIMARY KEY (`country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]directory_country`
--

LOCK TABLES `[[dbprefix]]directory_country` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]directory_country` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BQ','BQ','BES'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CW','CW','CUW'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SX','SX','SXM'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('XK','XK','XKX'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE');
/*!40000 ALTER TABLE `[[dbprefix]]directory_country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]directory_country_format`
--

DROP TABLE IF EXISTS `[[dbprefix]]directory_country_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]directory_country_format` (
  `country_format_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Country Format ID',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID in ISO-2',
  `type` varchar(30) DEFAULT NULL COMMENT 'Country Format Type',
  `format` text NOT NULL COMMENT 'Country Format',
  PRIMARY KEY (`country_format_id`),
  UNIQUE KEY `[[DBPREFIX]]DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Format';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]directory_country_format`
--

LOCK TABLES `[[dbprefix]]directory_country_format` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_format` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]directory_country_region`
--

DROP TABLE IF EXISTS `[[dbprefix]]directory_country_region`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]directory_country_region` (
  `region_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Region ID',
  `country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Country ID in ISO-2',
  `code` varchar(32) DEFAULT NULL COMMENT 'Region code',
  `default_name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`region_id`),
  KEY `[[DBPREFIX]]DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1157 DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Region';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]directory_country_region`
--

LOCK TABLES `[[dbprefix]]directory_country_region` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_region` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AE','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AE','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AE','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Vorarlberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Friburg'),(111,'CH','GE','Geneva'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Lucerne'),(116,'CH','NE','Neuchâtel'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Ticino'),(125,'CH','UR','Uri'),(126,'CH','VD','Vaud'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'),(485,'BR','AC','Acre'),(486,'BR','AL','Alagoas'),(487,'BR','AP','Amapá'),(488,'BR','AM','Amazonas'),(489,'BR','BA','Bahia'),(490,'BR','CE','Ceará'),(491,'BR','ES','Espírito Santo'),(492,'BR','GO','Goiás'),(493,'BR','MA','Maranhão'),(494,'BR','MT','Mato Grosso'),(495,'BR','MS','Mato Grosso do Sul'),(496,'BR','MG','Minas Gerais'),(497,'BR','PA','Pará'),(498,'BR','PB','Paraíba'),(499,'BR','PR','Paraná'),(500,'BR','PE','Pernambuco'),(501,'BR','PI','Piauí'),(502,'BR','RJ','Rio de Janeiro'),(503,'BR','RN','Rio Grande do Norte'),(504,'BR','RS','Rio Grande do Sul'),(505,'BR','RO','Rondônia'),(506,'BR','RR','Roraima'),(507,'BR','SC','Santa Catarina'),(508,'BR','SP','São Paulo'),(509,'BR','SE','Sergipe'),(510,'BR','TO','Tocantins'),(511,'BR','DF','Distrito Federal'),(512,'AL','AL-01','Berat'),(513,'AL','AL-09','Dibër'),(514,'AL','AL-02','Durrës'),(515,'AL','AL-03','Elbasan'),(516,'AL','AL-04','Fier'),(517,'AL','AL-05','Gjirokastër'),(518,'AL','AL-06','Korçë'),(519,'AL','AL-07','Kukës'),(520,'AL','AL-08','Lezhë'),(521,'AL','AL-10','Shkodër'),(522,'AL','AL-11','Tiranë'),(523,'AL','AL-12','Vlorë'),(524,'AR','AR-C','Ciudad Autónoma de Buenos Aires'),(525,'AR','AR-B','Buenos Aires'),(526,'AR','AR-K','Catamarca'),(527,'AR','AR-H','Chaco'),(528,'AR','AR-U','Chubut'),(529,'AR','AR-X','Córdoba'),(530,'AR','AR-W','Corrientes'),(531,'AR','AR-E','Entre Ríos'),(532,'AR','AR-P','Formosa'),(533,'AR','AR-Y','Jujuy'),(534,'AR','AR-L','La Pampa'),(535,'AR','AR-F','La Rioja'),(536,'AR','AR-M','Mendoza'),(537,'AR','AR-N','Misiones'),(538,'AR','AR-Q','Neuquén'),(539,'AR','AR-R','Río Negro'),(540,'AR','AR-A','Salta'),(541,'AR','AR-J','San Juan'),(542,'AR','AR-D','San Luis'),(543,'AR','AR-Z','Santa Cruz'),(544,'AR','AR-S','Santa Fe'),(545,'AR','AR-G','Santiago del Estero'),(546,'AR','AR-V','Tierra del Fuego'),(547,'AR','AR-T','Tucumán'),(548,'HR','HR-01','Zagrebačka županija'),(549,'HR','HR-02','Krapinsko-zagorska županija'),(550,'HR','HR-03','Sisačko-moslavačka županija'),(551,'HR','HR-04','Karlovačka županija'),(552,'HR','HR-05','Varaždinska županija'),(553,'HR','HR-06','Koprivničko-križevačka županija'),(554,'HR','HR-07','Bjelovarsko-bilogorska županija'),(555,'HR','HR-08','Primorsko-goranska županija'),(556,'HR','HR-09','Ličko-senjska županija'),(557,'HR','HR-10','Virovitičko-podravska županija'),(558,'HR','HR-11','Požeško-slavonska županija'),(559,'HR','HR-12','Brodsko-posavska županija'),(560,'HR','HR-13','Zadarska županija'),(561,'HR','HR-14','Osječko-baranjska županija'),(562,'HR','HR-15','Šibensko-kninska županija'),(563,'HR','HR-16','Vukovarsko-srijemska županija'),(564,'HR','HR-17','Splitsko-dalmatinska županija'),(565,'HR','HR-18','Istarska županija'),(566,'HR','HR-19','Dubrovačko-neretvanska županija'),(567,'HR','HR-20','Međimurska županija'),(568,'HR','HR-21','Grad Zagreb'),(569,'IN','AN','Andaman and Nicobar Islands'),(570,'IN','AP','Andhra Pradesh'),(571,'IN','AR','Arunachal Pradesh'),(572,'IN','AS','Assam'),(573,'IN','BR','Bihar'),(574,'IN','CH','Chandigarh'),(575,'IN','CT','Chhattisgarh'),(576,'IN','DN','Dadra and Nagar Haveli'),(577,'IN','DD','Daman and Diu'),(578,'IN','DL','Delhi'),(579,'IN','GA','Goa'),(580,'IN','GJ','Gujarat'),(581,'IN','HR','Haryana'),(582,'IN','HP','Himachal Pradesh'),(583,'IN','JK','Jammu and Kashmir'),(584,'IN','JH','Jharkhand'),(585,'IN','KA','Karnataka'),(586,'IN','KL','Kerala'),(587,'IN','LD','Lakshadweep'),(588,'IN','MP','Madhya Pradesh'),(589,'IN','MH','Maharashtra'),(590,'IN','MN','Manipur'),(591,'IN','ML','Meghalaya'),(592,'IN','MZ','Mizoram'),(593,'IN','NL','Nagaland'),(594,'IN','OR','Odisha'),(595,'IN','PY','Puducherry'),(596,'IN','PB','Punjab'),(597,'IN','RJ','Rajasthan'),(598,'IN','SK','Sikkim'),(599,'IN','TN','Tamil Nadu'),(600,'IN','TG','Telangana'),(601,'IN','TR','Tripura'),(602,'IN','UP','Uttar Pradesh'),(603,'IN','UT','Uttarakhand'),(604,'IN','WB','West Bengal'),(605,'AU','ACT','Australian Capital Territory'),(606,'AU','NSW','New South Wales'),(607,'AU','VIC','Victoria'),(608,'AU','QLD','Queensland'),(609,'AU','SA','South Australia'),(610,'AU','TAS','Tasmania'),(611,'AU','WA','Western Australia'),(612,'AU','NT','Northern Territory'),(613,'BY','BY-BR','Bresckaja voblasć'),(614,'BY','BY-HO','Homieĺskaja voblasć'),(615,'BY','BY-HM','Horad Minsk'),(616,'BY','BY-HR','Hrodzienskaja voblasć'),(617,'BY','BY-MA','Mahilioŭskaja voblasć'),(618,'BY','BY-MI','Minskaja voblasć'),(619,'BY','BY-VI','Viciebskaja voblasć'),(620,'BE','VAN','Antwerpen'),(621,'BE','WBR','Brabant wallon'),(622,'BE','BRU','Brussels-Capital Region'),(623,'BE','WHT','Hainaut'),(624,'BE','VLI','Limburg'),(625,'BE','WLG','Liège'),(626,'BE','WLX','Luxembourg'),(627,'BE','WNA','Namur'),(628,'BE','VOV','Oost-Vlaanderen'),(629,'BE','VBR','Vlaams-Brabant'),(630,'BE','VWV','West-Vlaanderen'),(631,'BO','BO-C','Cochabamba'),(632,'BO','BO-H','Chuquisaca'),(633,'BO','BO-B','El Beni'),(634,'BO','BO-L','La Paz'),(635,'BO','BO-O','Oruro'),(636,'BO','BO-N','Pando'),(637,'BO','BO-P','Potosí'),(638,'BO','BO-S','Santa Cruz'),(639,'BO','BO-T','Tarija'),(640,'BG','BG-01','Blagoevgrad'),(641,'BG','BG-02','Burgas'),(642,'BG','BG-03','Varna'),(643,'BG','BG-04','Veliko Tarnovo'),(644,'BG','BG-05','Vidin'),(645,'BG','BG-06','Vratsa'),(646,'BG','BG-07','Gabrovo'),(647,'BG','BG-08','Dobrich'),(648,'BG','BG-09','Kardzhali'),(649,'BG','BG-10','Kyustendil'),(650,'BG','BG-11','Lovech'),(651,'BG','BG-12','Montana'),(652,'BG','BG-13','Pazardzhik'),(653,'BG','BG-14','Pernik'),(654,'BG','BG-15','Pleven'),(655,'BG','BG-16','Plovdiv'),(656,'BG','BG-17','Razgrad'),(657,'BG','BG-18','Ruse'),(658,'BG','BG-19','Silistra'),(659,'BG','BG-20','Sliven'),(660,'BG','BG-21','Smolyan'),(661,'BG','BG-22','Sofia City'),(662,'BG','BG-23','Sofia Province'),(663,'BG','BG-24','Stara Zagora'),(664,'BG','BG-25','Targovishte'),(665,'BG','BG-26','Haskovo'),(666,'BG','BG-27','Shumen'),(667,'BG','BG-28','Yambol'),(668,'CL','CL-AI','Aisén del General Carlos Ibañez del Campo'),(669,'CL','CL-AN','Antofagasta'),(670,'CL','CL-AP','Arica y Parinacota'),(671,'CL','CL-AR','La Araucanía'),(672,'CL','CL-AT','Atacama'),(673,'CL','CL-BI','Biobío'),(674,'CL','CL-CO','Coquimbo'),(675,'CL','CL-LI','Libertador General Bernardo O\'Higgins'),(676,'CL','CL-LL','Los Lagos'),(677,'CL','CL-LR','Los Ríos'),(678,'CL','CL-MA','Magallanes'),(679,'CL','CL-ML','Maule'),(680,'CL','CL-NB','Ñuble'),(681,'CL','CL-RM','Región Metropolitana de Santiago'),(682,'CL','CL-TA','Tarapacá'),(683,'CL','CL-VS','Valparaíso'),(684,'CN','CN-AH','Anhui Sheng'),(685,'CN','CN-BJ','Beijing Shi'),(686,'CN','CN-CQ','Chongqing Shi'),(687,'CN','CN-FJ','Fujian Sheng'),(688,'CN','CN-GS','Gansu Sheng'),(689,'CN','CN-GD','Guangdong Sheng'),(690,'CN','CN-GX','Guangxi Zhuangzu Zizhiqu'),(691,'CN','CN-GZ','Guizhou Sheng'),(692,'CN','CN-HI','Hainan Sheng'),(693,'CN','CN-HE','Hebei Sheng'),(694,'CN','CN-HL','Heilongjiang Sheng'),(695,'CN','CN-HA','Henan Sheng'),(696,'CN','CN-HK','Hong Kong SAR'),(697,'CN','CN-HB','Hubei Sheng'),(698,'CN','CN-HN','Hunan Sheng'),(699,'CN','CN-JS','Jiangsu Sheng'),(700,'CN','CN-JX','Jiangxi Sheng'),(701,'CN','CN-JL','Jilin Sheng'),(702,'CN','CN-LN','Liaoning Sheng'),(703,'CN','CN-MO','Macao SAR'),(704,'CN','CN-NM','Nei Mongol Zizhiqu'),(705,'CN','CN-NX','Ningxia Huizi Zizhiqu'),(706,'CN','CN-QH','Qinghai Sheng'),(707,'CN','CN-SN','Shaanxi Sheng'),(708,'CN','CN-SD','Shandong Sheng'),(709,'CN','CN-SH','Shanghai Shi'),(710,'CN','CN-SX','Shanxi Sheng'),(711,'CN','CN-SC','Sichuan Sheng'),(712,'CN','CN-TW','Taiwan Sheng'),(713,'CN','CN-TJ','Tianjin Shi'),(714,'CN','CN-XJ','Xinjiang Uygur Zizhiqu'),(715,'CN','CN-XZ','Xizang Zizhiqu'),(716,'CN','CN-YN','Yunnan Sheng'),(717,'CN','CN-ZJ','Zhejiang Sheng'),(718,'CO','CO-AMA','Amazonas'),(719,'CO','CO-ANT','Antioquia'),(720,'CO','CO-ARA','Arauca'),(721,'CO','CO-ATL','Atlántico'),(722,'CO','CO-BOL','Bolívar'),(723,'CO','CO-BOY','Boyacá'),(724,'CO','CO-CAL','Caldas'),(725,'CO','CO-CAQ','Caquetá'),(726,'CO','CO-CAS','Casanare'),(727,'CO','CO-CAU','Cauca'),(728,'CO','CO-CES','Cesar'),(729,'CO','CO-CHO','Chocó'),(730,'CO','CO-COR','Córdoba'),(731,'CO','CO-CUN','Cundinamarca'),(732,'CO','CO-GUA','Guainía'),(733,'CO','CO-GUV','Guaviare'),(734,'CO','CO-HUL','Huila'),(735,'CO','CO-LAG','La Guajira'),(736,'CO','CO-MAG','Magdalena'),(737,'CO','CO-MET','Meta'),(738,'CO','CO-NAR','Nariño'),(739,'CO','CO-NSA','Norte de Santander'),(740,'CO','CO-PUT','Putumayo'),(741,'CO','CO-QUI','Quindío'),(742,'CO','CO-RIS','Risaralda'),(743,'CO','CO-SAP','San Andrés y Providencia'),(744,'CO','CO-SAN','Santander'),(745,'CO','CO-SUC','Sucre'),(746,'CO','CO-TOL','Tolima'),(747,'CO','CO-VAC','Valle del Cauca'),(748,'CO','CO-VAU','Vaupés'),(749,'CO','CO-VID','Vichada'),(750,'CR','CR-SJ','San José'),(751,'CR','CR-AL','Alajuela'),(752,'CR','CR-CA','Cartago'),(753,'CR','CR-HE','Heredia'),(754,'CR','CR-GU','Guanacaste'),(755,'CR','CR-PU','Puntarenas'),(756,'CR','CR-LI','Limón'),(757,'CZ','CZ-10','Praha, Hlavní město'),(758,'CZ','CZ-20','Středočeský kraj'),(759,'CZ','CZ-31','Jihočeský kraj'),(760,'CZ','CZ-32','Plzeňský kraj'),(761,'CZ','CZ-41','Karlovarský kraj'),(762,'CZ','CZ-42','Ústecký kraj'),(763,'CZ','CZ-51','Liberecký kraj'),(764,'CZ','CZ-52','Královéhradecký kraj'),(765,'CZ','CZ-53','Pardubický kraj'),(766,'CZ','CZ-63','Kraj Vysočina'),(767,'CZ','CZ-64','Jihomoravský kraj'),(768,'CZ','CZ-71','Olomoucký kraj'),(769,'CZ','CZ-72','Zlínský kraj'),(770,'CZ','CZ-80','Moravskoslezský kraj'),(771,'DK','DK-84','Hovedstaden'),(772,'DK','DK-82','Midtjylland'),(773,'DK','DK-81','Nordjylland'),(774,'DK','DK-85','Sjælland'),(775,'DK','DK-83','Syddanmark'),(776,'EC','EC-A','Azuay'),(777,'EC','EC-B','Bolívar'),(778,'EC','EC-F','Cañar'),(779,'EC','EC-C','Carchi'),(780,'EC','EC-H','Chimborazo'),(781,'EC','EC-X','Cotopaxi'),(782,'EC','EC-O','El Oro'),(783,'EC','EC-E','Esmeraldas'),(784,'EC','EC-W','Galápagos'),(785,'EC','EC-G','Guayas'),(786,'EC','EC-I','Imbabura'),(787,'EC','EC-L','Loja'),(788,'EC','EC-R','Los Ríos'),(789,'EC','EC-M','Manabí'),(790,'EC','EC-S','Morona Santiago'),(791,'EC','EC-N','Napo'),(792,'EC','EC-D','Orellana'),(793,'EC','EC-Y','Pastaza'),(794,'EC','EC-P','Pichincha'),(795,'EC','EC-SE','Santa Elena'),(796,'EC','EC-SD','Santo Domingo de los Tsáchilas'),(797,'EC','EC-U','Sucumbíos'),(798,'EC','EC-T','Tungurahua'),(799,'EC','EC-Z','Zamora Chinchipe'),(800,'GR','GR-A','Anatolikí Makedonía kai Thráki'),(801,'GR','GR-I','Attikí'),(802,'GR','GR-G','Dytikí Elláda'),(803,'GR','GR-C','Dytikí Makedonía'),(804,'GR','GR-F','Ionía Nísia'),(805,'GR','GR-D','Ípeiros'),(806,'GR','GR-B','Kentrikí Makedonía'),(807,'GR','GR-M','Kríti'),(808,'GR','GR-L','Nótio Aigaío'),(809,'GR','GR-J','Pelopónnisos'),(810,'GR','GR-H','Stereá Elláda'),(811,'GR','GR-E','Thessalía'),(812,'GR','GR-K','Vóreio Aigaío'),(813,'GR','GR-69','Ágion Óros'),(814,'GY','GY-BA','Barima-Waini'),(815,'GY','GY-CU','Cuyuni-Mazaruni'),(816,'GY','GY-DE','Demerara-Mahaica'),(817,'GY','GY-EB','East Berbice-Corentyne'),(818,'GY','GY-ES','Essequibo Islands-West Demerara'),(819,'GY','GY-MA','Mahaica-Berbice'),(820,'GY','GY-PM','Pomeroon-Supenaam'),(821,'GY','GY-PT','Potaro-Siparuni'),(822,'GY','GY-UD','Upper Demerara-Berbice'),(823,'GY','GY-UT','Upper Takutu-Upper Essequibo'),(824,'IS','IS-01','Höfuðborgarsvæði'),(825,'IS','IS-02','Suðurnes'),(826,'IS','IS-03','Vesturland'),(827,'IS','IS-04','Vestfirðir'),(828,'IS','IS-05','Norðurland vestra'),(829,'IS','IS-06','Norðurland eystra'),(830,'IS','IS-07','Austurland'),(831,'IS','IS-08','Suðurland'),(832,'IT','AG','Agrigento'),(833,'IT','AL','Alessandria'),(834,'IT','AN','Ancona'),(835,'IT','AO','Aosta'),(836,'IT','AQ','L\'Aquila'),(837,'IT','AR','Arezzo'),(838,'IT','AP','Ascoli-Piceno'),(839,'IT','AT','Asti'),(840,'IT','AV','Avellino'),(841,'IT','BA','Bari'),(842,'IT','BT','Barletta-Andria-Trani'),(843,'IT','BL','Belluno'),(844,'IT','BN','Benevento'),(845,'IT','BG','Bergamo'),(846,'IT','BI','Biella'),(847,'IT','BO','Bologna'),(848,'IT','BZ','Bolzano'),(849,'IT','BS','Brescia'),(850,'IT','BR','Brindisi'),(851,'IT','CA','Cagliari'),(852,'IT','CL','Caltanissetta'),(853,'IT','CB','Campobasso'),(854,'IT','CI','Carbonia Iglesias'),(855,'IT','CE','Caserta'),(856,'IT','CT','Catania'),(857,'IT','CZ','Catanzaro'),(858,'IT','CH','Chieti'),(859,'IT','CO','Como'),(860,'IT','CS','Cosenza'),(861,'IT','CR','Cremona'),(862,'IT','KR','Crotone'),(863,'IT','CN','Cuneo'),(864,'IT','EN','Enna'),(865,'IT','FM','Fermo'),(866,'IT','FE','Ferrara'),(867,'IT','FI','Firenze'),(868,'IT','FG','Foggia'),(869,'IT','FC','Forli-Cesena'),(870,'IT','FR','Frosinone'),(871,'IT','GE','Genova'),(872,'IT','GO','Gorizia'),(873,'IT','GR','Grosseto'),(874,'IT','IM','Imperia'),(875,'IT','IS','Isernia'),(876,'IT','SP','La-Spezia'),(877,'IT','LT','Latina'),(878,'IT','LE','Lecce'),(879,'IT','LC','Lecco'),(880,'IT','LI','Livorno'),(881,'IT','LO','Lodi'),(882,'IT','LU','Lucca'),(883,'IT','MC','Macerata'),(884,'IT','MN','Mantova'),(885,'IT','MS','Massa-Carrara'),(886,'IT','MT','Matera'),(887,'IT','VS','Medio Campidano'),(888,'IT','ME','Messina'),(889,'IT','MI','Milano'),(890,'IT','MO','Modena'),(891,'IT','MB','Monza-Brianza'),(892,'IT','NA','Napoli'),(893,'IT','NO','Novara'),(894,'IT','NU','Nuoro'),(895,'IT','OG','Ogliastra'),(896,'IT','OT','Olbia Tempio'),(897,'IT','OR','Oristano'),(898,'IT','PD','Padova'),(899,'IT','PA','Palermo'),(900,'IT','PR','Parma'),(901,'IT','PV','Pavia'),(902,'IT','PG','Perugia'),(903,'IT','PU','Pesaro-Urbino'),(904,'IT','PE','Pescara'),(905,'IT','PC','Piacenza'),(906,'IT','PI','Pisa'),(907,'IT','PT','Pistoia'),(908,'IT','PN','Pordenone'),(909,'IT','PZ','Potenza'),(910,'IT','PO','Prato'),(911,'IT','RG','Ragusa'),(912,'IT','RA','Ravenna'),(913,'IT','RC','Reggio-Calabria'),(914,'IT','RE','Reggio-Emilia'),(915,'IT','RI','Rieti'),(916,'IT','RN','Rimini'),(917,'IT','RM','Roma'),(918,'IT','RO','Rovigo'),(919,'IT','SA','Salerno'),(920,'IT','SS','Sassari'),(921,'IT','SV','Savona'),(922,'IT','SI','Siena'),(923,'IT','SR','Siracusa'),(924,'IT','SO','Sondrio'),(925,'IT','TA','Taranto'),(926,'IT','TE','Teramo'),(927,'IT','TR','Terni'),(928,'IT','TO','Torino'),(929,'IT','TP','Trapani'),(930,'IT','TN','Trento'),(931,'IT','TV','Treviso'),(932,'IT','TS','Trieste'),(933,'IT','UD','Udine'),(934,'IT','VA','Varese'),(935,'IT','VE','Venezia'),(936,'IT','VB','Verbania'),(937,'IT','VC','Vercelli'),(938,'IT','VR','Verona'),(939,'IT','VV','Vibo-Valentia'),(940,'IT','VI','Vicenza'),(941,'IT','VT','Viterbo'),(942,'MX','AGU','Aguascalientes'),(943,'MX','BCN','Baja California'),(944,'MX','BCS','Baja California Sur'),(945,'MX','CAM','Campeche'),(946,'MX','CHP','Chiapas'),(947,'MX','CHH','Chihuahua'),(948,'MX','CMX','Ciudad de México'),(949,'MX','COA','Coahuila'),(950,'MX','COL','Colima'),(951,'MX','DUR','Durango'),(952,'MX','MEX','Estado de México'),(953,'MX','GUA','Guanajuato'),(954,'MX','GRO','Guerrero'),(955,'MX','HID','Hidalgo'),(956,'MX','JAL','Jalisco'),(957,'MX','MIC','Michoacán'),(958,'MX','MOR','Morelos'),(959,'MX','NAY','Nayarit'),(960,'MX','NLE','Nuevo León'),(961,'MX','OAX','Oaxaca'),(962,'MX','PUE','Puebla'),(963,'MX','QUE','Querétaro'),(964,'MX','ROO','Quintana Roo'),(965,'MX','SLP','San Luis Potosí'),(966,'MX','SIN','Sinaloa'),(967,'MX','SON','Sonora'),(968,'MX','TAB','Tabasco'),(969,'MX','TAM','Tamaulipas'),(970,'MX','TLA','Tlaxcala'),(971,'MX','VER','Veracruz'),(972,'MX','YUC','Yucatán'),(973,'MX','ZAC','Zacatecas'),(974,'PY','PY-ASU','Asunción'),(975,'PY','PY-16','Alto Paraguay'),(976,'PY','PY-10','Alto Paraná'),(977,'PY','PY-13','Amambay'),(978,'PY','PY-19','Boquerón'),(979,'PY','PY-5','Caaguazú'),(980,'PY','PY-6','Caazapá'),(981,'PY','PY-14','Canindeyú'),(982,'PY','PY-11','Central'),(983,'PY','PY-1','Concepción'),(984,'PY','PY-3','Cordillera'),(985,'PY','PY-4','Guairá'),(986,'PY','PY-7','Itapúa'),(987,'PY','PY-8','Misiones'),(988,'PY','PY-12','Ñeembucú'),(989,'PY','PY-9','Paraguarí'),(990,'PY','PY-15','Presidente Hayes'),(991,'PY','PY-2','San Pedro'),(992,'PE','PE-LMA','Municipalidad Metropolitana de Lima'),(993,'PE','PE-AMA','Amazonas'),(994,'PE','PE-ANC','Ancash'),(995,'PE','PE-APU','Apurímac'),(996,'PE','PE-ARE','Arequipa'),(997,'PE','PE-AYA','Ayacucho'),(998,'PE','PE-CAJ','Cajamarca'),(999,'PE','PE-CUS','Cusco'),(1000,'PE','PE-CAL','El Callao'),(1001,'PE','PE-HUV','Huancavelica'),(1002,'PE','PE-HUC','Huánuco'),(1003,'PE','PE-ICA','Ica'),(1004,'PE','PE-JUN','Junín'),(1005,'PE','PE-LAL','La Libertad'),(1006,'PE','PE-LAM','Lambayeque'),(1007,'PE','PE-LIM','Lima'),(1008,'PE','PE-LOR','Loreto'),(1009,'PE','PE-MDD','Madre de Dios'),(1010,'PE','PE-MOQ','Moquegua'),(1011,'PE','PE-PAS','Pasco'),(1012,'PE','PE-PIU','Piura'),(1013,'PE','PE-PUN','Puno'),(1014,'PE','PE-SAM','San Martín'),(1015,'PE','PE-TAC','Tacna'),(1016,'PE','PE-TUM','Tumbes'),(1017,'PE','PE-UCA','Ucayali'),(1018,'PL','PL-02','dolnośląskie'),(1019,'PL','PL-04','kujawsko-pomorskie'),(1020,'PL','PL-06','lubelskie'),(1021,'PL','PL-08','lubuskie'),(1022,'PL','PL-10','łódzkie'),(1023,'PL','PL-12','małopolskie'),(1024,'PL','PL-14','mazowieckie'),(1025,'PL','PL-16','opolskie'),(1026,'PL','PL-18','podkarpackie'),(1027,'PL','PL-20','podlaskie'),(1028,'PL','PL-22','pomorskie'),(1029,'PL','PL-24','śląskie'),(1030,'PL','PL-26','świętokrzyskie'),(1031,'PL','PL-28','warmińsko-mazurskie'),(1032,'PL','PL-30','wielkopolskie'),(1033,'PL','PL-32','zachodniopomorskie'),(1034,'PT','PT-01','Aveiro'),(1035,'PT','PT-02','Beja'),(1036,'PT','PT-03','Braga'),(1037,'PT','PT-04','Bragança'),(1038,'PT','PT-05','Castelo Branco'),(1039,'PT','PT-06','Coimbra'),(1040,'PT','PT-07','Évora'),(1041,'PT','PT-08','Faro'),(1042,'PT','PT-09','Guarda'),(1043,'PT','PT-10','Leiria'),(1044,'PT','PT-11','Lisboa'),(1045,'PT','PT-12','Portalegre'),(1046,'PT','PT-13','Porto'),(1047,'PT','PT-14','Santarém'),(1048,'PT','PT-15','Setúbal'),(1049,'PT','PT-16','Viana do Castelo'),(1050,'PT','PT-17','Vila Real'),(1051,'PT','PT-18','Viseu'),(1052,'PT','PT-20','Região Autónoma dos Açores'),(1053,'PT','PT-30','Região Autónoma da Madeira'),(1054,'SR','SR-BR','Brokopondo'),(1055,'SR','SR-CM','Commewijne'),(1056,'SR','SR-CR','Coronie'),(1057,'SR','SR-MA','Marowijne'),(1058,'SR','SR-NI','Nickerie'),(1059,'SR','SR-PR','Para'),(1060,'SR','SR-PM','Paramaribo'),(1061,'SR','SR-SA','Saramacca'),(1062,'SR','SR-SI','Sipaliwini'),(1063,'SR','SR-WA','Wanica'),(1064,'SE','SE-K','Blekinge län'),(1065,'SE','SE-W','Dalarnas län'),(1066,'SE','SE-I','Gotlands län'),(1067,'SE','SE-X','Gävleborgs län'),(1068,'SE','SE-N','Hallands län'),(1069,'SE','SE-Z','Jämtlands län'),(1070,'SE','SE-F','Jönköpings län'),(1071,'SE','SE-H','Kalmar län'),(1072,'SE','SE-G','Kronobergs län'),(1073,'SE','SE-BD','Norrbottens län'),(1074,'SE','SE-M','Skåne län'),(1075,'SE','SE-AB','Stockholms län'),(1076,'SE','SE-D','Södermanlands län'),(1077,'SE','SE-C','Uppsala län'),(1078,'SE','SE-S','Värmlands län'),(1079,'SE','SE-AC','Västerbottens län'),(1080,'SE','SE-Y','Västernorrlands län'),(1081,'SE','SE-U','Västmanlands län'),(1082,'SE','SE-O','Västra Götalands län'),(1083,'SE','SE-T','Örebro län'),(1084,'SE','SE-E','Östergötlands län'),(1085,'UA','UA-71','Cherkaska oblast'),(1086,'UA','UA-74','Chernihivska oblast'),(1087,'UA','UA-77','Chernivetska oblast'),(1088,'UA','UA-12','Dnipropetrovska oblast'),(1089,'UA','UA-14','Donetska oblast'),(1090,'UA','UA-26','Ivano-Frankivska oblast'),(1091,'UA','UA-63','Kharkivska oblast'),(1092,'UA','UA-65','Khersonska oblast'),(1093,'UA','UA-68','Khmelnytska oblast'),(1094,'UA','UA-35','Kirovohradska oblast'),(1095,'UA','UA-32','Kyivska oblast'),(1096,'UA','UA-09','Luhanska oblast'),(1097,'UA','UA-46','Lvivska oblast'),(1098,'UA','UA-48','Mykolaivska oblast'),(1099,'UA','UA-51','Odeska oblast'),(1100,'UA','UA-53','Poltavska oblast'),(1101,'UA','UA-56','Rivnenska oblast'),(1102,'UA','UA-59','Sumska oblast'),(1103,'UA','UA-61','Ternopilska oblast'),(1104,'UA','UA-05','Vinnytska oblast'),(1105,'UA','UA-07','Volynska oblast'),(1106,'UA','UA-21','Zakarpatska oblast'),(1107,'UA','UA-23','Zaporizka oblast'),(1108,'UA','UA-18','Zhytomyrska oblast'),(1109,'UA','UA-43','Avtonomna Respublika Krym'),(1110,'UA','UA-30','Kyiv'),(1111,'UA','UA-40','Sevastopol'),(1112,'UY','UY-AR','Artigas'),(1113,'UY','UY-CA','Canelones'),(1114,'UY','UY-CL','Cerro Largo'),(1115,'UY','UY-CO','Colonia'),(1116,'UY','UY-DU','Durazno'),(1117,'UY','UY-FS','Flores'),(1118,'UY','UY-FD','Florida'),(1119,'UY','UY-LA','Lavalleja'),(1120,'UY','UY-MA','Maldonado'),(1121,'UY','UY-MO','Montevideo'),(1122,'UY','UY-PA','Paysandu'),(1123,'UY','UY-RN','Río Negro'),(1124,'UY','UY-RV','Rivera'),(1125,'UY','UY-RO','Rocha'),(1126,'UY','UY-SA','Salto'),(1127,'UY','UY-SJ','San José'),(1128,'UY','UY-SO','Soriano'),(1129,'UY','UY-TA','Tacuarembó'),(1130,'UY','UY-TT','Treinta y Tres'),(1131,'VE','VE-W','Dependencias Federales'),(1132,'VE','VE-A','Distrito Capital'),(1133,'VE','VE-Z','Amazonas'),(1134,'VE','VE-B','Anzoátegui'),(1135,'VE','VE-C','Apure'),(1136,'VE','VE-D','Aragua'),(1137,'VE','VE-E','Barinas'),(1138,'VE','VE-F','Bolívar'),(1139,'VE','VE-G','Carabobo'),(1140,'VE','VE-H','Cojedes'),(1141,'VE','VE-Y','Delta Amacuro'),(1142,'VE','VE-I','Falcón'),(1143,'VE','VE-J','Guárico'),(1144,'VE','VE-K','Lara'),(1145,'VE','VE-L','Mérida'),(1146,'VE','VE-M','Miranda'),(1147,'VE','VE-N','Monagas'),(1148,'VE','VE-O','Nueva Esparta'),(1149,'VE','VE-P','Portuguesa'),(1150,'VE','VE-R','Sucre'),(1151,'VE','VE-S','Táchira'),(1152,'VE','VE-T','Trujillo'),(1153,'VE','VE-X','Vargas'),(1154,'VE','VE-U','Yaracuy'),(1155,'VE','VE-V','Zulia'),(1156,'IN','LA','Ladakh');
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_region` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]directory_country_region_name`
--

DROP TABLE IF EXISTS `[[dbprefix]]directory_country_region_name`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]directory_country_region_name` (
  `locale` varchar(16) NOT NULL COMMENT 'Locale',
  `region_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Region ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`locale`,`region_id`),
  KEY `[[DBPREFIX]]DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`),
  CONSTRAINT `FK_DE6DA1A7144421986CA73445733F54B9` FOREIGN KEY (`region_id`) REFERENCES `[[dbprefix]]directory_country_region` (`region_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Region Name';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]directory_country_region_name`
--

LOCK TABLES `[[dbprefix]]directory_country_region_name` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_region_name` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Vorarlberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Friburg'),('en_US',111,'Geneva'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Lucerne'),('en_US',116,'Neuchâtel'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Ticino'),('en_US',125,'Uri'),('en_US',126,'Vaud'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'),('en_US',485,'Acre'),('en_US',486,'Alagoas'),('en_US',487,'Amapá'),('en_US',488,'Amazonas'),('en_US',489,'Bahia'),('en_US',490,'Ceará'),('en_US',491,'Espírito Santo'),('en_US',492,'Goiás'),('en_US',493,'Maranhão'),('en_US',494,'Mato Grosso'),('en_US',495,'Mato Grosso do Sul'),('en_US',496,'Minas Gerais'),('en_US',497,'Pará'),('en_US',498,'Paraíba'),('en_US',499,'Paraná'),('en_US',500,'Pernambuco'),('en_US',501,'Piauí'),('en_US',502,'Rio de Janeiro'),('en_US',503,'Rio Grande do Norte'),('en_US',504,'Rio Grande do Sul'),('en_US',505,'Rondônia'),('en_US',506,'Roraima'),('en_US',507,'Santa Catarina'),('en_US',508,'São Paulo'),('en_US',509,'Sergipe'),('en_US',510,'Tocantins'),('en_US',511,'Distrito Federal'),('en_US',512,'Berat'),('en_US',513,'Dibër'),('en_US',514,'Durrës'),('en_US',515,'Elbasan'),('en_US',516,'Fier'),('en_US',517,'Gjirokastër'),('en_US',518,'Korçë'),('en_US',519,'Kukës'),('en_US',520,'Lezhë'),('en_US',521,'Shkodër'),('en_US',522,'Tiranë'),('en_US',523,'Vlorë'),('en_US',524,'Ciudad Autónoma de Buenos Aires'),('en_US',525,'Buenos Aires'),('en_US',526,'Catamarca'),('en_US',527,'Chaco'),('en_US',528,'Chubut'),('en_US',529,'Córdoba'),('en_US',530,'Corrientes'),('en_US',531,'Entre Ríos'),('en_US',532,'Formosa'),('en_US',533,'Jujuy'),('en_US',534,'La Pampa'),('en_US',535,'La Rioja'),('en_US',536,'Mendoza'),('en_US',537,'Misiones'),('en_US',538,'Neuquén'),('en_US',539,'Río Negro'),('en_US',540,'Salta'),('en_US',541,'San Juan'),('en_US',542,'San Luis'),('en_US',543,'Santa Cruz'),('en_US',544,'Santa Fe'),('en_US',545,'Santiago del Estero'),('en_US',546,'Tierra del Fuego'),('en_US',547,'Tucumán'),('en_US',548,'Zagrebačka županija'),('en_US',549,'Krapinsko-zagorska županija'),('en_US',550,'Sisačko-moslavačka županija'),('en_US',551,'Karlovačka županija'),('en_US',552,'Varaždinska županija'),('en_US',553,'Koprivničko-križevačka županija'),('en_US',554,'Bjelovarsko-bilogorska županija'),('en_US',555,'Primorsko-goranska županija'),('en_US',556,'Ličko-senjska županija'),('en_US',557,'Virovitičko-podravska županija'),('en_US',558,'Požeško-slavonska županija'),('en_US',559,'Brodsko-posavska županija'),('en_US',560,'Zadarska županija'),('en_US',561,'Osječko-baranjska županija'),('en_US',562,'Šibensko-kninska županija'),('en_US',563,'Vukovarsko-srijemska županija'),('en_US',564,'Splitsko-dalmatinska županija'),('en_US',565,'Istarska županija'),('en_US',566,'Dubrovačko-neretvanska županija'),('en_US',567,'Međimurska županija'),('en_US',568,'Grad Zagreb'),('en_US',569,'Andaman and Nicobar Islands'),('en_US',570,'Andhra Pradesh'),('en_US',571,'Arunachal Pradesh'),('en_US',572,'Assam'),('en_US',573,'Bihar'),('en_US',574,'Chandigarh'),('en_US',575,'Chhattisgarh'),('en_US',576,'Dadra and Nagar Haveli'),('en_US',577,'Daman and Diu'),('en_US',578,'Delhi'),('en_US',579,'Goa'),('en_US',580,'Gujarat'),('en_US',581,'Haryana'),('en_US',582,'Himachal Pradesh'),('en_US',583,'Jammu and Kashmir'),('en_US',584,'Jharkhand'),('en_US',585,'Karnataka'),('en_US',586,'Kerala'),('en_US',587,'Lakshadweep'),('en_US',588,'Madhya Pradesh'),('en_US',589,'Maharashtra'),('en_US',590,'Manipur'),('en_US',591,'Meghalaya'),('en_US',592,'Mizoram'),('en_US',593,'Nagaland'),('en_US',594,'Odisha'),('en_US',595,'Puducherry'),('en_US',596,'Punjab'),('en_US',597,'Rajasthan'),('en_US',598,'Sikkim'),('en_US',599,'Tamil Nadu'),('en_US',600,'Telangana'),('en_US',601,'Tripura'),('en_US',602,'Uttar Pradesh'),('en_US',603,'Uttarakhand'),('en_US',604,'West Bengal'),('en_US',605,'Australian Capital Territory'),('en_US',606,'New South Wales'),('en_US',607,'Victoria'),('en_US',608,'Queensland'),('en_US',609,'South Australia'),('en_US',610,'Tasmania'),('en_US',611,'Western Australia'),('en_US',612,'Northern Territory'),('en_US',613,'Bresckaja voblasć'),('en_US',614,'Homieĺskaja voblasć'),('en_US',615,'Horad Minsk'),('en_US',616,'Hrodzienskaja voblasć'),('en_US',617,'Mahilioŭskaja voblasć'),('en_US',618,'Minskaja voblasć'),('en_US',619,'Viciebskaja voblasć'),('en_US',620,'Antwerpen'),('en_US',621,'Brabant wallon'),('en_US',622,'Brussels-Capital Region'),('en_US',623,'Hainaut'),('en_US',624,'Limburg'),('en_US',625,'Liège'),('en_US',626,'Luxembourg'),('en_US',627,'Namur'),('en_US',628,'Oost-Vlaanderen'),('en_US',629,'Vlaams-Brabant'),('en_US',630,'West-Vlaanderen'),('en_US',631,'Cochabamba'),('en_US',632,'Chuquisaca'),('en_US',633,'El Beni'),('en_US',634,'La Paz'),('en_US',635,'Oruro'),('en_US',636,'Pando'),('en_US',637,'Potosí'),('en_US',638,'Santa Cruz'),('en_US',639,'Tarija'),('en_US',640,'Blagoevgrad'),('en_US',641,'Burgas'),('en_US',642,'Varna'),('en_US',643,'Veliko Tarnovo'),('en_US',644,'Vidin'),('en_US',645,'Vratsa'),('en_US',646,'Gabrovo'),('en_US',647,'Dobrich'),('en_US',648,'Kardzhali'),('en_US',649,'Kyustendil'),('en_US',650,'Lovech'),('en_US',651,'Montana'),('en_US',652,'Pazardzhik'),('en_US',653,'Pernik'),('en_US',654,'Pleven'),('en_US',655,'Plovdiv'),('en_US',656,'Razgrad'),('en_US',657,'Ruse'),('en_US',658,'Silistra'),('en_US',659,'Sliven'),('en_US',660,'Smolyan'),('en_US',661,'Sofia City'),('en_US',662,'Sofia Province'),('en_US',663,'Stara Zagora'),('en_US',664,'Targovishte'),('en_US',665,'Haskovo'),('en_US',666,'Shumen'),('en_US',667,'Yambol'),('en_US',668,'Aisén del General Carlos Ibañez del Campo'),('en_US',669,'Antofagasta'),('en_US',670,'Arica y Parinacota'),('en_US',671,'La Araucanía'),('en_US',672,'Atacama'),('en_US',673,'Biobío'),('en_US',674,'Coquimbo'),('en_US',675,'Libertador General Bernardo O\'Higgins'),('en_US',676,'Los Lagos'),('en_US',677,'Los Ríos'),('en_US',678,'Magallanes'),('en_US',679,'Maule'),('en_US',680,'Ñuble'),('en_US',681,'Región Metropolitana de Santiago'),('en_US',682,'Tarapacá'),('en_US',683,'Valparaíso'),('en_US',684,'Anhui Sheng'),('en_US',685,'Beijing Shi'),('en_US',686,'Chongqing Shi'),('en_US',687,'Fujian Sheng'),('en_US',688,'Gansu Sheng'),('en_US',689,'Guangdong Sheng'),('en_US',690,'Guangxi Zhuangzu Zizhiqu'),('en_US',691,'Guizhou Sheng'),('en_US',692,'Hainan Sheng'),('en_US',693,'Hebei Sheng'),('en_US',694,'Heilongjiang Sheng'),('en_US',695,'Henan Sheng'),('en_US',696,'Hong Kong SAR'),('en_US',697,'Hubei Sheng'),('en_US',698,'Hunan Sheng'),('en_US',699,'Jiangsu Sheng'),('en_US',700,'Jiangxi Sheng'),('en_US',701,'Jilin Sheng'),('en_US',702,'Liaoning Sheng'),('en_US',703,'Macao SAR'),('en_US',704,'Nei Mongol Zizhiqu'),('en_US',705,'Ningxia Huizi Zizhiqu'),('en_US',706,'Qinghai Sheng'),('en_US',707,'Shaanxi Sheng'),('en_US',708,'Shandong Sheng'),('en_US',709,'Shanghai Shi'),('en_US',710,'Shanxi Sheng'),('en_US',711,'Sichuan Sheng'),('en_US',712,'Taiwan Sheng'),('en_US',713,'Tianjin Shi'),('en_US',714,'Xinjiang Uygur Zizhiqu'),('en_US',715,'Xizang Zizhiqu'),('en_US',716,'Yunnan Sheng'),('en_US',717,'Zhejiang Sheng'),('en_US',718,'Amazonas'),('en_US',719,'Antioquia'),('en_US',720,'Arauca'),('en_US',721,'Atlántico'),('en_US',722,'Bolívar'),('en_US',723,'Boyacá'),('en_US',724,'Caldas'),('en_US',725,'Caquetá'),('en_US',726,'Casanare'),('en_US',727,'Cauca'),('en_US',728,'Cesar'),('en_US',729,'Chocó'),('en_US',730,'Córdoba'),('en_US',731,'Cundinamarca'),('en_US',732,'Guainía'),('en_US',733,'Guaviare'),('en_US',734,'Huila'),('en_US',735,'La Guajira'),('en_US',736,'Magdalena'),('en_US',737,'Meta'),('en_US',738,'Nariño'),('en_US',739,'Norte de Santander'),('en_US',740,'Putumayo'),('en_US',741,'Quindío'),('en_US',742,'Risaralda'),('en_US',743,'San Andrés y Providencia'),('en_US',744,'Santander'),('en_US',745,'Sucre'),('en_US',746,'Tolima'),('en_US',747,'Valle del Cauca'),('en_US',748,'Vaupés'),('en_US',749,'Vichada'),('en_US',750,'San José'),('en_US',751,'Alajuela'),('en_US',752,'Cartago'),('en_US',753,'Heredia'),('en_US',754,'Guanacaste'),('en_US',755,'Puntarenas'),('en_US',756,'Limón'),('en_US',757,'Praha, Hlavní město'),('en_US',758,'Středočeský kraj'),('en_US',759,'Jihočeský kraj'),('en_US',760,'Plzeňský kraj'),('en_US',761,'Karlovarský kraj'),('en_US',762,'Ústecký kraj'),('en_US',763,'Liberecký kraj'),('en_US',764,'Královéhradecký kraj'),('en_US',765,'Pardubický kraj'),('en_US',766,'Kraj Vysočina'),('en_US',767,'Jihomoravský kraj'),('en_US',768,'Olomoucký kraj'),('en_US',769,'Zlínský kraj'),('en_US',770,'Moravskoslezský kraj'),('en_US',771,'Hovedstaden'),('en_US',772,'Midtjylland'),('en_US',773,'Nordjylland'),('en_US',774,'Sjælland'),('en_US',775,'Syddanmark'),('en_US',776,'Azuay'),('en_US',777,'Bolívar'),('en_US',778,'Cañar'),('en_US',779,'Carchi'),('en_US',780,'Chimborazo'),('en_US',781,'Cotopaxi'),('en_US',782,'El Oro'),('en_US',783,'Esmeraldas'),('en_US',784,'Galápagos'),('en_US',785,'Guayas'),('en_US',786,'Imbabura'),('en_US',787,'Loja'),('en_US',788,'Los Ríos'),('en_US',789,'Manabí'),('en_US',790,'Morona Santiago'),('en_US',791,'Napo'),('en_US',792,'Orellana'),('en_US',793,'Pastaza'),('en_US',794,'Pichincha'),('en_US',795,'Santa Elena'),('en_US',796,'Santo Domingo de los Tsáchilas'),('en_US',797,'Sucumbíos'),('en_US',798,'Tungurahua'),('en_US',799,'Zamora Chinchipe'),('en_US',800,'Anatolikí Makedonía kai Thráki'),('en_US',801,'Attikí'),('en_US',802,'Dytikí Elláda'),('en_US',803,'Dytikí Makedonía'),('en_US',804,'Ionía Nísia'),('en_US',805,'Ípeiros'),('en_US',806,'Kentrikí Makedonía'),('en_US',807,'Kríti'),('en_US',808,'Nótio Aigaío'),('en_US',809,'Pelopónnisos'),('en_US',810,'Stereá Elláda'),('en_US',811,'Thessalía'),('en_US',812,'Vóreio Aigaío'),('en_US',813,'Ágion Óros'),('en_US',814,'Barima-Waini'),('en_US',815,'Cuyuni-Mazaruni'),('en_US',816,'Demerara-Mahaica'),('en_US',817,'East Berbice-Corentyne'),('en_US',818,'Essequibo Islands-West Demerara'),('en_US',819,'Mahaica-Berbice'),('en_US',820,'Pomeroon-Supenaam'),('en_US',821,'Potaro-Siparuni'),('en_US',822,'Upper Demerara-Berbice'),('en_US',823,'Upper Takutu-Upper Essequibo'),('en_US',824,'Höfuðborgarsvæði'),('en_US',825,'Suðurnes'),('en_US',826,'Vesturland'),('en_US',827,'Vestfirðir'),('en_US',828,'Norðurland vestra'),('en_US',829,'Norðurland eystra'),('en_US',830,'Austurland'),('en_US',831,'Suðurland'),('en_US',832,'Agrigento'),('en_US',833,'Alessandria'),('en_US',834,'Ancona'),('en_US',835,'Aosta'),('en_US',836,'L\'Aquila'),('en_US',837,'Arezzo'),('en_US',838,'Ascoli-Piceno'),('en_US',839,'Asti'),('en_US',840,'Avellino'),('en_US',841,'Bari'),('en_US',842,'Barletta-Andria-Trani'),('en_US',843,'Belluno'),('en_US',844,'Benevento'),('en_US',845,'Bergamo'),('en_US',846,'Biella'),('en_US',847,'Bologna'),('en_US',848,'Bolzano'),('en_US',849,'Brescia'),('en_US',850,'Brindisi'),('en_US',851,'Cagliari'),('en_US',852,'Caltanissetta'),('en_US',853,'Campobasso'),('en_US',854,'Carbonia Iglesias'),('en_US',855,'Caserta'),('en_US',856,'Catania'),('en_US',857,'Catanzaro'),('en_US',858,'Chieti'),('en_US',859,'Como'),('en_US',860,'Cosenza'),('en_US',861,'Cremona'),('en_US',862,'Crotone'),('en_US',863,'Cuneo'),('en_US',864,'Enna'),('en_US',865,'Fermo'),('en_US',866,'Ferrara'),('en_US',867,'Firenze'),('en_US',868,'Foggia'),('en_US',869,'Forli-Cesena'),('en_US',870,'Frosinone'),('en_US',871,'Genova'),('en_US',872,'Gorizia'),('en_US',873,'Grosseto'),('en_US',874,'Imperia'),('en_US',875,'Isernia'),('en_US',876,'La-Spezia'),('en_US',877,'Latina'),('en_US',878,'Lecce'),('en_US',879,'Lecco'),('en_US',880,'Livorno'),('en_US',881,'Lodi'),('en_US',882,'Lucca'),('en_US',883,'Macerata'),('en_US',884,'Mantova'),('en_US',885,'Massa-Carrara'),('en_US',886,'Matera'),('en_US',887,'Medio Campidano'),('en_US',888,'Messina'),('en_US',889,'Milano'),('en_US',890,'Modena'),('en_US',891,'Monza-Brianza'),('en_US',892,'Napoli'),('en_US',893,'Novara'),('en_US',894,'Nuoro'),('en_US',895,'Ogliastra'),('en_US',896,'Olbia Tempio'),('en_US',897,'Oristano'),('en_US',898,'Padova'),('en_US',899,'Palermo'),('en_US',900,'Parma'),('en_US',901,'Pavia'),('en_US',902,'Perugia'),('en_US',903,'Pesaro-Urbino'),('en_US',904,'Pescara'),('en_US',905,'Piacenza'),('en_US',906,'Pisa'),('en_US',907,'Pistoia'),('en_US',908,'Pordenone'),('en_US',909,'Potenza'),('en_US',910,'Prato'),('en_US',911,'Ragusa'),('en_US',912,'Ravenna'),('en_US',913,'Reggio-Calabria'),('en_US',914,'Reggio-Emilia'),('en_US',915,'Rieti'),('en_US',916,'Rimini'),('en_US',917,'Roma'),('en_US',918,'Rovigo'),('en_US',919,'Salerno'),('en_US',920,'Sassari'),('en_US',921,'Savona'),('en_US',922,'Siena'),('en_US',923,'Siracusa'),('en_US',924,'Sondrio'),('en_US',925,'Taranto'),('en_US',926,'Teramo'),('en_US',927,'Terni'),('en_US',928,'Torino'),('en_US',929,'Trapani'),('en_US',930,'Trento'),('en_US',931,'Treviso'),('en_US',932,'Trieste'),('en_US',933,'Udine'),('en_US',934,'Varese'),('en_US',935,'Venezia'),('en_US',936,'Verbania'),('en_US',937,'Vercelli'),('en_US',938,'Verona'),('en_US',939,'Vibo-Valentia'),('en_US',940,'Vicenza'),('en_US',941,'Viterbo'),('en_US',942,'Aguascalientes'),('en_US',943,'Baja California'),('en_US',944,'Baja California Sur'),('en_US',945,'Campeche'),('en_US',946,'Chiapas'),('en_US',947,'Chihuahua'),('en_US',948,'Ciudad de México'),('en_US',949,'Coahuila'),('en_US',950,'Colima'),('en_US',951,'Durango'),('en_US',952,'Estado de México'),('en_US',953,'Guanajuato'),('en_US',954,'Guerrero'),('en_US',955,'Hidalgo'),('en_US',956,'Jalisco'),('en_US',957,'Michoacán'),('en_US',958,'Morelos'),('en_US',959,'Nayarit'),('en_US',960,'Nuevo León'),('en_US',961,'Oaxaca'),('en_US',962,'Puebla'),('en_US',963,'Querétaro'),('en_US',964,'Quintana Roo'),('en_US',965,'San Luis Potosí'),('en_US',966,'Sinaloa'),('en_US',967,'Sonora'),('en_US',968,'Tabasco'),('en_US',969,'Tamaulipas'),('en_US',970,'Tlaxcala'),('en_US',971,'Veracruz'),('en_US',972,'Yucatán'),('en_US',973,'Zacatecas'),('en_US',974,'Asunción'),('en_US',975,'Alto Paraguay'),('en_US',976,'Alto Paraná'),('en_US',977,'Amambay'),('en_US',978,'Boquerón'),('en_US',979,'Caaguazú'),('en_US',980,'Caazapá'),('en_US',981,'Canindeyú'),('en_US',982,'Central'),('en_US',983,'Concepción'),('en_US',984,'Cordillera'),('en_US',985,'Guairá'),('en_US',986,'Itapúa'),('en_US',987,'Misiones'),('en_US',988,'Ñeembucú'),('en_US',989,'Paraguarí'),('en_US',990,'Presidente Hayes'),('en_US',991,'San Pedro'),('en_US',992,'Municipalidad Metropolitana de Lima'),('en_US',993,'Amazonas'),('en_US',994,'Ancash'),('en_US',995,'Apurímac'),('en_US',996,'Arequipa'),('en_US',997,'Ayacucho'),('en_US',998,'Cajamarca'),('en_US',999,'Cusco'),('en_US',1000,'El Callao'),('en_US',1001,'Huancavelica'),('en_US',1002,'Huánuco'),('en_US',1003,'Ica'),('en_US',1004,'Junín'),('en_US',1005,'La Libertad'),('en_US',1006,'Lambayeque'),('en_US',1007,'Lima'),('en_US',1008,'Loreto'),('en_US',1009,'Madre de Dios'),('en_US',1010,'Moquegua'),('en_US',1011,'Pasco'),('en_US',1012,'Piura'),('en_US',1013,'Puno'),('en_US',1014,'San Martín'),('en_US',1015,'Tacna'),('en_US',1016,'Tumbes'),('en_US',1017,'Ucayali'),('en_US',1018,'dolnośląskie'),('en_US',1019,'kujawsko-pomorskie'),('en_US',1020,'lubelskie'),('en_US',1021,'lubuskie'),('en_US',1022,'łódzkie'),('en_US',1023,'małopolskie'),('en_US',1024,'mazowieckie'),('en_US',1025,'opolskie'),('en_US',1026,'podkarpackie'),('en_US',1027,'podlaskie'),('en_US',1028,'pomorskie'),('en_US',1029,'śląskie'),('en_US',1030,'świętokrzyskie'),('en_US',1031,'warmińsko-mazurskie'),('en_US',1032,'wielkopolskie'),('en_US',1033,'zachodniopomorskie'),('en_US',1034,'Aveiro'),('en_US',1035,'Beja'),('en_US',1036,'Braga'),('en_US',1037,'Bragança'),('en_US',1038,'Castelo Branco'),('en_US',1039,'Coimbra'),('en_US',1040,'Évora'),('en_US',1041,'Faro'),('en_US',1042,'Guarda'),('en_US',1043,'Leiria'),('en_US',1044,'Lisboa'),('en_US',1045,'Portalegre'),('en_US',1046,'Porto'),('en_US',1047,'Santarém'),('en_US',1048,'Setúbal'),('en_US',1049,'Viana do Castelo'),('en_US',1050,'Vila Real'),('en_US',1051,'Viseu'),('en_US',1052,'Região Autónoma dos Açores'),('en_US',1053,'Região Autónoma da Madeira'),('en_US',1054,'Brokopondo'),('en_US',1055,'Commewijne'),('en_US',1056,'Coronie'),('en_US',1057,'Marowijne'),('en_US',1058,'Nickerie'),('en_US',1059,'Para'),('en_US',1060,'Paramaribo'),('en_US',1061,'Saramacca'),('en_US',1062,'Sipaliwini'),('en_US',1063,'Wanica'),('en_US',1064,'Blekinge län'),('en_US',1065,'Dalarnas län'),('en_US',1066,'Gotlands län'),('en_US',1067,'Gävleborgs län'),('en_US',1068,'Hallands län'),('en_US',1069,'Jämtlands län'),('en_US',1070,'Jönköpings län'),('en_US',1071,'Kalmar län'),('en_US',1072,'Kronobergs län'),('en_US',1073,'Norrbottens län'),('en_US',1074,'Skåne län'),('en_US',1075,'Stockholms län'),('en_US',1076,'Södermanlands län'),('en_US',1077,'Uppsala län'),('en_US',1078,'Värmlands län'),('en_US',1079,'Västerbottens län'),('en_US',1080,'Västernorrlands län'),('en_US',1081,'Västmanlands län'),('en_US',1082,'Västra Götalands län'),('en_US',1083,'Örebro län'),('en_US',1084,'Östergötlands län'),('en_US',1085,'Cherkaska oblast'),('en_US',1086,'Chernihivska oblast'),('en_US',1087,'Chernivetska oblast'),('en_US',1088,'Dnipropetrovska oblast'),('en_US',1089,'Donetska oblast'),('en_US',1090,'Ivano-Frankivska oblast'),('en_US',1091,'Kharkivska oblast'),('en_US',1092,'Khersonska oblast'),('en_US',1093,'Khmelnytska oblast'),('en_US',1094,'Kirovohradska oblast'),('en_US',1095,'Kyivska oblast'),('en_US',1096,'Luhanska oblast'),('en_US',1097,'Lvivska oblast'),('en_US',1098,'Mykolaivska oblast'),('en_US',1099,'Odeska oblast'),('en_US',1100,'Poltavska oblast'),('en_US',1101,'Rivnenska oblast'),('en_US',1102,'Sumska oblast'),('en_US',1103,'Ternopilska oblast'),('en_US',1104,'Vinnytska oblast'),('en_US',1105,'Volynska oblast'),('en_US',1106,'Zakarpatska oblast'),('en_US',1107,'Zaporizka oblast'),('en_US',1108,'Zhytomyrska oblast'),('en_US',1109,'Avtonomna Respublika Krym'),('en_US',1110,'Kyiv'),('en_US',1111,'Sevastopol'),('en_US',1112,'Artigas'),('en_US',1113,'Canelones'),('en_US',1114,'Cerro Largo'),('en_US',1115,'Colonia'),('en_US',1116,'Durazno'),('en_US',1117,'Flores'),('en_US',1118,'Florida'),('en_US',1119,'Lavalleja'),('en_US',1120,'Maldonado'),('en_US',1121,'Montevideo'),('en_US',1122,'Paysandu'),('en_US',1123,'Río Negro'),('en_US',1124,'Rivera'),('en_US',1125,'Rocha'),('en_US',1126,'Salto'),('en_US',1127,'San José'),('en_US',1128,'Soriano'),('en_US',1129,'Tacuarembó'),('en_US',1130,'Treinta y Tres'),('en_US',1131,'Dependencias Federales'),('en_US',1132,'Distrito Capital'),('en_US',1133,'Amazonas'),('en_US',1134,'Anzoátegui'),('en_US',1135,'Apure'),('en_US',1136,'Aragua'),('en_US',1137,'Barinas'),('en_US',1138,'Bolívar'),('en_US',1139,'Carabobo'),('en_US',1140,'Cojedes'),('en_US',1141,'Delta Amacuro'),('en_US',1142,'Falcón'),('en_US',1143,'Guárico'),('en_US',1144,'Lara'),('en_US',1145,'Mérida'),('en_US',1146,'Miranda'),('en_US',1147,'Monagas'),('en_US',1148,'Nueva Esparta'),('en_US',1149,'Portuguesa'),('en_US',1150,'Sucre'),('en_US',1151,'Táchira'),('en_US',1152,'Trujillo'),('en_US',1153,'Vargas'),('en_US',1154,'Yaracuy'),('en_US',1155,'Zulia'),('en_US',1156,'Ladakh');
/*!40000 ALTER TABLE `[[dbprefix]]directory_country_region_name` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]directory_currency_rate`
--

DROP TABLE IF EXISTS `[[dbprefix]]directory_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]directory_currency_rate` (
  `currency_from` varchar(3) NOT NULL COMMENT 'Currency Code Convert From',
  `currency_to` varchar(3) NOT NULL COMMENT 'Currency Code Convert To',
  `rate` decimal(24,12) NOT NULL DEFAULT '0.000000000000' COMMENT 'Currency Conversion Rate',
  PRIMARY KEY (`currency_from`,`currency_to`),
  KEY `[[DBPREFIX]]DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Currency Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]directory_currency_rate`
--

LOCK TABLES `[[dbprefix]]directory_currency_rate` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]directory_currency_rate` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]directory_currency_rate` VALUES ('EUR','EUR',1.000000000000),('EUR','USD',1.415000000000),('USD','EUR',0.706700000000),('USD','USD',1.000000000000);
/*!40000 ALTER TABLE `[[dbprefix]]directory_currency_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_link` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order',
  `number_of_downloads` int DEFAULT NULL COMMENT 'Number of downloads',
  `is_shareable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(20) DEFAULT NULL COMMENT 'Link Type',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample Url',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample File',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  PRIMARY KEY (`link_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`),
  CONSTRAINT `[[DBPREFIX]]DL_LNK_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_link`
--

LOCK TABLES `[[dbprefix]]downloadable_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_link_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_link_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_link_price` (
  `price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Price ID',
  `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  PRIMARY KEY (`price_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]DL_LNK_PRICE_LNK_ID_[[DBPREFIX]]DL_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `[[dbprefix]]downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]DL_LNK_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_link_price`
--

LOCK TABLES `[[dbprefix]]downloadable_link_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_link_purchased`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_link_purchased`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_link_purchased` (
  `purchased_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID',
  `order_id` int unsigned DEFAULT '0' COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order Item ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of creation',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of modification',
  `customer_id` int unsigned DEFAULT '0' COMMENT 'Customer ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product name',
  `product_sku` varchar(255) DEFAULT NULL COMMENT 'Product sku',
  `link_section_title` varchar(255) DEFAULT NULL COMMENT 'Link_section_title',
  PRIMARY KEY (`purchased_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `[[DBPREFIX]]DL_LNK_PURCHASED_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]DL_LNK_PURCHASED_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Purchased Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_link_purchased`
--

LOCK TABLES `[[dbprefix]]downloadable_link_purchased` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_purchased` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_purchased` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_link_purchased_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_link_purchased_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_link_purchased_item` (
  `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `purchased_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Purchased ID',
  `order_item_id` int unsigned DEFAULT '0' COMMENT 'Order Item ID',
  `product_id` int unsigned DEFAULT '0' COMMENT 'Product ID',
  `link_hash` varchar(255) DEFAULT NULL COMMENT 'Link hash',
  `number_of_downloads_bought` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads bought',
  `number_of_downloads_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads used',
  `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `link_title` varchar(255) DEFAULT NULL COMMENT 'Link Title',
  `is_shareable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable Flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(255) DEFAULT NULL COMMENT 'Link Type',
  `status` varchar(50) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`item_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`),
  CONSTRAINT `FK_07F839269D095C1309A020A98C1D0EBC` FOREIGN KEY (`order_item_id`) REFERENCES `[[dbprefix]]sales_order_item` (`item_id`) ON DELETE SET NULL,
  CONSTRAINT `FK_ADF74E486D2D7327FFF488CA2748FC1B` FOREIGN KEY (`purchased_id`) REFERENCES `[[dbprefix]]downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Purchased Item Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_link_purchased_item`
--

LOCK TABLES `[[dbprefix]]downloadable_link_purchased_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_purchased_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_purchased_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_link_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_link_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_link_title` (
  `title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]DL_LNK_TTL_LNK_ID_[[DBPREFIX]]DL_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `[[dbprefix]]downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]DOWNLOADABLE_LINK_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Link Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_link_title`
--

LOCK TABLES `[[dbprefix]]downloadable_link_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_link_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_sample`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_sample`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_sample` (
  `sample_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sample ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample URL',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample file',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`sample_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]DL_SAMPLE_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Sample Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_sample`
--

LOCK TABLES `[[dbprefix]]downloadable_sample` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_sample` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_sample` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]downloadable_sample_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]downloadable_sample_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]downloadable_sample_title` (
  `title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `sample_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sample ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `[[DBPREFIX]]DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`),
  KEY `[[DBPREFIX]]DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]DL_SAMPLE_TTL_SAMPLE_ID_[[DBPREFIX]]DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `[[dbprefix]]downloadable_sample` (`sample_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Sample Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]downloadable_sample_title`
--

LOCK TABLES `[[dbprefix]]downloadable_sample_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_sample_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]downloadable_sample_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute` (
  `attribute_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model',
  `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type',
  `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table',
  `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model',
  `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input',
  `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label',
  `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class',
  `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model',
  `is_required` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Required',
  `is_user_defined` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is User Defined',
  `default_value` text COMMENT 'Default Value',
  `is_unique` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Unique',
  `note` varchar(255) DEFAULT NULL COMMENT 'Note',
  PRIMARY KEY (`attribute_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_FRONTEND_INPUT_ENTITY_TYPE_ID_IS_USER_DEFINED` (`frontend_input`,`entity_type_id`,`is_user_defined`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute`
--

LOCK TABLES `[[dbprefix]]eav_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute` VALUES (1,1,'website_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website','static',NULL,NULL,'select','Associate to Website',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Store','static',NULL,NULL,'select','Create In',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'static',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','static',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Date of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password','static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'rp_token',NULL,NULL,'static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(14,1,'rp_token_created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(15,1,'default_billing',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Billing','static',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(16,1,'default_shipping',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Shipping','static',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(17,1,'taxvat',NULL,NULL,'static',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(18,1,'confirmation',NULL,NULL,'static',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(19,1,'created_at',NULL,NULL,'static',NULL,NULL,'date','Created At',NULL,NULL,0,0,NULL,0,NULL),(20,1,'gender',NULL,NULL,'static',NULL,NULL,'select','Gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,0,NULL,0,NULL),(21,1,'disable_auto_group_change','Magento\\Customer\\Model\\Attribute','Magento\\Customer\\Model\\Attribute\\Backend\\Data\\Boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(22,2,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(23,2,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(24,2,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(25,2,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(26,2,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(27,2,'company',NULL,NULL,'static',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(28,2,'street',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\DefaultBackend','static',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(29,2,'city',NULL,NULL,'static',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(30,2,'country_id',NULL,NULL,'static',NULL,NULL,'select','Country',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Country',1,0,NULL,0,NULL),(31,2,'region',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Backend\\Region','static',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(32,2,'region_id',NULL,NULL,'static',NULL,NULL,'hidden','State/Province',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Region',0,0,NULL,0,NULL),(33,2,'postcode',NULL,NULL,'static',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,0,0,NULL,0,NULL),(34,2,'telephone',NULL,NULL,'static',NULL,NULL,'text','Phone Number',NULL,NULL,1,0,NULL,0,NULL),(35,2,'fax',NULL,NULL,'static',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id','Magento\\Customer\\Model\\Attribute',NULL,'static',NULL,NULL,'text','VAT Number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'static',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,1,'updated_at',NULL,NULL,'static',NULL,NULL,'date','Updated At',NULL,NULL,0,0,NULL,0,NULL),(42,1,'failures_num',NULL,NULL,'static',NULL,NULL,'hidden','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(43,1,'first_failure',NULL,NULL,'static',NULL,NULL,'date','First Failure Date',NULL,NULL,0,0,NULL,0,NULL),(44,1,'lock_expires',NULL,NULL,'static',NULL,NULL,'date','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(45,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(46,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,NULL,0,NULL),(47,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(48,3,'image',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(49,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(50,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(51,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(52,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Mode',0,0,NULL,0,NULL),(53,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Page',0,0,NULL,0,NULL),(54,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(55,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(56,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(57,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(59,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(61,3,'custom_design_from','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Active From',NULL,NULL,0,0,NULL,0,NULL),(62,3,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(63,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(64,3,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(65,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(66,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(67,3,'available_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(68,3,'default_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(69,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,'1',0,NULL),(70,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(71,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(72,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(73,4,'name','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute',NULL,'varchar',NULL,NULL,'text','Product Name','validate-length maximum-length-255',NULL,1,0,NULL,0,NULL),(74,4,'sku','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku','static',NULL,NULL,'text','SKU','validate-length maximum-length-64',NULL,1,0,NULL,1,NULL),(75,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(76,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,0,0,NULL,0,NULL),(77,4,'price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(78,4,'special_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(79,4,'special_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(80,4,'special_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(81,4,'cost',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(82,4,'weight',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight','decimal',NULL,NULL,'weight','Weight',NULL,NULL,0,0,NULL,0,NULL),(83,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,NULL,0,NULL),(84,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(85,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(86,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars. Meta Description should optimally be between 150-160 characters'),(87,4,'image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Base',NULL,NULL,0,0,NULL,0,NULL),(88,4,'small_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Small',NULL,NULL,0,0,NULL,0,NULL),(89,4,'thumbnail',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(90,4,'media_gallery',NULL,NULL,'static',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(91,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'tier_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(93,4,'color','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute',NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,'49',0,NULL),(94,4,'news_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'news_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(96,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(97,4,'status',NULL,NULL,'int',NULL,NULL,'select','Enable Product',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status',0,0,'1',0,NULL),(98,4,'minimal_price',NULL,NULL,'decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(99,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'Magento\\Catalog\\Model\\Product\\Visibility',0,0,'4',0,NULL),(100,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','New Theme',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(101,4,'custom_design_from',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(102,4,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(103,4,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Layout Update XML',NULL,NULL,0,0,NULL,0,NULL),(104,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(105,4,'category_ids',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category','static',NULL,NULL,'text','Categories',NULL,NULL,0,0,NULL,0,NULL),(106,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container',0,0,'container2',0,NULL),(107,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(108,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(110,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(111,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(112,4,'created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(113,4,'updated_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(114,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture',0,0,NULL,0,NULL),(115,4,'quantity_and_stock_status',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock','int',NULL,NULL,'select','Quantity',NULL,'Magento\\CatalogInventory\\Model\\Source\\Stock',0,0,'1',0,NULL),(116,4,'custom_layout',NULL,NULL,'varchar',NULL,NULL,'select','New Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(117,4,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(118,3,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(119,3,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(120,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(121,4,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key','validate-trailing-hyphen',NULL,0,0,NULL,0,NULL),(122,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(123,4,'msrp',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimum Advertised Price',NULL,NULL,0,0,NULL,0,NULL),(124,4,'msrp_display_actual_price_type',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price',0,0,'0',0,NULL),(125,4,'price_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Price',NULL,NULL,1,0,'0',0,NULL),(126,4,'sku_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic SKU',NULL,NULL,1,0,'0',0,NULL),(127,4,'weight_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Weight',NULL,NULL,1,0,'0',0,NULL),(128,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View',1,0,NULL,0,NULL),(129,4,'shipment_type',NULL,NULL,'int',NULL,NULL,'select','Ship Bundle Items',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type',1,0,'0',0,NULL),(130,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(131,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(132,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(133,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL),(134,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'Magento\\Tax\\Model\\TaxClass\\Source\\Product',0,0,'2',0,NULL),(135,4,'activity',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Activity',NULL,NULL,0,1,'',0,NULL),(136,4,'style_bags',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Style Bags',NULL,NULL,0,1,'',0,NULL),(137,4,'material',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Material',NULL,NULL,0,1,'',0,NULL),(138,4,'strap_bags',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Strap/Handle',NULL,NULL,0,1,'',0,NULL),(139,4,'features_bags',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Features',NULL,NULL,0,1,'',0,NULL),(140,4,'gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Gender',NULL,NULL,0,1,'',0,NULL),(141,4,'category_gear',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Category Gear',NULL,NULL,0,1,'',0,NULL),(142,4,'size',NULL,NULL,'int',NULL,NULL,'select','Size',NULL,NULL,0,1,'91',0,NULL),(143,4,'eco_collection',NULL,NULL,'int',NULL,NULL,'boolean','Eco Collection',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'',0,NULL),(144,4,'performance_fabric',NULL,NULL,'int',NULL,NULL,'boolean','Performance Fabric',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'',0,NULL),(145,4,'erin_recommends',NULL,NULL,'int',NULL,NULL,'boolean','Erin Recommends',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'',0,NULL),(146,4,'new',NULL,NULL,'int',NULL,NULL,'boolean','New',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'',0,NULL),(147,4,'sale',NULL,NULL,'int',NULL,NULL,'boolean','Sale',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'',0,NULL),(148,4,'gift_message_available',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(149,4,'format',NULL,NULL,'int',NULL,NULL,'select','Format',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(150,4,'style_bottom',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Style Bottom',NULL,NULL,0,1,'',0,NULL),(151,4,'style_general',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Style General',NULL,NULL,0,1,'',0,NULL),(152,4,'sleeve',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Sleeve',NULL,NULL,0,1,'',0,NULL),(153,4,'collar',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Collar',NULL,NULL,0,1,'',0,NULL),(154,4,'pattern',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Pattern',NULL,NULL,0,1,'',0,NULL),(155,4,'climate',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Climate',NULL,NULL,0,1,'',0,NULL),(156,4,'swatch_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Swatch',NULL,NULL,0,0,NULL,0,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_group`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_group` (
  `attribute_group_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `attribute_group_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Group Name',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `default_id` smallint unsigned DEFAULT '0' COMMENT 'Default ID',
  `attribute_group_code` varchar(255) NOT NULL COMMENT 'Attribute Group Code',
  `tab_group_code` varchar(255) DEFAULT NULL COMMENT 'Tab Group Code',
  PRIMARY KEY (`attribute_group_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_GROUP_ATTR_SET_ID_[[DBPREFIX]]EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `[[dbprefix]]eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_group`
--

LOCK TABLES `[[dbprefix]]eav_attribute_group` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_group` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_group` VALUES (1,1,'General',1,1,'general',NULL),(2,2,'General',1,1,'general',NULL),(3,3,'General',10,1,'general',NULL),(4,3,'General Information',2,0,'general-information',NULL),(5,3,'Display Settings',20,0,'display-settings',NULL),(6,3,'Custom Design',30,0,'custom-design',NULL),(7,4,'Product Details',10,1,'product-details','basic'),(8,4,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(9,4,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(10,4,'Images',20,0,'image-management','basic'),(11,4,'Design',50,0,'design','advanced'),(12,4,'Autosettings',60,0,'autosettings','advanced'),(13,4,'Content',15,0,'content','basic'),(14,4,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(15,4,'Bundle Items',16,0,'bundle-items',NULL),(16,5,'General',1,1,'general',NULL),(17,6,'General',1,1,'general',NULL),(18,7,'General',1,1,'general',NULL),(19,8,'General',1,1,'general',NULL),(20,9,'Autosettings',60,0,'autosettings','advanced'),(21,9,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(22,9,'Design',50,0,'design','advanced'),(23,9,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(24,9,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(25,9,'Images',20,0,'image-management','basic'),(26,9,'Bundle Items',16,0,'bundle-items',NULL),(27,9,'Content',15,0,'content','basic'),(28,9,'Product Details',10,1,'product-details','basic'),(29,10,'Autosettings',60,0,'autosettings','advanced'),(30,10,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(31,10,'Design',50,0,'design','advanced'),(32,10,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(33,10,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(34,10,'Images',20,0,'image-management','basic'),(35,10,'Bundle Items',16,0,'bundle-items',NULL),(36,10,'Content',15,0,'content','basic'),(37,10,'Product Details',10,1,'product-details','basic'),(38,11,'Autosettings',60,0,'autosettings','advanced'),(39,11,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(40,11,'Design',50,0,'design','advanced'),(41,11,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(42,11,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(43,11,'Images',20,0,'image-management','basic'),(44,11,'Bundle Items',16,0,'bundle-items',NULL),(45,11,'Content',15,0,'content','basic'),(46,11,'Product Details',10,1,'product-details','basic'),(47,12,'Autosettings',60,0,'autosettings','advanced'),(48,12,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(49,12,'Design',50,0,'design','advanced'),(50,12,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(51,12,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(52,12,'Images',20,0,'image-management','basic'),(53,12,'Bundle Items',16,0,'bundle-items',NULL),(54,12,'Content',15,0,'content','basic'),(55,12,'Product Details',10,1,'product-details','basic'),(56,13,'Autosettings',60,0,'autosettings','advanced'),(57,13,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(58,13,'Design',50,0,'design','advanced'),(59,13,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(60,13,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(61,13,'Images',20,0,'image-management','basic'),(62,13,'Bundle Items',16,0,'bundle-items',NULL),(63,13,'Content',15,0,'content','basic'),(64,13,'Product Details',10,1,'product-details','basic'),(65,14,'Autosettings',60,0,'autosettings','advanced'),(66,14,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(67,14,'Design',50,0,'design','advanced'),(68,14,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(69,14,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(70,14,'Images',20,0,'image-management','basic'),(71,14,'Bundle Items',16,0,'bundle-items',NULL),(72,14,'Content',15,0,'content','basic'),(73,14,'Product Details',10,1,'product-details','basic'),(74,15,'Autosettings',60,0,'autosettings','advanced'),(75,15,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(76,15,'Design',50,0,'design','advanced'),(77,15,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(78,15,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(79,15,'Images',20,0,'image-management','basic'),(80,15,'Bundle Items',16,0,'bundle-items',NULL),(81,15,'Content',15,0,'content','basic'),(82,15,'Product Details',10,1,'product-details','basic'),(83,15,'Gift Options',61,0,'gift-options',NULL),(84,10,'Gift Options',61,0,'gift-options',NULL),(85,4,'Gift Options',61,0,'gift-options',NULL),(86,14,'Gift Options',61,0,'gift-options',NULL),(87,11,'Gift Options',61,0,'gift-options',NULL),(88,12,'Gift Options',61,0,'gift-options',NULL),(89,13,'Gift Options',61,0,'gift-options',NULL),(90,9,'Gift Options',61,0,'gift-options',NULL);
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_label`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_label` (
  `attribute_label_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`attribute_label_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_LBL_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ATTRIBUTE_LABEL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_label`
--

LOCK TABLES `[[dbprefix]]eav_attribute_label` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_label` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_label` VALUES (2,136,1,'Style'),(6,141,1,'Category'),(11,150,1,'Style'),(13,151,1,'Style'),(17,142,1,'Size');
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_OPT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_option`
--

LOCK TABLES `[[dbprefix]]eav_attribute_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_option` VALUES (1,20,0),(2,20,1),(3,20,3),(4,135,0),(5,135,1),(6,135,2),(7,135,3),(8,135,4),(9,135,5),(10,135,6),(11,135,7),(12,135,8),(13,135,9),(14,135,10),(15,135,11),(16,135,12),(17,135,13),(18,135,14),(19,135,15),(20,135,16),(21,135,17),(22,135,18),(23,135,19),(24,136,0),(25,136,1),(26,136,2),(27,136,3),(28,136,4),(29,136,5),(30,136,6),(31,137,0),(32,137,1),(33,137,2),(34,137,3),(35,137,4),(36,137,5),(37,137,6),(38,137,7),(39,137,8),(40,137,9),(41,137,10),(42,137,11),(43,137,12),(44,137,13),(45,137,14),(46,137,15),(47,137,16),(48,137,17),(49,93,0),(50,93,1),(51,93,2),(52,93,3),(53,93,4),(54,93,5),(55,93,6),(56,93,7),(57,93,8),(58,93,9),(59,93,10),(60,93,11),(61,138,0),(62,138,1),(63,138,2),(64,138,3),(65,138,4),(66,138,5),(67,138,6),(68,138,7),(69,139,0),(70,139,1),(71,139,2),(72,139,3),(73,139,4),(74,139,5),(75,139,6),(76,139,7),(77,139,8),(78,139,9),(79,139,10),(80,140,0),(81,140,1),(82,140,2),(83,140,3),(84,140,4),(85,141,0),(86,141,1),(87,141,2),(88,141,3),(89,141,4),(90,141,5),(91,142,0),(92,142,2),(93,142,4),(94,142,6),(95,142,8),(96,142,10),(97,143,0),(98,144,0),(99,145,0),(100,146,0),(101,147,0),(102,149,0),(103,149,1),(104,150,0),(105,150,1),(106,150,2),(107,150,3),(108,150,4),(109,150,5),(110,150,6),(111,150,7),(112,150,8),(113,150,9),(114,150,10),(115,150,11),(116,151,0),(117,151,1),(118,151,2),(119,151,3),(120,151,4),(121,151,5),(122,151,6),(123,151,7),(124,151,8),(125,151,9),(126,151,10),(127,151,11),(128,151,12),(129,151,13),(130,151,14),(131,151,15),(132,151,16),(133,151,17),(134,151,18),(135,151,19),(136,151,20),(137,151,21),(138,151,22),(139,151,23),(140,151,24),(141,151,25),(142,137,0),(143,137,1),(144,137,2),(145,137,3),(146,137,4),(147,137,5),(148,137,6),(149,137,7),(150,137,8),(151,137,9),(152,137,10),(153,137,11),(154,137,12),(155,137,13),(156,137,14),(157,137,15),(158,137,16),(159,137,17),(160,152,0),(161,152,1),(162,152,2),(163,152,3),(164,152,4),(165,152,5),(166,142,1),(167,142,3),(168,142,5),(169,142,7),(170,142,9),(171,142,11),(172,142,12),(173,142,13),(174,142,14),(175,142,15),(176,142,16),(177,142,17),(178,142,18),(179,142,19),(180,153,0),(181,153,1),(182,153,2),(183,153,3),(184,153,4),(185,153,5),(186,153,6),(187,153,7),(188,153,8),(189,153,9),(190,153,10),(191,153,11),(192,154,0),(193,154,1),(194,154,2),(195,154,3),(196,154,4),(197,154,5),(198,154,6),(199,154,7),(200,154,8),(201,155,0),(202,155,1),(203,155,2),(204,155,3),(205,155,4),(206,155,5),(207,155,6),(208,155,7),(209,155,8),(210,155,9),(211,155,10);
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_option_swatch`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_option_swatch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_option_swatch` (
  `swatch_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID',
  `option_id` int unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `type` smallint unsigned NOT NULL COMMENT 'Swatch type: 0 - text, 1 - visual color, 2 - visual image',
  `value` varchar(255) DEFAULT NULL COMMENT 'Swatch Value',
  PRIMARY KEY (`swatch_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`),
  KEY `[[DBPREFIX]]EAV_ATTR_OPT_SWATCH_OPT_ID_[[DBPREFIX]]EAV_ATTR_OPT_OPT_ID` (`option_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_OPT_SWATCH_OPT_ID_[[DBPREFIX]]EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]eav_attribute_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb3 COMMENT='Magento Swatches table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_option_swatch`
--

LOCK TABLES `[[dbprefix]]eav_attribute_option_swatch` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option_swatch` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_option_swatch` VALUES (1,49,0,1,'#000000'),(2,50,0,1,'#1857f7'),(3,51,0,1,'#945454'),(4,52,0,1,'#8f8f8f'),(5,53,0,1,'#53a828'),(6,54,0,1,'#ce64d4'),(7,55,0,1,'#ffffff'),(8,56,0,1,'#eb6703'),(9,57,0,1,'#ef3dff'),(10,58,0,1,'#ff0000'),(11,59,0,1,'#ffffff'),(12,60,0,1,'#ffd500'),(13,91,0,0,'55 cm'),(14,91,1,0,'55 cm'),(15,166,0,0,'XS'),(16,166,1,0,'XS'),(17,92,0,0,'65 cm'),(18,92,1,0,'65 cm'),(19,167,0,0,'S'),(20,167,1,0,'S'),(21,93,0,0,'75 cm'),(22,93,1,0,'75 cm'),(23,168,0,0,'M'),(24,168,1,0,'M'),(25,94,0,0,'6 foot'),(26,94,1,0,'6 foot'),(27,169,0,0,'L'),(28,169,1,0,'L'),(29,95,0,0,'8 foot'),(30,95,1,0,'8 foot'),(31,170,0,0,'XL'),(32,170,1,0,'XL'),(33,96,0,0,'10 foot'),(34,96,1,0,'10 foot'),(35,171,0,0,'28'),(36,171,1,0,'28'),(37,172,0,0,'29'),(38,172,1,0,'29'),(39,173,0,0,'30'),(40,173,1,0,'30'),(41,174,0,0,'31'),(42,174,1,0,'31'),(43,175,0,0,'32'),(44,175,1,0,'32'),(45,176,0,0,'33'),(46,176,1,0,'33'),(47,177,0,0,'34'),(48,177,1,0,'34'),(49,178,0,0,'36'),(50,178,1,0,'36'),(51,179,0,0,'38'),(52,179,1,0,'38');
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option_swatch` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_option_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_option_value` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_OPT_VAL_OPT_ID_[[DBPREFIX]]EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]eav_attribute_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=239 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_option_value`
--

LOCK TABLES `[[dbprefix]]eav_attribute_option_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option_value` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(3,3,0,'Not Specified'),(4,4,0,'Hike'),(5,5,0,'Outdoor'),(6,6,0,'Running'),(7,7,0,'Warmup'),(8,8,0,'Yoga'),(9,9,0,'Recreation'),(10,10,0,'Lounge'),(11,11,0,'Gym'),(12,12,0,'Climbing'),(13,13,0,'Crosstraining'),(14,14,0,'Post-workout'),(15,15,0,'Cycling'),(16,16,0,'Athletic'),(17,17,0,'Sports'),(18,18,0,'Hiking'),(19,19,0,'Overnight'),(20,20,0,'School'),(21,21,0,'Trail'),(22,22,0,'Travel'),(23,23,0,'Urban'),(24,24,0,'Backpack'),(25,25,0,'Luggage'),(26,26,0,'Duffel'),(27,27,0,'Messenger'),(28,28,0,'Laptop'),(29,29,0,'Exercise'),(30,30,0,'Tote'),(31,31,0,'Burlap'),(32,32,0,'Canvas'),(33,33,0,'Cotton'),(34,34,0,'Faux Leather'),(35,35,0,'Leather'),(36,36,0,'Mesh'),(37,37,0,'Nylon'),(38,38,0,'Polyester'),(39,39,0,'Rayon'),(40,40,0,'Ripstop'),(41,41,0,'Suede'),(42,42,0,'Foam'),(43,43,0,'Metal'),(44,44,0,'Plastic'),(45,45,0,'Rubber'),(46,46,0,'Synthetic'),(47,47,0,'Stainless Steel'),(48,48,0,'Silicone'),(61,61,0,'Adjustable'),(62,62,0,'Cross Body'),(63,63,0,'Detachable'),(64,64,0,'Double'),(65,65,0,'Padded'),(66,66,0,'Shoulder'),(67,67,0,'Single'),(68,68,0,'Telescoping'),(69,69,0,'Audio Pocket'),(70,70,0,'Wheeled'),(71,71,0,'Hydration Pocket'),(72,72,0,'Audio Pocket'),(73,73,0,'Flapover'),(74,74,0,'Waterproof'),(75,75,0,'Lightweight'),(76,76,0,'TSA Approved'),(77,77,0,'Reflective'),(78,78,0,'Laptop Sleeve'),(79,79,0,'Lockable'),(80,80,0,'Men'),(81,81,0,'Women'),(82,82,0,'Boys'),(83,83,0,'Girls'),(84,84,0,'Unisex'),(85,85,0,'Cardio'),(86,86,0,'Electronic'),(87,87,0,'Exercise'),(88,88,0,'Fashion'),(89,89,0,'Hydration'),(90,90,0,'Timepiece'),(97,102,0,'Download'),(98,103,0,'DVD'),(99,104,0,'Base Layer'),(100,105,0,'Basic'),(101,106,0,'Capri'),(102,107,0,'Compression'),(103,108,0,'Leggings'),(104,109,0,'Parachute'),(105,110,0,'Skort'),(106,111,0,'Snug'),(107,112,0,'Sweatpants'),(108,113,0,'Tights'),(109,114,0,'Track Pants'),(110,115,0,'Workout Pants'),(111,116,0,'Insulated'),(112,117,0,'Jacket'),(113,118,0,'Vest'),(114,119,0,'Lightweight'),(115,120,0,'Hooded'),(116,121,0,'Heavy Duty'),(117,122,0,'Rain Coat'),(118,123,0,'Hard Shell'),(119,124,0,'Soft Shell'),(120,125,0,'Windbreaker'),(121,126,0,'&frac12; zip'),(122,127,0,'&frac14; zip'),(123,128,0,'Full Zip'),(124,129,0,'Reversible'),(125,130,0,'Bra'),(126,131,0,'Hoodie'),(127,132,0,'Sweatshirt'),(128,133,0,'Polo'),(129,134,0,'Tank'),(130,135,0,'Tee'),(131,136,0,'Pullover'),(132,137,0,'Hoodie'),(133,138,0,'Cardigan'),(134,139,0,'Henley'),(135,140,0,'Tunic'),(136,141,0,'Camisole'),(137,142,0,'Cocona&reg; performance fabric'),(138,143,0,'Wool'),(139,144,0,'Fleece'),(140,145,0,'Hemp'),(141,146,0,'Jersey'),(142,147,0,'LumaTech&trade;'),(143,148,0,'Lycra&reg;'),(144,149,0,'Microfiber'),(145,150,0,'Spandex'),(146,151,0,'HeatTec&reg;'),(147,152,0,'EverCool&trade;'),(148,153,0,'Organic Cotton'),(149,154,0,'TENCEL'),(150,155,0,'CoolTech&trade;'),(151,156,0,'Khaki'),(152,157,0,'Linen'),(153,158,0,'Wool'),(154,159,0,'Terry'),(155,160,0,'Sleeve'),(156,161,0,'Long-Sleeve'),(157,162,0,'Short-Sleeve'),(158,163,0,'Sleeveless'),(159,164,0,'Tank'),(160,165,0,'Strap'),(175,180,0,'N/A'),(176,181,0,'? zip'),(177,182,0,'Boat Neck'),(178,183,0,'Crew'),(179,184,0,'Full zip'),(180,185,0,'V-neck'),(181,186,0,'Ballet'),(182,187,0,'Scoop'),(183,188,0,'High Collar'),(184,189,0,'Stand Collar'),(185,190,0,'Roll Neck'),(186,191,0,'Square Neck'),(187,192,0,'Color-Blocked'),(188,193,0,'Checked'),(189,194,0,'Color-Blocked'),(190,195,0,'Graphic Print'),(191,196,0,'Solid'),(192,197,0,'Solid-Highlight'),(193,198,0,'Striped'),(194,199,0,'Camo'),(195,200,0,'Geometric'),(196,201,0,'All-Weather'),(197,202,0,'Cold'),(198,203,0,'Cool'),(199,204,0,'Indoor'),(200,205,0,'Mild'),(201,206,0,'Rainy'),(202,207,0,'Spring'),(203,208,0,'Warm'),(204,209,0,'Windy'),(205,210,0,'Wintry'),(206,211,0,'Hot'),(207,49,0,'Black'),(208,50,0,'Blue'),(209,51,0,'Brown'),(210,52,0,'Gray'),(211,53,0,'Green'),(212,54,0,'Lavender'),(213,55,0,'Multi'),(214,56,0,'Orange'),(215,57,0,'Purple'),(216,58,0,'Red'),(217,59,0,'White'),(218,60,0,'Yellow'),(219,91,0,'55 cm'),(220,166,0,'XS'),(221,92,0,'65 cm'),(222,167,0,'S'),(223,93,0,'75 cm'),(224,168,0,'M'),(225,94,0,'6 foot'),(226,169,0,'L'),(227,95,0,'8 foot'),(228,170,0,'XL'),(229,96,0,'10 foot'),(230,171,0,'28'),(231,172,0,'29'),(232,173,0,'30'),(233,174,0,'31'),(234,175,0,'32'),(235,176,0,'33'),(236,177,0,'34'),(237,178,0,'36'),(238,179,0,'38');
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_attribute_set`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_attribute_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_attribute_set` (
  `attribute_set_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_set_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Set Name',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`attribute_set_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`),
  KEY `[[DBPREFIX]]EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`),
  CONSTRAINT `[[DBPREFIX]]EAV_ATTR_SET_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Set';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_attribute_set`
--

LOCK TABLES `[[dbprefix]]eav_attribute_set` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_set` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_attribute_set` VALUES (1,1,'Default',2),(2,2,'Default',2),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1),(9,4,'Top',0),(10,4,'Bottom',0),(11,4,'Gear',0),(12,4,'Sprite Stasis Ball',0),(13,4,'Sprite Yoga Strap',0),(14,4,'Downloadable',0),(15,4,'Bag',0);
/*!40000 ALTER TABLE `[[dbprefix]]eav_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Entity Active',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity`
--

LOCK TABLES `[[dbprefix]]eav_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_attribute` (
  `entity_attribute_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `attribute_group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Group ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`entity_attribute_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  KEY `[[DBPREFIX]]EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `FK_1115138DDD4AFF87EE34DF54F16A113E` FOREIGN KEY (`attribute_group_id`) REFERENCES `[[dbprefix]]eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=676 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_attribute`
--

LOCK TABLES `[[dbprefix]]eav_entity_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,20),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,81),(13,1,1,1,13,115),(14,1,1,1,14,120),(15,1,1,1,15,82),(16,1,1,1,16,83),(17,1,1,1,17,100),(18,1,1,1,18,0),(19,1,1,1,19,0),(20,1,1,1,20,110),(21,1,1,1,21,28),(22,2,2,2,22,10),(23,2,2,2,23,20),(24,2,2,2,24,30),(25,2,2,2,25,40),(26,2,2,2,26,50),(27,2,2,2,27,60),(28,2,2,2,28,70),(29,2,2,2,29,100),(30,2,2,2,30,80),(31,2,2,2,31,90),(32,2,2,2,32,90),(33,2,2,2,33,110),(34,2,2,2,34,120),(35,2,2,2,35,130),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,1,1,1,41,87),(42,1,1,1,42,100),(43,1,1,1,43,110),(44,1,1,1,44,120),(45,3,3,4,45,1),(46,3,3,4,46,2),(47,3,3,4,47,4),(48,3,3,4,48,5),(49,3,3,4,49,6),(50,3,3,4,50,7),(51,3,3,4,51,8),(52,3,3,5,52,10),(53,3,3,5,53,20),(54,3,3,5,54,30),(55,3,3,4,55,12),(56,3,3,4,56,13),(57,3,3,4,57,14),(58,3,3,4,58,15),(59,3,3,4,59,16),(60,3,3,6,60,10),(61,3,3,6,61,30),(62,3,3,6,62,40),(63,3,3,6,63,50),(64,3,3,6,64,60),(65,3,3,4,65,24),(66,3,3,4,66,25),(67,3,3,5,67,40),(68,3,3,5,68,50),(69,3,3,4,69,10),(70,3,3,6,70,5),(71,3,3,6,71,6),(72,3,3,5,72,51),(73,4,4,7,73,10),(74,4,4,7,74,20),(75,4,4,13,75,110),(76,4,4,13,76,100),(77,4,4,7,77,30),(78,4,4,8,78,3),(79,4,4,8,79,4),(80,4,4,8,80,5),(81,4,4,8,81,6),(82,4,4,7,82,70),(83,4,4,9,84,20),(84,4,4,9,85,30),(85,4,4,9,86,40),(86,4,4,10,87,1),(87,4,4,10,88,2),(88,4,4,10,89,3),(89,4,4,10,90,4),(90,4,4,7,91,6),(91,4,4,8,92,7),(92,4,4,7,94,90),(93,4,4,7,95,100),(94,4,4,10,96,5),(95,4,4,7,97,5),(96,4,4,8,98,8),(97,4,4,7,99,80),(98,4,4,14,100,40),(99,4,4,14,101,20),(100,4,4,14,102,30),(101,4,4,11,103,10),(102,4,4,11,104,5),(103,4,4,7,105,80),(104,4,4,11,106,6),(105,4,4,7,107,14),(106,4,4,7,108,15),(107,4,4,7,109,16),(108,4,4,7,110,17),(109,4,4,7,111,18),(110,4,4,7,112,19),(111,4,4,7,113,20),(112,4,4,7,114,110),(113,4,4,7,115,60),(114,4,4,14,116,50),(115,4,4,11,117,51),(116,3,3,6,118,51),(117,3,3,4,119,3),(118,3,3,4,120,17),(119,4,4,9,121,10),(120,4,4,7,122,11),(121,4,4,8,123,9),(122,4,4,8,124,10),(123,4,4,7,125,31),(124,4,4,7,126,21),(125,4,4,7,127,71),(126,4,4,8,128,11),(127,4,4,15,129,1),(128,4,4,7,130,111),(129,4,4,7,131,112),(130,4,4,7,132,113),(131,4,4,7,133,114),(132,4,4,7,134,40),(133,4,9,21,101,20),(134,4,9,21,102,30),(135,4,9,21,100,40),(136,4,9,21,116,50),(137,4,9,22,104,5),(138,4,9,22,106,6),(139,4,9,22,103,10),(140,4,9,22,117,51),(141,4,9,23,78,3),(142,4,9,23,79,4),(143,4,9,23,80,5),(144,4,9,23,81,6),(145,4,9,23,92,7),(146,4,9,23,98,8),(147,4,9,23,123,9),(148,4,9,23,124,10),(149,4,9,23,128,11),(150,4,9,24,121,10),(151,4,9,24,84,20),(152,4,9,24,85,30),(153,4,9,24,86,40),(154,4,9,25,87,1),(155,4,9,25,88,2),(156,4,9,25,89,3),(157,4,9,25,90,4),(158,4,9,25,96,5),(159,4,9,26,129,1),(160,4,9,27,76,100),(161,4,9,27,75,110),(162,4,9,28,97,5),(163,4,9,28,91,6),(164,4,9,28,73,10),(165,4,9,28,122,11),(166,4,9,28,107,14),(167,4,9,28,108,15),(168,4,9,28,109,16),(169,4,9,28,110,17),(170,4,9,28,111,18),(171,4,9,28,112,19),(172,4,9,28,74,20),(173,4,9,28,113,20),(174,4,9,28,126,21),(175,4,9,28,77,30),(176,4,9,28,125,31),(177,4,9,28,134,40),(178,4,9,28,115,60),(179,4,9,28,82,70),(180,4,9,28,127,71),(181,4,9,28,105,80),(182,4,9,28,99,80),(183,4,9,28,94,90),(184,4,9,28,95,100),(185,4,9,28,114,110),(186,4,9,28,130,111),(187,4,9,28,131,112),(188,4,9,28,132,113),(189,4,9,28,133,114),(191,4,9,28,135,1000),(192,4,10,30,101,20),(193,4,10,30,102,30),(194,4,10,30,100,40),(195,4,10,30,116,50),(196,4,10,31,104,5),(197,4,10,31,106,6),(198,4,10,31,103,10),(199,4,10,31,117,51),(200,4,10,32,78,3),(201,4,10,32,79,4),(202,4,10,32,80,5),(203,4,10,32,81,6),(204,4,10,32,92,7),(205,4,10,32,98,8),(206,4,10,32,123,9),(207,4,10,32,124,10),(208,4,10,32,128,11),(209,4,10,33,121,10),(210,4,10,33,84,20),(211,4,10,33,85,30),(212,4,10,33,86,40),(213,4,10,34,87,1),(214,4,10,34,88,2),(215,4,10,34,89,3),(216,4,10,34,90,4),(217,4,10,34,96,5),(218,4,10,35,129,1),(219,4,10,36,76,100),(220,4,10,36,75,110),(221,4,10,37,97,5),(222,4,10,37,91,6),(223,4,10,37,73,10),(224,4,10,37,122,11),(225,4,10,37,107,14),(226,4,10,37,108,15),(227,4,10,37,109,16),(228,4,10,37,110,17),(229,4,10,37,111,18),(230,4,10,37,112,19),(232,4,10,37,113,20),(233,4,10,37,126,21),(234,4,10,37,77,30),(235,4,10,37,125,31),(236,4,10,37,134,40),(237,4,10,37,115,60),(238,4,10,37,82,70),(239,4,10,37,127,71),(240,4,10,37,105,80),(241,4,10,37,99,80),(242,4,10,37,94,90),(243,4,10,37,95,100),(244,4,10,37,114,110),(245,4,10,37,130,111),(246,4,10,37,131,112),(247,4,10,37,132,113),(248,4,10,37,133,114),(250,4,10,37,135,1001),(251,4,11,39,101,20),(252,4,11,39,102,30),(253,4,11,39,100,40),(254,4,11,39,116,50),(255,4,11,40,104,5),(256,4,11,40,106,6),(257,4,11,40,103,10),(258,4,11,40,117,51),(259,4,11,41,78,3),(260,4,11,41,79,4),(261,4,11,41,80,5),(262,4,11,41,81,6),(263,4,11,41,92,7),(264,4,11,41,98,8),(265,4,11,41,123,9),(266,4,11,41,124,10),(267,4,11,41,128,11),(268,4,11,42,121,10),(269,4,11,42,84,20),(270,4,11,42,85,30),(271,4,11,42,86,40),(272,4,11,43,87,1),(273,4,11,43,88,2),(274,4,11,43,89,3),(275,4,11,43,90,4),(276,4,11,43,96,5),(277,4,11,44,129,1),(278,4,11,45,76,100),(279,4,11,45,75,110),(280,4,11,46,97,5),(281,4,11,46,91,6),(282,4,11,46,73,10),(283,4,11,46,122,11),(284,4,11,46,107,14),(285,4,11,46,108,15),(286,4,11,46,109,16),(287,4,11,46,110,17),(288,4,11,46,111,18),(289,4,11,46,112,19),(290,4,11,46,74,20),(291,4,11,46,113,20),(292,4,11,46,126,21),(293,4,11,46,77,30),(294,4,11,46,125,31),(295,4,11,46,134,40),(296,4,11,46,115,60),(297,4,11,46,82,70),(298,4,11,46,127,71),(299,4,11,46,105,80),(300,4,11,46,99,80),(301,4,11,46,94,90),(302,4,11,46,95,100),(303,4,11,46,114,110),(304,4,11,46,130,111),(305,4,11,46,131,112),(306,4,11,46,132,113),(307,4,11,46,133,114),(309,4,11,46,135,1002),(310,4,12,48,101,20),(311,4,12,48,102,30),(312,4,12,48,100,40),(313,4,12,48,116,50),(314,4,12,49,104,5),(315,4,12,49,106,6),(316,4,12,49,103,10),(317,4,12,49,117,51),(318,4,12,50,78,3),(319,4,12,50,79,4),(320,4,12,50,80,5),(321,4,12,50,81,6),(322,4,12,50,92,7),(323,4,12,50,98,8),(324,4,12,50,123,9),(325,4,12,50,124,10),(326,4,12,50,128,11),(327,4,12,51,121,10),(328,4,12,51,84,20),(329,4,12,51,85,30),(330,4,12,51,86,40),(331,4,12,52,87,1),(332,4,12,52,88,2),(333,4,12,52,89,3),(334,4,12,52,90,4),(335,4,12,52,96,5),(336,4,12,53,129,1),(337,4,12,54,76,100),(338,4,12,54,75,110),(339,4,12,55,97,5),(340,4,12,55,91,6),(341,4,12,55,73,10),(342,4,12,55,122,11),(343,4,12,55,107,14),(344,4,12,55,108,15),(345,4,12,55,109,16),(346,4,12,55,110,17),(347,4,12,55,111,18),(348,4,12,55,112,19),(349,4,12,55,74,20),(350,4,12,55,113,20),(351,4,12,55,126,21),(352,4,12,55,77,30),(353,4,12,55,125,31),(354,4,12,55,134,40),(355,4,12,55,115,60),(356,4,12,55,82,70),(357,4,12,55,127,71),(358,4,12,55,105,80),(359,4,12,55,99,80),(360,4,12,55,94,90),(361,4,12,55,95,100),(362,4,12,55,114,110),(363,4,12,55,130,111),(364,4,12,55,131,112),(365,4,12,55,132,113),(366,4,12,55,133,114),(368,4,12,55,135,1003),(369,4,13,57,101,20),(370,4,13,57,102,30),(371,4,13,57,100,40),(372,4,13,57,116,50),(373,4,13,58,104,5),(374,4,13,58,106,6),(375,4,13,58,103,10),(376,4,13,58,117,51),(377,4,13,59,78,3),(378,4,13,59,79,4),(379,4,13,59,80,5),(380,4,13,59,81,6),(381,4,13,59,92,7),(382,4,13,59,98,8),(383,4,13,59,123,9),(384,4,13,59,124,10),(385,4,13,59,128,11),(386,4,13,60,121,10),(387,4,13,60,84,20),(388,4,13,60,85,30),(389,4,13,60,86,40),(390,4,13,61,87,1),(391,4,13,61,88,2),(392,4,13,61,89,3),(393,4,13,61,90,4),(394,4,13,61,96,5),(395,4,13,62,129,1),(396,4,13,63,76,100),(397,4,13,63,75,110),(398,4,13,64,97,5),(399,4,13,64,91,6),(400,4,13,64,73,10),(401,4,13,64,122,11),(402,4,13,64,107,14),(403,4,13,64,108,15),(404,4,13,64,109,16),(405,4,13,64,110,17),(406,4,13,64,111,18),(407,4,13,64,112,19),(408,4,13,64,74,20),(409,4,13,64,113,20),(410,4,13,64,126,21),(411,4,13,64,77,30),(412,4,13,64,125,31),(413,4,13,64,134,40),(414,4,13,64,115,60),(415,4,13,64,82,70),(416,4,13,64,127,71),(417,4,13,64,105,80),(418,4,13,64,99,80),(419,4,13,64,94,90),(420,4,13,64,95,100),(421,4,13,64,114,110),(422,4,13,64,130,111),(423,4,13,64,131,112),(424,4,13,64,132,113),(425,4,13,64,133,114),(427,4,13,64,135,1004),(428,4,14,66,101,20),(429,4,14,66,102,30),(430,4,14,66,100,40),(431,4,14,66,116,50),(432,4,14,67,104,5),(433,4,14,67,106,6),(434,4,14,67,103,10),(435,4,14,67,117,51),(436,4,14,68,78,3),(437,4,14,68,79,4),(438,4,14,68,80,5),(439,4,14,68,81,6),(440,4,14,68,92,7),(441,4,14,68,98,8),(442,4,14,68,123,9),(443,4,14,68,124,10),(444,4,14,68,128,11),(445,4,14,69,121,10),(446,4,14,69,84,20),(447,4,14,69,85,30),(448,4,14,69,86,40),(449,4,14,70,87,1),(450,4,14,70,88,2),(451,4,14,70,89,3),(452,4,14,70,90,4),(453,4,14,70,96,5),(454,4,14,71,129,1),(455,4,14,72,76,100),(456,4,14,72,75,110),(457,4,14,73,97,5),(458,4,14,73,91,6),(459,4,14,73,73,10),(460,4,14,73,122,11),(461,4,14,73,107,14),(462,4,14,73,108,15),(463,4,14,73,109,16),(464,4,14,73,110,17),(465,4,14,73,111,18),(466,4,14,73,112,19),(467,4,14,73,74,20),(468,4,14,73,113,20),(469,4,14,73,126,21),(470,4,14,73,77,30),(471,4,14,73,125,31),(472,4,14,73,134,40),(473,4,14,73,115,60),(474,4,14,73,82,70),(475,4,14,73,127,71),(476,4,14,73,105,80),(477,4,14,73,99,80),(478,4,14,73,94,90),(479,4,14,73,95,100),(480,4,14,73,114,110),(481,4,14,73,130,111),(482,4,14,73,131,112),(483,4,14,73,132,113),(484,4,14,73,133,114),(486,4,14,73,135,1005),(487,4,15,75,101,20),(488,4,15,75,102,30),(489,4,15,75,100,40),(490,4,15,75,116,50),(491,4,15,76,104,5),(492,4,15,76,106,6),(493,4,15,76,103,10),(494,4,15,76,117,51),(495,4,15,77,78,3),(496,4,15,77,79,4),(497,4,15,77,80,5),(498,4,15,77,81,6),(499,4,15,77,92,7),(500,4,15,77,98,8),(501,4,15,77,123,9),(502,4,15,77,124,10),(503,4,15,77,128,11),(504,4,15,78,121,10),(505,4,15,78,84,20),(506,4,15,78,85,30),(507,4,15,78,86,40),(508,4,15,79,87,1),(509,4,15,79,88,2),(510,4,15,79,89,3),(511,4,15,79,90,4),(512,4,15,79,96,5),(513,4,15,80,129,1),(514,4,15,81,76,100),(515,4,15,81,75,110),(516,4,15,82,97,5),(517,4,15,82,91,6),(518,4,15,82,73,10),(519,4,15,82,122,11),(520,4,15,82,107,14),(521,4,15,82,108,15),(522,4,15,82,109,16),(523,4,15,82,110,17),(524,4,15,82,111,18),(525,4,15,82,112,19),(526,4,15,82,74,20),(527,4,15,82,113,20),(528,4,15,82,126,21),(529,4,15,82,77,30),(530,4,15,82,125,31),(531,4,15,82,134,40),(532,4,15,82,115,60),(533,4,15,82,82,70),(534,4,15,82,127,71),(535,4,15,82,105,80),(536,4,15,82,99,80),(537,4,15,82,94,90),(538,4,15,82,95,100),(539,4,15,82,114,110),(540,4,15,82,130,111),(541,4,15,82,131,112),(542,4,15,82,132,113),(543,4,15,82,133,114),(545,4,15,82,135,1006),(547,4,15,82,136,1007),(549,4,11,46,137,1008),(551,4,12,55,137,1009),(553,4,13,64,137,1010),(559,4,15,82,137,1013),(561,4,9,28,93,1014),(563,4,10,37,93,1015),(565,4,15,82,93,1016),(567,4,11,46,93,1017),(569,4,12,55,93,1018),(571,4,13,64,93,1019),(573,4,15,82,138,1020),(575,4,15,82,139,1021),(577,4,11,46,140,1022),(579,4,12,55,140,1023),(581,4,13,64,140,1024),(583,4,11,46,141,1025),(585,4,12,55,141,1026),(587,4,13,64,141,1027),(589,4,12,55,142,1028),(591,4,13,64,142,1029),(593,4,11,46,143,1030),(595,4,15,82,143,1031),(597,4,9,28,143,1032),(599,4,10,37,143,1033),(601,4,11,46,144,1034),(603,4,15,82,144,1035),(605,4,9,28,144,1036),(607,4,10,37,144,1037),(609,4,11,46,145,1038),(611,4,15,82,145,1039),(613,4,9,28,145,1040),(615,4,10,37,145,1041),(617,4,11,46,146,1042),(619,4,15,82,146,1043),(621,4,9,28,146,1044),(623,4,10,37,146,1045),(625,4,11,46,147,1046),(627,4,15,82,147,1047),(629,4,9,28,147,1048),(631,4,10,37,147,1049),(632,4,15,83,148,1),(633,4,10,84,148,1),(634,4,4,85,148,10),(635,4,14,86,148,1),(636,4,11,87,148,1),(637,4,12,88,148,1),(638,4,13,89,148,1),(639,4,9,90,148,1),(641,4,14,73,149,1000),(643,4,10,37,150,1000),(645,4,9,28,151,1001),(647,4,9,28,137,1002),(649,4,10,37,137,1003),(651,4,9,28,152,1004),(653,4,10,37,142,1005),(655,4,9,28,142,1006),(657,4,9,28,153,1007),(659,4,9,28,154,1008),(661,4,10,37,154,1009),(663,4,9,28,155,1010),(665,4,10,37,155,1011),(667,4,10,37,74,20),(668,4,15,82,156,3),(669,4,10,37,156,3),(670,4,4,10,156,3),(671,4,14,73,156,3),(672,4,11,46,156,3),(673,4,12,55,156,3),(674,4,13,64,156,3),(675,4,9,28,156,3);
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DATETIME_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_DATETIME_ENTITY_ID_[[DBPREFIX]]EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_DATETIME_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_DTIME_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_datetime`
--

LOCK TABLES `[[dbprefix]]eav_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `[[DBPREFIX]]EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_DECIMAL_ENTITY_ID_[[DBPREFIX]]EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_DECIMAL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_DEC_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_decimal`
--

LOCK TABLES `[[dbprefix]]eav_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int NOT NULL DEFAULT '0' COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `[[DBPREFIX]]EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_INT_ENTITY_ID_[[DBPREFIX]]EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_INT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_INT_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_int`
--

LOCK TABLES `[[dbprefix]]eav_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_store` (
  `entity_store_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Store ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `increment_prefix` varchar(20) DEFAULT NULL COMMENT 'Increment Prefix',
  `increment_last_id` varchar(50) DEFAULT NULL COMMENT 'Last Incremented ID',
  PRIMARY KEY (`entity_store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_STORE_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_store`
--

LOCK TABLES `[[dbprefix]]eav_entity_store` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_TEXT_ENTITY_ID_[[DBPREFIX]]EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_TEXT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_TEXT_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_text`
--

LOCK TABLES `[[dbprefix]]eav_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_type`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_type` (
  `entity_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Type ID',
  `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code',
  `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `entity_table` varchar(255) DEFAULT NULL COMMENT 'Entity Table',
  `value_table_prefix` varchar(255) DEFAULT NULL COMMENT 'Value Table Prefix',
  `entity_id_field` varchar(255) DEFAULT NULL COMMENT 'Entity ID Field',
  `is_data_sharing` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Data Sharing',
  `data_sharing_key` varchar(100) DEFAULT 'default' COMMENT 'Data Sharing Key',
  `default_attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Default Attribute Set ID',
  `increment_model` varchar(255) DEFAULT NULL COMMENT 'Increment Model',
  `increment_per_store` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Increment Per Store',
  `increment_pad_length` smallint unsigned NOT NULL DEFAULT '8' COMMENT 'Increment Pad Length',
  `increment_pad_char` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Increment Pad Char',
  `additional_attribute_table` varchar(255) DEFAULT NULL COMMENT 'Additional Attribute Table',
  `entity_attribute_collection` varchar(255) DEFAULT NULL COMMENT 'Entity Attribute Collection',
  PRIMARY KEY (`entity_type_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_type`
--

LOCK TABLES `[[dbprefix]]eav_entity_type` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_type` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_entity_type` VALUES (1,'customer','Magento\\Customer\\Model\\ResourceModel\\Customer','Magento\\Customer\\Model\\Attribute','customer_entity',NULL,NULL,1,'default',1,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Attribute\\Collection'),(2,'customer_address','Magento\\Customer\\Model\\ResourceModel\\Address','Magento\\Customer\\Model\\Attribute','customer_address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Collection'),(3,'catalog_category','Magento\\Catalog\\Model\\ResourceModel\\Category','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_category_entity',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(4,'catalog_product','Magento\\Catalog\\Model\\ResourceModel\\Product','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_product_entity',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Product\\Attribute\\Collection'),(5,'order','Magento\\Sales\\Model\\ResourceModel\\Order',NULL,'sales_order',NULL,NULL,1,'default',5,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(6,'invoice','Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice',NULL,'sales_invoice',NULL,NULL,1,'default',6,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(7,'creditmemo','Magento\\Sales\\Model\\ResourceModel\\Order\\Creditmemo',NULL,'sales_creditmemo',NULL,NULL,1,'default',7,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(8,'shipment','Magento\\Sales\\Model\\ResourceModel\\Order\\Shipment',NULL,'sales_shipment',NULL,NULL,1,'default',8,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `[[DBPREFIX]]EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_VARCHAR_ENTITY_ID_[[DBPREFIX]]EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTITY_VARCHAR_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_ENTT_VCHR_ENTT_TYPE_ID_[[DBPREFIX]]EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_entity_varchar`
--

LOCK TABLES `[[dbprefix]]eav_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_form_element`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_form_element`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_form_element` (
  `element_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Element ID',
  `type_id` smallint unsigned NOT NULL COMMENT 'Type ID',
  `fieldset_id` smallint unsigned DEFAULT NULL COMMENT 'Fieldset ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `sort_order` int NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`element_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`),
  KEY `[[DBPREFIX]]EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`),
  KEY `[[DBPREFIX]]EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_ELEMENT_TYPE_ID_[[DBPREFIX]]EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `[[dbprefix]]eav_form_type` (`type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_ELM_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_ELM_FSET_ID_[[DBPREFIX]]EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `[[dbprefix]]eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Element';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_form_element`
--

LOCK TABLES `[[dbprefix]]eav_form_element` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_element` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_form_element` VALUES (1,1,NULL,23,0),(2,1,NULL,25,1),(3,1,NULL,27,2),(4,1,NULL,9,3),(5,1,NULL,28,4),(6,1,NULL,29,5),(7,1,NULL,31,6),(8,1,NULL,33,7),(9,1,NULL,30,8),(10,1,NULL,34,9),(11,1,NULL,35,10),(12,2,NULL,23,0),(13,2,NULL,25,1),(14,2,NULL,27,2),(15,2,NULL,9,3),(16,2,NULL,28,4),(17,2,NULL,29,5),(18,2,NULL,31,6),(19,2,NULL,33,7),(20,2,NULL,30,8),(21,2,NULL,34,9),(22,2,NULL,35,10),(23,3,NULL,23,0),(24,3,NULL,25,1),(25,3,NULL,27,2),(26,3,NULL,28,3),(27,3,NULL,29,4),(28,3,NULL,31,5),(29,3,NULL,33,6),(30,3,NULL,30,7),(31,3,NULL,34,8),(32,3,NULL,35,9),(33,4,NULL,23,0),(34,4,NULL,25,1),(35,4,NULL,27,2),(36,4,NULL,28,3),(37,4,NULL,29,4),(38,4,NULL,31,5),(39,4,NULL,33,6),(40,4,NULL,30,7),(41,4,NULL,34,8),(42,4,NULL,35,9);
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_element` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_form_fieldset`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_form_fieldset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_form_fieldset` (
  `fieldset_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Fieldset ID',
  `type_id` smallint unsigned NOT NULL COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `sort_order` int NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`fieldset_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`),
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_FIELDSET_TYPE_ID_[[DBPREFIX]]EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `[[dbprefix]]eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Fieldset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_form_fieldset`
--

LOCK TABLES `[[dbprefix]]eav_form_fieldset` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_fieldset` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_fieldset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_form_fieldset_label`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_form_fieldset_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_form_fieldset_label` (
  `fieldset_id` smallint unsigned NOT NULL COMMENT 'Fieldset ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`fieldset_id`,`store_id`),
  KEY `[[DBPREFIX]]EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_FIELDSET_LABEL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_FSET_LBL_FSET_ID_[[DBPREFIX]]EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `[[dbprefix]]eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Fieldset Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_form_fieldset_label`
--

LOCK TABLES `[[dbprefix]]eav_form_fieldset_label` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_fieldset_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_fieldset_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_form_type`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_form_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_form_type` (
  `type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  `is_system` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is System',
  `theme` varchar(64) DEFAULT NULL COMMENT 'Theme',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`type_id`),
  UNIQUE KEY `[[DBPREFIX]]EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`),
  KEY `[[DBPREFIX]]EAV_FORM_TYPE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_TYPE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_form_type`
--

LOCK TABLES `[[dbprefix]]eav_form_type` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_type` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0);
/*!40000 ALTER TABLE `[[dbprefix]]eav_form_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]eav_form_type_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]eav_form_type_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]eav_form_type_entity` (
  `type_id` smallint unsigned NOT NULL COMMENT 'Type ID',
  `entity_type_id` smallint unsigned NOT NULL COMMENT 'Entity Type ID',
  PRIMARY KEY (`type_id`,`entity_type_id`),
  KEY `[[DBPREFIX]]EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  CONSTRAINT `FK_54B7114172895058BE1A30E6E21580AB` FOREIGN KEY (`entity_type_id`) REFERENCES `[[dbprefix]]eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]EAV_FORM_TYPE_ENTITY_TYPE_ID_[[DBPREFIX]]EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `[[dbprefix]]eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Type Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]eav_form_type_entity`
--

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

--
-- Table structure for table `[[dbprefix]]email_template`
--

DROP TABLE IF EXISTS `[[dbprefix]]email_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]email_template` (
  `template_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) NOT NULL COMMENT 'Template Name',
  `template_text` text NOT NULL COMMENT 'Template Content',
  `template_styles` text COMMENT 'Templste Styles',
  `template_type` int unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of Template Creation',
  `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Template Modification',
  `orig_template_code` varchar(200) DEFAULT NULL COMMENT 'Original Template Code',
  `orig_template_variables` text COMMENT 'Original Template Variables',
  `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  UNIQUE KEY `[[DBPREFIX]]EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`),
  KEY `[[DBPREFIX]]EMAIL_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `[[DBPREFIX]]EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Email Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]email_template`
--

LOCK TABLES `[[dbprefix]]email_template` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]email_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]email_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]flag`
--

DROP TABLE IF EXISTS `[[dbprefix]]flag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]flag` (
  `flag_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id',
  `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code',
  `state` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag State',
  `flag_data` mediumtext COMMENT 'Flag Data',
  `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Last Flag Update',
  PRIMARY KEY (`flag_id`),
  KEY `[[DBPREFIX]]FLAG_LAST_UPDATE` (`last_update`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Flag';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]flag`
--

LOCK TABLES `[[dbprefix]]flag` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]flag` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]flag` VALUES (1,'analytics_link_attempts_reverse_counter',0,'24','[[regtime]]'),(2,'feed_metadata_salesOrders',0,'{\"lockedBy\":\"full reindex(legacy)(857941)\"}','[[regtime]]'),(3,'feed_metadata_salesOrderStatuses',0,'{\"lockedBy\":\"full reindex(legacy)(857941)\"}','[[regtime]]'),(4,'feed_metadata_stores',0,'{\"lockedBy\":\"full reindex(legacy)(857941)\"}','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]flag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]gift_message`
--

DROP TABLE IF EXISTS `[[dbprefix]]gift_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]gift_message` (
  `gift_message_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Registrant',
  `message` text COMMENT 'Message',
  PRIMARY KEY (`gift_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Gift Message';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]gift_message`
--

LOCK TABLES `[[dbprefix]]gift_message` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]gift_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]gift_message` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]googleoptimizer_code`
--

DROP TABLE IF EXISTS `[[dbprefix]]googleoptimizer_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]googleoptimizer_code` (
  `code_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID',
  `entity_id` int unsigned NOT NULL COMMENT 'Optimized entity ID product ID or catalog ID',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Optimized entity type',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `experiment_script` text COMMENT 'Google experiment script',
  PRIMARY KEY (`code_id`),
  UNIQUE KEY `[[DBPREFIX]]GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`),
  CONSTRAINT `[[DBPREFIX]]GOOGLEOPTIMIZER_CODE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Google Experiment code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]googleoptimizer_code`
--

LOCK TABLES `[[dbprefix]]googleoptimizer_code` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]googleoptimizer_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]googleoptimizer_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]import_history`
--

DROP TABLE IF EXISTS `[[dbprefix]]import_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]import_history` (
  `history_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record ID',
  `started_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Started at',
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `imported_file` varchar(255) DEFAULT NULL COMMENT 'Imported file',
  `execution_time` varchar(255) DEFAULT NULL COMMENT 'Execution time',
  `summary` varchar(255) DEFAULT NULL COMMENT 'Summary',
  `error_file` varchar(255) NOT NULL COMMENT 'Imported file with errors',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Import history table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]import_history`
--

LOCK TABLES `[[dbprefix]]import_history` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]import_history` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]import_history` VALUES (1,'[[regtime]]',0,NULL,'00:01:16','Created: 1994, Updated: 0, Deleted: 0','');
/*!40000 ALTER TABLE `[[dbprefix]]import_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]importexport_importdata`
--

DROP TABLE IF EXISTS `[[dbprefix]]importexport_importdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]importexport_importdata` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity` varchar(50) NOT NULL COMMENT 'Entity',
  `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior',
  `data` longtext COMMENT 'Data',
  `is_processed` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Is Row Processed',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'timestamp of last update',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Import Data Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]importexport_importdata`
--

LOCK TABLES `[[dbprefix]]importexport_importdata` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]importexport_importdata` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (1,'catalog_product','append','[{\"sku\":\"MH01-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XS-Black\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},{\"sku\":\"MH01-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XS-Gray\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},{\"sku\":\"MH01-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XS-Orange\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},{\"sku\":\"MH01-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-S-Black\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},{\"sku\":\"MH01-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-S-Gray\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},{\"sku\":\"MH01-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-S-Orange\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},{\"sku\":\"MH01-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-M-Black\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},{\"sku\":\"MH01-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-M-Gray\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},{\"sku\":\"MH01-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-M-Orange\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},{\"sku\":\"MH01-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-L-Black\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},{\"sku\":\"MH01-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-L-Gray\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},{\"sku\":\"MH01-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-L-Orange\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},{\"sku\":\"MH01-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XL-Black\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},{\"sku\":\"MH01-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XL-Gray\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},{\"sku\":\"MH01-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie-XL-Orange\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chaz-kangeroo-hoodie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},{\"sku\":\"MH01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Chaz Kangeroo Hoodie\",\"description\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.<\\/p>\\n<p>&bull; Two-tone gray heather hoodie.<br \\/>&bull; Drawstring-adjustable hood. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Wool,pattern=Color-Blocked,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH01-XS-Black,size=XS,color=Black|sku=MH01-XS-Gray,size=XS,color=Gray|sku=MH01-XS-Orange,size=XS,color=Orange|sku=MH01-S-Black,size=S,color=Black|sku=MH01-S-Gray,size=S,color=Gray|sku=MH01-S-Orange,size=S,color=Orange|sku=MH01-M-Black,size=M,color=Black|sku=MH01-M-Gray,size=M,color=Gray|sku=MH01-M-Orange,size=M,color=Orange|sku=MH01-L-Black,size=L,color=Black|sku=MH01-L-Gray,size=L,color=Gray|sku=MH01-L-Orange,size=L,color=Orange|sku=MH01-XL-Black,size=XL,color=Black|sku=MH01-XL-Gray,size=XL,color=Gray|sku=MH01-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh01-gray_alt1.jpg,\\/m\\/h\\/mh01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":\"Wool\",\"pattern\":\"Color-Blocked\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},{\"sku\":\"MH02-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XS-Black\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},{\"sku\":\"MH02-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XS-Purple\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},{\"sku\":\"MH02-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XS-Red\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},{\"sku\":\"MH02-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-S-Black\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},{\"sku\":\"MH02-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-S-Purple\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},{\"sku\":\"MH02-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-S-Red\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},{\"sku\":\"MH02-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-M-Black\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},{\"sku\":\"MH02-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-M-Purple\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},{\"sku\":\"MH02-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-M-Red\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},{\"sku\":\"MH02-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-L-Black\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},{\"sku\":\"MH02-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-L-Purple\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},{\"sku\":\"MH02-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-L-Red\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},{\"sku\":\"MH02-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XL-Black\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},{\"sku\":\"MH02-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XL-Purple\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},{\"sku\":\"MH02-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie-XL-Red\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"teton-pullover-hoodie-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},{\"sku\":\"MH02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Teton Pullover Hoodie\",\"description\":\"<p>This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.<\\/p>\\n<p>&bull; Black pullover hoodie.<br \\/>&bull; Soft, brushed interior. <br \\/>&bull; Front hand pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"70\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Wool|Fleece|Nylon,pattern=Solid,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH02-XS-Black,size=XS,color=Black|sku=MH02-XS-Purple,size=XS,color=Purple|sku=MH02-XS-Red,size=XS,color=Red|sku=MH02-S-Black,size=S,color=Black|sku=MH02-S-Purple,size=S,color=Purple|sku=MH02-S-Red,size=S,color=Red|sku=MH02-M-Black,size=M,color=Black|sku=MH02-M-Purple,size=M,color=Purple|sku=MH02-M-Red,size=M,color=Red|sku=MH02-L-Black,size=L,color=Black|sku=MH02-L-Purple,size=L,color=Purple|sku=MH02-L-Red,size=L,color=Red|sku=MH02-XL-Black,size=XL,color=Black|sku=MH02-XL-Purple,size=XL,color=Purple|sku=MH02-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh02-black_alt1.jpg,\\/m\\/h\\/mh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Wool\",\"Fleece\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},{\"sku\":\"MH03-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XS-Black\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},{\"sku\":\"MH03-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XS-Blue\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},{\"sku\":\"MH03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XS-Green\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},{\"sku\":\"MH03-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-S-Black\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},{\"sku\":\"MH03-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-S-Blue\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},{\"sku\":\"MH03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-S-Green\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},{\"sku\":\"MH03-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-M-Black\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},{\"sku\":\"MH03-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-M-Blue\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},{\"sku\":\"MH03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-M-Green\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},{\"sku\":\"MH03-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-L-Black\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},{\"sku\":\"MH03-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-L-Blue\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},{\"sku\":\"MH03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-L-Green\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},{\"sku\":\"MH03-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XL-Black\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},{\"sku\":\"MH03-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XL-Blue\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},{\"sku\":\"MH03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie-XL-Green\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bruno-compete-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},{\"sku\":\"MH03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bruno Compete Hoodie\",\"description\":\"<p>Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.<\\/p>\\n<p>&bull; Full zip black hoodie pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Kangaroo pocket. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Organic Cotton,pattern=Solid,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH03-XS-Black,size=XS,color=Black|sku=MH03-XS-Blue,size=XS,color=Blue|sku=MH03-XS-Green,size=XS,color=Green|sku=MH03-S-Black,size=S,color=Black|sku=MH03-S-Blue,size=S,color=Blue|sku=MH03-S-Green,size=S,color=Green|sku=MH03-M-Black,size=M,color=Black|sku=MH03-M-Blue,size=M,color=Blue|sku=MH03-M-Green,size=M,color=Green|sku=MH03-L-Black,size=L,color=Black|sku=MH03-L-Blue,size=L,color=Blue|sku=MH03-L-Green,size=L,color=Green|sku=MH03-XL-Black,size=XL,color=Black|sku=MH03-XL-Blue,size=XL,color=Blue|sku=MH03-XL-Green,size=XL,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"image\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh03-black_alt1.jpg,\\/m\\/h\\/mh03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":\"Organic Cotton\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},{\"sku\":\"MH04-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XS-Green\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},{\"sku\":\"MH04-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XS-White\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},{\"sku\":\"MH04-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XS-Yellow\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},{\"sku\":\"MH04-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-S-Green\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},{\"sku\":\"MH04-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-S-White\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},{\"sku\":\"MH04-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-S-Yellow\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},{\"sku\":\"MH04-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-M-Green\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},{\"sku\":\"MH04-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-M-White\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},{\"sku\":\"MH04-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-M-Yellow\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},{\"sku\":\"MH04-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-L-Green\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},{\"sku\":\"MH04-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-L-White\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},{\"sku\":\"MH04-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-L-Yellow\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},{\"sku\":\"MH04-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XL-Green\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},{\"sku\":\"MH04-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XL-White\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},{\"sku\":\"MH04-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt-XL-Yellow\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"frankie-sweatshirt-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},{\"sku\":\"MH04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Frankie  Sweatshirt\",\"description\":\"<p>The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.<\\/p>\\n<p>&bull; Light green crewneck sweatshirt.<br \\/>&bull; Hand pockets.<br \\/>&bull; Relaxed fit.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Organic Cotton,pattern=Solid,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH04-XS-Green,size=XS,color=Green|sku=MH04-XS-White,size=XS,color=White|sku=MH04-XS-Yellow,size=XS,color=Yellow|sku=MH04-S-Green,size=S,color=Green|sku=MH04-S-White,size=S,color=White|sku=MH04-S-Yellow,size=S,color=Yellow|sku=MH04-M-Green,size=M,color=Green|sku=MH04-M-White,size=M,color=White|sku=MH04-M-Yellow,size=M,color=Yellow|sku=MH04-L-Green,size=L,color=Green|sku=MH04-L-White,size=L,color=White|sku=MH04-L-Yellow,size=L,color=Yellow|sku=MH04-XL-Green,size=XL,color=Green|sku=MH04-XL-White,size=XL,color=White|sku=MH04-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh04-green_alt1.jpg,\\/m\\/h\\/mh04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":\"Organic Cotton\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},{\"sku\":\"MH05-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XS-Green\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},{\"sku\":\"MH05-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XS-Red\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},{\"sku\":\"MH05-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XS-White\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},{\"sku\":\"MH05-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-S-Green\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},{\"sku\":\"MH05-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-S-Red\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},{\"sku\":\"MH05-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-S-White\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},{\"sku\":\"MH05-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-M-Green\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},{\"sku\":\"MH05-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-M-Red\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},{\"sku\":\"MH05-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-M-White\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},{\"sku\":\"MH05-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-L-Green\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},{\"sku\":\"MH05-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-L-Red\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},{\"sku\":\"MH05-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-L-White\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},{\"sku\":\"MH05-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XL-Green\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},{\"sku\":\"MH05-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XL-Red\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},{\"sku\":\"MH05-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt-XL-White\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hollister-backyard-sweatshirt-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},{\"sku\":\"MH05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hollister Backyard Sweatshirt\",\"description\":\"<p>Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with navy sleeves\\/trim.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed cuffs and hem. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"52\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Wool|Polyester|Nylon,pattern=Color-Blocked,climate=Cool,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH05-XS-Green,size=XS,color=Green|sku=MH05-XS-Red,size=XS,color=Red|sku=MH05-XS-White,size=XS,color=White|sku=MH05-S-Green,size=S,color=Green|sku=MH05-S-Red,size=S,color=Red|sku=MH05-S-White,size=S,color=White|sku=MH05-M-Green,size=M,color=Green|sku=MH05-M-Red,size=M,color=Red|sku=MH05-M-White,size=M,color=White|sku=MH05-L-Green,size=L,color=Green|sku=MH05-L-Red,size=L,color=Red|sku=MH05-L-White,size=L,color=White|sku=MH05-XL-Green,size=XL,color=Green|sku=MH05-XL-Red,size=XL,color=Red|sku=MH05-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh05-white_alt1.jpg,\\/m\\/h\\/mh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Wool\",\"Polyester\",\"Nylon\"],\"pattern\":\"Color-Blocked\",\"climate\":\"Cool\",\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},{\"sku\":\"MH06-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XS-Black\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},{\"sku\":\"MH06-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XS-Blue\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},{\"sku\":\"MH06-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XS-Purple\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},{\"sku\":\"MH06-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-S-Black\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},{\"sku\":\"MH06-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-S-Blue\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},{\"sku\":\"MH06-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-S-Purple\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},{\"sku\":\"MH06-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-M-Black\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},{\"sku\":\"MH06-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-M-Blue\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},{\"sku\":\"MH06-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-M-Purple\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},{\"sku\":\"MH06-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-L-Black\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},{\"sku\":\"MH06-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-L-Blue\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},{\"sku\":\"MH06-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-L-Purple\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},{\"sku\":\"MH06-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XL-Black\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},{\"sku\":\"MH06-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XL-Blue\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},{\"sku\":\"MH06-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie-XL-Purple\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stark-fundamental-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},{\"sku\":\"MH06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Stark Fundamental Hoodie\",\"description\":\"<p>You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.<\\/p>\\n<p>&bull; Navy specked full zip hoodie.<br \\/>&bull; Ribbed cuffs, banded waist.<br \\/>&bull; Side pockets. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Wool|Polyester|Nylon,pattern=Solid,climate=All-weather|Cool|Indoor|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH06-XS-Black,size=XS,color=Black|sku=MH06-XS-Blue,size=XS,color=Blue|sku=MH06-XS-Purple,size=XS,color=Purple|sku=MH06-S-Black,size=S,color=Black|sku=MH06-S-Blue,size=S,color=Blue|sku=MH06-S-Purple,size=S,color=Purple|sku=MH06-M-Black,size=M,color=Black|sku=MH06-M-Blue,size=M,color=Blue|sku=MH06-M-Purple,size=M,color=Purple|sku=MH06-L-Black,size=L,color=Black|sku=MH06-L-Blue,size=L,color=Blue|sku=MH06-L-Purple,size=L,color=Purple|sku=MH06-XL-Black,size=XL,color=Black|sku=MH06-XL-Blue,size=XL,color=Blue|sku=MH06-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh06-blue_alt1.jpg,\\/m\\/h\\/mh06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Wool\",\"Polyester\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},{\"sku\":\"MH07-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XS-Black\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},{\"sku\":\"MH07-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XS-Gray\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},{\"sku\":\"MH07-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XS-Green\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},{\"sku\":\"MH07-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-S-Black\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"}]',1,'[[regtime]]'),(2,'catalog_product','append','{\"100\":{\"sku\":\"MH07-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-S-Gray\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"101\":{\"sku\":\"MH07-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-S-Green\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"102\":{\"sku\":\"MH07-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-M-Black\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"103\":{\"sku\":\"MH07-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-M-Gray\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"104\":{\"sku\":\"MH07-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-M-Green\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"105\":{\"sku\":\"MH07-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-L-Black\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"106\":{\"sku\":\"MH07-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-L-Gray\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"107\":{\"sku\":\"MH07-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-L-Green\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"108\":{\"sku\":\"MH07-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XL-Black\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"109\":{\"sku\":\"MH07-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XL-Gray\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"110\":{\"sku\":\"MH07-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie-XL-Green\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hero-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"111\":{\"sku\":\"MH07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Hero Hoodie\",\"description\":\"<p>Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.<\\/p>\\n<p>&bull; Full-zip gray and black hoodie.<br \\/>&bull; Ribbed hem.<br \\/>&bull; Standard fit.<br \\/>&bull; Drawcord hood cinch.<br \\/>&bull; Water-resistant coating.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Fleece|Hemp|Polyester,pattern=Color-Blocked,climate=Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH07-XS-Black,size=XS,color=Black|sku=MH07-XS-Gray,size=XS,color=Gray|sku=MH07-XS-Green,size=XS,color=Green|sku=MH07-S-Black,size=S,color=Black|sku=MH07-S-Gray,size=S,color=Gray|sku=MH07-S-Green,size=S,color=Green|sku=MH07-M-Black,size=M,color=Black|sku=MH07-M-Gray,size=M,color=Gray|sku=MH07-M-Green,size=M,color=Green|sku=MH07-L-Black,size=L,color=Black|sku=MH07-L-Gray,size=L,color=Gray|sku=MH07-L-Green,size=L,color=Green|sku=MH07-XL-Black,size=XL,color=Black|sku=MH07-XL-Gray,size=XL,color=Gray|sku=MH07-XL-Green,size=XL,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"image\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh07-gray_alt1.jpg,\\/m\\/h\\/mh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Fleece\",\"Hemp\",\"Polyester\"],\"pattern\":\"Color-Blocked\",\"climate\":\"Spring\",\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"112\":{\"sku\":\"MH08-XS-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XS-Brown\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xs-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Brown\"},\"113\":{\"sku\":\"MH08-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XS-Purple\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"114\":{\"sku\":\"MH08-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XS-Red\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"115\":{\"sku\":\"MH08-S-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-S-Brown\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-s-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Brown\"},\"116\":{\"sku\":\"MH08-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-S-Purple\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"117\":{\"sku\":\"MH08-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-S-Red\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"118\":{\"sku\":\"MH08-M-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-M-Brown\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-m-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Brown\"},\"119\":{\"sku\":\"MH08-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-M-Purple\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"120\":{\"sku\":\"MH08-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-M-Red\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"121\":{\"sku\":\"MH08-L-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-L-Brown\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-l-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Brown\"},\"122\":{\"sku\":\"MH08-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-L-Purple\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"123\":{\"sku\":\"MH08-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-L-Red\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"124\":{\"sku\":\"MH08-XL-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XL-Brown\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xl-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Brown\"},\"125\":{\"sku\":\"MH08-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XL-Purple\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"126\":{\"sku\":\"MH08-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie-XL-Red\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"oslo-trek-hoodie-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"127\":{\"sku\":\"MH08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Oslo Trek Hoodie\",\"description\":\"<p>Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.<\\/p>\\n<p>&bull; Brown hoodie with black detail.<br \\/>&bull; Pullover. <br \\/>&bull; Adjustable drawstring hood. <br \\/>&bull; Ribbed cuffs\\/waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Organic Cotton|Polyester|Nylon,pattern=Solid,climate=Windy|Cool,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH08-XS-Brown,size=XS,color=Brown|sku=MH08-XS-Purple,size=XS,color=Purple|sku=MH08-XS-Red,size=XS,color=Red|sku=MH08-S-Brown,size=S,color=Brown|sku=MH08-S-Purple,size=S,color=Purple|sku=MH08-S-Red,size=S,color=Red|sku=MH08-M-Brown,size=M,color=Brown|sku=MH08-M-Purple,size=M,color=Purple|sku=MH08-M-Red,size=M,color=Red|sku=MH08-L-Brown,size=L,color=Brown|sku=MH08-L-Purple,size=L,color=Purple|sku=MH08-L-Red,size=L,color=Red|sku=MH08-XL-Brown,size=XL,color=Brown|sku=MH08-XL-Purple,size=XL,color=Purple|sku=MH08-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"image\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh08-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh08-brown_alt1.jpg,\\/m\\/h\\/mh08-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Organic Cotton\",\"Polyester\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"Windy\",\"Cool\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"128\":{\"sku\":\"MH09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XS-Blue\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"129\":{\"sku\":\"MH09-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XS-Green\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"130\":{\"sku\":\"MH09-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XS-Red\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"131\":{\"sku\":\"MH09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-S-Blue\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"132\":{\"sku\":\"MH09-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-S-Green\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"133\":{\"sku\":\"MH09-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-S-Red\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"134\":{\"sku\":\"MH09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-M-Blue\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"135\":{\"sku\":\"MH09-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-M-Green\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"136\":{\"sku\":\"MH09-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-M-Red\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"137\":{\"sku\":\"MH09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-L-Blue\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"138\":{\"sku\":\"MH09-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-L-Green\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"139\":{\"sku\":\"MH09-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-L-Red\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"140\":{\"sku\":\"MH09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XL-Blue\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"141\":{\"sku\":\"MH09-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XL-Green\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"142\":{\"sku\":\"MH09-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie-XL-Red\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"abominable-hoodie-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"143\":{\"sku\":\"MH09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Abominable Hoodie\",\"description\":\"<p>It took CoolTech&trade; weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.<\\/p>\\n<p>&bull; Blue heather hoodie.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=CoolTech&trade;|Wool|Nylon,pattern=Solid,climate=Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH09-XS-Blue,size=XS,color=Blue|sku=MH09-XS-Green,size=XS,color=Green|sku=MH09-XS-Red,size=XS,color=Red|sku=MH09-S-Blue,size=S,color=Blue|sku=MH09-S-Green,size=S,color=Green|sku=MH09-S-Red,size=S,color=Red|sku=MH09-M-Blue,size=M,color=Blue|sku=MH09-M-Green,size=M,color=Green|sku=MH09-M-Red,size=M,color=Red|sku=MH09-L-Blue,size=L,color=Blue|sku=MH09-L-Green,size=L,color=Green|sku=MH09-L-Red,size=L,color=Red|sku=MH09-XL-Blue,size=XL,color=Blue|sku=MH09-XL-Green,size=XL,color=Green|sku=MH09-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh09-blue_alt1.jpg,\\/m\\/h\\/mh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"CoolTech&trade;\",\"Wool\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"144\":{\"sku\":\"MH10-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XS-Black\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"145\":{\"sku\":\"MH10-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XS-Blue\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"146\":{\"sku\":\"MH10-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XS-Red\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"147\":{\"sku\":\"MH10-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -S-Black\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"148\":{\"sku\":\"MH10-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -S-Blue\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"149\":{\"sku\":\"MH10-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -S-Red\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"150\":{\"sku\":\"MH10-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -M-Black\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"151\":{\"sku\":\"MH10-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -M-Blue\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"152\":{\"sku\":\"MH10-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -M-Red\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"153\":{\"sku\":\"MH10-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -L-Black\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"154\":{\"sku\":\"MH10-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -L-Blue\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"155\":{\"sku\":\"MH10-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -L-Red\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"156\":{\"sku\":\"MH10-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XL-Black\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"157\":{\"sku\":\"MH10-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XL-Blue\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"158\":{\"sku\":\"MH10-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt -XL-Red\",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mach-street-sweatshirt-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"159\":{\"sku\":\"MH10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Mach Street Sweatshirt \",\"description\":\"<p>From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech&trade; fabric, it\'s bound to become an everyday part of your active lifestyle<\\/p>\\n<p>&bull; Navy heather crewneck sweatshirt.<br \\/>&bull; LumaTech&trade; moisture-wicking fabric.<br \\/>&bull; Antimicrobial, odor-resistant.<br \\/>&bull; Zip hand pockets.<br \\/>&bull; Chafe-resistant flatlock seams.<br \\/>&bull; Rib-knit cuffs and hem.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"62\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Wool|LumaTech&trade;,pattern=Solid,climate=All-weather|Cool|Indoor|Spring,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH10-XS-Black,size=XS,color=Black|sku=MH10-XS-Blue,size=XS,color=Blue|sku=MH10-XS-Red,size=XS,color=Red|sku=MH10-S-Black,size=S,color=Black|sku=MH10-S-Blue,size=S,color=Blue|sku=MH10-S-Red,size=S,color=Red|sku=MH10-M-Black,size=M,color=Black|sku=MH10-M-Blue,size=M,color=Blue|sku=MH10-M-Red,size=M,color=Red|sku=MH10-L-Black,size=L,color=Black|sku=MH10-L-Blue,size=L,color=Blue|sku=MH10-L-Red,size=L,color=Red|sku=MH10-XL-Black,size=XL,color=Black|sku=MH10-XL-Blue,size=XL,color=Blue|sku=MH10-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh10-blue_alt1.jpg,\\/m\\/h\\/mh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Wool\",\"LumaTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"160\":{\"sku\":\"MH11-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XS-Orange\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"161\":{\"sku\":\"MH11-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XS-Red\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"162\":{\"sku\":\"MH11-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XS-White\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"163\":{\"sku\":\"MH11-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -S-Orange\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"164\":{\"sku\":\"MH11-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -S-Red\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"165\":{\"sku\":\"MH11-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -S-White\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"166\":{\"sku\":\"MH11-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -M-Orange\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"167\":{\"sku\":\"MH11-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -M-Red\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"168\":{\"sku\":\"MH11-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -M-White\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"169\":{\"sku\":\"MH11-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -L-Orange\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"170\":{\"sku\":\"MH11-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -L-Red\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"171\":{\"sku\":\"MH11-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -L-White\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"172\":{\"sku\":\"MH11-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XL-Orange\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"173\":{\"sku\":\"MH11-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XL-Red\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"174\":{\"sku\":\"MH11-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt -XL-White\",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"grayson-crewneck-sweatshirt-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"175\":{\"sku\":\"MH11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Grayson Crewneck Sweatshirt \",\"description\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.<\\/p>\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br \\/>&bull; 80% cotton\\/20% polyester fleece. <br \\/>&bull; Patterned knit hood lining. <br \\/>&bull; Knit cuffs and waist. <br \\/>&bull; Pouch pocket. <br \\/>&bull; Curl edged seam detail<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"64\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Fleece|Organic Cotton,pattern=Color-Blocked,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH11-XS-Orange,size=XS,color=Orange|sku=MH11-XS-Red,size=XS,color=Red|sku=MH11-XS-White,size=XS,color=White|sku=MH11-S-Orange,size=S,color=Orange|sku=MH11-S-Red,size=S,color=Red|sku=MH11-S-White,size=S,color=White|sku=MH11-M-Orange,size=M,color=Orange|sku=MH11-M-Red,size=M,color=Red|sku=MH11-M-White,size=M,color=White|sku=MH11-L-Orange,size=L,color=Orange|sku=MH11-L-Red,size=L,color=Red|sku=MH11-L-White,size=L,color=White|sku=MH11-XL-Orange,size=XL,color=Orange|sku=MH11-XL-Red,size=XL,color=Red|sku=MH11-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"image\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh11-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh11-white_alt1.jpg,\\/m\\/h\\/mh11-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Fleece\",\"Organic Cotton\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"176\":{\"sku\":\"MH12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XS-Blue\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"177\":{\"sku\":\"MH12-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XS-Green\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"178\":{\"sku\":\"MH12-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XS-Red\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"179\":{\"sku\":\"MH12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -S-Blue\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"180\":{\"sku\":\"MH12-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -S-Green\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"181\":{\"sku\":\"MH12-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -S-Red\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"182\":{\"sku\":\"MH12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -M-Blue\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"183\":{\"sku\":\"MH12-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -M-Green\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"184\":{\"sku\":\"MH12-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -M-Red\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"185\":{\"sku\":\"MH12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -L-Blue\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"186\":{\"sku\":\"MH12-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -L-Green\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"187\":{\"sku\":\"MH12-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -L-Red\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"188\":{\"sku\":\"MH12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XL-Blue\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"189\":{\"sku\":\"MH12-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XL-Green\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"190\":{\"sku\":\"MH12-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt -XL-Red\",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ajax-full-zip-sweatshirt-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"191\":{\"sku\":\"MH12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Ajax Full-Zip Sweatshirt \",\"description\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.<\\/p>\\n<p>&bull; Mint striped full zip hoodie.<br \\/>&bull; 100% bonded polyester fleece.<br \\/>&bull; Pouch pocket.<br \\/>&bull; Rib cuffs and hem. <br \\/>&bull; Machine washable.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Fleece|Polyester,pattern=Striped,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH12-XS-Blue,size=XS,color=Blue|sku=MH12-XS-Green,size=XS,color=Green|sku=MH12-XS-Red,size=XS,color=Red|sku=MH12-S-Blue,size=S,color=Blue|sku=MH12-S-Green,size=S,color=Green|sku=MH12-S-Red,size=S,color=Red|sku=MH12-M-Blue,size=M,color=Blue|sku=MH12-M-Green,size=M,color=Green|sku=MH12-M-Red,size=M,color=Red|sku=MH12-L-Blue,size=L,color=Blue|sku=MH12-L-Green,size=L,color=Green|sku=MH12-L-Red,size=L,color=Red|sku=MH12-XL-Blue,size=XL,color=Blue|sku=MH12-XL-Green,size=XL,color=Green|sku=MH12-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"image\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh12-green_alt1.jpg,\\/m\\/h\\/mh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Fleece\",\"Polyester\"],\"pattern\":\"Striped\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"192\":{\"sku\":\"MH13-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XS-Blue\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"193\":{\"sku\":\"MH13-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XS-Green\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"194\":{\"sku\":\"MH13-XS-Lavender\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XS-Lavender\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xs-lavender\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Lavender\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Lavender\"},\"195\":{\"sku\":\"MH13-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-S-Blue\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"196\":{\"sku\":\"MH13-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-S-Green\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"197\":{\"sku\":\"MH13-S-Lavender\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-S-Lavender\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-s-lavender\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Lavender\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Lavender\"},\"198\":{\"sku\":\"MH13-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-M-Blue\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"199\":{\"sku\":\"MH13-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-M-Green\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"}}',1,'[[regtime]]'),(3,'catalog_product','append','{\"200\":{\"sku\":\"MH13-M-Lavender\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-M-Lavender\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-m-lavender\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Lavender\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Lavender\"},\"201\":{\"sku\":\"MH13-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-L-Blue\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"202\":{\"sku\":\"MH13-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-L-Green\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"203\":{\"sku\":\"MH13-L-Lavender\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-L-Lavender\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-l-lavender\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Lavender\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Lavender\"},\"204\":{\"sku\":\"MH13-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XL-Blue\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"205\":{\"sku\":\"MH13-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XL-Green\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"206\":{\"sku\":\"MH13-XL-Lavender\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie-XL-Lavender\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"marco-lightweight-active-hoodie-xl-lavender\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Lavender\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-lavender_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Lavender\"},\"207\":{\"sku\":\"MH13\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Marco Lightweight Active Hoodie\",\"description\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.<\\/p>\\n<p>&bull; Light blue heather full zip hoodie.<br \\/>&bull; Fitted flatlock seams.<br \\/>&bull; Matching lining and drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,material=Cocona&reg; performance Fabric|Fleece,pattern=Solid,climate=All-weather|Cool|Indoor|Spring|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MH13-XS-Blue,size=XS,color=Blue|sku=MH13-XS-Green,size=XS,color=Green|sku=MH13-XS-Lavender,size=XS,color=Lavender|sku=MH13-S-Blue,size=S,color=Blue|sku=MH13-S-Green,size=S,color=Green|sku=MH13-S-Lavender,size=S,color=Lavender|sku=MH13-M-Blue,size=M,color=Blue|sku=MH13-M-Green,size=M,color=Green|sku=MH13-M-Lavender,size=M,color=Lavender|sku=MH13-L-Blue,size=L,color=Blue|sku=MH13-L-Green,size=L,color=Green|sku=MH13-L-Lavender,size=L,color=Lavender|sku=MH13-XL-Blue,size=XL,color=Blue|sku=MH13-XL-Green,size=XL,color=Green|sku=MH13-XL-Lavender,size=XL,color=Lavender\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"image\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/h\\/mh13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/h\\/mh13-blue_alt1.jpg,\\/m\\/h\\/mh13-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"material\":[\"Cocona&reg; performance Fabric\",\"Fleece\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"208\":{\"sku\":\"MJ01-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XS-Orange\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"209\":{\"sku\":\"MJ01-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XS-Red\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"210\":{\"sku\":\"MJ01-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XS-Yellow\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"211\":{\"sku\":\"MJ01-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-S-Orange\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"212\":{\"sku\":\"MJ01-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-S-Red\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"213\":{\"sku\":\"MJ01-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-S-Yellow\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"214\":{\"sku\":\"MJ01-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-M-Orange\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"215\":{\"sku\":\"MJ01-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-M-Red\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"216\":{\"sku\":\"MJ01-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-M-Yellow\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"217\":{\"sku\":\"MJ01-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-L-Orange\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"218\":{\"sku\":\"MJ01-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-L-Red\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"219\":{\"sku\":\"MJ01-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-L-Yellow\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"220\":{\"sku\":\"MJ01-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XL-Orange\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"221\":{\"sku\":\"MJ01-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XL-Red\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"222\":{\"sku\":\"MJ01-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit-XL-Yellow\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"beaumont-summit-kit-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"223\":{\"sku\":\"MJ01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Beaumont Summit Kit\",\"description\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.<\\/p>\\n<p>&bull; Yellow full zip rain jacket.<br \\/>&bull; Full-zip front. <br \\/>&bull; Stand-up collar. <br \\/>&bull; Elasticized cuffs. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Lightweight|Hooded|Rain Coat|Hard Shell|Windbreaker|&frac14; zip|Reversible,material=Fleece|LumaTech&trade;|Polyester,pattern=Solid,climate=Cool|Rainy|Spring|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ01-XS-Orange,size=XS,color=Orange|sku=MJ01-XS-Red,size=XS,color=Red|sku=MJ01-XS-Yellow,size=XS,color=Yellow|sku=MJ01-S-Orange,size=S,color=Orange|sku=MJ01-S-Red,size=S,color=Red|sku=MJ01-S-Yellow,size=S,color=Yellow|sku=MJ01-M-Orange,size=M,color=Orange|sku=MJ01-M-Red,size=M,color=Red|sku=MJ01-M-Yellow,size=M,color=Yellow|sku=MJ01-L-Orange,size=L,color=Orange|sku=MJ01-L-Red,size=L,color=Red|sku=MJ01-L-Yellow,size=L,color=Yellow|sku=MJ01-XL-Orange,size=XL,color=Orange|sku=MJ01-XL-Red,size=XL,color=Red|sku=MJ01-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj01-yellow_alt1.jpg,\\/m\\/j\\/mj01-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Lightweight\",\"Hooded\",\"Rain Coat\",\"Hard Shell\",\"Windbreaker\",\"&frac14; zip\",\"Reversible\"],\"material\":[\"Fleece\",\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"224\":{\"sku\":\"MJ02-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XS-Green\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"225\":{\"sku\":\"MJ02-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XS-Orange\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"226\":{\"sku\":\"MJ02-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XS-Red\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"227\":{\"sku\":\"MJ02-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-S-Green\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"228\":{\"sku\":\"MJ02-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-S-Orange\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"229\":{\"sku\":\"MJ02-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-S-Red\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"230\":{\"sku\":\"MJ02-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-M-Green\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"231\":{\"sku\":\"MJ02-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-M-Orange\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"232\":{\"sku\":\"MJ02-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-M-Red\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"233\":{\"sku\":\"MJ02-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-L-Green\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"234\":{\"sku\":\"MJ02-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-L-Orange\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"235\":{\"sku\":\"MJ02-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-L-Red\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"236\":{\"sku\":\"MJ02-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XL-Green\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"237\":{\"sku\":\"MJ02-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XL-Orange\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"238\":{\"sku\":\"MJ02-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket-XL-Red\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hyperion-elements-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"239\":{\"sku\":\"MJ02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Hyperion Elements Jacket\",\"description\":\"<p>Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech&trade; insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.<\\/p>\\n<p>&bull; Lime 1\\/4 zip pullover.<br \\/>&bull; Split pocket. <br \\/>&bull; Thumb holes. <br \\/>&bull; Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Rain Coat|Hard Shell|Windbreaker|&frac14; zip,material=Fleece|LumaTech&trade;|Polyester,pattern=Solid,climate=Cool|Rainy|Spring|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ02-XS-Green,size=XS,color=Green|sku=MJ02-XS-Orange,size=XS,color=Orange|sku=MJ02-XS-Red,size=XS,color=Red|sku=MJ02-S-Green,size=S,color=Green|sku=MJ02-S-Orange,size=S,color=Orange|sku=MJ02-S-Red,size=S,color=Red|sku=MJ02-M-Green,size=M,color=Green|sku=MJ02-M-Orange,size=M,color=Orange|sku=MJ02-M-Red,size=M,color=Red|sku=MJ02-L-Green,size=L,color=Green|sku=MJ02-L-Orange,size=L,color=Orange|sku=MJ02-L-Red,size=L,color=Red|sku=MJ02-XL-Green,size=XL,color=Green|sku=MJ02-XL-Orange,size=XL,color=Orange|sku=MJ02-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"image\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj02-green_alt1.jpg,\\/m\\/j\\/mj02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Rain Coat\",\"Hard Shell\",\"Windbreaker\",\"&frac14; zip\"],\"material\":[\"Fleece\",\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"240\":{\"sku\":\"MJ04-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XS-Black\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"241\":{\"sku\":\"MJ04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XS-Blue\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"242\":{\"sku\":\"MJ04-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XS-Purple\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"243\":{\"sku\":\"MJ04-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-S-Black\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"244\":{\"sku\":\"MJ04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-S-Blue\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"245\":{\"sku\":\"MJ04-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-S-Purple\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"246\":{\"sku\":\"MJ04-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-M-Black\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"247\":{\"sku\":\"MJ04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-M-Blue\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"248\":{\"sku\":\"MJ04-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-M-Purple\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"249\":{\"sku\":\"MJ04-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-L-Black\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"250\":{\"sku\":\"MJ04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-L-Blue\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"251\":{\"sku\":\"MJ04-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-L-Purple\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"252\":{\"sku\":\"MJ04-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XL-Black\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"253\":{\"sku\":\"MJ04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XL-Blue\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"254\":{\"sku\":\"MJ04-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket-XL-Purple\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kenobi-trail-jacket-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"255\":{\"sku\":\"MJ04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Kenobi Trail Jacket\",\"description\":\"<p>Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise\\/lower volume.<\\/p>\\n<p>&bull; Black 1\\/4 zip pullover with royal zipper. <br \\/>&bull; Adjustable hood and sleeve cuffs. <br \\/>&bull; Machine wash\\/air dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"47\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Soft Shell|&frac14; zip,material=Cotton|Fleece|Nylon,pattern=Solid,climate=Cold|Cool|Spring|Windy|Wintry,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ04-XS-Black,size=XS,color=Black|sku=MJ04-XS-Blue,size=XS,color=Blue|sku=MJ04-XS-Purple,size=XS,color=Purple|sku=MJ04-S-Black,size=S,color=Black|sku=MJ04-S-Blue,size=S,color=Blue|sku=MJ04-S-Purple,size=S,color=Purple|sku=MJ04-M-Black,size=M,color=Black|sku=MJ04-M-Blue,size=M,color=Blue|sku=MJ04-M-Purple,size=M,color=Purple|sku=MJ04-L-Black,size=L,color=Black|sku=MJ04-L-Blue,size=L,color=Blue|sku=MJ04-L-Purple,size=L,color=Purple|sku=MJ04-XL-Black,size=XL,color=Black|sku=MJ04-XL-Blue,size=XL,color=Blue|sku=MJ04-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj04-black_alt1.jpg,\\/m\\/j\\/mj04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Soft Shell\",\"&frac14; zip\"],\"material\":[\"Cotton\",\"Fleece\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"256\":{\"sku\":\"MJ07-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XS-Black\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"257\":{\"sku\":\"MJ07-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XS-Red\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"258\":{\"sku\":\"MJ07-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XS-Yellow\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"259\":{\"sku\":\"MJ07-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-S-Black\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"260\":{\"sku\":\"MJ07-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-S-Red\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"261\":{\"sku\":\"MJ07-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-S-Yellow\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"262\":{\"sku\":\"MJ07-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-M-Black\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"263\":{\"sku\":\"MJ07-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-M-Red\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"264\":{\"sku\":\"MJ07-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-M-Yellow\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"265\":{\"sku\":\"MJ07-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-L-Black\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"266\":{\"sku\":\"MJ07-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-L-Red\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"267\":{\"sku\":\"MJ07-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-L-Yellow\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"268\":{\"sku\":\"MJ07-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XL-Black\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"269\":{\"sku\":\"MJ07-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XL-Red\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"270\":{\"sku\":\"MJ07-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket-XL-Yellow\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orion-two-tone-fitted-jacket-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"271\":{\"sku\":\"MJ07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Orion Two-Tone Fitted Jacket\",\"description\":\"<p>While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.<\\/p>\\n<p>&bull; Red full zip fleece with gray insets.<br \\/>&bull; Double-knit construction.<br \\/>&bull; Full athletic cut.<br \\/>&bull; Set in sleeves.<br \\/>&bull; Front pouch pocket.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"72\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Lightweight|Hooded|Rain Coat|Soft Shell|Full zip,material=Polyester,pattern=Solid,climate=All-weather|Cool|Rainy|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ07-XS-Black,size=XS,color=Black|sku=MJ07-XS-Red,size=XS,color=Red|sku=MJ07-XS-Yellow,size=XS,color=Yellow|sku=MJ07-S-Black,size=S,color=Black|sku=MJ07-S-Red,size=S,color=Red|sku=MJ07-S-Yellow,size=S,color=Yellow|sku=MJ07-M-Black,size=M,color=Black|sku=MJ07-M-Red,size=M,color=Red|sku=MJ07-M-Yellow,size=M,color=Yellow|sku=MJ07-L-Black,size=L,color=Black|sku=MJ07-L-Red,size=L,color=Red|sku=MJ07-L-Yellow,size=L,color=Yellow|sku=MJ07-XL-Black,size=XL,color=Black|sku=MJ07-XL-Red,size=XL,color=Red|sku=MJ07-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj07-red_alt1.jpg,\\/m\\/j\\/mj07-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Lightweight\",\"Hooded\",\"Rain Coat\",\"Soft Shell\",\"Full zip\"],\"material\":\"Polyester\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"272\":{\"sku\":\"MJ08-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XS-Blue\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"273\":{\"sku\":\"MJ08-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XS-Gray\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"274\":{\"sku\":\"MJ08-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XS-Green\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"275\":{\"sku\":\"MJ08-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-S-Blue\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"276\":{\"sku\":\"MJ08-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-S-Gray\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"277\":{\"sku\":\"MJ08-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-S-Green\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"278\":{\"sku\":\"MJ08-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-M-Blue\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"279\":{\"sku\":\"MJ08-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-M-Gray\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"280\":{\"sku\":\"MJ08-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-M-Green\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"281\":{\"sku\":\"MJ08-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-L-Blue\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"282\":{\"sku\":\"MJ08-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-L-Gray\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"283\":{\"sku\":\"MJ08-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-L-Green\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"284\":{\"sku\":\"MJ08-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XL-Blue\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"285\":{\"sku\":\"MJ08-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XL-Gray\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"286\":{\"sku\":\"MJ08-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket-XL-Green\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lando-gym-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"287\":{\"sku\":\"MJ08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Lando Gym Jacket\",\"description\":\"<p>The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out.<\\/p>\\n<p>&bull; Gray polyester\\/spandex full zip jacket with orange lining. <br \\/>&bull; Right pocket device storage.<br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Soft Shell|&frac14; zip|Full zip,material=Spandex|Polyester,pattern=Solid,climate=Cold|Cool|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ08-XS-Blue,size=XS,color=Blue|sku=MJ08-XS-Gray,size=XS,color=Gray|sku=MJ08-XS-Green,size=XS,color=Green|sku=MJ08-S-Blue,size=S,color=Blue|sku=MJ08-S-Gray,size=S,color=Gray|sku=MJ08-S-Green,size=S,color=Green|sku=MJ08-M-Blue,size=M,color=Blue|sku=MJ08-M-Gray,size=M,color=Gray|sku=MJ08-M-Green,size=M,color=Green|sku=MJ08-L-Blue,size=L,color=Blue|sku=MJ08-L-Gray,size=L,color=Gray|sku=MJ08-L-Green,size=L,color=Green|sku=MJ08-XL-Blue,size=XL,color=Blue|sku=MJ08-XL-Gray,size=XL,color=Gray|sku=MJ08-XL-Green,size=XL,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"image\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj08-gray_alt1.jpg,\\/m\\/j\\/mj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Soft Shell\",\"&frac14; zip\",\"Full zip\"],\"material\":[\"Spandex\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"288\":{\"sku\":\"MJ09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XS-Blue\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"289\":{\"sku\":\"MJ09-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XS-White\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"290\":{\"sku\":\"MJ09-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XS-Yellow\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"291\":{\"sku\":\"MJ09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-S-Blue\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"292\":{\"sku\":\"MJ09-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-S-White\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"293\":{\"sku\":\"MJ09-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-S-Yellow\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"294\":{\"sku\":\"MJ09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-M-Blue\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"295\":{\"sku\":\"MJ09-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-M-White\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"296\":{\"sku\":\"MJ09-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-M-Yellow\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"297\":{\"sku\":\"MJ09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-L-Blue\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"298\":{\"sku\":\"MJ09-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-L-White\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"299\":{\"sku\":\"MJ09-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-L-Yellow\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (4,'catalog_product','append','{\"300\":{\"sku\":\"MJ09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XL-Blue\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"301\":{\"sku\":\"MJ09-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XL-White\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"302\":{\"sku\":\"MJ09-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell-XL-Yellow\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"taurus-elements-shell-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"303\":{\"sku\":\"MJ09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Taurus Elements Shell\",\"description\":\"<p>What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona&reg; jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.<\\/p>\\n<p>&bull; Yellow 1\\/4 zip pullover. <br \\/>&bull; Two chest pockets.<br \\/>&bull; Standard fit. <br \\/>&bull; Waterproof, breathable, seam sealed. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"65\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Lightweight|Rain Coat|Windbreaker|&frac14; zip,material=Cocona&reg; performance fabric|Lycra&reg;|Polyester,pattern=Solid,climate=Cool|Mild|Rainy|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ09-XS-Blue,size=XS,color=Blue|sku=MJ09-XS-White,size=XS,color=White|sku=MJ09-XS-Yellow,size=XS,color=Yellow|sku=MJ09-S-Blue,size=S,color=Blue|sku=MJ09-S-White,size=S,color=White|sku=MJ09-S-Yellow,size=S,color=Yellow|sku=MJ09-M-Blue,size=M,color=Blue|sku=MJ09-M-White,size=M,color=White|sku=MJ09-M-Yellow,size=M,color=Yellow|sku=MJ09-L-Blue,size=L,color=Blue|sku=MJ09-L-White,size=L,color=White|sku=MJ09-L-Yellow,size=L,color=Yellow|sku=MJ09-XL-Blue,size=XL,color=Blue|sku=MJ09-XL-White,size=XL,color=White|sku=MJ09-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"image\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj09-yellow_alt1.jpg,\\/m\\/j\\/mj09-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Lightweight\",\"Rain Coat\",\"Windbreaker\",\"&frac14; zip\"],\"material\":[\"Cocona&reg; performance fabric\",\"Lycra&reg;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Mild\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"304\":{\"sku\":\"MJ10-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XS-Black\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"305\":{\"sku\":\"MJ10-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XS-Orange\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"306\":{\"sku\":\"MJ10-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XS-Red\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"307\":{\"sku\":\"MJ10-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-S-Black\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"308\":{\"sku\":\"MJ10-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-S-Orange\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"309\":{\"sku\":\"MJ10-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-S-Red\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"310\":{\"sku\":\"MJ10-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-M-Black\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"311\":{\"sku\":\"MJ10-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-M-Orange\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"312\":{\"sku\":\"MJ10-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-M-Red\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"313\":{\"sku\":\"MJ10-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-L-Black\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"314\":{\"sku\":\"MJ10-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-L-Orange\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"315\":{\"sku\":\"MJ10-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-L-Red\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"316\":{\"sku\":\"MJ10-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XL-Black\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"317\":{\"sku\":\"MJ10-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XL-Orange\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"318\":{\"sku\":\"MJ10-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover-XL-Red\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mars-heattech-trade-pullover-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"319\":{\"sku\":\"MJ10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Mars HeatTech&trade; Pullover\",\"description\":\"<p>The Mars HeatTech&trade; Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.<\\/p>\\n<p>&bull; Red 1\\/4 zip pullover.<br \\/>&bull; Adjustable VELCRO&reg; sleeve cuffs. <br \\/>&bull; Two hand pockets. <br \\/>&bull; Napoleon pocket. <br \\/>&bull; Machine wash\\/dry<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Lightweight|Rain Coat|Hard Shell|Windbreaker|&frac14; zip,material=Nylon|Polyester,pattern=Solid,climate=All-weather|Cool|Mild|Rainy|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ10-XS-Black,size=XS,color=Black|sku=MJ10-XS-Orange,size=XS,color=Orange|sku=MJ10-XS-Red,size=XS,color=Red|sku=MJ10-S-Black,size=S,color=Black|sku=MJ10-S-Orange,size=S,color=Orange|sku=MJ10-S-Red,size=S,color=Red|sku=MJ10-M-Black,size=M,color=Black|sku=MJ10-M-Orange,size=M,color=Orange|sku=MJ10-M-Red,size=M,color=Red|sku=MJ10-L-Black,size=L,color=Black|sku=MJ10-L-Orange,size=L,color=Orange|sku=MJ10-L-Red,size=L,color=Red|sku=MJ10-XL-Black,size=XL,color=Black|sku=MJ10-XL-Orange,size=XL,color=Orange|sku=MJ10-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"image\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj10-red_alt1.jpg,\\/m\\/j\\/mj10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Lightweight\",\"Rain Coat\",\"Hard Shell\",\"Windbreaker\",\"&frac14; zip\"],\"material\":[\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Mild\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"320\":{\"sku\":\"MJ11-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XS-Black\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"321\":{\"sku\":\"MJ11-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XS-Green\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"322\":{\"sku\":\"MJ11-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XS-Red\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"323\":{\"sku\":\"MJ11-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-S-Black\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"324\":{\"sku\":\"MJ11-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-S-Green\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"325\":{\"sku\":\"MJ11-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-S-Red\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"326\":{\"sku\":\"MJ11-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-M-Black\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"327\":{\"sku\":\"MJ11-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-M-Green\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"328\":{\"sku\":\"MJ11-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-M-Red\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"329\":{\"sku\":\"MJ11-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-L-Black\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"330\":{\"sku\":\"MJ11-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-L-Green\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"331\":{\"sku\":\"MJ11-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-L-Red\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"332\":{\"sku\":\"MJ11-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XL-Black\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"333\":{\"sku\":\"MJ11-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XL-Green\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"334\":{\"sku\":\"MJ11-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket-XL-Red\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"typhon-performance-fleece-lined-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"335\":{\"sku\":\"MJ11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Typhon Performance Fleece-lined Jacket\",\"description\":\"<p>Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.<\\/p>\\n<p>&bull; Black full-zip flight jacket.<br \\/>&bull; Cocona&reg; wicking fiber.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Heavy Duty|Hard Shell|Windbreaker|Full zip,material=Cocona&reg; performance fabric|Nylon|Polyester,pattern=Solid,climate=All-weather|Spring|Windy|Wintry,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ11-XS-Black,size=XS,color=Black|sku=MJ11-XS-Green,size=XS,color=Green|sku=MJ11-XS-Red,size=XS,color=Red|sku=MJ11-S-Black,size=S,color=Black|sku=MJ11-S-Green,size=S,color=Green|sku=MJ11-S-Red,size=S,color=Red|sku=MJ11-M-Black,size=M,color=Black|sku=MJ11-M-Green,size=M,color=Green|sku=MJ11-M-Red,size=M,color=Red|sku=MJ11-L-Black,size=L,color=Black|sku=MJ11-L-Green,size=L,color=Green|sku=MJ11-L-Red,size=L,color=Red|sku=MJ11-XL-Black,size=XL,color=Black|sku=MJ11-XL-Green,size=XL,color=Green|sku=MJ11-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj11-black_alt1.jpg,\\/m\\/j\\/mj11-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Heavy Duty\",\"Hard Shell\",\"Windbreaker\",\"Full zip\"],\"material\":[\"Cocona&reg; performance fabric\",\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"336\":{\"sku\":\"MJ06-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XS-Blue\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"337\":{\"sku\":\"MJ06-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XS-Green\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"338\":{\"sku\":\"MJ06-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XS-Purple\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"339\":{\"sku\":\"MJ06-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -S-Blue\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"340\":{\"sku\":\"MJ06-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -S-Green\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"341\":{\"sku\":\"MJ06-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -S-Purple\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"342\":{\"sku\":\"MJ06-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -M-Blue\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"343\":{\"sku\":\"MJ06-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -M-Green\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"344\":{\"sku\":\"MJ06-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -M-Purple\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"345\":{\"sku\":\"MJ06-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -L-Blue\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"346\":{\"sku\":\"MJ06-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -L-Green\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"347\":{\"sku\":\"MJ06-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -L-Purple\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"348\":{\"sku\":\"MJ06-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XL-Blue\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"349\":{\"sku\":\"MJ06-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XL-Green\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"350\":{\"sku\":\"MJ06-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer -XL-Purple\",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jupiter-all-weather-trainer-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"351\":{\"sku\":\"MJ06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Jupiter All-Weather Trainer \",\"description\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Hand pockets. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Reflective safety trim.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"56.99\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Lightweight|Soft Shell|Full zip,material=Fleece|Hemp|Nylon,pattern=Solid,climate=All-weather|Indoor|Mild|Spring|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ06-XS-Blue,size=XS,color=Blue|sku=MJ06-XS-Green,size=XS,color=Green|sku=MJ06-XS-Purple,size=XS,color=Purple|sku=MJ06-S-Blue,size=S,color=Blue|sku=MJ06-S-Green,size=S,color=Green|sku=MJ06-S-Purple,size=S,color=Purple|sku=MJ06-M-Blue,size=M,color=Blue|sku=MJ06-M-Green,size=M,color=Green|sku=MJ06-M-Purple,size=M,color=Purple|sku=MJ06-L-Blue,size=L,color=Blue|sku=MJ06-L-Green,size=L,color=Green|sku=MJ06-L-Purple,size=L,color=Purple|sku=MJ06-XL-Blue,size=XL,color=Blue|sku=MJ06-XL-Green,size=XL,color=Green|sku=MJ06-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"image\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj06-blue_alt1.jpg,\\/m\\/j\\/mj06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Lightweight\",\"Soft Shell\",\"Full zip\"],\"material\":[\"Fleece\",\"Hemp\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"352\":{\"sku\":\"MJ03-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XS-Black\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"353\":{\"sku\":\"MJ03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XS-Green\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"354\":{\"sku\":\"MJ03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XS-Red\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"355\":{\"sku\":\"MJ03-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-S-Black\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"356\":{\"sku\":\"MJ03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-S-Green\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"357\":{\"sku\":\"MJ03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-S-Red\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"358\":{\"sku\":\"MJ03-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-M-Black\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"359\":{\"sku\":\"MJ03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-M-Green\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"360\":{\"sku\":\"MJ03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-M-Red\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"361\":{\"sku\":\"MJ03-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-L-Black\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"362\":{\"sku\":\"MJ03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-L-Green\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"363\":{\"sku\":\"MJ03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-L-Red\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"364\":{\"sku\":\"MJ03-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XL-Black\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"365\":{\"sku\":\"MJ03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XL-Green\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"366\":{\"sku\":\"MJ03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket-XL-Red\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"montana-wind-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"367\":{\"sku\":\"MJ03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Montana Wind Jacket\",\"description\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.<\\/p>\\n<p>Adjustable hood. <br \\/>Split pocket. <br \\/>Thumb holes. <br \\/>Machine wash\\/hang to dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Lightweight|Hooded|Hard Shell|Windbreaker|Full zip,material=Nylon|Polyester,pattern=Solid,climate=Cool|Mild|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ03-XS-Black,size=XS,color=Black|sku=MJ03-XS-Green,size=XS,color=Green|sku=MJ03-XS-Red,size=XS,color=Red|sku=MJ03-S-Black,size=S,color=Black|sku=MJ03-S-Green,size=S,color=Green|sku=MJ03-S-Red,size=S,color=Red|sku=MJ03-M-Black,size=M,color=Black|sku=MJ03-M-Green,size=M,color=Green|sku=MJ03-M-Red,size=M,color=Red|sku=MJ03-L-Black,size=L,color=Black|sku=MJ03-L-Green,size=L,color=Green|sku=MJ03-L-Red,size=L,color=Red|sku=MJ03-XL-Black,size=XL,color=Black|sku=MJ03-XL-Green,size=XL,color=Green|sku=MJ03-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"image\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj03-black_alt1.jpg,\\/m\\/j\\/mj03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Lightweight\",\"Hooded\",\"Hard Shell\",\"Windbreaker\",\"Full zip\"],\"material\":[\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Mild\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"368\":{\"sku\":\"MJ12-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XS-Black\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"369\":{\"sku\":\"MJ12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XS-Blue\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"370\":{\"sku\":\"MJ12-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XS-Orange\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"371\":{\"sku\":\"MJ12-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-S-Black\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"372\":{\"sku\":\"MJ12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-S-Blue\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"373\":{\"sku\":\"MJ12-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-S-Orange\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"374\":{\"sku\":\"MJ12-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-M-Black\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"375\":{\"sku\":\"MJ12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-M-Blue\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"376\":{\"sku\":\"MJ12-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-M-Orange\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"377\":{\"sku\":\"MJ12-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-L-Black\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"378\":{\"sku\":\"MJ12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-L-Blue\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"379\":{\"sku\":\"MJ12-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-L-Orange\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"380\":{\"sku\":\"MJ12-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XL-Black\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"381\":{\"sku\":\"MJ12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XL-Blue\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"382\":{\"sku\":\"MJ12-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt-XL-Orange\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"proteus-fitness-jackshirt-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"383\":{\"sku\":\"MJ12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Proteus Fitness Jackshirt\",\"description\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.<\\/p>\\n<p>&bull; 1\\/4 zip. Stand-up collar. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Quilted inner layer.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Heavy Duty|Soft Shell|&frac14; zip,material=Wool|Fleece|Polyester,pattern=Solid,climate=All-weather|Cool|Indoor|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MJ12-XS-Black,size=XS,color=Black|sku=MJ12-XS-Blue,size=XS,color=Blue|sku=MJ12-XS-Orange,size=XS,color=Orange|sku=MJ12-S-Black,size=S,color=Black|sku=MJ12-S-Blue,size=S,color=Blue|sku=MJ12-S-Orange,size=S,color=Orange|sku=MJ12-M-Black,size=M,color=Black|sku=MJ12-M-Blue,size=M,color=Blue|sku=MJ12-M-Orange,size=M,color=Orange|sku=MJ12-L-Black,size=L,color=Black|sku=MJ12-L-Blue,size=L,color=Blue|sku=MJ12-L-Orange,size=L,color=Orange|sku=MJ12-XL-Black,size=XL,color=Black|sku=MJ12-XL-Blue,size=XL,color=Blue|sku=MJ12-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"image\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/j\\/mj12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/j\\/mj12-orange_alt1.jpg,\\/m\\/j\\/mj12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Heavy Duty\",\"Soft Shell\",\"&frac14; zip\"],\"material\":[\"Wool\",\"Fleece\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"384\":{\"sku\":\"MS04-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XS-Black\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"385\":{\"sku\":\"MS04-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XS-Orange\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"386\":{\"sku\":\"MS04-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XS-Red\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"387\":{\"sku\":\"MS04-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-S-Black\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"388\":{\"sku\":\"MS04-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-S-Orange\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"389\":{\"sku\":\"MS04-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-S-Red\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"390\":{\"sku\":\"MS04-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-M-Black\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"391\":{\"sku\":\"MS04-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-M-Orange\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"392\":{\"sku\":\"MS04-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-M-Red\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"393\":{\"sku\":\"MS04-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-L-Black\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"394\":{\"sku\":\"MS04-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-L-Orange\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"395\":{\"sku\":\"MS04-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-L-Red\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"396\":{\"sku\":\"MS04-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XL-Black\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"397\":{\"sku\":\"MS04-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XL-Orange\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"398\":{\"sku\":\"MS04-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee-XL-Red\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gobi-heattec-reg-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"399\":{\"sku\":\"MS04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Gobi HeatTec&reg; Tee\",\"description\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.<\\/p>\\n<p>&bull; Orange micropolyester shirt.<br \\/>&bull; HeatTec&reg; wicking fabric.<br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton|HeatTec&reg;|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS04-XS-Black,size=XS,color=Black|sku=MS04-XS-Orange,size=XS,color=Orange|sku=MS04-XS-Red,size=XS,color=Red|sku=MS04-S-Black,size=S,color=Black|sku=MS04-S-Orange,size=S,color=Orange|sku=MS04-S-Red,size=S,color=Red|sku=MS04-M-Black,size=M,color=Black|sku=MS04-M-Orange,size=M,color=Orange|sku=MS04-M-Red,size=M,color=Red|sku=MS04-L-Black,size=L,color=Black|sku=MS04-L-Orange,size=L,color=Orange|sku=MS04-L-Red,size=L,color=Red|sku=MS04-XL-Black,size=XL,color=Black|sku=MS04-XL-Orange,size=XL,color=Orange|sku=MS04-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"image\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms04-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cotton\",\"HeatTec&reg;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"}}',1,'[[regtime]]'),(5,'catalog_product','append','{\"400\":{\"sku\":\"MS05-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XS-Black\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"401\":{\"sku\":\"MS05-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XS-Blue\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"402\":{\"sku\":\"MS05-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XS-Purple\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"403\":{\"sku\":\"MS05-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-S-Black\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"404\":{\"sku\":\"MS05-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-S-Blue\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"405\":{\"sku\":\"MS05-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-S-Purple\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"406\":{\"sku\":\"MS05-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-M-Black\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"407\":{\"sku\":\"MS05-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-M-Blue\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"408\":{\"sku\":\"MS05-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-M-Purple\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"409\":{\"sku\":\"MS05-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-L-Black\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"410\":{\"sku\":\"MS05-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-L-Blue\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"411\":{\"sku\":\"MS05-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-L-Purple\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"412\":{\"sku\":\"MS05-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XL-Black\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"413\":{\"sku\":\"MS05-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XL-Blue\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"414\":{\"sku\":\"MS05-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee-XL-Purple\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-evercool-trade-tee-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"415\":{\"sku\":\"MS05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Helios EverCool&trade; Tee\",\"description\":\"<p>Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.<\\/p>\\n<p>&bull; Teal quick dry tee.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=EverCool&trade;|Lycra&reg;|Organic Cotton,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS05-XS-Black,size=XS,color=Black|sku=MS05-XS-Blue,size=XS,color=Blue|sku=MS05-XS-Purple,size=XS,color=Purple|sku=MS05-S-Black,size=S,color=Black|sku=MS05-S-Blue,size=S,color=Blue|sku=MS05-S-Purple,size=S,color=Purple|sku=MS05-M-Black,size=M,color=Black|sku=MS05-M-Blue,size=M,color=Blue|sku=MS05-M-Purple,size=M,color=Purple|sku=MS05-L-Black,size=L,color=Black|sku=MS05-L-Blue,size=L,color=Blue|sku=MS05-L-Purple,size=L,color=Purple|sku=MS05-XL-Black,size=XL,color=Black|sku=MS05-XL-Blue,size=XL,color=Blue|sku=MS05-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"EverCool&trade;\",\"Lycra&reg;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"416\":{\"sku\":\"MS09-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XS-Black\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"417\":{\"sku\":\"MS09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XS-Blue\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"418\":{\"sku\":\"MS09-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XS-Red\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"419\":{\"sku\":\"MS09-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-S-Black\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"420\":{\"sku\":\"MS09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-S-Blue\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"421\":{\"sku\":\"MS09-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-S-Red\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"422\":{\"sku\":\"MS09-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-M-Black\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"423\":{\"sku\":\"MS09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-M-Blue\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"424\":{\"sku\":\"MS09-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-M-Red\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"425\":{\"sku\":\"MS09-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-L-Black\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"426\":{\"sku\":\"MS09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-L-Blue\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"427\":{\"sku\":\"MS09-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-L-Red\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"428\":{\"sku\":\"MS09-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XL-Black\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"429\":{\"sku\":\"MS09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XL-Blue\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"430\":{\"sku\":\"MS09-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XL-Red\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-crew-neck-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"431\":{\"sku\":\"MS09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (Crew-neck)\",\"description\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.<\\/p>\\n<p>&bull; Royal polyester tee with black accents.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=LumaTech&trade;|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS09-XS-Black,size=XS,color=Black|sku=MS09-XS-Blue,size=XS,color=Blue|sku=MS09-XS-Red,size=XS,color=Red|sku=MS09-S-Black,size=S,color=Black|sku=MS09-S-Blue,size=S,color=Blue|sku=MS09-S-Red,size=S,color=Red|sku=MS09-M-Black,size=M,color=Black|sku=MS09-M-Blue,size=M,color=Blue|sku=MS09-M-Red,size=M,color=Red|sku=MS09-L-Black,size=L,color=Black|sku=MS09-L-Blue,size=L,color=Blue|sku=MS09-L-Red,size=L,color=Red|sku=MS09-XL-Black,size=XL,color=Black|sku=MS09-XL-Blue,size=XL,color=Blue|sku=MS09-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms09-blue_alt1.jpg,\\/m\\/s\\/ms09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"432\":{\"sku\":\"MS11-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XS-Blue\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"433\":{\"sku\":\"MS11-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XS-Green\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"434\":{\"sku\":\"MS11-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XS-Yellow\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"435\":{\"sku\":\"MS11-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-S-Blue\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"436\":{\"sku\":\"MS11-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-S-Green\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"437\":{\"sku\":\"MS11-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-S-Yellow\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"438\":{\"sku\":\"MS11-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-M-Blue\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"439\":{\"sku\":\"MS11-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-M-Green\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"440\":{\"sku\":\"MS11-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-M-Yellow\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"441\":{\"sku\":\"MS11-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-L-Blue\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"442\":{\"sku\":\"MS11-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-L-Green\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"443\":{\"sku\":\"MS11-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-L-Yellow\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"444\":{\"sku\":\"MS11-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XL-Blue\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"445\":{\"sku\":\"MS11-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XL-Green\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"446\":{\"sku\":\"MS11-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)-XL-Yellow\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-v-neck-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"447\":{\"sku\":\"MS11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (V-neck)\",\"description\":\"<p>Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.<\\/p>\\n<p>&bull; Lime heathered v-neck tee. <br \\/>&bull; Ultra-lightweight.<br \\/>&bull; Moisture-wicking Cocona&reg; fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS11-XS-Blue,size=XS,color=Blue|sku=MS11-XS-Green,size=XS,color=Green|sku=MS11-XS-Yellow,size=XS,color=Yellow|sku=MS11-S-Blue,size=S,color=Blue|sku=MS11-S-Green,size=S,color=Green|sku=MS11-S-Yellow,size=S,color=Yellow|sku=MS11-M-Blue,size=M,color=Blue|sku=MS11-M-Green,size=M,color=Green|sku=MS11-M-Yellow,size=M,color=Yellow|sku=MS11-L-Blue,size=L,color=Blue|sku=MS11-L-Green,size=L,color=Green|sku=MS11-L-Yellow,size=L,color=Yellow|sku=MS11-XL-Blue,size=XL,color=Blue|sku=MS11-XL-Green,size=XL,color=Green|sku=MS11-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"448\":{\"sku\":\"MS12-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XS-Black\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"449\":{\"sku\":\"MS12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"450\":{\"sku\":\"MS12-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XS-Red\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"451\":{\"sku\":\"MS12-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-S-Black\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"452\":{\"sku\":\"MS12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-S-Blue\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"453\":{\"sku\":\"MS12-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-S-Red\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"454\":{\"sku\":\"MS12-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-M-Black\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"455\":{\"sku\":\"MS12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-M-Blue\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"456\":{\"sku\":\"MS12-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-M-Red\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"457\":{\"sku\":\"MS12-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-L-Black\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"458\":{\"sku\":\"MS12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-L-Blue\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"459\":{\"sku\":\"MS12-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-L-Red\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"460\":{\"sku\":\"MS12-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XL-Black\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"461\":{\"sku\":\"MS12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"462\":{\"sku\":\"MS12-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)-XL-Red\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atomic-endurance-running-tee-crew-neck-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"463\":{\"sku\":\"MS12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Atomic Endurance Running Tee (Crew-Neck)\",\"description\":\"<p>Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona&reg; fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.<\\/p>\\n<p>&bull; Red polyester tee.<br \\/>&bull; Crew neckline. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS12-XS-Black,size=XS,color=Black|sku=MS12-XS-Blue,size=XS,color=Blue|sku=MS12-XS-Red,size=XS,color=Red|sku=MS12-S-Black,size=S,color=Black|sku=MS12-S-Blue,size=S,color=Blue|sku=MS12-S-Red,size=S,color=Red|sku=MS12-M-Black,size=M,color=Black|sku=MS12-M-Blue,size=M,color=Blue|sku=MS12-M-Red,size=M,color=Red|sku=MS12-L-Black,size=L,color=Black|sku=MS12-L-Blue,size=L,color=Blue|sku=MS12-L-Red,size=L,color=Red|sku=MS12-XL-Black,size=XL,color=Black|sku=MS12-XL-Blue,size=XL,color=Blue|sku=MS12-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"image\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms12-red_alt1.jpg,\\/m\\/s\\/ms12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"464\":{\"sku\":\"MS03-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XS-Gray\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"465\":{\"sku\":\"MS03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XS-Green\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"466\":{\"sku\":\"MS03-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XS-Orange\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"467\":{\"sku\":\"MS03-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-S-Gray\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"468\":{\"sku\":\"MS03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-S-Green\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"469\":{\"sku\":\"MS03-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-S-Orange\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"470\":{\"sku\":\"MS03-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-M-Gray\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"471\":{\"sku\":\"MS03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-M-Green\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"472\":{\"sku\":\"MS03-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-M-Orange\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"473\":{\"sku\":\"MS03-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-L-Gray\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"474\":{\"sku\":\"MS03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-L-Green\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"475\":{\"sku\":\"MS03-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-L-Orange\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"476\":{\"sku\":\"MS03-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XL-Gray\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-gray_alt1.jpg,\\/m\\/s\\/ms03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"477\":{\"sku\":\"MS03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XL-Green\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"478\":{\"sku\":\"MS03-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee-XL-Orange\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"balboa-persistence-tee-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"479\":{\"sku\":\"MS03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Balboa Persistence Tee\",\"description\":\"<p>The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.<\\/p>\\n<p>&bull; Crew neckline. <br \\/>&bull; Semi-fitted. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS03-XS-Gray,size=XS,color=Gray|sku=MS03-XS-Green,size=XS,color=Green|sku=MS03-XS-Orange,size=XS,color=Orange|sku=MS03-S-Gray,size=S,color=Gray|sku=MS03-S-Green,size=S,color=Green|sku=MS03-S-Orange,size=S,color=Orange|sku=MS03-M-Gray,size=M,color=Gray|sku=MS03-M-Green,size=M,color=Green|sku=MS03-M-Orange,size=M,color=Orange|sku=MS03-L-Gray,size=L,color=Gray|sku=MS03-L-Green,size=L,color=Green|sku=MS03-L-Orange,size=L,color=Orange|sku=MS03-XL-Gray,size=XL,color=Gray|sku=MS03-XL-Green,size=XL,color=Green|sku=MS03-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms03-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"480\":{\"sku\":\"MS06-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XS-Blue\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"481\":{\"sku\":\"MS06-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XS-Green\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"482\":{\"sku\":\"MS06-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XS-Yellow\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"483\":{\"sku\":\"MS06-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-S-Blue\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"484\":{\"sku\":\"MS06-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-S-Green\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"485\":{\"sku\":\"MS06-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-S-Yellow\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"486\":{\"sku\":\"MS06-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-M-Blue\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"487\":{\"sku\":\"MS06-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-M-Green\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"488\":{\"sku\":\"MS06-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-M-Yellow\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"489\":{\"sku\":\"MS06-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-L-Blue\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"490\":{\"sku\":\"MS06-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-L-Green\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"491\":{\"sku\":\"MS06-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-L-Yellow\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"492\":{\"sku\":\"MS06-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XL-Blue\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"493\":{\"sku\":\"MS06-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XL-Green\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"494\":{\"sku\":\"MS06-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee-XL-Yellow\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoltan-gym-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"495\":{\"sku\":\"MS06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Zoltan Gym Tee\",\"description\":\"<p>This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS06-XS-Blue,size=XS,color=Blue|sku=MS06-XS-Green,size=XS,color=Green|sku=MS06-XS-Yellow,size=XS,color=Yellow|sku=MS06-S-Blue,size=S,color=Blue|sku=MS06-S-Green,size=S,color=Green|sku=MS06-S-Yellow,size=S,color=Yellow|sku=MS06-M-Blue,size=M,color=Blue|sku=MS06-M-Green,size=M,color=Green|sku=MS06-M-Yellow,size=M,color=Yellow|sku=MS06-L-Blue,size=L,color=Blue|sku=MS06-L-Green,size=L,color=Green|sku=MS06-L-Yellow,size=L,color=Yellow|sku=MS06-XL-Blue,size=XL,color=Blue|sku=MS06-XL-Green,size=XL,color=Green|sku=MS06-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms06-blue_alt1.jpg,\\/m\\/s\\/ms06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"496\":{\"sku\":\"MS01-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XS-Black\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"497\":{\"sku\":\"MS01-XS-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XS-Brown\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xs-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Brown\"},\"498\":{\"sku\":\"MS01-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XS-Yellow\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"499\":{\"sku\":\"MS01-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-S-Black\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"}}',1,'[[regtime]]'),(6,'catalog_product','append','{\"500\":{\"sku\":\"MS01-S-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-S-Brown\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-s-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Brown\"},\"501\":{\"sku\":\"MS01-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-S-Yellow\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"502\":{\"sku\":\"MS01-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-M-Black\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"503\":{\"sku\":\"MS01-M-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-M-Brown\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-m-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Brown\"},\"504\":{\"sku\":\"MS01-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-M-Yellow\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"505\":{\"sku\":\"MS01-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-L-Black\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"506\":{\"sku\":\"MS01-L-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-L-Brown\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-l-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Brown\"},\"507\":{\"sku\":\"MS01-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-L-Yellow\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"508\":{\"sku\":\"MS01-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XL-Black\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"509\":{\"sku\":\"MS01-XL-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XL-Brown\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xl-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Brown\"},\"510\":{\"sku\":\"MS01-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee-XL-Yellow\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aero-daily-fitness-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"511\":{\"sku\":\"MS01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Aero Daily Fitness Tee\",\"description\":\"<p>Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.<\\/p>\\n<p>Relaxed fit. <br \\/>Short-Sleeve. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS01-XS-Black,size=XS,color=Black|sku=MS01-XS-Brown,size=XS,color=Brown|sku=MS01-XS-Yellow,size=XS,color=Yellow|sku=MS01-S-Black,size=S,color=Black|sku=MS01-S-Brown,size=S,color=Brown|sku=MS01-S-Yellow,size=S,color=Yellow|sku=MS01-M-Black,size=M,color=Black|sku=MS01-M-Brown,size=M,color=Brown|sku=MS01-M-Yellow,size=M,color=Yellow|sku=MS01-L-Black,size=L,color=Black|sku=MS01-L-Brown,size=L,color=Brown|sku=MS01-L-Yellow,size=L,color=Yellow|sku=MS01-XL-Black,size=XL,color=Black|sku=MS01-XL-Brown,size=XL,color=Brown|sku=MS01-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":\"Polyester\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"512\":{\"sku\":\"MS02-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XS-Black\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"513\":{\"sku\":\"MS02-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XS-Blue\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"514\":{\"sku\":\"MS02-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XS-Gray\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"515\":{\"sku\":\"MS02-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-S-Black\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"516\":{\"sku\":\"MS02-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-S-Blue\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"517\":{\"sku\":\"MS02-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-S-Gray\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"518\":{\"sku\":\"MS02-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-M-Black\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"519\":{\"sku\":\"MS02-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-M-Blue\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"520\":{\"sku\":\"MS02-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-M-Gray\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"521\":{\"sku\":\"MS02-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-L-Black\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"522\":{\"sku\":\"MS02-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-L-Blue\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"523\":{\"sku\":\"MS02-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-L-Gray\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"524\":{\"sku\":\"MS02-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XL-Black\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"525\":{\"sku\":\"MS02-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XL-Blue\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"526\":{\"sku\":\"MS02-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)-XL-Gray\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ryker-lumatech-trade-tee-v-neck-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"527\":{\"sku\":\"MS02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Ryker LumaTech&trade; Tee (V-neck)\",\"description\":\"<p>Don\'t be fooled by its classic style; the Ryker LumaTech&trade; Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.<\\/p>\\n<p>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeve. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=LumaTech&trade;|Cotton|Rayon,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS02-XS-Black,size=XS,color=Black|sku=MS02-XS-Blue,size=XS,color=Blue|sku=MS02-XS-Gray,size=XS,color=Gray|sku=MS02-S-Black,size=S,color=Black|sku=MS02-S-Blue,size=S,color=Blue|sku=MS02-S-Gray,size=S,color=Gray|sku=MS02-M-Black,size=M,color=Black|sku=MS02-M-Blue,size=M,color=Blue|sku=MS02-M-Gray,size=M,color=Gray|sku=MS02-L-Black,size=L,color=Black|sku=MS02-L-Blue,size=L,color=Blue|sku=MS02-L-Gray,size=L,color=Gray|sku=MS02-XL-Black,size=XL,color=Black|sku=MS02-XL-Blue,size=XL,color=Blue|sku=MS02-XL-Gray,size=XL,color=Gray\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"image\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms02-gray_alt1.jpg,\\/m\\/s\\/ms02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"LumaTech&trade;\",\"Cotton\",\"Rayon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"528\":{\"sku\":\"MS10-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XS-Black\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"529\":{\"sku\":\"MS10-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XS-Blue\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"530\":{\"sku\":\"MS10-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XS-Red\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"531\":{\"sku\":\"MS10-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-S-Black\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"532\":{\"sku\":\"MS10-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-S-Blue\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"533\":{\"sku\":\"MS10-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-S-Red\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"534\":{\"sku\":\"MS10-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-M-Black\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"535\":{\"sku\":\"MS10-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-M-Blue\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"536\":{\"sku\":\"MS10-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-M-Red\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"537\":{\"sku\":\"MS10-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-L-Black\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"538\":{\"sku\":\"MS10-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-L-Blue\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"539\":{\"sku\":\"MS10-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-L-Red\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"540\":{\"sku\":\"MS10-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XL-Black\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"541\":{\"sku\":\"MS10-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XL-Blue\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"542\":{\"sku\":\"MS10-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee-XL-Red\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"logan-heattec-reg-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"543\":{\"sku\":\"MS10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Logan  HeatTec&reg; Tee\",\"description\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.<\\/p>\\n<p>&bull; Semi-fitted. <br \\/>&bull; Crew neckline. <br \\/>&bull; Machine wash\\/tumble dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton|HeatTec&reg;,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS10-XS-Black,size=XS,color=Black|sku=MS10-XS-Blue,size=XS,color=Blue|sku=MS10-XS-Red,size=XS,color=Red|sku=MS10-S-Black,size=S,color=Black|sku=MS10-S-Blue,size=S,color=Blue|sku=MS10-S-Red,size=S,color=Red|sku=MS10-M-Black,size=M,color=Black|sku=MS10-M-Blue,size=M,color=Blue|sku=MS10-M-Red,size=M,color=Red|sku=MS10-L-Black,size=L,color=Black|sku=MS10-L-Blue,size=L,color=Blue|sku=MS10-L-Red,size=L,color=Red|sku=MS10-XL-Black,size=XL,color=Black|sku=MS10-XL-Blue,size=XL,color=Blue|sku=MS10-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms10-blue_alt1.jpg,\\/m\\/s\\/ms10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cotton\",\"HeatTec&reg;\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"544\":{\"sku\":\"MS07-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XS-Black\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"545\":{\"sku\":\"MS07-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XS-Green\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"546\":{\"sku\":\"MS07-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XS-White\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"547\":{\"sku\":\"MS07-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-S-Black\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"548\":{\"sku\":\"MS07-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-S-Green\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"549\":{\"sku\":\"MS07-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-S-White\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"550\":{\"sku\":\"MS07-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-M-Black\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"551\":{\"sku\":\"MS07-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-M-Green\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"552\":{\"sku\":\"MS07-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-M-White\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"553\":{\"sku\":\"MS07-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-L-Black\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"554\":{\"sku\":\"MS07-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-L-Green\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"555\":{\"sku\":\"MS07-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-L-White\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"556\":{\"sku\":\"MS07-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XL-Black\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"557\":{\"sku\":\"MS07-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XL-Green\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"558\":{\"sku\":\"MS07-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee-XL-White\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deion-long-sleeve-evercool-trade-tee-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"559\":{\"sku\":\"MS07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Deion Long-Sleeve EverCool&trade; Tee\",\"description\":\"<p>When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.<\\/p>\\n<p>&bull; Fitted. <br \\/>&bull; Contrast inner neck tape. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|EverCool&trade;|Organic Cotton,pattern=Solid,climate=All-weather|Cool|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS07-XS-Black,size=XS,color=Black|sku=MS07-XS-Green,size=XS,color=Green|sku=MS07-XS-White,size=XS,color=White|sku=MS07-S-Black,size=S,color=Black|sku=MS07-S-Green,size=S,color=Green|sku=MS07-S-White,size=S,color=White|sku=MS07-M-Black,size=M,color=Black|sku=MS07-M-Green,size=M,color=Green|sku=MS07-M-White,size=M,color=White|sku=MS07-L-Black,size=L,color=Black|sku=MS07-L-Green,size=L,color=Green|sku=MS07-L-White,size=L,color=White|sku=MS07-XL-Black,size=XL,color=Black|sku=MS07-XL-Green,size=XL,color=Green|sku=MS07-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"image\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms07-green_alt1.jpg,\\/m\\/s\\/ms07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"EverCool&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"560\":{\"sku\":\"MS08-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XS-Black\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"561\":{\"sku\":\"MS08-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XS-Blue\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"562\":{\"sku\":\"MS08-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XS-Red\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"563\":{\"sku\":\"MS08-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-S-Black\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"564\":{\"sku\":\"MS08-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-S-Blue\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"565\":{\"sku\":\"MS08-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-S-Red\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"566\":{\"sku\":\"MS08-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-M-Black\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"567\":{\"sku\":\"MS08-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-M-Blue\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"568\":{\"sku\":\"MS08-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-M-Red\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"569\":{\"sku\":\"MS08-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-L-Black\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"570\":{\"sku\":\"MS08-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-L-Blue\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"571\":{\"sku\":\"MS08-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-L-Red\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"572\":{\"sku\":\"MS08-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XL-Black\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"573\":{\"sku\":\"MS08-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XL-Blue\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"574\":{\"sku\":\"MS08-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee-XL-Red\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"strike-endurance-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"575\":{\"sku\":\"MS08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tees\",\"product_websites\":\"base\",\"name\":\"Strike Endurance Tee\",\"description\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Ribbed cuffs\\/collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Cool|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MS08-XS-Black,size=XS,color=Black|sku=MS08-XS-Blue,size=XS,color=Blue|sku=MS08-XS-Red,size=XS,color=Red|sku=MS08-S-Black,size=S,color=Black|sku=MS08-S-Blue,size=S,color=Blue|sku=MS08-S-Red,size=S,color=Red|sku=MS08-M-Black,size=M,color=Black|sku=MS08-M-Blue,size=M,color=Blue|sku=MS08-M-Red,size=M,color=Red|sku=MS08-L-Black,size=L,color=Black|sku=MS08-L-Blue,size=L,color=Blue|sku=MS08-L-Red,size=L,color=Red|sku=MS08-XL-Black,size=XL,color=Black|sku=MS08-XL-Blue,size=XL,color=Blue|sku=MS08-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"image\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/ms08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/ms08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"576\":{\"sku\":\"MT01-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XS-Gray\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"577\":{\"sku\":\"MT01-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XS-Orange\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"578\":{\"sku\":\"MT01-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XS-Red\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"579\":{\"sku\":\"MT01-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-S-Gray\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"580\":{\"sku\":\"MT01-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-S-Orange\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"581\":{\"sku\":\"MT01-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-S-Red\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"582\":{\"sku\":\"MT01-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-M-Gray\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"583\":{\"sku\":\"MT01-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-M-Orange\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"584\":{\"sku\":\"MT01-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-M-Red\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"585\":{\"sku\":\"MT01-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-L-Gray\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"586\":{\"sku\":\"MT01-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-L-Orange\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"587\":{\"sku\":\"MT01-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-L-Red\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"588\":{\"sku\":\"MT01-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XL-Gray\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"589\":{\"sku\":\"MT01-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XL-Orange\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"590\":{\"sku\":\"MT01-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank-XL-Red\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erikssen-cooltech-trade-fitness-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"591\":{\"sku\":\"MT01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Erikssen CoolTech&trade; Fitness Tank\",\"description\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.<\\/p>\\n<p>&bull; Red performance tank.<br \\/>&bull; Slight scoop neckline. <br \\/>&bull; Reflectivity. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cotton|HeatTec&reg;|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT01-XS-Gray,size=XS,color=Gray|sku=MT01-XS-Orange,size=XS,color=Orange|sku=MT01-XS-Red,size=XS,color=Red|sku=MT01-S-Gray,size=S,color=Gray|sku=MT01-S-Orange,size=S,color=Orange|sku=MT01-S-Red,size=S,color=Red|sku=MT01-M-Gray,size=M,color=Gray|sku=MT01-M-Orange,size=M,color=Orange|sku=MT01-M-Red,size=M,color=Red|sku=MT01-L-Gray,size=L,color=Gray|sku=MT01-L-Orange,size=L,color=Orange|sku=MT01-L-Red,size=L,color=Red|sku=MT01-XL-Gray,size=XL,color=Gray|sku=MT01-XL-Orange,size=XL,color=Orange|sku=MT01-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"image\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt01-red_alt1.jpg,\\/m\\/t\\/mt01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cotton\",\"HeatTec&reg;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"592\":{\"sku\":\"MT02-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XS-Gray\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"593\":{\"sku\":\"MT02-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XS-Red\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"594\":{\"sku\":\"MT02-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XS-White\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"595\":{\"sku\":\"MT02-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-S-Gray\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"596\":{\"sku\":\"MT02-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-S-Red\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"597\":{\"sku\":\"MT02-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-S-White\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"598\":{\"sku\":\"MT02-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-M-Gray\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"599\":{\"sku\":\"MT02-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-M-Red\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (7,'catalog_product','append','{\"600\":{\"sku\":\"MT02-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-M-White\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"601\":{\"sku\":\"MT02-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-L-Gray\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"602\":{\"sku\":\"MT02-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-L-Red\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"603\":{\"sku\":\"MT02-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-L-White\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"604\":{\"sku\":\"MT02-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XL-Gray\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"605\":{\"sku\":\"MT02-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XL-Red\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"606\":{\"sku\":\"MT02-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank-XL-White\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tristan-endurance-tank-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"607\":{\"sku\":\"MT02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tristan Endurance Tank\",\"description\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.<\\/p>\\n<p>&bull; White performance tank.<br \\/>&bull; Stylish contrast stitching. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Ribbed crew neckline. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=EverCool&trade;|Lycra&reg;|Organic Cotton,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT02-XS-Gray,size=XS,color=Gray|sku=MT02-XS-Red,size=XS,color=Red|sku=MT02-XS-White,size=XS,color=White|sku=MT02-S-Gray,size=S,color=Gray|sku=MT02-S-Red,size=S,color=Red|sku=MT02-S-White,size=S,color=White|sku=MT02-M-Gray,size=M,color=Gray|sku=MT02-M-Red,size=M,color=Red|sku=MT02-M-White,size=M,color=White|sku=MT02-L-Gray,size=L,color=Gray|sku=MT02-L-Red,size=L,color=Red|sku=MT02-L-White,size=L,color=White|sku=MT02-XL-Gray,size=XL,color=Gray|sku=MT02-XL-Red,size=XL,color=Red|sku=MT02-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"image\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt02-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt02-white_alt1.jpg,\\/m\\/t\\/mt02-white_back.jpg,\\/m\\/t\\/mt02-white_sideb.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"EverCool&trade;\",\"Lycra&reg;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"608\":{\"sku\":\"MT03-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XS-Blue\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"609\":{\"sku\":\"MT03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XS-Red\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"610\":{\"sku\":\"MT03-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XS-Yellow\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"611\":{\"sku\":\"MT03-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-S-Blue\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"612\":{\"sku\":\"MT03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-S-Red\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"613\":{\"sku\":\"MT03-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-S-Yellow\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"614\":{\"sku\":\"MT03-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-M-Blue\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"615\":{\"sku\":\"MT03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-M-Red\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"616\":{\"sku\":\"MT03-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-M-Yellow\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"617\":{\"sku\":\"MT03-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-L-Blue\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"618\":{\"sku\":\"MT03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-L-Red\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"619\":{\"sku\":\"MT03-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-L-Yellow\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"620\":{\"sku\":\"MT03-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XL-Blue\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"621\":{\"sku\":\"MT03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XL-Red\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"622\":{\"sku\":\"MT03-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank-XL-Yellow\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"primo-endurance-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"623\":{\"sku\":\"MT03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Primo Endurance Tank\",\"description\":\"<p>Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball &ndash; this breathable mesh top will keep you cool during all your activities.<\\/p>\\n<p>&bull; Red heather tank with gray pocket.<br \\/>&bull; Chafe-resistant flatlock seams. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Contrast topstitching.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=LumaTech&trade;|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT03-XS-Blue,size=XS,color=Blue|sku=MT03-XS-Red,size=XS,color=Red|sku=MT03-XS-Yellow,size=XS,color=Yellow|sku=MT03-S-Blue,size=S,color=Blue|sku=MT03-S-Red,size=S,color=Red|sku=MT03-S-Yellow,size=S,color=Yellow|sku=MT03-M-Blue,size=M,color=Blue|sku=MT03-M-Red,size=M,color=Red|sku=MT03-M-Yellow,size=M,color=Yellow|sku=MT03-L-Blue,size=L,color=Blue|sku=MT03-L-Red,size=L,color=Red|sku=MT03-L-Yellow,size=L,color=Yellow|sku=MT03-XL-Blue,size=XL,color=Blue|sku=MT03-XL-Red,size=XL,color=Red|sku=MT03-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"624\":{\"sku\":\"MT04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank-XS-Blue\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-endurance-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"625\":{\"sku\":\"MT04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank-S-Blue\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-endurance-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"626\":{\"sku\":\"MT04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank-M-Blue\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-endurance-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"627\":{\"sku\":\"MT04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank-L-Blue\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-endurance-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"628\":{\"sku\":\"MT04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank-XL-Blue\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helios-endurance-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"629\":{\"sku\":\"MT04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Helios Endurance Tank\",\"description\":\"<p>When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.<\\/p>\\n<p>&bull; Blue heather tank with gray pocket.<br \\/>&bull; Contrast sides and back inserts.<br \\/>&bull; Self-fabric binding at neck and armholes. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT04-XS-Blue,size=XS,color=Blue|sku=MT04-S-Blue,size=S,color=Blue|sku=MT04-M-Blue,size=M,color=Blue|sku=MT04-L-Blue,size=L,color=Blue|sku=MT04-XL-Blue,size=XL,color=Blue\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt04-blue_alt1.jpg,\\/m\\/t\\/mt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"630\":{\"sku\":\"MT05-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank-XS-Blue\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rocco-gym-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"631\":{\"sku\":\"MT05-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank-S-Blue\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rocco-gym-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"632\":{\"sku\":\"MT05-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank-M-Blue\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rocco-gym-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"633\":{\"sku\":\"MT05-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank-L-Blue\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rocco-gym-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"634\":{\"sku\":\"MT05-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank-XL-Blue\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rocco-gym-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"635\":{\"sku\":\"MT05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Rocco Gym Tank\",\"description\":\"<p>Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.<\\/p>\\n<p>&bull; Light blue heather gray tank.<br \\/>&bull; Quick-drying, moisture-wicking.<br \\/>&bull; 4-way stretch construction.<br \\/>&bull; Flatlock seams prevent chafing.<br \\/>&bull; Mesh at back for breathability.<br \\/>&bull; 100% Polyester.<br \\/>&bull; UPF 50 protection.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT05-XS-Blue,size=XS,color=Blue|sku=MT05-S-Blue,size=S,color=Blue|sku=MT05-M-Blue,size=M,color=Blue|sku=MT05-L-Blue,size=L,color=Blue|sku=MT05-XL-Blue,size=XL,color=Blue\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"636\":{\"sku\":\"MT06-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank-XS-Black\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"vulcan-weightlifting-tank-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"637\":{\"sku\":\"MT06-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank-S-Black\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"vulcan-weightlifting-tank-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"638\":{\"sku\":\"MT06-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank-M-Black\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"vulcan-weightlifting-tank-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"639\":{\"sku\":\"MT06-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank-L-Black\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"vulcan-weightlifting-tank-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"640\":{\"sku\":\"MT06-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank-XL-Black\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"vulcan-weightlifting-tank-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"641\":{\"sku\":\"MT06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Vulcan Weightlifting Tank\",\"description\":\"<p>The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.<\\/p>\\n<p>&bull; Black polyester spandex tank.<br \\/>&bull; 100% polyester.<br \\/>&bull; Freedom of movement.<br \\/>&bull; No-chafe seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT06-XS-Black,size=XS,color=Black|sku=MT06-S-Black,size=S,color=Black|sku=MT06-M-Black,size=M,color=Black|sku=MT06-L-Black,size=L,color=Black|sku=MT06-XL-Black,size=XL,color=Black\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"image\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt06-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"642\":{\"sku\":\"MT07-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank-XS-Gray\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"argus-all-weather-tank-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"643\":{\"sku\":\"MT07-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank-S-Gray\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"argus-all-weather-tank-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"644\":{\"sku\":\"MT07-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank-M-Gray\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"argus-all-weather-tank-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"645\":{\"sku\":\"MT07-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank-L-Gray\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"argus-all-weather-tank-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"646\":{\"sku\":\"MT07-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank-XL-Gray\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"argus-all-weather-tank-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"647\":{\"sku\":\"MT07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Argus All-Weather Tank\",\"description\":\"<p>The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.<\\/p>\\n<p>&bull; Dark gray polyester spandex tank.<br \\/>&bull; Reflective details for nighttime visibility. <br \\/>&bull; Stash pocket.<br \\/>&bull; Anti-chafe flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT07-XS-Gray,size=XS,color=Gray|sku=MT07-S-Gray,size=S,color=Gray|sku=MT07-M-Gray,size=M,color=Gray|sku=MT07-L-Gray,size=L,color=Gray|sku=MT07-XL-Gray,size=XL,color=Gray\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"image\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"648\":{\"sku\":\"MT08-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank-XS-Green\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sparta-gym-tank-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"649\":{\"sku\":\"MT08-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank-S-Green\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sparta-gym-tank-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"650\":{\"sku\":\"MT08-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank-M-Green\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sparta-gym-tank-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"651\":{\"sku\":\"MT08-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank-L-Green\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sparta-gym-tank-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"652\":{\"sku\":\"MT08-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank-XL-Green\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sparta-gym-tank-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"653\":{\"sku\":\"MT08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sparta Gym Tank\",\"description\":\"<p>The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.<\\/p>\\n<p>&bull; Green polyester tank.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<br \\/>&bull; Close-to-body athletic fit.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT08-XS-Green,size=XS,color=Green|sku=MT08-S-Green,size=S,color=Green|sku=MT08-M-Green,size=M,color=Green|sku=MT08-L-Green,size=L,color=Green|sku=MT08-XL-Green,size=XL,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"image\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt08-green_alt1.jpg,\\/m\\/t\\/mt08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":\"Polyester\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"654\":{\"sku\":\"MT09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank-XS-Blue\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sinbad-fitness-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"655\":{\"sku\":\"MT09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank-S-Blue\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sinbad-fitness-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"656\":{\"sku\":\"MT09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank-M-Blue\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sinbad-fitness-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"657\":{\"sku\":\"MT09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank-L-Blue\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sinbad-fitness-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"658\":{\"sku\":\"MT09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank-XL-Blue\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sinbad-fitness-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"659\":{\"sku\":\"MT09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Sinbad Fitness Tank\",\"description\":\"<p>Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.<\\/p>\\n<p>&bull; Teal polyester tank.<br \\/>&bull; Premium fit tank top.<br \\/>&bull; Ultra lightweight.<br \\/>&bull; Naturally odor-resistant.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT09-XS-Blue,size=XS,color=Blue|sku=MT09-S-Blue,size=S,color=Blue|sku=MT09-M-Blue,size=M,color=Blue|sku=MT09-L-Blue,size=L,color=Blue|sku=MT09-XL-Blue,size=XL,color=Blue\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt09-blue_alt1.jpg,\\/m\\/t\\/mt09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":\"Polyester\",\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"660\":{\"sku\":\"MT10-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank-XS-Yellow\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiberius-gym-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"661\":{\"sku\":\"MT10-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank-S-Yellow\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiberius-gym-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"662\":{\"sku\":\"MT10-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank-M-Yellow\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiberius-gym-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"663\":{\"sku\":\"MT10-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank-L-Yellow\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiberius-gym-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"664\":{\"sku\":\"MT10-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank-XL-Yellow\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiberius-gym-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"665\":{\"sku\":\"MT10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Tiberius Gym Tank\",\"description\":\"<p>Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.<\\/p>\\n<p>&bull; Yellow scoop neck cotton tank.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<br \\/>&bull; Pesticide- and herbicide-free hemp.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|EverCool&trade;|Organic Cotton,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT10-XS-Yellow,size=XS,color=Yellow|sku=MT10-S-Yellow,size=S,color=Yellow|sku=MT10-M-Yellow,size=M,color=Yellow|sku=MT10-L-Yellow,size=L,color=Yellow|sku=MT10-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"image\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"EverCool&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"666\":{\"sku\":\"MT11-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank-XS-Blue\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atlas-fitness-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"667\":{\"sku\":\"MT11-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank-S-Blue\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atlas-fitness-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"668\":{\"sku\":\"MT11-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank-M-Blue\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atlas-fitness-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"669\":{\"sku\":\"MT11-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank-L-Blue\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atlas-fitness-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"670\":{\"sku\":\"MT11-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank-XL-Blue\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"atlas-fitness-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"671\":{\"sku\":\"MT11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Atlas Fitness Tank\",\"description\":\"<p>From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.<\\/p>\\n<p>&bull; Teal scoop neck cotton tank.<br \\/>&bull; Triblend, soft fabric.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Organic Cotton|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT11-XS-Blue,size=XS,color=Blue|sku=MT11-S-Blue,size=S,color=Blue|sku=MT11-M-Blue,size=M,color=Blue|sku=MT11-L-Blue,size=L,color=Blue|sku=MT11-XL-Blue,size=XL,color=Blue\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"672\":{\"sku\":\"MT12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank-XS-Blue\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassius-sparring-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"673\":{\"sku\":\"MT12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank-S-Blue\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassius-sparring-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"674\":{\"sku\":\"MT12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank-M-Blue\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassius-sparring-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"675\":{\"sku\":\"MT12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank-L-Blue\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassius-sparring-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"676\":{\"sku\":\"MT12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank-XL-Blue\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassius-sparring-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"677\":{\"sku\":\"MT12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Tops\\/Tanks\",\"product_websites\":\"base\",\"name\":\"Cassius Sparring Tank\",\"description\":\"<p>Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.<\\/p>\\n<p>&bull; Royal crewneck cotton tank.<br \\/>&bull; Contrast stitching.<br \\/>&bull; Self fabric binding at neckline.<br \\/>&bull; Slim fit.<br \\/>&bull; 96% Merino \\/ 4% LYCRA&reg;.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"18\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=LumaTech&trade;|Polyester,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MT12-XS-Blue,size=XS,color=Blue|sku=MT12-S-Blue,size=S,color=Blue|sku=MT12-M-Blue,size=M,color=Blue|sku=MT12-L-Blue,size=L,color=Blue|sku=MT12-XL-Blue,size=XL,color=Blue\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"image\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/t\\/mt12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/t\\/mt12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"678\":{\"sku\":\"MP01-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-32-Black\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"679\":{\"sku\":\"MP01-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-32-Gray\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"680\":{\"sku\":\"MP01-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-32-Purple\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"681\":{\"sku\":\"MP01-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-33-Black\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"682\":{\"sku\":\"MP01-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-33-Gray\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"683\":{\"sku\":\"MP01-33-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-33-Purple\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-33-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Purple\"},\"684\":{\"sku\":\"MP01-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-34-Black\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"685\":{\"sku\":\"MP01-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-34-Gray\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"686\":{\"sku\":\"MP01-34-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-34-Purple\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-34-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Purple\"},\"687\":{\"sku\":\"MP01-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-36-Black\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"688\":{\"sku\":\"MP01-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-36-Gray\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"689\":{\"sku\":\"MP01-36-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant-36-Purple\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"caesar-warm-up-pant-36-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Purple\"},\"690\":{\"sku\":\"MP01\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Caesar Warm-Up Pant\",\"description\":\"<p>Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech&trade; fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.<\\/p>\\n<p>&bull; Light gray heather knit straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Inseam: 32\\\". <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; CoolTech&trade; wicking fabric.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Track Pants,material=CoolTech&trade;|Fleece|Hemp|Wool,pattern=Solid,climate=Cool|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP01-32-Black,size=32,color=Black|sku=MP01-32-Gray,size=32,color=Gray|sku=MP01-32-Purple,size=32,color=Purple|sku=MP01-33-Black,size=33,color=Black|sku=MP01-33-Gray,size=33,color=Gray|sku=MP01-33-Purple,size=33,color=Purple|sku=MP01-34-Black,size=34,color=Black|sku=MP01-34-Gray,size=34,color=Gray|sku=MP01-34-Purple,size=34,color=Purple|sku=MP01-36-Black,size=36,color=Black|sku=MP01-36-Gray,size=36,color=Gray|sku=MP01-36-Purple,size=36,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"CoolTech&trade;\",\"Fleece\",\"Hemp\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"691\":{\"sku\":\"MP02-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-32-Blue\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"692\":{\"sku\":\"MP02-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-32-Gray\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"693\":{\"sku\":\"MP02-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-32-Red\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"694\":{\"sku\":\"MP02-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-33-Blue\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"695\":{\"sku\":\"MP02-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-33-Gray\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"696\":{\"sku\":\"MP02-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-33-Red\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"697\":{\"sku\":\"MP02-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-34-Blue\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"698\":{\"sku\":\"MP02-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-34-Gray\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"699\":{\"sku\":\"MP02-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-34-Red\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"}}',1,'[[regtime]]'),(8,'catalog_product','append','{\"700\":{\"sku\":\"MP02-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-36-Blue\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"701\":{\"sku\":\"MP02-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-36-Gray\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"702\":{\"sku\":\"MP02-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant-36-Red\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"viktor-lumatech-trade-pant-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"703\":{\"sku\":\"MP02\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Viktor LumaTech&trade; Pant\",\"description\":\"<p>You\'ll love the new Viktor LumaTech&trade; Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.<\\/p>\\n<p>&bull; Dark gray polyester\\/spandex straight leg pants.<br \\/>&bull; Elastic waistband and internal drawstring.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"46\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Track Pants,material=LumaTech&trade;|Polyester|Spandex,pattern=Solid,climate=Cold|Cool|Wintry,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP02-32-Blue,size=32,color=Blue|sku=MP02-32-Gray,size=32,color=Gray|sku=MP02-32-Red,size=32,color=Red|sku=MP02-33-Blue,size=33,color=Blue|sku=MP02-33-Gray,size=33,color=Gray|sku=MP02-33-Red,size=33,color=Red|sku=MP02-34-Blue,size=34,color=Blue|sku=MP02-34-Gray,size=34,color=Gray|sku=MP02-34-Red,size=34,color=Red|sku=MP02-36-Blue,size=36,color=Blue|sku=MP02-36-Gray,size=36,color=Gray|sku=MP02-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Track Pants\"],\"material\":[\"LumaTech&trade;\",\"Polyester\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"704\":{\"sku\":\"MP03-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-32-Blue\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"705\":{\"sku\":\"MP03-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-32-Green\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"706\":{\"sku\":\"MP03-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-32-Red\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"707\":{\"sku\":\"MP03-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-33-Blue\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"708\":{\"sku\":\"MP03-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-33-Green\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"709\":{\"sku\":\"MP03-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-33-Red\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"710\":{\"sku\":\"MP03-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-34-Blue\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"711\":{\"sku\":\"MP03-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-34-Green\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"712\":{\"sku\":\"MP03-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-34-Red\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"713\":{\"sku\":\"MP03-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-36-Blue\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"714\":{\"sku\":\"MP03-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-36-Green\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"715\":{\"sku\":\"MP03-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant-36-Red\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"geo-insulated-jogging-pant-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"716\":{\"sku\":\"MP03\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Geo Insulated Jogging Pant\",\"description\":\"<p>In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.<\\/p>\\n<p>&bull; Black polyester spandex pants with zipper pockets.<br \\/>&bull; Reflective safety accents. <br \\/>&bull; Loose fit.<br \\/>&bull; On-seam pockets. <br \\/>&bull; 8\\\" leg zips. 32\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Track Pants,material=CoolTech&trade;|Polyester|Rayon|Spandex|Wool,pattern=Solid,climate=All-weather|Cool|Indoor|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP03-32-Blue,size=32,color=Blue|sku=MP03-32-Green,size=32,color=Green|sku=MP03-32-Red,size=32,color=Red|sku=MP03-33-Blue,size=33,color=Blue|sku=MP03-33-Green,size=33,color=Green|sku=MP03-33-Red,size=33,color=Red|sku=MP03-34-Blue,size=34,color=Blue|sku=MP03-34-Green,size=34,color=Green|sku=MP03-34-Red,size=34,color=Red|sku=MP03-36-Blue,size=36,color=Blue|sku=MP03-36-Green,size=36,color=Green|sku=MP03-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp03-black_alt1.jpg,\\/m\\/p\\/mp03-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp03-black_alt1.jpg,\\/m\\/p\\/mp03-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"CoolTech&trade;\",\"Polyester\",\"Rayon\",\"Spandex\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"717\":{\"sku\":\"MP04-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-32-Black\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"718\":{\"sku\":\"MP04-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-32-Gray\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"719\":{\"sku\":\"MP04-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-32-Green\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"720\":{\"sku\":\"MP04-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-33-Black\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"721\":{\"sku\":\"MP04-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-33-Gray\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"722\":{\"sku\":\"MP04-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-33-Green\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"723\":{\"sku\":\"MP04-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-34-Black\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"724\":{\"sku\":\"MP04-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-34-Gray\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"725\":{\"sku\":\"MP04-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-34-Green\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"726\":{\"sku\":\"MP04-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-36-Black\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"727\":{\"sku\":\"MP04-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-36-Gray\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"728\":{\"sku\":\"MP04-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant-36-Green\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"supernova-sport-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"729\":{\"sku\":\"MP04\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Supernova Sport Pant\",\"description\":\"<p>Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech&trade; fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.<\\/p>\\n<p>&bull; Dark heather gray straight leg cotton pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Track Pants,material=LumaTech&trade;|Spandex|Wool,pattern=Solid,climate=All-weather|Cold|Cool|Spring|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP04-32-Black,size=32,color=Black|sku=MP04-32-Gray,size=32,color=Gray|sku=MP04-32-Green,size=32,color=Green|sku=MP04-33-Black,size=33,color=Black|sku=MP04-33-Gray,size=33,color=Gray|sku=MP04-33-Green,size=33,color=Green|sku=MP04-34-Black,size=34,color=Black|sku=MP04-34-Gray,size=34,color=Gray|sku=MP04-34-Green,size=34,color=Green|sku=MP04-36-Black,size=36,color=Black|sku=MP04-36-Gray,size=36,color=Gray|sku=MP04-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"image\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"LumaTech&trade;\",\"Spandex\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"730\":{\"sku\":\"MP05-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-32-Black\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"731\":{\"sku\":\"MP05-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-32-Blue\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"732\":{\"sku\":\"MP05-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-32-Green\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"733\":{\"sku\":\"MP05-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-33-Black\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"734\":{\"sku\":\"MP05-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-33-Blue\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"735\":{\"sku\":\"MP05-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-33-Green\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"736\":{\"sku\":\"MP05-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-34-Black\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"737\":{\"sku\":\"MP05-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-34-Blue\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"738\":{\"sku\":\"MP05-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-34-Green\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"739\":{\"sku\":\"MP05-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-36-Black\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"740\":{\"sku\":\"MP05-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-36-Blue\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"741\":{\"sku\":\"MP05-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant-36-Green\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"kratos-gym-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"742\":{\"sku\":\"MP05\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Kratos Gym Pant\",\"description\":\"<p>Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.<\\/p>\\n<p>&bull; Navy cotton straight leg pants.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 2 side-seam pockets. <br \\/>&bull; Internal zip pocket. <br \\/>&bull; Drawstring waist. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=Organic Cotton|Polyester|Rayon,pattern=Solid,climate=Spring|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP05-32-Black,size=32,color=Black|sku=MP05-32-Blue,size=32,color=Blue|sku=MP05-32-Green,size=32,color=Green|sku=MP05-33-Black,size=33,color=Black|sku=MP05-33-Blue,size=33,color=Blue|sku=MP05-33-Green,size=33,color=Green|sku=MP05-34-Black,size=34,color=Black|sku=MP05-34-Blue,size=34,color=Blue|sku=MP05-34-Green,size=34,color=Green|sku=MP05-36-Black,size=36,color=Black|sku=MP05-36-Blue,size=36,color=Blue|sku=MP05-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp05-blue_back.jpg,\\/m\\/p\\/mp05-blue_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"Organic Cotton\",\"Polyester\",\"Rayon\"],\"pattern\":\"Solid\",\"climate\":[\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"743\":{\"sku\":\"MP06-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-32-Gray\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"744\":{\"sku\":\"MP06-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-32-Green\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"745\":{\"sku\":\"MP06-32-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-32-Orange\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-32-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Orange\"},\"746\":{\"sku\":\"MP06-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-33-Gray\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"747\":{\"sku\":\"MP06-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-33-Green\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"748\":{\"sku\":\"MP06-33-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-33-Orange\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-33-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Orange\"},\"749\":{\"sku\":\"MP06-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-34-Gray\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"750\":{\"sku\":\"MP06-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-34-Green\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"751\":{\"sku\":\"MP06-34-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-34-Orange\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-34-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Orange\"},\"752\":{\"sku\":\"MP06-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-36-Gray\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"753\":{\"sku\":\"MP06-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-36-Green\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"754\":{\"sku\":\"MP06-36-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant-36-Orange\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mithra-warmup-pant-36-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Orange\"},\"755\":{\"sku\":\"MP06\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Mithra Warmup Pant\",\"description\":\"<p>When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.<\\/p>\\n<p>&bull; Ankle zips.<br \\/>&bull; Elasticized waistband with draw cord.<br \\/>&bull; Dual hand pockets.<br \\/>&bull; Reflective elements for low-light safety.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants,material=Fleece|Hemp|Organic Cotton|Polyester|Wool,pattern=Solid,climate=All-weather|Cold|Cool|Mild|Windy|Wintry,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP06-32-Gray,size=32,color=Gray|sku=MP06-32-Green,size=32,color=Green|sku=MP06-32-Orange,size=32,color=Orange|sku=MP06-33-Gray,size=33,color=Gray|sku=MP06-33-Green,size=33,color=Green|sku=MP06-33-Orange,size=33,color=Orange|sku=MP06-34-Gray,size=34,color=Gray|sku=MP06-34-Green,size=34,color=Green|sku=MP06-34-Orange,size=34,color=Orange|sku=MP06-36-Gray,size=36,color=Gray|sku=MP06-36-Green,size=36,color=Green|sku=MP06-36-Orange,size=36,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"image\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp06-gray_back.jpg,\\/m\\/p\\/mp06-gray_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\"],\"material\":[\"Fleece\",\"Hemp\",\"Organic Cotton\",\"Polyester\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Mild\",\"Windy\",\"Wintry\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"756\":{\"sku\":\"MP07-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-32-Black\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"757\":{\"sku\":\"MP07-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-32-Blue\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"758\":{\"sku\":\"MP07-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-32-Purple\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"759\":{\"sku\":\"MP07-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-33-Black\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"760\":{\"sku\":\"MP07-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-33-Blue\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"761\":{\"sku\":\"MP07-33-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-33-Purple\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-33-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Purple\"},\"762\":{\"sku\":\"MP07-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-34-Black\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"763\":{\"sku\":\"MP07-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-34-Blue\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"764\":{\"sku\":\"MP07-34-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-34-Purple\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-34-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Purple\"},\"765\":{\"sku\":\"MP07-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-36-Black\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"766\":{\"sku\":\"MP07-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-36-Blue\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"767\":{\"sku\":\"MP07-36-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant-36-Purple\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"thorpe-track-pant-36-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Purple\"},\"768\":{\"sku\":\"MP07\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Thorpe Track Pant\",\"description\":\"<p>Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.<\\/p>\\n<p>&bull; Moisture transfer properties. <br \\/>&bull; 7% stretch.<br \\/>&bull; Reflective safety trim.<br \\/>&bull; Elastic drawcord waist.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Track Pants,material=Cocona&reg; performance fabric|Polyester|Rayon|Wool,pattern=Solid,climate=All-weather|Cold|Cool|Spring|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP07-32-Black,size=32,color=Black|sku=MP07-32-Blue,size=32,color=Blue|sku=MP07-32-Purple,size=32,color=Purple|sku=MP07-33-Black,size=33,color=Black|sku=MP07-33-Blue,size=33,color=Blue|sku=MP07-33-Purple,size=33,color=Purple|sku=MP07-34-Black,size=34,color=Black|sku=MP07-34-Blue,size=34,color=Blue|sku=MP07-34-Purple,size=34,color=Purple|sku=MP07-36-Black,size=36,color=Black|sku=MP07-36-Blue,size=36,color=Blue|sku=MP07-36-Purple,size=36,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"image\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp07-blue_alt1.jpg,\\/m\\/p\\/mp07-blue_back.jpg,\\/m\\/p\\/mp07-blue_side_a.jpg,\\/m\\/p\\/mp07-blue_side_b.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\",\"Rayon\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Spring\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"769\":{\"sku\":\"MP08-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-32-Blue\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"770\":{\"sku\":\"MP08-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-32-Green\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"771\":{\"sku\":\"MP08-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-32-Red\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"772\":{\"sku\":\"MP08-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-33-Blue\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"773\":{\"sku\":\"MP08-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-33-Green\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"774\":{\"sku\":\"MP08-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-33-Red\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"775\":{\"sku\":\"MP08-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-34-Blue\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"776\":{\"sku\":\"MP08-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-34-Green\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"777\":{\"sku\":\"MP08-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-34-Red\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"778\":{\"sku\":\"MP08-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-36-Blue\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"779\":{\"sku\":\"MP08-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-36-Green\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"780\":{\"sku\":\"MP08-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant-36-Red\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zeppelin-yoga-pant-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"781\":{\"sku\":\"MP08\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Zeppelin Yoga Pant\",\"description\":\"<p>Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.<\\/p>\\n<p>&bull; Smooth exterior for easy over-layering.<br \\/>&bull; Brushed fleece interior insulates and wicks. <br \\/>&bull; No-roll elastic waistband with inner drawstring.<br \\/>&bull; Chafe-resistant flatlock seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"82\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Base Layer|Track Pants|Leggings,material=Fleece|LumaTech&trade;|Spandex|Wool,pattern=Solid,climate=All-weather|Cool|Spring|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP08-32-Blue,size=32,color=Blue|sku=MP08-32-Green,size=32,color=Green|sku=MP08-32-Red,size=32,color=Red|sku=MP08-33-Blue,size=33,color=Blue|sku=MP08-33-Green,size=33,color=Green|sku=MP08-33-Red,size=33,color=Red|sku=MP08-34-Blue,size=34,color=Blue|sku=MP08-34-Green,size=34,color=Green|sku=MP08-34-Red,size=34,color=Red|sku=MP08-36-Blue,size=36,color=Blue|sku=MP08-36-Green,size=36,color=Green|sku=MP08-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"image\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp08-green_alt1.jpg,\\/m\\/p\\/mp08-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Base Layer\",\"Track Pants\",\"Leggings\"],\"material\":[\"Fleece\",\"LumaTech&trade;\",\"Spandex\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"782\":{\"sku\":\"MP09-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-32-Black\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"783\":{\"sku\":\"MP09-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-32-Blue\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"784\":{\"sku\":\"MP09-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-32-Red\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"785\":{\"sku\":\"MP09-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-33-Black\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"786\":{\"sku\":\"MP09-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-33-Blue\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"787\":{\"sku\":\"MP09-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-33-Red\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"788\":{\"sku\":\"MP09-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-34-Black\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"789\":{\"sku\":\"MP09-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-34-Blue\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"790\":{\"sku\":\"MP09-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-34-Red\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"791\":{\"sku\":\"MP09-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-36-Black\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"792\":{\"sku\":\"MP09-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-36-Blue\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"793\":{\"sku\":\"MP09-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight-36-Red\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"livingston-all-purpose-tight-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"794\":{\"sku\":\"MP09\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Livingston All-Purpose Tight\",\"description\":\"<p>It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.<\\/p>\\n<p>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Compression fit<br \\/>&bull; Hidden key pocket<br \\/>&bull; Elastic waist with internal drawcord.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Sweatpants|Base Layer|Compression|Track Pants|Leggings,material=CoolTech&trade;|Fleece|Polyester|Rayon,pattern=Solid,climate=All-weather|Cold|Cool|Windy|Wintry,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP09-32-Black,size=32,color=Black|sku=MP09-32-Blue,size=32,color=Blue|sku=MP09-32-Red,size=32,color=Red|sku=MP09-33-Black,size=33,color=Black|sku=MP09-33-Blue,size=33,color=Blue|sku=MP09-33-Red,size=33,color=Red|sku=MP09-34-Black,size=34,color=Black|sku=MP09-34-Blue,size=34,color=Blue|sku=MP09-34-Red,size=34,color=Red|sku=MP09-36-Black,size=36,color=Black|sku=MP09-36-Blue,size=36,color=Blue|sku=MP09-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"image\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp09-blue_alt1.jpg,\\/m\\/p\\/mp09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Sweatpants\",\"Base Layer\",\"Compression\",\"Track Pants\",\"Leggings\"],\"material\":[\"CoolTech&trade;\",\"Fleece\",\"Polyester\",\"Rayon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"795\":{\"sku\":\"MP10-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -32-Black\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"796\":{\"sku\":\"MP10-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -32-Blue\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"797\":{\"sku\":\"MP10-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -32-Green\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"798\":{\"sku\":\"MP10-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -33-Black\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"799\":{\"sku\":\"MP10-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -33-Blue\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"}}',1,'[[regtime]]'),(9,'catalog_product','append','{\"800\":{\"sku\":\"MP10-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -33-Green\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"801\":{\"sku\":\"MP10-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -34-Black\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"802\":{\"sku\":\"MP10-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -34-Blue\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"803\":{\"sku\":\"MP10-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -34-Green\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"804\":{\"sku\":\"MP10-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -36-Black\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"805\":{\"sku\":\"MP10-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -36-Blue\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"806\":{\"sku\":\"MP10-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant -36-Green\",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-yoga-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"807\":{\"sku\":\"MP10\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Yoga Pant \",\"description\":\"<p>The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.<\\/p>\\n<p>&bull; A yoga essential.<br \\/>&bull; Breathable stretch organic cotton\\/spandex.<br \\/>&bull; Standard Fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"66\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Track Pants|Leggings,material=Nylon|Organic Cotton|Spandex,pattern=Solid,climate=Cool|Indoor|Mild|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP10-32-Black,size=32,color=Black|sku=MP10-32-Blue,size=32,color=Blue|sku=MP10-32-Green,size=32,color=Green|sku=MP10-33-Black,size=33,color=Black|sku=MP10-33-Blue,size=33,color=Blue|sku=MP10-33-Green,size=33,color=Green|sku=MP10-34-Black,size=34,color=Black|sku=MP10-34-Blue,size=34,color=Blue|sku=MP10-34-Green,size=34,color=Green|sku=MP10-36-Black,size=36,color=Black|sku=MP10-36-Blue,size=36,color=Blue|sku=MP10-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp10-black_alt1.jpg,\\/m\\/p\\/mp10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Track Pants\",\"Leggings\"],\"material\":[\"Nylon\",\"Organic Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Mild\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"808\":{\"sku\":\"MP11-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -32-Blue\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"809\":{\"sku\":\"MP11-32-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -32-Brown\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-32-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Brown\"},\"810\":{\"sku\":\"MP11-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -32-Green\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"811\":{\"sku\":\"MP11-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -33-Blue\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"812\":{\"sku\":\"MP11-33-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -33-Brown\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-33-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Brown\"},\"813\":{\"sku\":\"MP11-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -33-Green\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"814\":{\"sku\":\"MP11-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -34-Blue\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"815\":{\"sku\":\"MP11-34-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -34-Brown\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-34-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Brown\"},\"816\":{\"sku\":\"MP11-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -34-Green\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"817\":{\"sku\":\"MP11-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -36-Blue\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"818\":{\"sku\":\"MP11-36-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -36-Brown\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-36-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Brown\"},\"819\":{\"sku\":\"MP11-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant -36-Green\",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aether-gym-pant-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"820\":{\"sku\":\"MP11\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Aether Gym Pant \",\"description\":\"<p>The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.<\\/p>\\n<p>&bull; Pants\\/shorts convertible.<br \\/>&bull; Lightweight moisture wicking. <br \\/>&bull; Water repellent.<br \\/>&bull; Belted waist.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"74\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Sweatpants|Track Pants,material=Cocona&reg; performance fabric|Spandex|Wool,pattern=Solid,climate=All-weather|Cold|Cool|Indoor|Mild|Rainy|Spring|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP11-32-Blue,size=32,color=Blue|sku=MP11-32-Brown,size=32,color=Brown|sku=MP11-32-Green,size=32,color=Green|sku=MP11-33-Blue,size=33,color=Blue|sku=MP11-33-Brown,size=33,color=Brown|sku=MP11-33-Green,size=33,color=Green|sku=MP11-34-Blue,size=34,color=Blue|sku=MP11-34-Brown,size=34,color=Brown|sku=MP11-34-Green,size=34,color=Green|sku=MP11-36-Blue,size=36,color=Blue|sku=MP11-36-Brown,size=36,color=Brown|sku=MP11-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"image\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp11-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp11-brown_alt1.jpg,\\/m\\/p\\/mp11-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"Cocona&reg; performance fabric\",\"Spandex\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Indoor\",\"Mild\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"821\":{\"sku\":\"MP12-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -32-Black\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"822\":{\"sku\":\"MP12-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -32-Blue\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"823\":{\"sku\":\"MP12-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -32-Red\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"824\":{\"sku\":\"MP12-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -33-Black\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"825\":{\"sku\":\"MP12-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -33-Blue\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"826\":{\"sku\":\"MP12-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -33-Red\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"827\":{\"sku\":\"MP12-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -34-Black\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"828\":{\"sku\":\"MP12-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -34-Blue\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"829\":{\"sku\":\"MP12-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -34-Red\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"830\":{\"sku\":\"MP12-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -36-Black\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"831\":{\"sku\":\"MP12-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -36-Blue\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"832\":{\"sku\":\"MP12-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant -36-Red\",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cronus-yoga-pant-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"833\":{\"sku\":\"MP12\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cronus Yoga Pant \",\"description\":\"<p>Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.<\\/p>\\n<p>&bull; Drawstring waist.<br \\/>&bull; Loose, straight-leg fit.<br \\/>&bull; Lightweight cotton-recycled blend.<br \\/>&bull; Front pockets with stitching detail.<br \\/>&bull; Elastic ankle.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Track Pants|Leggings,material=Polyester|Cotton|Spandex,pattern=Solid,climate=Cool|Indoor|Mild|Spring|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MP12-32-Black,size=32,color=Black|sku=MP12-32-Blue,size=32,color=Blue|sku=MP12-32-Red,size=32,color=Red|sku=MP12-33-Black,size=33,color=Black|sku=MP12-33-Blue,size=33,color=Blue|sku=MP12-33-Red,size=33,color=Red|sku=MP12-34-Black,size=34,color=Black|sku=MP12-34-Blue,size=34,color=Blue|sku=MP12-34-Red,size=34,color=Red|sku=MP12-36-Black,size=36,color=Black|sku=MP12-36-Blue,size=36,color=Blue|sku=MP12-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"image\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/p\\/mp12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/p\\/mp12-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Track Pants\",\"Leggings\"],\"material\":[\"Polyester\",\"Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Mild\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"834\":{\"sku\":\"MSH01-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-32-Black\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"835\":{\"sku\":\"MSH01-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-32-Blue\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"836\":{\"sku\":\"MSH01-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-32-Red\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"837\":{\"sku\":\"MSH01-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-33-Black\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"838\":{\"sku\":\"MSH01-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-33-Blue\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"839\":{\"sku\":\"MSH01-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-33-Red\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"840\":{\"sku\":\"MSH01-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-34-Black\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"841\":{\"sku\":\"MSH01-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-34-Blue\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"842\":{\"sku\":\"MSH01-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-34-Red\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"843\":{\"sku\":\"MSH01-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-36-Black\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"844\":{\"sku\":\"MSH01-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-36-Blue\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"845\":{\"sku\":\"MSH01-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short-36-Red\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cobalt-cooltech-trade-fitness-short-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"846\":{\"sku\":\"MSH01\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Cobalt CoolTech&trade; Fitness Short\",\"description\":\"<p>It\'s not rocket surgery: the hotter your conditions, the more you need to stay cool. That\'s why the Cobalt CoolTech&trade; Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.<\\/p>\\n<p>&bull; Light blue nylon shorts.<br \\/>&bull; Relaxed fit. <br \\/>&bull; 5\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=CoolTech&trade;|Nylon|Polyester|Wool,pattern=Solid,climate=All-weather|Indoor|Hot,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH01-32-Black,size=32,color=Black|sku=MSH01-32-Blue,size=32,color=Blue|sku=MSH01-32-Red,size=32,color=Red|sku=MSH01-33-Black,size=33,color=Black|sku=MSH01-33-Blue,size=33,color=Blue|sku=MSH01-33-Red,size=33,color=Red|sku=MSH01-34-Black,size=34,color=Black|sku=MSH01-34-Blue,size=34,color=Blue|sku=MSH01-34-Red,size=34,color=Red|sku=MSH01-36-Black,size=36,color=Black|sku=MSH01-36-Blue,size=36,color=Blue|sku=MSH01-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"CoolTech&trade;\",\"Nylon\",\"Polyester\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"847\":{\"sku\":\"MSH02-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Apollo Running Short-32-Black\",\"description\":\"<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.<\\/p>\\n<p>&bull; Black shorts with green accents.<br \\/>&bull; Side pockets. <br \\/>&bull; 4\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"apollo-running-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"848\":{\"sku\":\"MSH02-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Apollo Running Short-33-Black\",\"description\":\"<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.<\\/p>\\n<p>&bull; Black shorts with green accents.<br \\/>&bull; Side pockets. <br \\/>&bull; 4\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"apollo-running-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"849\":{\"sku\":\"MSH02-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Apollo Running Short-34-Black\",\"description\":\"<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.<\\/p>\\n<p>&bull; Black shorts with green accents.<br \\/>&bull; Side pockets. <br \\/>&bull; 4\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"apollo-running-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"850\":{\"sku\":\"MSH02-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Apollo Running Short-36-Black\",\"description\":\"<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.<\\/p>\\n<p>&bull; Black shorts with green accents.<br \\/>&bull; Side pockets. <br \\/>&bull; 4\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"apollo-running-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"851\":{\"sku\":\"MSH02\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Apollo Running Short\",\"description\":\"<p>Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.<\\/p>\\n<p>&bull; Black shorts with green accents.<br \\/>&bull; Side pockets. <br \\/>&bull; 4\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=Polyester|Rayon,pattern=Solid,climate=All-weather|Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH02-32-Black,size=32,color=Black|sku=MSH02-33-Black,size=33,color=Black|sku=MSH02-34-Black,size=34,color=Black|sku=MSH02-36-Black,size=36,color=Black\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh02-black_alt1.jpg,\\/m\\/s\\/msh02-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"Polyester\",\"Rayon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"852\":{\"sku\":\"MSH03-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-32-Black\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"853\":{\"sku\":\"MSH03-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-32-Blue\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"854\":{\"sku\":\"MSH03-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-32-Green\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"855\":{\"sku\":\"MSH03-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-33-Black\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"856\":{\"sku\":\"MSH03-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-33-Blue\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"857\":{\"sku\":\"MSH03-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-33-Green\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"858\":{\"sku\":\"MSH03-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-34-Black\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"859\":{\"sku\":\"MSH03-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-34-Blue\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"860\":{\"sku\":\"MSH03-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-34-Green\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"861\":{\"sku\":\"MSH03-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-36-Black\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"862\":{\"sku\":\"MSH03-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-36-Blue\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"863\":{\"sku\":\"MSH03-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short-36-Green\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"meteor-workout-short-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"864\":{\"sku\":\"MSH03\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Meteor Workout Short\",\"description\":\"<p>Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.<\\/p>\\n<p>&bull; Royal blue shorts with light blue accents.<br \\/>&bull; Interior drawstring waistband. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=Cocona&reg; performance fabric|Polyester,pattern=Solid,climate=All-weather|Spring|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH03-32-Black,size=32,color=Black|sku=MSH03-32-Blue,size=32,color=Blue|sku=MSH03-32-Green,size=32,color=Green|sku=MSH03-33-Black,size=33,color=Black|sku=MSH03-33-Blue,size=33,color=Blue|sku=MSH03-33-Green,size=33,color=Green|sku=MSH03-34-Black,size=34,color=Black|sku=MSH03-34-Blue,size=34,color=Blue|sku=MSH03-34-Green,size=34,color=Green|sku=MSH03-36-Black,size=36,color=Black|sku=MSH03-36-Blue,size=36,color=Blue|sku=MSH03-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh03-blue_alt1.jpg,\\/m\\/s\\/msh03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"865\":{\"sku\":\"MSH04-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-32-Gray\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"866\":{\"sku\":\"MSH04-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-32-Purple\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"867\":{\"sku\":\"MSH04-32-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-32-Yellow\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-32-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Yellow\"},\"868\":{\"sku\":\"MSH04-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-33-Gray\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"869\":{\"sku\":\"MSH04-33-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-33-Purple\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-33-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Purple\"},\"870\":{\"sku\":\"MSH04-33-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-33-Yellow\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-33-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Yellow\"},\"871\":{\"sku\":\"MSH04-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-34-Gray\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"872\":{\"sku\":\"MSH04-34-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-34-Purple\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-34-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Purple\"},\"873\":{\"sku\":\"MSH04-34-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-34-Yellow\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-34-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Yellow\"},\"874\":{\"sku\":\"MSH04-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-36-Gray\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"875\":{\"sku\":\"MSH04-36-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-36-Purple\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-36-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Purple\"},\"876\":{\"sku\":\"MSH04-36-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short-36-Yellow\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"torque-power-short-36-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Yellow\"},\"877\":{\"sku\":\"MSH04\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Torque Power Short\",\"description\":\"<p>Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.<\\/p>\\n<p>&bull; Light gray shorts.<br \\/>&bull; Fitted design. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Flat-seam construction. <br \\/>&bull; 7\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32.5\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=CoolTech&trade;|Nylon|Polyester,pattern=Solid,climate=Indoor|Hot|Mild|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH04-32-Gray,size=32,color=Gray|sku=MSH04-32-Purple,size=32,color=Purple|sku=MSH04-32-Yellow,size=32,color=Yellow|sku=MSH04-33-Gray,size=33,color=Gray|sku=MSH04-33-Purple,size=33,color=Purple|sku=MSH04-33-Yellow,size=33,color=Yellow|sku=MSH04-34-Gray,size=34,color=Gray|sku=MSH04-34-Purple,size=34,color=Purple|sku=MSH04-34-Yellow,size=34,color=Yellow|sku=MSH04-36-Gray,size=36,color=Gray|sku=MSH04-36-Purple,size=36,color=Purple|sku=MSH04-36-Yellow,size=36,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh04-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh04-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"CoolTech&trade;\",\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"878\":{\"sku\":\"MSH05-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-32-Black\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"879\":{\"sku\":\"MSH05-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-32-Blue\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"880\":{\"sku\":\"MSH05-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-32-Gray\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"881\":{\"sku\":\"MSH05-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-33-Black\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"882\":{\"sku\":\"MSH05-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-33-Blue\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"883\":{\"sku\":\"MSH05-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-33-Gray\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"884\":{\"sku\":\"MSH05-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-34-Black\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"885\":{\"sku\":\"MSH05-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-34-Blue\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"886\":{\"sku\":\"MSH05-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-34-Gray\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"887\":{\"sku\":\"MSH05-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-36-Black\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"888\":{\"sku\":\"MSH05-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-36-Blue\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"889\":{\"sku\":\"MSH05-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short-36-Gray\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hawkeye-yoga-short-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"890\":{\"sku\":\"MSH05\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Hawkeye Yoga Short\",\"description\":\"<p>What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.<\\/p>\\n<p>&bull; Dark gray shorts with red accents.<br \\/>&bull; 92% Organic Cotton 8% Spandex.<br \\/>&bull; Breathable stretch organic cotton.<br \\/>&bull; Medium=8.0\\\" (21.0cm) inseam.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=CoolTech&trade;|Linen|Polyester|Rayon|Wool,pattern=Solid|Striped,climate=Indoor|Spring|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH05-32-Black,size=32,color=Black|sku=MSH05-32-Blue,size=32,color=Blue|sku=MSH05-32-Gray,size=32,color=Gray|sku=MSH05-33-Black,size=33,color=Black|sku=MSH05-33-Blue,size=33,color=Blue|sku=MSH05-33-Gray,size=33,color=Gray|sku=MSH05-34-Black,size=34,color=Black|sku=MSH05-34-Blue,size=34,color=Blue|sku=MSH05-34-Gray,size=34,color=Gray|sku=MSH05-36-Black,size=36,color=Black|sku=MSH05-36-Blue,size=36,color=Blue|sku=MSH05-36-Gray,size=36,color=Gray\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh05-gray_alt1.jpg,\\/m\\/s\\/msh05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"CoolTech&trade;\",\"Linen\",\"Polyester\",\"Rayon\",\"Wool\"],\"pattern\":[\"Solid\",\"Striped\"],\"climate\":[\"Indoor\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"891\":{\"sku\":\"MSH06-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-32-Blue\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"892\":{\"sku\":\"MSH06-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-32-Gray\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"893\":{\"sku\":\"MSH06-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-32-Red\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"894\":{\"sku\":\"MSH06-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-33-Blue\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"895\":{\"sku\":\"MSH06-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-33-Gray\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"896\":{\"sku\":\"MSH06-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-33-Red\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"897\":{\"sku\":\"MSH06-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-34-Blue\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"898\":{\"sku\":\"MSH06-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-34-Gray\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"899\":{\"sku\":\"MSH06-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-34-Red\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (10,'catalog_product','append','{\"900\":{\"sku\":\"MSH06-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-36-Blue\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"901\":{\"sku\":\"MSH06-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-36-Gray\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"902\":{\"sku\":\"MSH06-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short-36-Red\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lono-yoga-short-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"903\":{\"sku\":\"MSH06\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Lono Yoga Short\",\"description\":\"<p>Some shorts are &ldquo;all-purpose,&rdquo; while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.<\\/p>\\n<p>&bull; Dark gray shorts with mesh accents.<br \\/>&bull; Ultra flexible four-way stretch.<br \\/>&bull; Flatlock seams and waistband.<br \\/>&bull; Two pockets, phony fly.<br \\/>&bull; Nylon\\/Lycra outer, Polyester\\/Lycra inner.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer|Compression,material=Nylon|Polyester|Rayon,pattern=Solid,climate=All-weather|Indoor|Hot|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH06-32-Blue,size=32,color=Blue|sku=MSH06-32-Gray,size=32,color=Gray|sku=MSH06-32-Red,size=32,color=Red|sku=MSH06-33-Blue,size=33,color=Blue|sku=MSH06-33-Gray,size=33,color=Gray|sku=MSH06-33-Red,size=33,color=Red|sku=MSH06-34-Blue,size=34,color=Blue|sku=MSH06-34-Gray,size=34,color=Gray|sku=MSH06-34-Red,size=34,color=Red|sku=MSH06-36-Blue,size=36,color=Blue|sku=MSH06-36-Gray,size=36,color=Gray|sku=MSH06-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"image\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh06-gray_alt1.jpg,\\/m\\/s\\/msh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\",\"Compression\"],\"material\":[\"Nylon\",\"Polyester\",\"Rayon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"904\":{\"sku\":\"MSH07-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-32-Black\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"905\":{\"sku\":\"MSH07-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-32-Blue\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"906\":{\"sku\":\"MSH07-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-32-Purple\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"907\":{\"sku\":\"MSH07-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-33-Black\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"908\":{\"sku\":\"MSH07-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-33-Blue\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"909\":{\"sku\":\"MSH07-33-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-33-Purple\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-33-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Purple\"},\"910\":{\"sku\":\"MSH07-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-34-Black\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"911\":{\"sku\":\"MSH07-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-34-Blue\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"912\":{\"sku\":\"MSH07-34-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-34-Purple\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-34-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Purple\"},\"913\":{\"sku\":\"MSH07-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-36-Black\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"914\":{\"sku\":\"MSH07-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-36-Blue\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"915\":{\"sku\":\"MSH07-36-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short-36-Purple\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"rapha-sports-short-36-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Purple\"},\"916\":{\"sku\":\"MSH07\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Rapha  Sports Short\",\"description\":\"<p>For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.<\\/p>\\n<p>&bull; Black shorts with royal accents.<br \\/>&bull; Compression liner. <br \\/>&bull; Inseam: 8\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer|Compression,material=CoolTech&trade;|Mesh|Polyester|Rayon,pattern=Solid|Striped,climate=Indoor|Spring|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH07-32-Black,size=32,color=Black|sku=MSH07-32-Blue,size=32,color=Blue|sku=MSH07-32-Purple,size=32,color=Purple|sku=MSH07-33-Black,size=33,color=Black|sku=MSH07-33-Blue,size=33,color=Blue|sku=MSH07-33-Purple,size=33,color=Purple|sku=MSH07-34-Black,size=34,color=Black|sku=MSH07-34-Blue,size=34,color=Blue|sku=MSH07-34-Purple,size=34,color=Purple|sku=MSH07-36-Black,size=36,color=Black|sku=MSH07-36-Blue,size=36,color=Blue|sku=MSH07-36-Purple,size=36,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh07-black_alt1.jpg,\\/m\\/s\\/msh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\",\"Compression\"],\"material\":[\"CoolTech&trade;\",\"Mesh\",\"Polyester\",\"Rayon\"],\"pattern\":[\"Solid\",\"Striped\"],\"climate\":[\"Indoor\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"Yes\"},\"917\":{\"sku\":\"MSH08-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-32-Black\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"918\":{\"sku\":\"MSH08-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-32-Blue\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"919\":{\"sku\":\"MSH08-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-32-Green\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"920\":{\"sku\":\"MSH08-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-33-Black\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"921\":{\"sku\":\"MSH08-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-33-Blue\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"922\":{\"sku\":\"MSH08-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-33-Green\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"923\":{\"sku\":\"MSH08-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-34-Black\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"924\":{\"sku\":\"MSH08-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-34-Blue\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"925\":{\"sku\":\"MSH08-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-34-Green\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"926\":{\"sku\":\"MSH08-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-36-Black\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"927\":{\"sku\":\"MSH08-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-36-Blue\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"928\":{\"sku\":\"MSH08-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short-36-Green\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"orestes-fitness-short-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"929\":{\"sku\":\"MSH08\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Orestes Fitness Short\",\"description\":\"<p>You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.<\\/p>\\n<p>&bull; Black shorts with dark gray accents.<br \\/>&bull; Elasticized waistband with interior drawstring.<br \\/>&bull; Ventilating mesh detailing.<br \\/>&bull; 100% polyester and recycled polyester.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"35\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=LumaTech&trade;|Polyester,pattern=Solid,climate=All-weather|Indoor|Hot,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH08-32-Black,size=32,color=Black|sku=MSH08-32-Blue,size=32,color=Blue|sku=MSH08-32-Green,size=32,color=Green|sku=MSH08-33-Black,size=33,color=Black|sku=MSH08-33-Blue,size=33,color=Blue|sku=MSH08-33-Green,size=33,color=Green|sku=MSH08-34-Black,size=34,color=Black|sku=MSH08-34-Blue,size=34,color=Blue|sku=MSH08-34-Green,size=34,color=Green|sku=MSH08-36-Black,size=36,color=Black|sku=MSH08-36-Blue,size=36,color=Blue|sku=MSH08-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"image\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"LumaTech&trade;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"930\":{\"sku\":\"MSH09-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-32-Black\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"931\":{\"sku\":\"MSH09-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-32-Blue\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"932\":{\"sku\":\"MSH09-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-32-Green\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"933\":{\"sku\":\"MSH09-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-33-Black\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"934\":{\"sku\":\"MSH09-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-33-Blue\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"935\":{\"sku\":\"MSH09-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-33-Green\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"936\":{\"sku\":\"MSH09-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-34-Black\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"937\":{\"sku\":\"MSH09-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-34-Blue\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"938\":{\"sku\":\"MSH09-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-34-Green\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"939\":{\"sku\":\"MSH09-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-36-Black\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"940\":{\"sku\":\"MSH09-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-36-Blue\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"941\":{\"sku\":\"MSH09-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short-36-Green\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"troy-yoga-short-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"942\":{\"sku\":\"MSH09\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Troy Yoga Short\",\"description\":\"<p>The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech&trade; wicking liner is also bacteria resistant.<\\/p>\\n<p>&bull; Navy polyester pinstripe shorts.<br \\/>&bull; Woven fabric with moderate stretch.<br \\/>&bull; 62% cotton\\/34% nylon\\/4% spandex.<br \\/>&bull; LumaTech&trade; lining.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=Cotton|Nylon|LumaTech&trade;|Spandex,pattern=Solid,climate=Indoor|Hot|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH09-32-Black,size=32,color=Black|sku=MSH09-32-Blue,size=32,color=Blue|sku=MSH09-32-Green,size=32,color=Green|sku=MSH09-33-Black,size=33,color=Black|sku=MSH09-33-Blue,size=33,color=Blue|sku=MSH09-33-Green,size=33,color=Green|sku=MSH09-34-Black,size=34,color=Black|sku=MSH09-34-Blue,size=34,color=Blue|sku=MSH09-34-Green,size=34,color=Green|sku=MSH09-36-Black,size=36,color=Black|sku=MSH09-36-Blue,size=36,color=Blue|sku=MSH09-36-Green,size=36,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh09-blue_alt1.jpg,\\/m\\/s\\/msh09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"Cotton\",\"Nylon\",\"LumaTech&trade;\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"943\":{\"sku\":\"MSH10-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-32-Blue\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"944\":{\"sku\":\"MSH10-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-32-Green\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"945\":{\"sku\":\"MSH10-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-32-Purple\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"946\":{\"sku\":\"MSH10-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-33-Blue\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"947\":{\"sku\":\"MSH10-33-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-33-Green\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-33-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Green\"},\"948\":{\"sku\":\"MSH10-33-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-33-Purple\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-33-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Purple\"},\"949\":{\"sku\":\"MSH10-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-34-Blue\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"950\":{\"sku\":\"MSH10-34-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-34-Green\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-34-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Green\"},\"951\":{\"sku\":\"MSH10-34-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-34-Purple\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-34-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Purple\"},\"952\":{\"sku\":\"MSH10-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-36-Blue\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"953\":{\"sku\":\"MSH10-36-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-36-Green\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-36-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Green\"},\"954\":{\"sku\":\"MSH10-36-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short-36-Purple\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sol-active-short-36-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Purple\"},\"955\":{\"sku\":\"MSH10\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Sol Active Short\",\"description\":\"<p>You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.<\\/p>\\n<p>&bull; Light blue jersey shorts with mesh detail.<br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Machine wash cold, tumble dry low.<br \\/>&bull; Superior performance fabric.<br \\/>&bull; Flat-lock seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer,material=Lycra&reg;|Spandex,pattern=Solid,climate=Indoor|Hot|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH10-32-Blue,size=32,color=Blue|sku=MSH10-32-Green,size=32,color=Green|sku=MSH10-32-Purple,size=32,color=Purple|sku=MSH10-33-Blue,size=33,color=Blue|sku=MSH10-33-Green,size=33,color=Green|sku=MSH10-33-Purple,size=33,color=Purple|sku=MSH10-34-Blue,size=34,color=Blue|sku=MSH10-34-Green,size=34,color=Green|sku=MSH10-34-Purple,size=34,color=Purple|sku=MSH10-36-Blue,size=36,color=Blue|sku=MSH10-36-Green,size=36,color=Green|sku=MSH10-36-Purple,size=36,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh10-blue_alt1.jpg,\\/m\\/s\\/msh10-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\"],\"material\":[\"Lycra&reg;\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"956\":{\"sku\":\"MSH11-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-32-Black\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"957\":{\"sku\":\"MSH11-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-32-Blue\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"958\":{\"sku\":\"MSH11-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-32-Red\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"959\":{\"sku\":\"MSH11-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-33-Black\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"960\":{\"sku\":\"MSH11-33-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-33-Blue\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-33-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Blue\"},\"961\":{\"sku\":\"MSH11-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-33-Red\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"962\":{\"sku\":\"MSH11-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-34-Black\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"963\":{\"sku\":\"MSH11-34-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-34-Blue\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-34-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Blue\"},\"964\":{\"sku\":\"MSH11-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-34-Red\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"965\":{\"sku\":\"MSH11-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-36-Black\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"966\":{\"sku\":\"MSH11-36-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-36-Blue\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-36-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Blue\"},\"967\":{\"sku\":\"MSH11-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short-36-Red\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"arcadio-gym-short-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"968\":{\"sku\":\"MSH11\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Arcadio Gym Short\",\"description\":\"<p>The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.<\\/p>\\n<p>&bull; Royal blue cotton shorts.<br \\/>&bull; Built-in mesh brief. <br \\/>&bull; 87% Spandex 13% Lycra.<br \\/>&bull; Adjustable drawstring.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"20\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer|Compression,material=Lycra&reg;|Spandex,pattern=Solid,climate=All-weather|Indoor|Hot|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH11-32-Black,size=32,color=Black|sku=MSH11-32-Blue,size=32,color=Blue|sku=MSH11-32-Red,size=32,color=Red|sku=MSH11-33-Black,size=33,color=Black|sku=MSH11-33-Blue,size=33,color=Blue|sku=MSH11-33-Red,size=33,color=Red|sku=MSH11-34-Black,size=34,color=Black|sku=MSH11-34-Blue,size=34,color=Blue|sku=MSH11-34-Red,size=34,color=Red|sku=MSH11-36-Black,size=36,color=Black|sku=MSH11-36-Blue,size=36,color=Blue|sku=MSH11-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"image\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\",\"Compression\"],\"material\":[\"Lycra&reg;\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"969\":{\"sku\":\"MSH12-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-32-Black\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"970\":{\"sku\":\"MSH12-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-32-Gray\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"971\":{\"sku\":\"MSH12-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-32-Red\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"972\":{\"sku\":\"MSH12-33-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-33-Black\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-33-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Black\"},\"973\":{\"sku\":\"MSH12-33-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-33-Gray\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-33-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Gray\"},\"974\":{\"sku\":\"MSH12-33-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-33-Red\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-33-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=33,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"33\",\"color\":\"Red\"},\"975\":{\"sku\":\"MSH12-34-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-34-Black\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-34-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Black\"},\"976\":{\"sku\":\"MSH12-34-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-34-Gray\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-34-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Gray\"},\"977\":{\"sku\":\"MSH12-34-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-34-Red\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-34-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=34,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"34\",\"color\":\"Red\"},\"978\":{\"sku\":\"MSH12-36-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-36-Black\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-36-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Black\"},\"979\":{\"sku\":\"MSH12-36-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-36-Gray\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-36-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Gray\"},\"980\":{\"sku\":\"MSH12-36-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short-36-Red\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"pierce-gym-short-36-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=36,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"36\",\"color\":\"Red\"},\"981\":{\"sku\":\"MSH12\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Men\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Men Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Pierce Gym Short\",\"description\":\"<p>The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.<\\/p>\\n<p>&bull; Dark red cotton shorts. <br \\/>&bull; 87% Supplex, 13% Lycra.<br \\/>&bull; Adjustable drawstring waistband.<br \\/>&bull; Built-in mesh brief.<br \\/>&bull; Machine wash cold, tumble dry low.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"27\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Workout Pants|Base Layer|Compression|Tights,material=LumaTech&trade;|Mesh|Spandex,pattern=Solid,climate=Indoor|Hot|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=MSH12-32-Black,size=32,color=Black|sku=MSH12-32-Gray,size=32,color=Gray|sku=MSH12-32-Red,size=32,color=Red|sku=MSH12-33-Black,size=33,color=Black|sku=MSH12-33-Gray,size=33,color=Gray|sku=MSH12-33-Red,size=33,color=Red|sku=MSH12-34-Black,size=34,color=Black|sku=MSH12-34-Gray,size=34,color=Gray|sku=MSH12-34-Red,size=34,color=Red|sku=MSH12-36-Black,size=36,color=Black|sku=MSH12-36-Gray,size=36,color=Gray|sku=MSH12-36-Red,size=36,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"image\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/m\\/s\\/msh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/m\\/s\\/msh12-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Workout Pants\",\"Base Layer\",\"Compression\",\"Tights\"],\"material\":[\"LumaTech&trade;\",\"Mesh\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"982\":{\"sku\":\"WH01-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XS-Green\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"983\":{\"sku\":\"WH01-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XS-Orange\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"984\":{\"sku\":\"WH01-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XS-Purple\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"985\":{\"sku\":\"WH01-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-S-Green\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"986\":{\"sku\":\"WH01-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-S-Orange\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"987\":{\"sku\":\"WH01-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-S-Purple\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"988\":{\"sku\":\"WH01-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-M-Green\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"989\":{\"sku\":\"WH01-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-M-Orange\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"990\":{\"sku\":\"WH01-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-M-Purple\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"991\":{\"sku\":\"WH01-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-L-Green\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"992\":{\"sku\":\"WH01-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-L-Orange\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"993\":{\"sku\":\"WH01-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-L-Purple\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"994\":{\"sku\":\"WH01-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XL-Green\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"995\":{\"sku\":\"WH01-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XL-Orange\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"996\":{\"sku\":\"WH01-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie-XL-Purple\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mona-pullover-hoodlie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"997\":{\"sku\":\"WH01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Mona Pullover Hoodlie\",\"description\":\"Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.<br \\/> <br \\/> &bull; Light green heathered hoodie. <br \\/> &bull; Long-Sleeve, pullover.<br \\/> &bull; Long elliptical hem for extra coverage.<br \\/> &bull; Deep button placket for layering.<br \\/> &bull; Double rib design.<br \\/> &bull; Mid layer, mid weight.<br \\/> &bull; 98% Merino Wool \\/ 2% Spandex\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Pullover,material=Wool|Spandex,pattern=Solid,climate=All-weather|Cool|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH01-XS-Green,size=XS,color=Green|sku=WH01-XS-Orange,size=XS,color=Orange|sku=WH01-XS-Purple,size=XS,color=Purple|sku=WH01-S-Green,size=S,color=Green|sku=WH01-S-Orange,size=S,color=Orange|sku=WH01-S-Purple,size=S,color=Purple|sku=WH01-M-Green,size=M,color=Green|sku=WH01-M-Orange,size=M,color=Orange|sku=WH01-M-Purple,size=M,color=Purple|sku=WH01-L-Green,size=L,color=Green|sku=WH01-L-Orange,size=L,color=Orange|sku=WH01-L-Purple,size=L,color=Purple|sku=WH01-XL-Green,size=XL,color=Green|sku=WH01-XL-Orange,size=XL,color=Orange|sku=WH01-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"image\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh01-green_alt1.jpg,\\/w\\/h\\/wh01-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Pullover\"],\"material\":[\"Wool\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"998\":{\"sku\":\"WH02-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XS-Blue\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"999\":{\"sku\":\"WH02-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XS-Green\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"}}',1,'[[regtime]]'),(11,'catalog_product','append','{\"1000\":{\"sku\":\"WH02-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XS-Orange\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1001\":{\"sku\":\"WH02-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-S-Blue\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1002\":{\"sku\":\"WH02-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-S-Green\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1003\":{\"sku\":\"WH02-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-S-Orange\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1004\":{\"sku\":\"WH02-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-M-Blue\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1005\":{\"sku\":\"WH02-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-M-Green\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1006\":{\"sku\":\"WH02-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-M-Orange\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1007\":{\"sku\":\"WH02-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-L-Blue\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1008\":{\"sku\":\"WH02-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-L-Green\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1009\":{\"sku\":\"WH02-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-L-Orange\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1010\":{\"sku\":\"WH02-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XL-Blue\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1011\":{\"sku\":\"WH02-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XL-Green\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1012\":{\"sku\":\"WH02-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie-XL-Orange\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"hera-pullover-hoodie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1013\":{\"sku\":\"WH02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Hera Pullover Hoodie\",\"description\":\"<p>Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.<\\/p>\\n<p>&bull; Teal with purple stiching.<br \\/>&bull; Hoodie pullover.<br \\/>&bull; Snug fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Pullover,material=Wool|Nylon,pattern=Solid,climate=All-weather|Cool|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH02-XS-Blue,size=XS,color=Blue|sku=WH02-XS-Green,size=XS,color=Green|sku=WH02-XS-Orange,size=XS,color=Orange|sku=WH02-S-Blue,size=S,color=Blue|sku=WH02-S-Green,size=S,color=Green|sku=WH02-S-Orange,size=S,color=Orange|sku=WH02-M-Blue,size=M,color=Blue|sku=WH02-M-Green,size=M,color=Green|sku=WH02-M-Orange,size=M,color=Orange|sku=WH02-L-Blue,size=L,color=Blue|sku=WH02-L-Green,size=L,color=Green|sku=WH02-L-Orange,size=L,color=Orange|sku=WH02-XL-Blue,size=XL,color=Blue|sku=WH02-XL-Green,size=XL,color=Green|sku=WH02-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh02-blue_alt1.jpg,\\/w\\/h\\/wh02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Pullover\"],\"material\":[\"Wool\",\"Nylon\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1014\":{\"sku\":\"WH03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XS-Green\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1015\":{\"sku\":\"WH03-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XS-Purple\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1016\":{\"sku\":\"WH03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XS-Red\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1017\":{\"sku\":\"WH03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-S-Green\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1018\":{\"sku\":\"WH03-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-S-Purple\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1019\":{\"sku\":\"WH03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-S-Red\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1020\":{\"sku\":\"WH03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-M-Green\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1021\":{\"sku\":\"WH03-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-M-Purple\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1022\":{\"sku\":\"WH03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-M-Red\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1023\":{\"sku\":\"WH03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-L-Green\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1024\":{\"sku\":\"WH03-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-L-Purple\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1025\":{\"sku\":\"WH03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-L-Red\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1026\":{\"sku\":\"WH03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XL-Green\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1027\":{\"sku\":\"WH03-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XL-Purple\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1028\":{\"sku\":\"WH03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie-XL-Red\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"autumn-pullie-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1029\":{\"sku\":\"WH03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Autumn Pullie\",\"description\":\"<p>With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.<\\/p>\\n<p>&bull; Cayenne Short-Sleeve roll neck sweatshirt. <br \\/>&bull; Relaxed fit. <br \\/>&bull; Short-Sleeves. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Pullover|Sweatshirt,material=Fleece|Cotton|Polyester,pattern=Solid,climate=Indoor|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH03-XS-Green,size=XS,color=Green|sku=WH03-XS-Purple,size=XS,color=Purple|sku=WH03-XS-Red,size=XS,color=Red|sku=WH03-S-Green,size=S,color=Green|sku=WH03-S-Purple,size=S,color=Purple|sku=WH03-S-Red,size=S,color=Red|sku=WH03-M-Green,size=M,color=Green|sku=WH03-M-Purple,size=M,color=Purple|sku=WH03-M-Red,size=M,color=Red|sku=WH03-L-Green,size=L,color=Green|sku=WH03-L-Purple,size=L,color=Purple|sku=WH03-L-Red,size=L,color=Red|sku=WH03-XL-Green,size=XL,color=Green|sku=WH03-XL-Purple,size=XL,color=Purple|sku=WH03-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"image\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh03-red_alt1.jpg,\\/w\\/h\\/wh03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Pullover\",\"Sweatshirt\"],\"material\":[\"Fleece\",\"Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1030\":{\"sku\":\"WH04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XS-Blue\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1031\":{\"sku\":\"WH04-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XS-Orange\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1032\":{\"sku\":\"WH04-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XS-Purple\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1033\":{\"sku\":\"WH04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-S-Blue\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1034\":{\"sku\":\"WH04-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-S-Orange\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1035\":{\"sku\":\"WH04-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-S-Purple\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1036\":{\"sku\":\"WH04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-M-Blue\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1037\":{\"sku\":\"WH04-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-M-Orange\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1038\":{\"sku\":\"WH04-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-M-Purple\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1039\":{\"sku\":\"WH04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-L-Blue\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1040\":{\"sku\":\"WH04-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-L-Orange\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1041\":{\"sku\":\"WH04-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-L-Purple\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1042\":{\"sku\":\"WH04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XL-Blue\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1043\":{\"sku\":\"WH04-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XL-Orange\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1044\":{\"sku\":\"WH04-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie-XL-Purple\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"miko-pullover-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1045\":{\"sku\":\"WH04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Miko Pullover Hoodie\",\"description\":\"<p>After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.<\\/p>\\n<p>&bull; Teal two-tone hoodie.<br \\/>&bull; Low scoop neckline.<br \\/>&bull; Adjustable hood drawstrings.<br \\/>&bull; Longer rounded hemline for extra back coverage.<br \\/>&bull; Long-Sleeve style.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Pullover|Sweatshirt,material=Jersey|Spandex,pattern=Solid,climate=All-weather|Cool|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH04-XS-Blue,size=XS,color=Blue|sku=WH04-XS-Orange,size=XS,color=Orange|sku=WH04-XS-Purple,size=XS,color=Purple|sku=WH04-S-Blue,size=S,color=Blue|sku=WH04-S-Orange,size=S,color=Orange|sku=WH04-S-Purple,size=S,color=Purple|sku=WH04-M-Blue,size=M,color=Blue|sku=WH04-M-Orange,size=M,color=Orange|sku=WH04-M-Purple,size=M,color=Purple|sku=WH04-L-Blue,size=L,color=Blue|sku=WH04-L-Orange,size=L,color=Orange|sku=WH04-L-Purple,size=L,color=Purple|sku=WH04-XL-Blue,size=XL,color=Blue|sku=WH04-XL-Orange,size=XL,color=Orange|sku=WH04-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh04-blue_alt1.jpg,\\/w\\/h\\/wh04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Pullover\",\"Sweatshirt\"],\"material\":[\"Jersey\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1046\":{\"sku\":\"WH05-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XS-Orange\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1047\":{\"sku\":\"WH05-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XS-Purple\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1048\":{\"sku\":\"WH05-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XS-White\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1049\":{\"sku\":\"WH05-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-S-Orange\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1050\":{\"sku\":\"WH05-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-S-Purple\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1051\":{\"sku\":\"WH05-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-S-White\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1052\":{\"sku\":\"WH05-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-M-Orange\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1053\":{\"sku\":\"WH05-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-M-Purple\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1054\":{\"sku\":\"WH05-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-M-White\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1055\":{\"sku\":\"WH05-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-L-Orange\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1056\":{\"sku\":\"WH05-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-L-Purple\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1057\":{\"sku\":\"WH05-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-L-White\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1058\":{\"sku\":\"WH05-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XL-Orange\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1059\":{\"sku\":\"WH05-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XL-Purple\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1060\":{\"sku\":\"WH05-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie-XL-White\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"selene-yoga-hoodie-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1061\":{\"sku\":\"WH05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Selene Yoga Hoodie\",\"description\":\"<p>The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.<\\/p>\\n<p>&bull; Ivory heather full zip 3\\/4 sleeve hoodie.<br \\/>&bull; Zip pocket at arm for convenient storage.<br \\/>&bull; 24.0\\\" body length.<br \\/>&bull; 89% Polyester \\/ 11% Spandex.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Full zip,material=Polyester|Spandex,pattern=Solid,climate=Indoor|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH05-XS-Orange,size=XS,color=Orange|sku=WH05-XS-Purple,size=XS,color=Purple|sku=WH05-XS-White,size=XS,color=White|sku=WH05-S-Orange,size=S,color=Orange|sku=WH05-S-Purple,size=S,color=Purple|sku=WH05-S-White,size=S,color=White|sku=WH05-M-Orange,size=M,color=Orange|sku=WH05-M-Purple,size=M,color=Purple|sku=WH05-M-White,size=M,color=White|sku=WH05-L-Orange,size=L,color=Orange|sku=WH05-L-Purple,size=L,color=Purple|sku=WH05-L-White,size=L,color=White|sku=WH05-XL-Orange,size=XL,color=Orange|sku=WH05-XL-Purple,size=XL,color=Purple|sku=WH05-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh05-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Full zip\"],\"material\":[\"Polyester\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1062\":{\"sku\":\"WH06-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie-XS-Purple\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daphne-full-zip-hoodie-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1063\":{\"sku\":\"WH06-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie-S-Purple\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daphne-full-zip-hoodie-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1064\":{\"sku\":\"WH06-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie-M-Purple\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daphne-full-zip-hoodie-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1065\":{\"sku\":\"WH06-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie-L-Purple\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daphne-full-zip-hoodie-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1066\":{\"sku\":\"WH06-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie-XL-Purple\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daphne-full-zip-hoodie-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1067\":{\"sku\":\"WH06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts\",\"product_websites\":\"base\",\"name\":\"Daphne Full-Zip Hoodie\",\"description\":\"<p>The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.<\\/p>\\n<p>&bull; Purple full zip hoodie with pink accents. <br \\/>&bull; Heather texture.<br \\/>&bull; 4-way stretch.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Hood lined in vegan Sherpa for added warmth.<br \\/>&bull; Ribbed hem on hood and front pouch pocket.<br \\/>&bull; 60% Cotton \\/ 40% Polyester.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Full zip,material=Cotton|Polyester,pattern=Solid,climate=All-weather|Cold|Cool|Spring|Windy|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH06-XS-Purple,size=XS,color=Purple|sku=WH06-S-Purple,size=S,color=Purple|sku=WH06-M-Purple,size=M,color=Purple|sku=WH06-L-Purple,size=L,color=Purple|sku=WH06-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh06-purple_alt1.jpg,\\/w\\/h\\/wh06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Full zip\"],\"material\":[\"Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cold\",\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1068\":{\"sku\":\"WH07-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XS-Gray\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1069\":{\"sku\":\"WH07-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XS-Purple\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1070\":{\"sku\":\"WH07-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XS-White\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1071\":{\"sku\":\"WH07-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-S-Gray\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1072\":{\"sku\":\"WH07-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-S-Purple\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1073\":{\"sku\":\"WH07-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-S-White\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1074\":{\"sku\":\"WH07-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-M-Gray\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1075\":{\"sku\":\"WH07-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-M-Purple\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1076\":{\"sku\":\"WH07-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-M-White\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1077\":{\"sku\":\"WH07-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-L-Gray\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1078\":{\"sku\":\"WH07-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-L-Purple\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1079\":{\"sku\":\"WH07-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-L-White\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1080\":{\"sku\":\"WH07-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XL-Gray\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1081\":{\"sku\":\"WH07-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XL-Purple\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1082\":{\"sku\":\"WH07-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt-XL-White\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"phoebe-zipper-sweatshirt-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1083\":{\"sku\":\"WH07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Phoebe Zipper Sweatshirt\",\"description\":\"<p>A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.<\\/p>\\n<p>&bull; Gray full zip hoodie with yellow detail.<br \\/>&bull; Hand-warmer pockets. <br \\/>&bull; Zip MP3 pocket with outlet for earphones wire. <br \\/>&bull; Polyester\\/cotton. <br \\/>&bull; Washable.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Sweatshirt|Full zip,material=Cotton|Polyester,pattern=Solid,climate=Cool|Indoor|Mild,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH07-XS-Gray,size=XS,color=Gray|sku=WH07-XS-Purple,size=XS,color=Purple|sku=WH07-XS-White,size=XS,color=White|sku=WH07-S-Gray,size=S,color=Gray|sku=WH07-S-Purple,size=S,color=Purple|sku=WH07-S-White,size=S,color=White|sku=WH07-M-Gray,size=M,color=Gray|sku=WH07-M-Purple,size=M,color=Purple|sku=WH07-M-White,size=M,color=White|sku=WH07-L-Gray,size=L,color=Gray|sku=WH07-L-Purple,size=L,color=Purple|sku=WH07-L-White,size=L,color=White|sku=WH07-XL-Gray,size=XL,color=Gray|sku=WH07-XL-Purple,size=XL,color=Purple|sku=WH07-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh07-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh07-gray_alt1.jpg,\\/w\\/h\\/wh07-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Sweatshirt\",\"Full zip\"],\"material\":[\"Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Mild\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"1084\":{\"sku\":\"WH08-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XS-Orange\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1085\":{\"sku\":\"WH08-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XS-Purple\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1086\":{\"sku\":\"WH08-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XS-White\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1087\":{\"sku\":\"WH08-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-S-Orange\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1088\":{\"sku\":\"WH08-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-S-Purple\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1089\":{\"sku\":\"WH08-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-S-White\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1090\":{\"sku\":\"WH08-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-M-Orange\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1091\":{\"sku\":\"WH08-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-M-Purple\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1092\":{\"sku\":\"WH08-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-M-White\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1093\":{\"sku\":\"WH08-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-L-Orange\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1094\":{\"sku\":\"WH08-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-L-Purple\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1095\":{\"sku\":\"WH08-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-L-White\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1096\":{\"sku\":\"WH08-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XL-Orange\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1097\":{\"sku\":\"WH08-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XL-Purple\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1098\":{\"sku\":\"WH08-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt-XL-White\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cassia-funnel-sweatshirt-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1099\":{\"sku\":\"WH08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Cassia Funnel Sweatshirt\",\"description\":\"<p>The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.<\\/p>\\n<p>&bull; White full zip hoodie with gray detail.<br \\/>&bull; 65% Cotton\\/28% Nylon\\/7% Spandex.<br \\/>&bull; Front slash pockets.<br \\/>&bull; Tagless label at back neck.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Full zip,material=Nylon|Cotton|Spandex,pattern=Solid,climate=All-weather|Cool|Indoor|Mild|Spring,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH08-XS-Orange,size=XS,color=Orange|sku=WH08-XS-Purple,size=XS,color=Purple|sku=WH08-XS-White,size=XS,color=White|sku=WH08-S-Orange,size=S,color=Orange|sku=WH08-S-Purple,size=S,color=Purple|sku=WH08-S-White,size=S,color=White|sku=WH08-M-Orange,size=M,color=Orange|sku=WH08-M-Purple,size=M,color=Purple|sku=WH08-M-White,size=M,color=White|sku=WH08-L-Orange,size=L,color=Orange|sku=WH08-L-Purple,size=L,color=Purple|sku=WH08-L-White,size=L,color=White|sku=WH08-XL-Orange,size=XL,color=Orange|sku=WH08-XL-Purple,size=XL,color=Purple|sku=WH08-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"image\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh08-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh08-white_alt1.jpg,\\/w\\/h\\/wh08-white_alternate.jpg,\\/w\\/h\\/wh08-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Full zip\"],\"material\":[\"Nylon\",\"Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"}}',1,'[[regtime]]'),(12,'catalog_product','append','{\"1100\":{\"sku\":\"WH09-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XS-Green\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1101\":{\"sku\":\"WH09-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XS-Purple\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1102\":{\"sku\":\"WH09-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XS-Red\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1103\":{\"sku\":\"WH09-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-S-Green\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1104\":{\"sku\":\"WH09-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-S-Purple\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1105\":{\"sku\":\"WH09-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-S-Red\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1106\":{\"sku\":\"WH09-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-M-Green\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1107\":{\"sku\":\"WH09-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-M-Purple\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1108\":{\"sku\":\"WH09-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-M-Red\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1109\":{\"sku\":\"WH09-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-L-Green\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1110\":{\"sku\":\"WH09-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-L-Purple\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1111\":{\"sku\":\"WH09-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-L-Red\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1112\":{\"sku\":\"WH09-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XL-Green\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1113\":{\"sku\":\"WH09-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XL-Purple\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1114\":{\"sku\":\"WH09-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt-XL-Red\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ariel-roll-sleeve-sweatshirt-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1115\":{\"sku\":\"WH09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ariel Roll Sleeve Sweatshirt\",\"description\":\"<p>Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.<\\/p>\\n<p>&bull; Purple two-tone lightweight hoodie. <br \\/>&bull; 100% cotton.<br \\/>&bull; Adjustable roll sleeves for Long-Sleeve or 3\\/4 sleeve.<br \\/>&bull; Casual, comfy piece for running errands or weekend activities.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Pullover,material=Cotton,pattern=Color-Blocked,climate=Indoor|Mild|Spring|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH09-XS-Green,size=XS,color=Green|sku=WH09-XS-Purple,size=XS,color=Purple|sku=WH09-XS-Red,size=XS,color=Red|sku=WH09-S-Green,size=S,color=Green|sku=WH09-S-Purple,size=S,color=Purple|sku=WH09-S-Red,size=S,color=Red|sku=WH09-M-Green,size=M,color=Green|sku=WH09-M-Purple,size=M,color=Purple|sku=WH09-M-Red,size=M,color=Red|sku=WH09-L-Green,size=L,color=Green|sku=WH09-L-Purple,size=L,color=Purple|sku=WH09-L-Red,size=L,color=Red|sku=WH09-XL-Green,size=XL,color=Green|sku=WH09-XL-Purple,size=XL,color=Purple|sku=WH09-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"image\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh09-purple_alt1.jpg,\\/w\\/h\\/wh09-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Pullover\"],\"material\":\"Cotton\",\"pattern\":\"Color-Blocked\",\"climate\":[\"Indoor\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1116\":{\"sku\":\"WH10-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XS-Blue\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1117\":{\"sku\":\"WH10-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XS-Gray\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1118\":{\"sku\":\"WH10-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XS-Yellow\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1119\":{\"sku\":\"WH10-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-S-Blue\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1120\":{\"sku\":\"WH10-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-S-Gray\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1121\":{\"sku\":\"WH10-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-S-Yellow\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1122\":{\"sku\":\"WH10-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-M-Blue\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1123\":{\"sku\":\"WH10-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-M-Gray\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1124\":{\"sku\":\"WH10-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-M-Yellow\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1125\":{\"sku\":\"WH10-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-L-Blue\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1126\":{\"sku\":\"WH10-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-L-Gray\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1127\":{\"sku\":\"WH10-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-L-Yellow\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1128\":{\"sku\":\"WH10-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XL-Blue\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1129\":{\"sku\":\"WH10-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XL-Gray\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1130\":{\"sku\":\"WH10-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece-XL-Yellow\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"helena-hooded-fleece-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1131\":{\"sku\":\"WH10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Helena Hooded Fleece\",\"description\":\"<p>Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.<\\/p>\\n<p>Full zip. <br \\/>Banded cuffs and waist. <br \\/>Front pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"55\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Full zip,material=Cotton|Polyester|Spandex,pattern=Solid,climate=Cool|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH10-XS-Blue,size=XS,color=Blue|sku=WH10-XS-Gray,size=XS,color=Gray|sku=WH10-XS-Yellow,size=XS,color=Yellow|sku=WH10-S-Blue,size=S,color=Blue|sku=WH10-S-Gray,size=S,color=Gray|sku=WH10-S-Yellow,size=S,color=Yellow|sku=WH10-M-Blue,size=M,color=Blue|sku=WH10-M-Gray,size=M,color=Gray|sku=WH10-M-Yellow,size=M,color=Yellow|sku=WH10-L-Blue,size=L,color=Blue|sku=WH10-L-Gray,size=L,color=Gray|sku=WH10-L-Yellow,size=L,color=Yellow|sku=WH10-XL-Blue,size=XL,color=Blue|sku=WH10-XL-Gray,size=XL,color=Gray|sku=WH10-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh10-gray_alt1.jpg,\\/w\\/h\\/wh10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Full zip\"],\"material\":[\"Cotton\",\"Polyester\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1132\":{\"sku\":\"WH11-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XS-Blue\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1133\":{\"sku\":\"WH11-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XS-Green\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1134\":{\"sku\":\"WH11-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XS-Orange\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1135\":{\"sku\":\"WH11-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-S-Blue\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1136\":{\"sku\":\"WH11-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-S-Green\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1137\":{\"sku\":\"WH11-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-S-Orange\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1138\":{\"sku\":\"WH11-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-M-Blue\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1139\":{\"sku\":\"WH11-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-M-Green\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1140\":{\"sku\":\"WH11-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-M-Orange\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1141\":{\"sku\":\"WH11-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-L-Blue\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1142\":{\"sku\":\"WH11-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-L-Green\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1143\":{\"sku\":\"WH11-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-L-Orange\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1144\":{\"sku\":\"WH11-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XL-Blue\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1145\":{\"sku\":\"WH11-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XL-Green\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1146\":{\"sku\":\"WH11-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie-XL-Orange\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"eos-v-neck-hoodie-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1147\":{\"sku\":\"WH11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Eos V-Neck Hoodie\",\"description\":\"<p>Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.<\\/p>\\n<p>Semi-fitted. <br \\/>Long-Sleeve. <br \\/>Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"54\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Pullover|Sweatshirt,material=Fleece|Polyester|Spandex,pattern=Solid,climate=Cool|Indoor|Mild,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH11-XS-Blue,size=XS,color=Blue|sku=WH11-XS-Green,size=XS,color=Green|sku=WH11-XS-Orange,size=XS,color=Orange|sku=WH11-S-Blue,size=S,color=Blue|sku=WH11-S-Green,size=S,color=Green|sku=WH11-S-Orange,size=S,color=Orange|sku=WH11-M-Blue,size=M,color=Blue|sku=WH11-M-Green,size=M,color=Green|sku=WH11-M-Orange,size=M,color=Orange|sku=WH11-L-Blue,size=L,color=Blue|sku=WH11-L-Green,size=L,color=Green|sku=WH11-L-Orange,size=L,color=Orange|sku=WH11-XL-Blue,size=XL,color=Blue|sku=WH11-XL-Green,size=XL,color=Green|sku=WH11-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"image\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Pullover\",\"Sweatshirt\"],\"material\":[\"Fleece\",\"Polyester\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Mild\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1148\":{\"sku\":\"WH12-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XS-Gray\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1149\":{\"sku\":\"WH12-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XS-Green\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1150\":{\"sku\":\"WH12-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XS-Purple\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1151\":{\"sku\":\"WH12-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-S-Gray\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1152\":{\"sku\":\"WH12-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-S-Green\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1153\":{\"sku\":\"WH12-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-S-Purple\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1154\":{\"sku\":\"WH12-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-M-Gray\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1155\":{\"sku\":\"WH12-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-M-Green\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1156\":{\"sku\":\"WH12-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-M-Purple\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1157\":{\"sku\":\"WH12-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-L-Gray\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1158\":{\"sku\":\"WH12-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-L-Green\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1159\":{\"sku\":\"WH12-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-L-Purple\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1160\":{\"sku\":\"WH12-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XL-Gray\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1161\":{\"sku\":\"WH12-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XL-Green\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1162\":{\"sku\":\"WH12-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece-XL-Purple\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"circe-hooded-ice-fleece-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1163\":{\"sku\":\"WH12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Hoodies & Sweatshirts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Circe Hooded Ice Fleece\",\"description\":\"<p>Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.<\\/p>\\n<p>Full-zip front. <br \\/>Three-panel hood. <br \\/>Flatlock seams throughout. <br \\/>Welt hand pockets. <br \\/>Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"68\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Hoodie|Sweatshirt|Full zip,material=Fleece|CoolTech&trade;,pattern=Solid,climate=Cold|Cool|Wintry,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WH12-XS-Gray,size=XS,color=Gray|sku=WH12-XS-Green,size=XS,color=Green|sku=WH12-XS-Purple,size=XS,color=Purple|sku=WH12-S-Gray,size=S,color=Gray|sku=WH12-S-Green,size=S,color=Green|sku=WH12-S-Purple,size=S,color=Purple|sku=WH12-M-Gray,size=M,color=Gray|sku=WH12-M-Green,size=M,color=Green|sku=WH12-M-Purple,size=M,color=Purple|sku=WH12-L-Gray,size=L,color=Gray|sku=WH12-L-Green,size=L,color=Green|sku=WH12-L-Purple,size=L,color=Purple|sku=WH12-XL-Gray,size=XL,color=Gray|sku=WH12-XL-Green,size=XL,color=Green|sku=WH12-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"image\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/h\\/wh12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/h\\/wh12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Hoodie\",\"Sweatshirt\",\"Full zip\"],\"material\":[\"Fleece\",\"CoolTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Wintry\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1164\":{\"sku\":\"WJ01-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-S-Blue\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1165\":{\"sku\":\"WJ01-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-S-Red\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1166\":{\"sku\":\"WJ01-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-S-Yellow\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1167\":{\"sku\":\"WJ01-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-M-Blue\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1168\":{\"sku\":\"WJ01-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-M-Red\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1169\":{\"sku\":\"WJ01-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-M-Yellow\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1170\":{\"sku\":\"WJ01-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-L-Blue\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1171\":{\"sku\":\"WJ01-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-L-Red\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1172\":{\"sku\":\"WJ01-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket-L-Yellow\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"stellar-solar-jacket-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1173\":{\"sku\":\"WJ01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Stellar Solar Jacket\",\"description\":\"<p>Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.<\\/p>\\n<p>&bull; Loose fit. <br \\/>&bull; Reflectivity. <br \\/>&bull; Flat seams. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Deep pink jacket with front panel rouching<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Hooded|Soft Shell|Full zip,material=Cocona&reg; performance fabric|Wool|Fleece,pattern=Solid,climate=All-weather|Mild|Spring|Windy,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ01-S-Blue,size=S,color=Blue|sku=WJ01-S-Red,size=S,color=Red|sku=WJ01-S-Yellow,size=S,color=Yellow|sku=WJ01-M-Blue,size=M,color=Blue|sku=WJ01-M-Red,size=M,color=Red|sku=WJ01-M-Yellow,size=M,color=Yellow|sku=WJ01-L-Blue,size=L,color=Blue|sku=WJ01-L-Red,size=L,color=Red|sku=WJ01-L-Yellow,size=L,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj01-red_alt1.jpg,\\/w\\/j\\/wj01-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Hooded\",\"Soft Shell\",\"Full zip\"],\"material\":[\"Cocona&reg; performance fabric\",\"Wool\",\"Fleece\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Mild\",\"Spring\",\"Windy\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"1174\":{\"sku\":\"WJ02-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XS-Black\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1175\":{\"sku\":\"WJ02-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XS-Blue\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1176\":{\"sku\":\"WJ02-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XS-Gray\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1177\":{\"sku\":\"WJ02-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-S-Black\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1178\":{\"sku\":\"WJ02-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-S-Blue\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1179\":{\"sku\":\"WJ02-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-S-Gray\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1180\":{\"sku\":\"WJ02-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-M-Black\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1181\":{\"sku\":\"WJ02-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-M-Blue\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1182\":{\"sku\":\"WJ02-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-M-Gray\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1183\":{\"sku\":\"WJ02-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-L-Black\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1184\":{\"sku\":\"WJ02-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-L-Blue\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1185\":{\"sku\":\"WJ02-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-L-Gray\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1186\":{\"sku\":\"WJ02-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XL-Black\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1187\":{\"sku\":\"WJ02-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XL-Blue\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1188\":{\"sku\":\"WJ02-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket-XL-Gray\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"josie-yoga-jacket-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1189\":{\"sku\":\"WJ02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Josie Yoga Jacket\",\"description\":\"<p>When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech&trade; fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.<\\/p>\\n<p>&bull; Slate rouched neck pullover.<br \\/>&bull; Moisture-wicking fabric.<br \\/>&bull; Hidden zipper.<br \\/>&bull; Mesh armpit venting.<br \\/>&bull; Dropped rear hem.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"56.25\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Pullover|Lightweight|Soft Shell,material=Polyester|Spandex|CoolTech&trade;,pattern=Solid,climate=Indoor|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ02-XS-Black,size=XS,color=Black|sku=WJ02-XS-Blue,size=XS,color=Blue|sku=WJ02-XS-Gray,size=XS,color=Gray|sku=WJ02-S-Black,size=S,color=Black|sku=WJ02-S-Blue,size=S,color=Blue|sku=WJ02-S-Gray,size=S,color=Gray|sku=WJ02-M-Black,size=M,color=Black|sku=WJ02-M-Blue,size=M,color=Blue|sku=WJ02-M-Gray,size=M,color=Gray|sku=WJ02-L-Black,size=L,color=Black|sku=WJ02-L-Blue,size=L,color=Blue|sku=WJ02-L-Gray,size=L,color=Gray|sku=WJ02-XL-Black,size=XL,color=Black|sku=WJ02-XL-Blue,size=XL,color=Blue|sku=WJ02-XL-Gray,size=XL,color=Gray\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj02-gray_alt1.jpg,\\/w\\/j\\/wj02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Pullover\",\"Lightweight\",\"Soft Shell\"],\"material\":[\"Polyester\",\"Spandex\",\"CoolTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1190\":{\"sku\":\"WJ03-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XS-Blue\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1191\":{\"sku\":\"WJ03-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XS-Orange\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1192\":{\"sku\":\"WJ03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XS-Red\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1193\":{\"sku\":\"WJ03-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-S-Blue\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1194\":{\"sku\":\"WJ03-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-S-Orange\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1195\":{\"sku\":\"WJ03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-S-Red\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1196\":{\"sku\":\"WJ03-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-M-Blue\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1197\":{\"sku\":\"WJ03-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-M-Orange\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1198\":{\"sku\":\"WJ03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-M-Red\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1199\":{\"sku\":\"WJ03-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-L-Blue\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (13,'catalog_product','append','{\"1200\":{\"sku\":\"WJ03-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-L-Orange\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1201\":{\"sku\":\"WJ03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-L-Red\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1202\":{\"sku\":\"WJ03-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XL-Blue\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1203\":{\"sku\":\"WJ03-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XL-Orange\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1204\":{\"sku\":\"WJ03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket-XL-Red\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"augusta-pullover-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1205\":{\"sku\":\"WJ03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Augusta Pullover Jacket\",\"description\":\"<p>It\'s hard to be uncomfortable in the Augusta Pullover Jacket with &frac14; zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.<\\/p>\\n<p>&bull; Pink half-zip pullover. <br \\/>&bull; Front pouch pockets. <br \\/>&bull; Fold-down collar.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Pullover|Soft Shell|Windbreaker|&frac14; zip,material=Fleece|Polyester,pattern=Solid,climate=All-weather|Cool|Indoor|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ03-XS-Blue,size=XS,color=Blue|sku=WJ03-XS-Orange,size=XS,color=Orange|sku=WJ03-XS-Red,size=XS,color=Red|sku=WJ03-S-Blue,size=S,color=Blue|sku=WJ03-S-Orange,size=S,color=Orange|sku=WJ03-S-Red,size=S,color=Red|sku=WJ03-M-Blue,size=M,color=Blue|sku=WJ03-M-Orange,size=M,color=Orange|sku=WJ03-M-Red,size=M,color=Red|sku=WJ03-L-Blue,size=L,color=Blue|sku=WJ03-L-Orange,size=L,color=Orange|sku=WJ03-L-Red,size=L,color=Red|sku=WJ03-XL-Blue,size=XL,color=Blue|sku=WJ03-XL-Orange,size=XL,color=Orange|sku=WJ03-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"image\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj03-red_alt1.jpg,\\/w\\/j\\/wj03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Pullover\",\"Soft Shell\",\"Windbreaker\",\"&frac14; zip\"],\"material\":[\"Fleece\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1206\":{\"sku\":\"WJ04-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XS-Orange\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1207\":{\"sku\":\"WJ04-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XS-Red\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1208\":{\"sku\":\"WJ04-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XS-White\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1209\":{\"sku\":\"WJ04-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-S-Orange\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1210\":{\"sku\":\"WJ04-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-S-Red\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1211\":{\"sku\":\"WJ04-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-S-White\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1212\":{\"sku\":\"WJ04-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-M-Orange\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1213\":{\"sku\":\"WJ04-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-M-Red\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1214\":{\"sku\":\"WJ04-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-M-White\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1215\":{\"sku\":\"WJ04-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-L-Orange\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1216\":{\"sku\":\"WJ04-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-L-Red\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1217\":{\"sku\":\"WJ04-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-L-White\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1218\":{\"sku\":\"WJ04-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XL-Orange\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1219\":{\"sku\":\"WJ04-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XL-Red\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1220\":{\"sku\":\"WJ04-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket-XL-White\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ingrid-running-jacket-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1221\":{\"sku\":\"WJ04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Ingrid Running Jacket\",\"description\":\"<p>The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in. <br \\/>&bull; Slim fit. <br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Two side pockets. <br \\/>&bull; Zippered pocket at back waist. <br \\/>&bull; Machine wash\\/dry.<br \\/>&bull; Ivory specked full zip<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"84\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Lightweight|Full zip,material=Nylon|Polyester|CoolTech&trade;,pattern=Solid,climate=Cool|Spring|Windy|Wintry,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ04-XS-Orange,size=XS,color=Orange|sku=WJ04-XS-Red,size=XS,color=Red|sku=WJ04-XS-White,size=XS,color=White|sku=WJ04-S-Orange,size=S,color=Orange|sku=WJ04-S-Red,size=S,color=Red|sku=WJ04-S-White,size=S,color=White|sku=WJ04-M-Orange,size=M,color=Orange|sku=WJ04-M-Red,size=M,color=Red|sku=WJ04-M-White,size=M,color=White|sku=WJ04-L-Orange,size=L,color=Orange|sku=WJ04-L-Red,size=L,color=Red|sku=WJ04-L-White,size=L,color=White|sku=WJ04-XL-Orange,size=XL,color=Orange|sku=WJ04-XL-Red,size=XL,color=Red|sku=WJ04-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"image\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj04-white_alt1.jpg,\\/w\\/j\\/wj04-white_alternate.jpg,\\/w\\/j\\/wj04-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Lightweight\",\"Full zip\"],\"material\":[\"Nylon\",\"Polyester\",\"CoolTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1222\":{\"sku\":\"WJ05-XS-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XS-Brown\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xs-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Brown\"},\"1223\":{\"sku\":\"WJ05-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XS-Green\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1224\":{\"sku\":\"WJ05-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XS-Red\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1225\":{\"sku\":\"WJ05-S-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-S-Brown\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-s-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Brown\"},\"1226\":{\"sku\":\"WJ05-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-S-Green\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1227\":{\"sku\":\"WJ05-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-S-Red\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1228\":{\"sku\":\"WJ05-M-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-M-Brown\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-m-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Brown\"},\"1229\":{\"sku\":\"WJ05-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-M-Green\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1230\":{\"sku\":\"WJ05-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-M-Red\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1231\":{\"sku\":\"WJ05-L-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-L-Brown\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-l-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Brown\"},\"1232\":{\"sku\":\"WJ05-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-L-Green\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1233\":{\"sku\":\"WJ05-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-L-Red\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1234\":{\"sku\":\"WJ05-XL-Brown\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XL-Brown\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xl-brown\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Brown\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Brown\"},\"1235\":{\"sku\":\"WJ05-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XL-Green\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1236\":{\"sku\":\"WJ05-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket-XL-Red\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"riona-full-zip-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1237\":{\"sku\":\"WJ05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Riona Full Zip Jacket\",\"description\":\"<p>The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.<\\/p>\\n<p>&bull; Brown heather full zip rouched jacket.<br \\/>&bull; Side hand pockets for extra storage.<br \\/>&bull; High collar.<br \\/>&bull; Thick cuffs for extra coverage.<br \\/>&bull; Durable, shape retention material to longer wear.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"60\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Jacket|Hooded|Soft Shell|Windbreaker|Full zip,material=Wool|LumaTech&trade;|Lycra&reg;,pattern=Solid,climate=Cold|Cool|Spring|Wintry,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ05-XS-Brown,size=XS,color=Brown|sku=WJ05-XS-Green,size=XS,color=Green|sku=WJ05-XS-Red,size=XS,color=Red|sku=WJ05-S-Brown,size=S,color=Brown|sku=WJ05-S-Green,size=S,color=Green|sku=WJ05-S-Red,size=S,color=Red|sku=WJ05-M-Brown,size=M,color=Brown|sku=WJ05-M-Green,size=M,color=Green|sku=WJ05-M-Red,size=M,color=Red|sku=WJ05-L-Brown,size=L,color=Brown|sku=WJ05-L-Green,size=L,color=Green|sku=WJ05-L-Red,size=L,color=Red|sku=WJ05-XL-Brown,size=XL,color=Brown|sku=WJ05-XL-Green,size=XL,color=Green|sku=WJ05-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"image\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj05-brown_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj05-brown_alt1.jpg,\\/w\\/j\\/wj05-brown_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Jacket\",\"Hooded\",\"Soft Shell\",\"Windbreaker\",\"Full zip\"],\"material\":[\"Wool\",\"LumaTech&trade;\",\"Lycra&reg;\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Spring\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1238\":{\"sku\":\"WJ07-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XS-Orange\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1239\":{\"sku\":\"WJ07-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XS-Purple\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1240\":{\"sku\":\"WJ07-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XS-Red\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1241\":{\"sku\":\"WJ07-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-S-Orange\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1242\":{\"sku\":\"WJ07-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-S-Purple\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1243\":{\"sku\":\"WJ07-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-S-Red\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1244\":{\"sku\":\"WJ07-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-M-Orange\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1245\":{\"sku\":\"WJ07-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-M-Purple\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1246\":{\"sku\":\"WJ07-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-M-Red\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1247\":{\"sku\":\"WJ07-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-L-Orange\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1248\":{\"sku\":\"WJ07-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-L-Purple\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1249\":{\"sku\":\"WJ07-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-L-Red\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1250\":{\"sku\":\"WJ07-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XL-Orange\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1251\":{\"sku\":\"WJ07-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XL-Purple\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1252\":{\"sku\":\"WJ07-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket-XL-Red\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"inez-full-zip-jacket-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1253\":{\"sku\":\"WJ07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets\",\"product_websites\":\"base\",\"name\":\"Inez Full Zip Jacket\",\"description\":\"<p>The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.<\\/p>\\n<p>&bull; Purple heather inset full zip jacket.<br \\/>&bull; Full zip hoodie.<br \\/>&bull; Contrast binding along the zipper, hood and sleeves.<br \\/>&bull; Inseam pockets for storage.<br \\/>&bull; Thumbholes for comfortable fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Jacket|Hooded|Soft Shell|Full zip,material=Nylon|Polyester|Spandex|CoolTech&trade;,pattern=Color-Blocked,climate=Cool|Mild|Rainy|Spring|Windy,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ07-XS-Orange,size=XS,color=Orange|sku=WJ07-XS-Purple,size=XS,color=Purple|sku=WJ07-XS-Red,size=XS,color=Red|sku=WJ07-S-Orange,size=S,color=Orange|sku=WJ07-S-Purple,size=S,color=Purple|sku=WJ07-S-Red,size=S,color=Red|sku=WJ07-M-Orange,size=M,color=Orange|sku=WJ07-M-Purple,size=M,color=Purple|sku=WJ07-M-Red,size=M,color=Red|sku=WJ07-L-Orange,size=L,color=Orange|sku=WJ07-L-Purple,size=L,color=Purple|sku=WJ07-L-Red,size=L,color=Red|sku=WJ07-XL-Orange,size=XL,color=Orange|sku=WJ07-XL-Purple,size=XL,color=Purple|sku=WJ07-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj07-purple_alt1.jpg,\\/w\\/j\\/wj07-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Jacket\",\"Hooded\",\"Soft Shell\",\"Full zip\"],\"material\":[\"Nylon\",\"Polyester\",\"Spandex\",\"CoolTech&trade;\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"Cool\",\"Mild\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1254\":{\"sku\":\"WJ08-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XS-Gray\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1255\":{\"sku\":\"WJ08-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XS-Orange\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1256\":{\"sku\":\"WJ08-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XS-Purple\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1257\":{\"sku\":\"WJ08-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-S-Gray\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1258\":{\"sku\":\"WJ08-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-S-Orange\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1259\":{\"sku\":\"WJ08-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-S-Purple\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1260\":{\"sku\":\"WJ08-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-M-Gray\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1261\":{\"sku\":\"WJ08-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-M-Orange\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1262\":{\"sku\":\"WJ08-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-M-Purple\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1263\":{\"sku\":\"WJ08-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-L-Gray\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1264\":{\"sku\":\"WJ08-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-L-Orange\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1265\":{\"sku\":\"WJ08-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-L-Purple\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1266\":{\"sku\":\"WJ08-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XL-Gray\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1267\":{\"sku\":\"WJ08-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XL-Orange\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1268\":{\"sku\":\"WJ08-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket-XL-Purple\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"adrienne-trek-jacket-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1269\":{\"sku\":\"WJ08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Adrienne Trek Jacket\",\"description\":\"<p>You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.<\\/p>\\n<p>&bull; gray 1\\/4 zip pullover.<br \\/>&bull; Comfortable, relaxed fit.<br \\/>&bull; Front zip for venting.<br \\/>&bull; Spacious, kangaroo pockets.<br \\/>&bull; 27\\\" body length.<br \\/>&bull; 95% Organic Cotton \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"57\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Lightweight|Rain Coat|Hard Shell|Windbreaker|&frac14; zip,material=Cotton|Spandex,pattern=Solid,climate=All-weather|Cool|Mild|Spring|Wintry,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ08-XS-Gray,size=XS,color=Gray|sku=WJ08-XS-Orange,size=XS,color=Orange|sku=WJ08-XS-Purple,size=XS,color=Purple|sku=WJ08-S-Gray,size=S,color=Gray|sku=WJ08-S-Orange,size=S,color=Orange|sku=WJ08-S-Purple,size=S,color=Purple|sku=WJ08-M-Gray,size=M,color=Gray|sku=WJ08-M-Orange,size=M,color=Orange|sku=WJ08-M-Purple,size=M,color=Purple|sku=WJ08-L-Gray,size=L,color=Gray|sku=WJ08-L-Orange,size=L,color=Orange|sku=WJ08-L-Purple,size=L,color=Purple|sku=WJ08-XL-Gray,size=XL,color=Gray|sku=WJ08-XL-Orange,size=XL,color=Orange|sku=WJ08-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"image\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj08-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj08-gray_alt1.jpg,\\/w\\/j\\/wj08-gray_alternate.jpg,\\/w\\/j\\/wj08-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Lightweight\",\"Rain Coat\",\"Hard Shell\",\"Windbreaker\",\"&frac14; zip\"],\"material\":[\"Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Mild\",\"Spring\",\"Wintry\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"Yes\"},\"1270\":{\"sku\":\"WJ09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XS-Blue\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1271\":{\"sku\":\"WJ09-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XS-Gray\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1272\":{\"sku\":\"WJ09-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XS-Green\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1273\":{\"sku\":\"WJ09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-S-Blue\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1274\":{\"sku\":\"WJ09-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-S-Gray\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1275\":{\"sku\":\"WJ09-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-S-Green\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1276\":{\"sku\":\"WJ09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-M-Blue\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1277\":{\"sku\":\"WJ09-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-M-Gray\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1278\":{\"sku\":\"WJ09-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-M-Green\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1279\":{\"sku\":\"WJ09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-L-Blue\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1280\":{\"sku\":\"WJ09-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-L-Gray\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1281\":{\"sku\":\"WJ09-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-L-Green\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1282\":{\"sku\":\"WJ09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XL-Blue\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1283\":{\"sku\":\"WJ09-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XL-Gray\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1284\":{\"sku\":\"WJ09-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket-XL-Green\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"jade-yoga-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1285\":{\"sku\":\"WJ09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Jade Yoga Jacket\",\"description\":\"<p><br \\/>If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.<\\/p>\\n<p>&bull; Seafoam 1\\/4 zip pullover with purple stitching.<br \\/>&bull; Lightweight, quick-drying, water-resistant construction.<br \\/>&bull; Shirred details at front and back for a feminine look.<br \\/>&bull; Hood collapses into collar.<br \\/>&bull; Mesh liner for breathability.<br \\/>&bull; Front zip pockets.<br \\/>&bull; Hem cinches at sideseam.<br \\/>&bull; 100% Polyester.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Lightweight|Hooded|Soft Shell|&frac14; zip,material=Polyester,pattern=Solid,climate=Cool|Mild|Spring|Windy,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ09-XS-Blue,size=XS,color=Blue|sku=WJ09-XS-Gray,size=XS,color=Gray|sku=WJ09-XS-Green,size=XS,color=Green|sku=WJ09-S-Blue,size=S,color=Blue|sku=WJ09-S-Gray,size=S,color=Gray|sku=WJ09-S-Green,size=S,color=Green|sku=WJ09-M-Blue,size=M,color=Blue|sku=WJ09-M-Gray,size=M,color=Gray|sku=WJ09-M-Green,size=M,color=Green|sku=WJ09-L-Blue,size=L,color=Blue|sku=WJ09-L-Gray,size=L,color=Gray|sku=WJ09-L-Green,size=L,color=Green|sku=WJ09-XL-Blue,size=XL,color=Blue|sku=WJ09-XL-Gray,size=XL,color=Gray|sku=WJ09-XL-Green,size=XL,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"image\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj09-green_alt1.jpg,\\/w\\/j\\/wj09-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Lightweight\",\"Hooded\",\"Soft Shell\",\"&frac14; zip\"],\"material\":\"Polyester\",\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Mild\",\"Spring\",\"Windy\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1286\":{\"sku\":\"WJ10-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XS-Black\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1287\":{\"sku\":\"WJ10-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XS-Orange\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1288\":{\"sku\":\"WJ10-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XS-Yellow\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1289\":{\"sku\":\"WJ10-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-S-Black\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1290\":{\"sku\":\"WJ10-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-S-Orange\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1291\":{\"sku\":\"WJ10-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-S-Yellow\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1292\":{\"sku\":\"WJ10-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-M-Black\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1293\":{\"sku\":\"WJ10-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-M-Orange\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1294\":{\"sku\":\"WJ10-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-M-Yellow\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1295\":{\"sku\":\"WJ10-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-L-Black\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1296\":{\"sku\":\"WJ10-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-L-Orange\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1297\":{\"sku\":\"WJ10-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-L-Yellow\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1298\":{\"sku\":\"WJ10-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XL-Black\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1299\":{\"sku\":\"WJ10-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XL-Orange\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"}}',1,'[[regtime]]'),(14,'catalog_product','append','{\"1300\":{\"sku\":\"WJ10-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell-XL-Yellow\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nadia-elements-shell-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1301\":{\"sku\":\"WJ10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nadia Elements Shell\",\"description\":\"<p>Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.<\\/p>\\n<p>&bull; Zippered front. <br \\/>&bull; Zippered side pockets. <br \\/>&bull; Drawstring-adjustable waist and hood. <br \\/>&bull; Machine wash\\/line dry.<br \\/>&bull; Light blue 1\\/4 zip pullover.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Jacket|Rain Coat|Hard Shell|Windbreaker|Full zip,material=Nylon|Polyester|CoolTech&trade;,pattern=Solid,climate=Cool|Mild|Rainy|Spring|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ10-XS-Black,size=XS,color=Black|sku=WJ10-XS-Orange,size=XS,color=Orange|sku=WJ10-XS-Yellow,size=XS,color=Yellow|sku=WJ10-S-Black,size=S,color=Black|sku=WJ10-S-Orange,size=S,color=Orange|sku=WJ10-S-Yellow,size=S,color=Yellow|sku=WJ10-M-Black,size=M,color=Black|sku=WJ10-M-Orange,size=M,color=Orange|sku=WJ10-M-Yellow,size=M,color=Yellow|sku=WJ10-L-Black,size=L,color=Black|sku=WJ10-L-Orange,size=L,color=Orange|sku=WJ10-L-Yellow,size=L,color=Yellow|sku=WJ10-XL-Black,size=XL,color=Black|sku=WJ10-XL-Orange,size=XL,color=Orange|sku=WJ10-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"image\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj10-yellow_alt1.jpg,\\/w\\/j\\/wj10-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Jacket\",\"Rain Coat\",\"Hard Shell\",\"Windbreaker\",\"Full zip\"],\"material\":[\"Nylon\",\"Polyester\",\"CoolTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Mild\",\"Rainy\",\"Spring\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1302\":{\"sku\":\"WJ11-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XS-Black\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1303\":{\"sku\":\"WJ11-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XS-Blue\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1304\":{\"sku\":\"WJ11-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XS-Orange\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1305\":{\"sku\":\"WJ11-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-S-Black\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1306\":{\"sku\":\"WJ11-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-S-Blue\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1307\":{\"sku\":\"WJ11-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-S-Orange\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1308\":{\"sku\":\"WJ11-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-M-Black\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1309\":{\"sku\":\"WJ11-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-M-Blue\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1310\":{\"sku\":\"WJ11-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-M-Orange\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1311\":{\"sku\":\"WJ11-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-L-Black\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1312\":{\"sku\":\"WJ11-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-L-Blue\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1313\":{\"sku\":\"WJ11-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-L-Orange\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1314\":{\"sku\":\"WJ11-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XL-Black\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1315\":{\"sku\":\"WJ11-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XL-Blue\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1316\":{\"sku\":\"WJ11-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket-XL-Orange\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"neve-studio-dance-jacket-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1317\":{\"sku\":\"WJ11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Neve Studio Dance Jacket\",\"description\":\"<p>If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.<\\/p>\\n<p>&bull; Bright blue 1\\/4 zip pullover.<br \\/>&bull; CoolTech&trade; liner is sweat-wicking.<br \\/>&bull; Sleeve thumbholes.<br \\/>&bull; Zipper garage to protect your chin.<br \\/>&bull; Stretchy collar drawcords.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"69\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Pullover|Hooded|Lightweight|Soft Shell|&frac14; zip|Reversible,material=Lycra&reg;|Mesh|Nylon|CoolTech&trade;,pattern=Solid,climate=Indoor|Mild|Spring,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ11-XS-Black,size=XS,color=Black|sku=WJ11-XS-Blue,size=XS,color=Blue|sku=WJ11-XS-Orange,size=XS,color=Orange|sku=WJ11-S-Black,size=S,color=Black|sku=WJ11-S-Blue,size=S,color=Blue|sku=WJ11-S-Orange,size=S,color=Orange|sku=WJ11-M-Black,size=M,color=Black|sku=WJ11-M-Blue,size=M,color=Blue|sku=WJ11-M-Orange,size=M,color=Orange|sku=WJ11-L-Black,size=L,color=Black|sku=WJ11-L-Blue,size=L,color=Blue|sku=WJ11-L-Orange,size=L,color=Orange|sku=WJ11-XL-Black,size=XL,color=Black|sku=WJ11-XL-Blue,size=XL,color=Blue|sku=WJ11-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj11-blue_alt1.jpg,\\/w\\/j\\/wj11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Pullover\",\"Hooded\",\"Lightweight\",\"Soft Shell\",\"&frac14; zip\",\"Reversible\"],\"material\":[\"Lycra&reg;\",\"Mesh\",\"Nylon\",\"CoolTech&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1318\":{\"sku\":\"WJ06-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XS-Blue\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1319\":{\"sku\":\"WJ06-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XS-Green\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1320\":{\"sku\":\"WJ06-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XS-Purple\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1321\":{\"sku\":\"WJ06-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-S-Blue\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1322\":{\"sku\":\"WJ06-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-S-Green\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1323\":{\"sku\":\"WJ06-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-S-Purple\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1324\":{\"sku\":\"WJ06-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-M-Blue\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1325\":{\"sku\":\"WJ06-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-M-Green\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1326\":{\"sku\":\"WJ06-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-M-Purple\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1327\":{\"sku\":\"WJ06-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-L-Blue\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1328\":{\"sku\":\"WJ06-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-L-Green\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1329\":{\"sku\":\"WJ06-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-L-Purple\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1330\":{\"sku\":\"WJ06-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XL-Blue\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1331\":{\"sku\":\"WJ06-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XL-Green\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1332\":{\"sku\":\"WJ06-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket-XL-Purple\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juno-jacket-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1333\":{\"sku\":\"WJ06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Juno Jacket\",\"description\":\"<p>On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona&reg; technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.<\\/p>\\n<p>&bull; Adjustable hood.<\\/br>&bull; Fleece-lined, zippered hand pockets.<\\/br>&bull; Thumbhole cuffs.<\\/br>&bull; Full zip.<\\/br>&bull; Mock-neck collar.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Insulated|Jacket|Heavy Duty|Hard Shell|Full zip|Reversible,material=Cocona&reg; performance fabric|Fleece,pattern=Solid,climate=Cold|Cool|Spring|Windy|Wintry,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ06-XS-Blue,size=XS,color=Blue|sku=WJ06-XS-Green,size=XS,color=Green|sku=WJ06-XS-Purple,size=XS,color=Purple|sku=WJ06-S-Blue,size=S,color=Blue|sku=WJ06-S-Green,size=S,color=Green|sku=WJ06-S-Purple,size=S,color=Purple|sku=WJ06-M-Blue,size=M,color=Blue|sku=WJ06-M-Green,size=M,color=Green|sku=WJ06-M-Purple,size=M,color=Purple|sku=WJ06-L-Blue,size=L,color=Blue|sku=WJ06-L-Green,size=L,color=Green|sku=WJ06-L-Purple,size=L,color=Purple|sku=WJ06-XL-Blue,size=XL,color=Blue|sku=WJ06-XL-Green,size=XL,color=Green|sku=WJ06-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"image\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj06-purple_alt1.jpg,\\/w\\/j\\/wj06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Insulated\",\"Jacket\",\"Heavy Duty\",\"Hard Shell\",\"Full zip\",\"Reversible\"],\"material\":[\"Cocona&reg; performance fabric\",\"Fleece\"],\"pattern\":\"Solid\",\"climate\":[\"Cold\",\"Cool\",\"Spring\",\"Windy\",\"Wintry\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1334\":{\"sku\":\"WJ12-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XS-Black\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1335\":{\"sku\":\"WJ12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XS-Blue\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1336\":{\"sku\":\"WJ12-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XS-Purple\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1337\":{\"sku\":\"WJ12-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-S-Black\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1338\":{\"sku\":\"WJ12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-S-Blue\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1339\":{\"sku\":\"WJ12-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-S-Purple\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1340\":{\"sku\":\"WJ12-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-M-Black\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1341\":{\"sku\":\"WJ12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-M-Blue\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1342\":{\"sku\":\"WJ12-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-M-Purple\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1343\":{\"sku\":\"WJ12-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-L-Black\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1344\":{\"sku\":\"WJ12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-L-Blue\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1345\":{\"sku\":\"WJ12-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-L-Purple\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1346\":{\"sku\":\"WJ12-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XL-Black\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1347\":{\"sku\":\"WJ12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XL-Blue\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1348\":{\"sku\":\"WJ12-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket-XL-Purple\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"olivia-1-4-zip-light-jacket-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1349\":{\"sku\":\"WJ12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Jackets,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Olivia 1\\/4 Zip Light Jacket\",\"description\":\"<p>Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.<\\/p>\\n<p>&bull; Loose fit.<\\/br>&bull; Reflectivity.<\\/br>&bull; Flat seams.<\\/br>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"77\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Jacket|Pullover|Lightweight|Soft Shell|&frac14; zip,material=Cocona&reg; performance fabric|Nylon|Cotton,pattern=Solid,climate=Spring|Warm|Windy,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WJ12-XS-Black,size=XS,color=Black|sku=WJ12-XS-Blue,size=XS,color=Blue|sku=WJ12-XS-Purple,size=XS,color=Purple|sku=WJ12-S-Black,size=S,color=Black|sku=WJ12-S-Blue,size=S,color=Blue|sku=WJ12-S-Purple,size=S,color=Purple|sku=WJ12-M-Black,size=M,color=Black|sku=WJ12-M-Blue,size=M,color=Blue|sku=WJ12-M-Purple,size=M,color=Purple|sku=WJ12-L-Black,size=L,color=Black|sku=WJ12-L-Blue,size=L,color=Blue|sku=WJ12-L-Purple,size=L,color=Purple|sku=WJ12-XL-Black,size=XL,color=Black|sku=WJ12-XL-Blue,size=XL,color=Blue|sku=WJ12-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"image\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/j\\/wj12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/j\\/wj12-blue_alt1.jpg,\\/w\\/j\\/wj12-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Jacket\",\"Pullover\",\"Lightweight\",\"Soft Shell\",\"&frac14; zip\"],\"material\":[\"Cocona&reg; performance fabric\",\"Nylon\",\"Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Spring\",\"Warm\",\"Windy\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1350\":{\"sku\":\"WS02-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XS-Blue\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1351\":{\"sku\":\"WS02-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XS-Green\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1352\":{\"sku\":\"WS02-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XS-Red\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1353\":{\"sku\":\"WS02-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-S-Blue\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1354\":{\"sku\":\"WS02-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-S-Green\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1355\":{\"sku\":\"WS02-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-S-Red\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1356\":{\"sku\":\"WS02-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-M-Blue\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1357\":{\"sku\":\"WS02-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-M-Green\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1358\":{\"sku\":\"WS02-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-M-Red\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1359\":{\"sku\":\"WS02-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-L-Blue\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1360\":{\"sku\":\"WS02-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-L-Green\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1361\":{\"sku\":\"WS02-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-L-Red\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1362\":{\"sku\":\"WS02-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XL-Blue\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1363\":{\"sku\":\"WS02-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XL-Green\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1364\":{\"sku\":\"WS02-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top-XL-Red\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gabrielle-micro-sleeve-top-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1365\":{\"sku\":\"WS02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Gabrielle Micro Sleeve Top\",\"description\":\"<p>Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.<\\/p>\\n<p>&bull; Lime green v-neck tee.<br \\/>&bull; Slimming, flattering fit.<br \\/>&bull; Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.<br \\/>&bull; Longer curved hem provides additional coverage.<br \\/>&bull; 55% Hemp \\/ 45% Organic Cotton.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton|Hemp,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS02-XS-Blue,size=XS,color=Blue|sku=WS02-XS-Green,size=XS,color=Green|sku=WS02-XS-Red,size=XS,color=Red|sku=WS02-S-Blue,size=S,color=Blue|sku=WS02-S-Green,size=S,color=Green|sku=WS02-S-Red,size=S,color=Red|sku=WS02-M-Blue,size=M,color=Blue|sku=WS02-M-Green,size=M,color=Green|sku=WS02-M-Red,size=M,color=Red|sku=WS02-L-Blue,size=L,color=Blue|sku=WS02-L-Green,size=L,color=Green|sku=WS02-L-Red,size=L,color=Red|sku=WS02-XL-Blue,size=XL,color=Blue|sku=WS02-XL-Green,size=XL,color=Green|sku=WS02-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws02-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cotton\",\"Hemp\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1366\":{\"sku\":\"WS03-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XS-Blue\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1367\":{\"sku\":\"WS03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XS-Green\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1368\":{\"sku\":\"WS03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XS-Red\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1369\":{\"sku\":\"WS03-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-S-Blue\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1370\":{\"sku\":\"WS03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-S-Green\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1371\":{\"sku\":\"WS03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-S-Red\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1372\":{\"sku\":\"WS03-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-M-Blue\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1373\":{\"sku\":\"WS03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-M-Green\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1374\":{\"sku\":\"WS03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-M-Red\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1375\":{\"sku\":\"WS03-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-L-Blue\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1376\":{\"sku\":\"WS03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-L-Green\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1377\":{\"sku\":\"WS03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-L-Red\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1378\":{\"sku\":\"WS03-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XL-Blue\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1379\":{\"sku\":\"WS03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XL-Green\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1380\":{\"sku\":\"WS03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top-XL-Red\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"iris-workout-top-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1381\":{\"sku\":\"WS03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Iris Workout Top\",\"description\":\"<p>The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.<\\/p>\\n<p>&bull; Pink heather rouched v-neck.<br \\/>&bull; Scoop neckline.<br \\/>&bull; Angled flat seams.<br \\/>&bull; Moisture wicking.<br \\/>&bull; Body skimming.<br \\/>&bull; 83% Polyester \\/ 11% TENCEL&reg; Lyocell \\/ 6% Lycra&reg; Spandex.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Lycra&reg;|Polyester|Spandex|TENCEL,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS03-XS-Blue,size=XS,color=Blue|sku=WS03-XS-Green,size=XS,color=Green|sku=WS03-XS-Red,size=XS,color=Red|sku=WS03-S-Blue,size=S,color=Blue|sku=WS03-S-Green,size=S,color=Green|sku=WS03-S-Red,size=S,color=Red|sku=WS03-M-Blue,size=M,color=Blue|sku=WS03-M-Green,size=M,color=Green|sku=WS03-M-Red,size=M,color=Red|sku=WS03-L-Blue,size=L,color=Blue|sku=WS03-L-Green,size=L,color=Green|sku=WS03-L-Red,size=L,color=Red|sku=WS03-XL-Blue,size=XL,color=Blue|sku=WS03-XL-Green,size=XL,color=Green|sku=WS03-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws03-red_alt1.jpg,\\/w\\/s\\/ws03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Lycra&reg;\",\"Polyester\",\"Spandex\",\"TENCEL\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1382\":{\"sku\":\"WS04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XS-Blue\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1383\":{\"sku\":\"WS04-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XS-Green\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1384\":{\"sku\":\"WS04-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XS-Red\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1385\":{\"sku\":\"WS04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-S-Blue\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1386\":{\"sku\":\"WS04-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-S-Green\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1387\":{\"sku\":\"WS04-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-S-Red\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1388\":{\"sku\":\"WS04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-M-Blue\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1389\":{\"sku\":\"WS04-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-M-Green\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1390\":{\"sku\":\"WS04-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-M-Red\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1391\":{\"sku\":\"WS04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-L-Blue\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1392\":{\"sku\":\"WS04-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-L-Green\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1393\":{\"sku\":\"WS04-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-L-Red\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1394\":{\"sku\":\"WS04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XL-Blue\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1395\":{\"sku\":\"WS04-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XL-Green\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1396\":{\"sku\":\"WS04-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee-XL-Red\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"layla-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1397\":{\"sku\":\"WS04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Layla Tee\",\"description\":\"<p>Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.<\\/p>\\n<p>&bull; Teal tee.<br \\/>&bull; Long back hem.<br \\/>&bull; Dropped shoulders.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS04-XS-Blue,size=XS,color=Blue|sku=WS04-XS-Green,size=XS,color=Green|sku=WS04-XS-Red,size=XS,color=Red|sku=WS04-S-Blue,size=S,color=Blue|sku=WS04-S-Green,size=S,color=Green|sku=WS04-S-Red,size=S,color=Red|sku=WS04-M-Blue,size=M,color=Blue|sku=WS04-M-Green,size=M,color=Green|sku=WS04-M-Red,size=M,color=Red|sku=WS04-L-Blue,size=L,color=Blue|sku=WS04-L-Green,size=L,color=Green|sku=WS04-L-Red,size=L,color=Red|sku=WS04-XL-Blue,size=XL,color=Blue|sku=WS04-XL-Green,size=XL,color=Green|sku=WS04-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"image\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws04-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":\"Cotton\",\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1398\":{\"sku\":\"WS06-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XS-Gray\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1399\":{\"sku\":\"WS06-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XS-Purple\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"}}',1,'[[regtime]]'),(15,'catalog_product','append','{\"1400\":{\"sku\":\"WS06-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XS-Red\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1401\":{\"sku\":\"WS06-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-S-Gray\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1402\":{\"sku\":\"WS06-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-S-Purple\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1403\":{\"sku\":\"WS06-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-S-Red\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1404\":{\"sku\":\"WS06-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-M-Gray\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1405\":{\"sku\":\"WS06-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-M-Purple\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1406\":{\"sku\":\"WS06-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-M-Red\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1407\":{\"sku\":\"WS06-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-L-Gray\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1408\":{\"sku\":\"WS06-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-L-Purple\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1409\":{\"sku\":\"WS06-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-L-Red\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1410\":{\"sku\":\"WS06-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XL-Gray\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1411\":{\"sku\":\"WS06-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XL-Purple\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1412\":{\"sku\":\"WS06-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee-XL-Red\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"elisa-evercool-trade-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1413\":{\"sku\":\"WS06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Elisa EverCool&trade; Tee\",\"description\":\"<p>When rising temps threaten to melt you down, Elisa EverCool&trade; Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.<\\/p>\\n<p>&bull; Purple heather v-neck tee.<br \\/>&bull; Short-Sleeves.<br \\/>&bull; Luma EverCool&trade; fabric. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=EverCool&trade;|Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS06-XS-Gray,size=XS,color=Gray|sku=WS06-XS-Purple,size=XS,color=Purple|sku=WS06-XS-Red,size=XS,color=Red|sku=WS06-S-Gray,size=S,color=Gray|sku=WS06-S-Purple,size=S,color=Purple|sku=WS06-S-Red,size=S,color=Red|sku=WS06-M-Gray,size=M,color=Gray|sku=WS06-M-Purple,size=M,color=Purple|sku=WS06-M-Red,size=M,color=Red|sku=WS06-L-Gray,size=L,color=Gray|sku=WS06-L-Purple,size=L,color=Purple|sku=WS06-L-Red,size=L,color=Red|sku=WS06-XL-Gray,size=XL,color=Gray|sku=WS06-XL-Purple,size=XL,color=Purple|sku=WS06-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"image\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws06-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"EverCool&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1414\":{\"sku\":\"WS07-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XS-Black\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1415\":{\"sku\":\"WS07-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XS-White\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1416\":{\"sku\":\"WS07-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XS-Yellow\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1417\":{\"sku\":\"WS07-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-S-Black\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1418\":{\"sku\":\"WS07-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-S-White\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1419\":{\"sku\":\"WS07-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-S-Yellow\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1420\":{\"sku\":\"WS07-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-M-Black\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1421\":{\"sku\":\"WS07-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-M-White\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1422\":{\"sku\":\"WS07-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-M-Yellow\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1423\":{\"sku\":\"WS07-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-L-Black\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1424\":{\"sku\":\"WS07-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-L-White\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1425\":{\"sku\":\"WS07-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-L-Yellow\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1426\":{\"sku\":\"WS07-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XL-Black\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1427\":{\"sku\":\"WS07-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XL-White\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1428\":{\"sku\":\"WS07-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee-XL-Yellow\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"juliana-short-sleeve-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1429\":{\"sku\":\"WS07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Juliana Short-Sleeve Tee\",\"description\":\"<p>The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona&reg; polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.<\\/p>\\n<p>&bull; Black scoop neck tee.<br \\/>&bull; Side rouching.<br \\/>&bull; Relaxed fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS07-XS-Black,size=XS,color=Black|sku=WS07-XS-White,size=XS,color=White|sku=WS07-XS-Yellow,size=XS,color=Yellow|sku=WS07-S-Black,size=S,color=Black|sku=WS07-S-White,size=S,color=White|sku=WS07-S-Yellow,size=S,color=Yellow|sku=WS07-M-Black,size=M,color=Black|sku=WS07-M-White,size=M,color=White|sku=WS07-M-Yellow,size=M,color=Yellow|sku=WS07-L-Black,size=L,color=Black|sku=WS07-L-White,size=L,color=White|sku=WS07-L-Yellow,size=L,color=Yellow|sku=WS07-XL-Black,size=XL,color=Black|sku=WS07-XL-White,size=XL,color=White|sku=WS07-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws07-black_alt1.jpg,\\/w\\/s\\/ws07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"1430\":{\"sku\":\"WS08-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XS-Black\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1431\":{\"sku\":\"WS08-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XS-Blue\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1432\":{\"sku\":\"WS08-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XS-Red\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1433\":{\"sku\":\"WS08-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-S-Black\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1434\":{\"sku\":\"WS08-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-S-Blue\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1435\":{\"sku\":\"WS08-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-S-Red\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1436\":{\"sku\":\"WS08-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-M-Black\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1437\":{\"sku\":\"WS08-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-M-Blue\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1438\":{\"sku\":\"WS08-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-M-Red\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1439\":{\"sku\":\"WS08-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-L-Black\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1440\":{\"sku\":\"WS08-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-L-Blue\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1441\":{\"sku\":\"WS08-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-L-Red\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1442\":{\"sku\":\"WS08-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XL-Black\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1443\":{\"sku\":\"WS08-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XL-Blue\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1444\":{\"sku\":\"WS08-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee-XL-Red\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"minerva-lumatech-trade-v-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1445\":{\"sku\":\"WS08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Minerva LumaTech&trade; V-Tee\",\"description\":\"<p>Don\'t be fooled by the simple design of our Minerva LumaTech&trade; V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.<\\/p>\\n<p>&bull; Navy blue heather soft v-neck tee.<br \\/>&bull; Flatlock seams for chafe-free comfort.<br \\/>&bull; Relaxed cut.<br \\/>&bull; Ultra-lightweight fabric.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton|Lycra&reg;,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS08-XS-Black,size=XS,color=Black|sku=WS08-XS-Blue,size=XS,color=Blue|sku=WS08-XS-Red,size=XS,color=Red|sku=WS08-S-Black,size=S,color=Black|sku=WS08-S-Blue,size=S,color=Blue|sku=WS08-S-Red,size=S,color=Red|sku=WS08-M-Black,size=M,color=Black|sku=WS08-M-Blue,size=M,color=Blue|sku=WS08-M-Red,size=M,color=Red|sku=WS08-L-Black,size=L,color=Black|sku=WS08-L-Blue,size=L,color=Blue|sku=WS08-L-Red,size=L,color=Red|sku=WS08-XL-Black,size=XL,color=Black|sku=WS08-XL-Blue,size=XL,color=Blue|sku=WS08-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws08-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws08-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cotton\",\"Lycra&reg;\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1446\":{\"sku\":\"WS09-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XS-Blue\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1447\":{\"sku\":\"WS09-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XS-Red\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1448\":{\"sku\":\"WS09-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XS-White\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1449\":{\"sku\":\"WS09-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-S-Blue\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1450\":{\"sku\":\"WS09-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-S-Red\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1451\":{\"sku\":\"WS09-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-S-White\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1452\":{\"sku\":\"WS09-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-M-Blue\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1453\":{\"sku\":\"WS09-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-M-Red\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1454\":{\"sku\":\"WS09-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-M-White\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1455\":{\"sku\":\"WS09-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-L-Blue\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1456\":{\"sku\":\"WS09-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-L-Red\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1457\":{\"sku\":\"WS09-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-L-White\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1458\":{\"sku\":\"WS09-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XL-Blue\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1459\":{\"sku\":\"WS09-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XL-Red\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1460\":{\"sku\":\"WS09-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee-XL-White\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"tiffany-fitness-tee-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1461\":{\"sku\":\"WS09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Tiffany Fitness Tee\",\"description\":\"<p>You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.<\\/p>\\n<p>&bull; Teal soft scoop neck tee.<br \\/>&bull; Contrast stitching pattern. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS09-XS-Blue,size=XS,color=Blue|sku=WS09-XS-Red,size=XS,color=Red|sku=WS09-XS-White,size=XS,color=White|sku=WS09-S-Blue,size=S,color=Blue|sku=WS09-S-Red,size=S,color=Red|sku=WS09-S-White,size=S,color=White|sku=WS09-M-Blue,size=M,color=Blue|sku=WS09-M-Red,size=M,color=Red|sku=WS09-M-White,size=M,color=White|sku=WS09-L-Blue,size=L,color=Blue|sku=WS09-L-Red,size=L,color=Red|sku=WS09-L-White,size=L,color=White|sku=WS09-XL-Blue,size=XL,color=Blue|sku=WS09-XL-Red,size=XL,color=Red|sku=WS09-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"image\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws09-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":\"Organic Cotton\",\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1462\":{\"sku\":\"WS10-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XS-Green\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1463\":{\"sku\":\"WS10-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XS-Red\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1464\":{\"sku\":\"WS10-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XS-Yellow\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1465\":{\"sku\":\"WS10-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-S-Green\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1466\":{\"sku\":\"WS10-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-S-Red\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1467\":{\"sku\":\"WS10-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-S-Yellow\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1468\":{\"sku\":\"WS10-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-M-Green\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1469\":{\"sku\":\"WS10-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-M-Red\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1470\":{\"sku\":\"WS10-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-M-Yellow\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1471\":{\"sku\":\"WS10-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-L-Green\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1472\":{\"sku\":\"WS10-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-L-Red\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1473\":{\"sku\":\"WS10-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-L-Yellow\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1474\":{\"sku\":\"WS10-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XL-Green\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1475\":{\"sku\":\"WS10-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XL-Red\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1476\":{\"sku\":\"WS10-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee-XL-Yellow\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karissa-v-neck-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1477\":{\"sku\":\"WS10\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karissa V-Neck Tee\",\"description\":\"<p>The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \\\"problem\\\" areas.<\\/p>\\n<p>&bull; Pink heather soft v-neck tee. <br \\/>&bull; Luma signature micro sleeves.<br \\/>&bull; Semi-fitted. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cotton|EverCool&trade;,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS10-XS-Green,size=XS,color=Green|sku=WS10-XS-Red,size=XS,color=Red|sku=WS10-XS-Yellow,size=XS,color=Yellow|sku=WS10-S-Green,size=S,color=Green|sku=WS10-S-Red,size=S,color=Red|sku=WS10-S-Yellow,size=S,color=Yellow|sku=WS10-M-Green,size=M,color=Green|sku=WS10-M-Red,size=M,color=Red|sku=WS10-M-Yellow,size=M,color=Yellow|sku=WS10-L-Green,size=L,color=Green|sku=WS10-L-Red,size=L,color=Red|sku=WS10-L-Yellow,size=L,color=Yellow|sku=WS10-XL-Green,size=XL,color=Green|sku=WS10-XL-Red,size=XL,color=Red|sku=WS10-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"image\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws10-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws10-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cotton\",\"EverCool&trade;\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1478\":{\"sku\":\"WS11-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XS-Green\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1479\":{\"sku\":\"WS11-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XS-Orange\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1480\":{\"sku\":\"WS11-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XS-Yellow\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1481\":{\"sku\":\"WS11-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-S-Green\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1482\":{\"sku\":\"WS11-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-S-Orange\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1483\":{\"sku\":\"WS11-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-S-Yellow\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1484\":{\"sku\":\"WS11-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-M-Green\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1485\":{\"sku\":\"WS11-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-M-Orange\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1486\":{\"sku\":\"WS11-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-M-Yellow\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1487\":{\"sku\":\"WS11-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-L-Green\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1488\":{\"sku\":\"WS11-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-L-Orange\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1489\":{\"sku\":\"WS11-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-L-Yellow\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1490\":{\"sku\":\"WS11-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XL-Green\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1491\":{\"sku\":\"WS11-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XL-Orange\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1492\":{\"sku\":\"WS11-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee-XL-Yellow\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diva-gym-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1493\":{\"sku\":\"WS11\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diva Gym Tee\",\"description\":\"<p>The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.<\\/p>\\n<p>&bull; Bright yellow v-neck tee.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Long-Sleeves. <br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"32\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Cocona&reg; performance fabric|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS11-XS-Green,size=XS,color=Green|sku=WS11-XS-Orange,size=XS,color=Orange|sku=WS11-XS-Yellow,size=XS,color=Yellow|sku=WS11-S-Green,size=S,color=Green|sku=WS11-S-Orange,size=S,color=Orange|sku=WS11-S-Yellow,size=S,color=Yellow|sku=WS11-M-Green,size=M,color=Green|sku=WS11-M-Orange,size=M,color=Orange|sku=WS11-M-Yellow,size=M,color=Yellow|sku=WS11-L-Green,size=L,color=Green|sku=WS11-L-Orange,size=L,color=Orange|sku=WS11-L-Yellow,size=L,color=Yellow|sku=WS11-XL-Green,size=XL,color=Green|sku=WS11-XL-Orange,size=XL,color=Orange|sku=WS11-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"image\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws11-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws11-yellow_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Cocona&reg; performance fabric\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"Yes\"},\"1494\":{\"sku\":\"WS12-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XS-Blue\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1495\":{\"sku\":\"WS12-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XS-Orange\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1496\":{\"sku\":\"WS12-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XS-Purple\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1497\":{\"sku\":\"WS12-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-S-Blue\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1498\":{\"sku\":\"WS12-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-S-Orange\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1499\":{\"sku\":\"WS12-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-S-Purple\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (16,'catalog_product','append','{\"1500\":{\"sku\":\"WS12-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-M-Blue\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1501\":{\"sku\":\"WS12-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-M-Orange\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1502\":{\"sku\":\"WS12-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-M-Purple\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1503\":{\"sku\":\"WS12-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-L-Blue\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1504\":{\"sku\":\"WS12-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-L-Orange\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1505\":{\"sku\":\"WS12-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-L-Purple\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1506\":{\"sku\":\"WS12-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XL-Blue\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1507\":{\"sku\":\"WS12-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XL-Orange\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1508\":{\"sku\":\"WS12-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee-XL-Purple\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"radiant-tee-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1509\":{\"sku\":\"WS12\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Radiant Tee\",\"description\":\"<p>So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.<\\/p>\\n<p>&bull; Salmon soft scoop neck tee.<br \\/>&bull; Athletic, semi-form fit.<br \\/>&bull; Flat seams prevent chafing.<br \\/>&bull; 67% Organic Cotton \\/ 28% Hemp \\/ 5% Spandex.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"22\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=Hemp|Organic Cotton|Spandex,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS12-XS-Blue,size=XS,color=Blue|sku=WS12-XS-Orange,size=XS,color=Orange|sku=WS12-XS-Purple,size=XS,color=Purple|sku=WS12-S-Blue,size=S,color=Blue|sku=WS12-S-Orange,size=S,color=Orange|sku=WS12-S-Purple,size=S,color=Purple|sku=WS12-M-Blue,size=M,color=Blue|sku=WS12-M-Orange,size=M,color=Orange|sku=WS12-M-Purple,size=M,color=Purple|sku=WS12-L-Blue,size=L,color=Blue|sku=WS12-L-Orange,size=L,color=Orange|sku=WS12-L-Purple,size=L,color=Purple|sku=WS12-XL-Blue,size=XL,color=Blue|sku=WS12-XL-Orange,size=XL,color=Orange|sku=WS12-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"image\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws12-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws12-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"Hemp\",\"Organic Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1510\":{\"sku\":\"WS01-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XS-Black\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1511\":{\"sku\":\"WS01-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XS-Green\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1512\":{\"sku\":\"WS01-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XS-Yellow\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1513\":{\"sku\":\"WS01-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-S-Black\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1514\":{\"sku\":\"WS01-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-S-Green\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1515\":{\"sku\":\"WS01-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-S-Yellow\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1516\":{\"sku\":\"WS01-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-M-Black\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1517\":{\"sku\":\"WS01-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-M-Green\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1518\":{\"sku\":\"WS01-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-M-Yellow\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1519\":{\"sku\":\"WS01-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-L-Black\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1520\":{\"sku\":\"WS01-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-L-Green\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1521\":{\"sku\":\"WS01-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-L-Yellow\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1522\":{\"sku\":\"WS01-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XL-Black\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1523\":{\"sku\":\"WS01-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XL-Green\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1524\":{\"sku\":\"WS01-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee-XL-Yellow\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwyn-endurance-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1525\":{\"sku\":\"WS01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwyn Endurance Tee\",\"description\":\"<p>When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=HeatTec&reg;|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS01-XS-Black,size=XS,color=Black|sku=WS01-XS-Green,size=XS,color=Green|sku=WS01-XS-Yellow,size=XS,color=Yellow|sku=WS01-S-Black,size=S,color=Black|sku=WS01-S-Green,size=S,color=Green|sku=WS01-S-Yellow,size=S,color=Yellow|sku=WS01-M-Black,size=M,color=Black|sku=WS01-M-Green,size=M,color=Green|sku=WS01-M-Yellow,size=M,color=Yellow|sku=WS01-L-Black,size=L,color=Black|sku=WS01-L-Green,size=L,color=Green|sku=WS01-L-Yellow,size=L,color=Yellow|sku=WS01-XL-Black,size=XL,color=Black|sku=WS01-XL-Green,size=XL,color=Green|sku=WS01-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"HeatTec&reg;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1526\":{\"sku\":\"WS05-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XS-Black\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1527\":{\"sku\":\"WS05-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XS-Orange\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1528\":{\"sku\":\"WS05-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XS-Yellow\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1529\":{\"sku\":\"WS05-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-S-Black\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1530\":{\"sku\":\"WS05-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-S-Orange\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1531\":{\"sku\":\"WS05-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-S-Yellow\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1532\":{\"sku\":\"WS05-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-M-Black\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1533\":{\"sku\":\"WS05-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-M-Orange\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1534\":{\"sku\":\"WS05-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-M-Yellow\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1535\":{\"sku\":\"WS05-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-L-Black\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1536\":{\"sku\":\"WS05-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-L-Orange\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1537\":{\"sku\":\"WS05-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-L-Yellow\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1538\":{\"sku\":\"WS05-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XL-Black\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1539\":{\"sku\":\"WS05-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XL-Orange\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1540\":{\"sku\":\"WS05-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee-XL-Yellow\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"desiree-fitness-tee-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1541\":{\"sku\":\"WS05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Tees,Default Category\\/Promotions\\/Tees,Default Category\",\"product_websites\":\"base\",\"name\":\"Desiree Fitness Tee\",\"description\":\"<p>When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.<\\/p>\\n<p>&bull; Short-Sleeves.<br \\/>&bull; Performance fabric.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tee,material=HeatTec&reg;|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WS05-XS-Black,size=XS,color=Black|sku=WS05-XS-Orange,size=XS,color=Orange|sku=WS05-XS-Yellow,size=XS,color=Yellow|sku=WS05-S-Black,size=S,color=Black|sku=WS05-S-Orange,size=S,color=Orange|sku=WS05-S-Yellow,size=S,color=Yellow|sku=WS05-M-Black,size=M,color=Black|sku=WS05-M-Orange,size=M,color=Orange|sku=WS05-M-Yellow,size=M,color=Yellow|sku=WS05-L-Black,size=L,color=Black|sku=WS05-L-Orange,size=L,color=Orange|sku=WS05-L-Yellow,size=L,color=Yellow|sku=WS05-XL-Black,size=XL,color=Black|sku=WS05-XL-Orange,size=XL,color=Orange|sku=WS05-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"image\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/ws05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/ws05-black_alt1.jpg,\\/w\\/s\\/ws05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tee\",\"material\":[\"HeatTec&reg;\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1542\":{\"sku\":\"WB01-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XS-Black\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1543\":{\"sku\":\"WB01-XS-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XS-Gray\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xs-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Gray\"},\"1544\":{\"sku\":\"WB01-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XS-Purple\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1545\":{\"sku\":\"WB01-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-S-Black\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1546\":{\"sku\":\"WB01-S-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-S-Gray\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-s-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Gray\"},\"1547\":{\"sku\":\"WB01-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-S-Purple\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1548\":{\"sku\":\"WB01-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-M-Black\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1549\":{\"sku\":\"WB01-M-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-M-Gray\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-m-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Gray\"},\"1550\":{\"sku\":\"WB01-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-M-Purple\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1551\":{\"sku\":\"WB01-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-L-Black\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1552\":{\"sku\":\"WB01-L-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-L-Gray\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-l-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Gray\"},\"1553\":{\"sku\":\"WB01-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-L-Purple\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1554\":{\"sku\":\"WB01-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XL-Black\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"image\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-black-0.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1555\":{\"sku\":\"WB01-XL-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XL-Gray\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xl-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Gray\"},\"1556\":{\"sku\":\"WB01-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top-XL-Purple\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"electra-bra-top-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1557\":{\"sku\":\"WB01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Electra Bra Top\",\"description\":\"<p>A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.<\\/p>\\n<p>&bull; Gray rouched bra top.<br \\/>&bull; Attractive back straps feature contrasting motif fabric.<br \\/>&bull; Interior bra top is lined with breathable mesh.<br \\/>&bull; Elastic underband for superior support.<br \\/>&bull; Removable cup inserts.<br \\/>&bull; Chafe-free flat lock seams provide added comfort.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Bra,material=EverCool&trade;|Organic Cotton|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WB01-XS-Black,size=XS,color=Black|sku=WB01-XS-Gray,size=XS,color=Gray|sku=WB01-XS-Purple,size=XS,color=Purple|sku=WB01-S-Black,size=S,color=Black|sku=WB01-S-Gray,size=S,color=Gray|sku=WB01-S-Purple,size=S,color=Purple|sku=WB01-M-Black,size=M,color=Black|sku=WB01-M-Gray,size=M,color=Gray|sku=WB01-M-Purple,size=M,color=Purple|sku=WB01-L-Black,size=L,color=Black|sku=WB01-L-Gray,size=L,color=Gray|sku=WB01-L-Purple,size=L,color=Purple|sku=WB01-XL-Black,size=XL,color=Black|sku=WB01-XL-Gray,size=XL,color=Gray|sku=WB01-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"image\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb01-gray_alt1.jpg,\\/w\\/b\\/wb01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Bra\",\"material\":[\"EverCool&trade;\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1558\":{\"sku\":\"WB02-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XS-Blue\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1559\":{\"sku\":\"WB02-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XS-Orange\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1560\":{\"sku\":\"WB02-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XS-Yellow\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1561\":{\"sku\":\"WB02-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-S-Blue\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1562\":{\"sku\":\"WB02-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-S-Orange\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1563\":{\"sku\":\"WB02-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-S-Yellow\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1564\":{\"sku\":\"WB02-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-M-Blue\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1565\":{\"sku\":\"WB02-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-M-Orange\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1566\":{\"sku\":\"WB02-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-M-Yellow\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1567\":{\"sku\":\"WB02-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-L-Blue\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1568\":{\"sku\":\"WB02-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-L-Orange\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1569\":{\"sku\":\"WB02-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-L-Yellow\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1570\":{\"sku\":\"WB02-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XL-Blue\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1571\":{\"sku\":\"WB02-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XL-Orange\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1572\":{\"sku\":\"WB02-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra-XL-Yellow\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erica-evercool-sports-bra-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1573\":{\"sku\":\"WB02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Erica Evercool Sports Bra\",\"description\":\"<p>Perfect for medium-impact workouts, our Erica EverCool&trade; Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.<\\/p>\\n<p>&bull; Honeycomb light blue bra top.<br \\/>&bull; Elastic hem.<br \\/>&bull; Reinforced binding. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Bra,material=EverCool&trade;|Lycra&reg;,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WB02-XS-Blue,size=XS,color=Blue|sku=WB02-XS-Orange,size=XS,color=Orange|sku=WB02-XS-Yellow,size=XS,color=Yellow|sku=WB02-S-Blue,size=S,color=Blue|sku=WB02-S-Orange,size=S,color=Orange|sku=WB02-S-Yellow,size=S,color=Yellow|sku=WB02-M-Blue,size=M,color=Blue|sku=WB02-M-Orange,size=M,color=Orange|sku=WB02-M-Yellow,size=M,color=Yellow|sku=WB02-L-Blue,size=L,color=Blue|sku=WB02-L-Orange,size=L,color=Orange|sku=WB02-L-Yellow,size=L,color=Yellow|sku=WB02-XL-Blue,size=XL,color=Blue|sku=WB02-XL-Orange,size=XL,color=Orange|sku=WB02-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb02-blue_alt1.jpg,\\/w\\/b\\/wb02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Bra\",\"material\":[\"EverCool&trade;\",\"Lycra&reg;\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1574\":{\"sku\":\"WB03-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XS-Green\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1575\":{\"sku\":\"WB03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XS-Red\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1576\":{\"sku\":\"WB03-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XS-Yellow\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1577\":{\"sku\":\"WB03-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-S-Green\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1578\":{\"sku\":\"WB03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-S-Red\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1579\":{\"sku\":\"WB03-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-S-Yellow\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1580\":{\"sku\":\"WB03-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-M-Green\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1581\":{\"sku\":\"WB03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-M-Red\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1582\":{\"sku\":\"WB03-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-M-Yellow\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1583\":{\"sku\":\"WB03-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-L-Green\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1584\":{\"sku\":\"WB03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-L-Red\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1585\":{\"sku\":\"WB03-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-L-Yellow\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1586\":{\"sku\":\"WB03-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XL-Green\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1587\":{\"sku\":\"WB03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XL-Red\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1588\":{\"sku\":\"WB03-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra-XL-Yellow\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"celeste-sports-bra-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1589\":{\"sku\":\"WB03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Celeste Sports Bra\",\"description\":\"<p>Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.<\\/p>\\n<p>&bull; Mint bra top. <br \\/>&bull; Seam-free interior molded cups<br \\/>&bull; Odor control. <br \\/>&bull; UV protection. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Bra,material=Cocona&reg; performance fabric|Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WB03-XS-Green,size=XS,color=Green|sku=WB03-XS-Red,size=XS,color=Red|sku=WB03-XS-Yellow,size=XS,color=Yellow|sku=WB03-S-Green,size=S,color=Green|sku=WB03-S-Red,size=S,color=Red|sku=WB03-S-Yellow,size=S,color=Yellow|sku=WB03-M-Green,size=M,color=Green|sku=WB03-M-Red,size=M,color=Red|sku=WB03-M-Yellow,size=M,color=Yellow|sku=WB03-L-Green,size=L,color=Green|sku=WB03-L-Red,size=L,color=Red|sku=WB03-L-Yellow,size=L,color=Yellow|sku=WB03-XL-Green,size=XL,color=Green|sku=WB03-XL-Red,size=XL,color=Red|sku=WB03-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"image\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb03-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb03-green_alt1.jpg,\\/w\\/b\\/wb03-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Bra\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1590\":{\"sku\":\"WB04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XS-Blue\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1591\":{\"sku\":\"WB04-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XS-Purple\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1592\":{\"sku\":\"WB04-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XS-Yellow\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1593\":{\"sku\":\"WB04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-S-Blue\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1594\":{\"sku\":\"WB04-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-S-Purple\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1595\":{\"sku\":\"WB04-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-S-Yellow\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1596\":{\"sku\":\"WB04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-M-Blue\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1597\":{\"sku\":\"WB04-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-M-Purple\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1598\":{\"sku\":\"WB04-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-M-Yellow\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1599\":{\"sku\":\"WB04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-L-Blue\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"}}',1,'[[regtime]]'),(17,'catalog_product','append','{\"1600\":{\"sku\":\"WB04-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-L-Purple\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1601\":{\"sku\":\"WB04-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-L-Yellow\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1602\":{\"sku\":\"WB04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XL-Blue\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1603\":{\"sku\":\"WB04-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XL-Purple\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1604\":{\"sku\":\"WB04-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top-XL-Yellow\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"prima-compete-bra-top-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1605\":{\"sku\":\"WB04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Prima Compete Bra Top\",\"description\":\"<p>Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats. <br \\/>`<br \\/>&bull; Colorblocked details.<br \\/>&bull; Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Bra,material=EverCool&trade;|Organic Cotton|Spandex,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WB04-XS-Blue,size=XS,color=Blue|sku=WB04-XS-Purple,size=XS,color=Purple|sku=WB04-XS-Yellow,size=XS,color=Yellow|sku=WB04-S-Blue,size=S,color=Blue|sku=WB04-S-Purple,size=S,color=Purple|sku=WB04-S-Yellow,size=S,color=Yellow|sku=WB04-M-Blue,size=M,color=Blue|sku=WB04-M-Purple,size=M,color=Purple|sku=WB04-M-Yellow,size=M,color=Yellow|sku=WB04-L-Blue,size=L,color=Blue|sku=WB04-L-Purple,size=L,color=Purple|sku=WB04-L-Yellow,size=L,color=Yellow|sku=WB04-XL-Blue,size=XL,color=Blue|sku=WB04-XL-Purple,size=XL,color=Purple|sku=WB04-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"image\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb04-blue-0.jpg,\\/w\\/b\\/wb04-blue_alt1.jpg,\\/w\\/b\\/wb04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Bra\",\"material\":[\"EverCool&trade;\",\"Organic Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1606\":{\"sku\":\"WB05-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XS-Black\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1607\":{\"sku\":\"WB05-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XS-Orange\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1608\":{\"sku\":\"WB05-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XS-Purple\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1609\":{\"sku\":\"WB05-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -S-Black\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1610\":{\"sku\":\"WB05-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -S-Orange\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1611\":{\"sku\":\"WB05-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -S-Purple\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1612\":{\"sku\":\"WB05-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -M-Black\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1613\":{\"sku\":\"WB05-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -M-Orange\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1614\":{\"sku\":\"WB05-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -M-Purple\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1615\":{\"sku\":\"WB05-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -L-Black\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1616\":{\"sku\":\"WB05-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -L-Orange\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1617\":{\"sku\":\"WB05-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -L-Purple\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1618\":{\"sku\":\"WB05-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XL-Black\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1619\":{\"sku\":\"WB05-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XL-Orange\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1620\":{\"sku\":\"WB05-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra -XL-Purple\",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"lucia-cross-fit-bra-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1621\":{\"sku\":\"WB05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Lucia Cross-Fit Bra \",\"description\":\"<p>Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.<\\/p>\\n<p>&bull; Black\\/white bra top. <br \\/>&bull; Criss-cross back design. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Bra,material=Microfiber|Nylon|Polyester,pattern=Checked,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WB05-XS-Black,size=XS,color=Black|sku=WB05-XS-Orange,size=XS,color=Orange|sku=WB05-XS-Purple,size=XS,color=Purple|sku=WB05-S-Black,size=S,color=Black|sku=WB05-S-Orange,size=S,color=Orange|sku=WB05-S-Purple,size=S,color=Purple|sku=WB05-M-Black,size=M,color=Black|sku=WB05-M-Orange,size=M,color=Orange|sku=WB05-M-Purple,size=M,color=Purple|sku=WB05-L-Black,size=L,color=Black|sku=WB05-L-Orange,size=L,color=Orange|sku=WB05-L-Purple,size=L,color=Purple|sku=WB05-XL-Black,size=XL,color=Black|sku=WB05-XL-Orange,size=XL,color=Orange|sku=WB05-XL-Purple,size=XL,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"image\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/b\\/wb05-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/b\\/wb05-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Bra\",\"material\":[\"Microfiber\",\"Nylon\",\"Polyester\"],\"pattern\":\"Checked\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1622\":{\"sku\":\"WT01-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XS-Black\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1623\":{\"sku\":\"WT01-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XS-Blue\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1624\":{\"sku\":\"WT01-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XS-Orange\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1625\":{\"sku\":\"WT01-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-S-Black\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1626\":{\"sku\":\"WT01-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-S-Blue\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1627\":{\"sku\":\"WT01-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-S-Orange\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1628\":{\"sku\":\"WT01-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-M-Black\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1629\":{\"sku\":\"WT01-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-M-Blue\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1630\":{\"sku\":\"WT01-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-M-Orange\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1631\":{\"sku\":\"WT01-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-L-Black\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1632\":{\"sku\":\"WT01-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-L-Blue\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1633\":{\"sku\":\"WT01-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-L-Orange\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1634\":{\"sku\":\"WT01-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XL-Black\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1635\":{\"sku\":\"WT01-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XL-Blue\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1636\":{\"sku\":\"WT01-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank-XL-Orange\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bella-tank-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1637\":{\"sku\":\"WT01\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Bella Tank\",\"description\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.<\\/p>\\n<p>&bull; Navy blue tank top - cotton.<br \\/>&bull; Feminine scoop neckline.<br \\/>&bull; Power mesh lining in shelf bra for superior support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT01-XS-Black,size=XS,color=Black|sku=WT01-XS-Blue,size=XS,color=Blue|sku=WT01-XS-Orange,size=XS,color=Orange|sku=WT01-S-Black,size=S,color=Black|sku=WT01-S-Blue,size=S,color=Blue|sku=WT01-S-Orange,size=S,color=Orange|sku=WT01-M-Black,size=M,color=Black|sku=WT01-M-Blue,size=M,color=Blue|sku=WT01-M-Orange,size=M,color=Orange|sku=WT01-L-Black,size=L,color=Black|sku=WT01-L-Blue,size=L,color=Blue|sku=WT01-L-Orange,size=L,color=Orange|sku=WT01-XL-Black,size=XL,color=Black|sku=WT01-XL-Blue,size=XL,color=Blue|sku=WT01-XL-Orange,size=XL,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt01-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt01-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":\"Organic Cotton\",\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1638\":{\"sku\":\"WT02-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XS-Green\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1639\":{\"sku\":\"WT02-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XS-Orange\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1640\":{\"sku\":\"WT02-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XS-Yellow\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1641\":{\"sku\":\"WT02-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-S-Green\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1642\":{\"sku\":\"WT02-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-S-Orange\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1643\":{\"sku\":\"WT02-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-S-Yellow\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1644\":{\"sku\":\"WT02-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-M-Green\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1645\":{\"sku\":\"WT02-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-M-Orange\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1646\":{\"sku\":\"WT02-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-M-Yellow\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1647\":{\"sku\":\"WT02-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-L-Green\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1648\":{\"sku\":\"WT02-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-L-Orange\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1649\":{\"sku\":\"WT02-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-L-Yellow\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1650\":{\"sku\":\"WT02-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XL-Green\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1651\":{\"sku\":\"WT02-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XL-Orange\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1652\":{\"sku\":\"WT02-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank-XL-Yellow\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"zoe-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1653\":{\"sku\":\"WT02\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Zoe Tank\",\"description\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.<\\/p>\\n<p>&bull; Salmon heather tank top.<br \\/>&bull; 1\\\" elastic band on inner bra.<br \\/>&bull; Mesh lining on shelf bra for support.<br \\/>&bull; Soft, breathable fabric.<br \\/>&bull; Dry wick fabric to stay cool and dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT02-XS-Green,size=XS,color=Green|sku=WT02-XS-Orange,size=XS,color=Orange|sku=WT02-XS-Yellow,size=XS,color=Yellow|sku=WT02-S-Green,size=S,color=Green|sku=WT02-S-Orange,size=S,color=Orange|sku=WT02-S-Yellow,size=S,color=Yellow|sku=WT02-M-Green,size=M,color=Green|sku=WT02-M-Orange,size=M,color=Orange|sku=WT02-M-Yellow,size=M,color=Yellow|sku=WT02-L-Green,size=L,color=Green|sku=WT02-L-Orange,size=L,color=Orange|sku=WT02-L-Yellow,size=L,color=Yellow|sku=WT02-XL-Green,size=XL,color=Green|sku=WT02-XL-Orange,size=XL,color=Orange|sku=WT02-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"image\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt02-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1654\":{\"sku\":\"WT03-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XS-Orange\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1655\":{\"sku\":\"WT03-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XS-Purple\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1656\":{\"sku\":\"WT03-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XS-Red\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1657\":{\"sku\":\"WT03-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-S-Orange\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1658\":{\"sku\":\"WT03-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-S-Purple\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1659\":{\"sku\":\"WT03-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-S-Red\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1660\":{\"sku\":\"WT03-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-M-Orange\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1661\":{\"sku\":\"WT03-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-M-Purple\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1662\":{\"sku\":\"WT03-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-M-Red\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1663\":{\"sku\":\"WT03-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-L-Orange\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1664\":{\"sku\":\"WT03-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-L-Purple\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1665\":{\"sku\":\"WT03-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-L-Red\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1666\":{\"sku\":\"WT03-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XL-Orange\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1667\":{\"sku\":\"WT03-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XL-Purple\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1668\":{\"sku\":\"WT03-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank-XL-Red\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nora-practice-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1669\":{\"sku\":\"WT03\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Nora Practice Tank\",\"description\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!<\\/p>\\n<p>&bull; Pink stripped tank with side rouching.<br \\/>&bull; Pre-shrunk.<br \\/>&bull; Garment dyed.<br \\/>&bull; 92% Organic Cotton\\/8% Lycra.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Lycra&reg;|Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT03-XS-Orange,size=XS,color=Orange|sku=WT03-XS-Purple,size=XS,color=Purple|sku=WT03-XS-Red,size=XS,color=Red|sku=WT03-S-Orange,size=S,color=Orange|sku=WT03-S-Purple,size=S,color=Purple|sku=WT03-S-Red,size=S,color=Red|sku=WT03-M-Orange,size=M,color=Orange|sku=WT03-M-Purple,size=M,color=Purple|sku=WT03-M-Red,size=M,color=Red|sku=WT03-L-Orange,size=L,color=Orange|sku=WT03-L-Purple,size=L,color=Purple|sku=WT03-L-Red,size=L,color=Red|sku=WT03-XL-Orange,size=XL,color=Orange|sku=WT03-XL-Purple,size=XL,color=Purple|sku=WT03-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"image\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt03-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt03-red_alt1.jpg,\\/w\\/t\\/wt03-red_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Lycra&reg;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"Yes\",\"sale\":\"No\"},\"1670\":{\"sku\":\"WT04-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XS-Blue\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1671\":{\"sku\":\"WT04-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XS-Purple\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1672\":{\"sku\":\"WT04-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XS-Red\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1673\":{\"sku\":\"WT04-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-S-Blue\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1674\":{\"sku\":\"WT04-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-S-Purple\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1675\":{\"sku\":\"WT04-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-S-Red\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1676\":{\"sku\":\"WT04-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-M-Blue\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1677\":{\"sku\":\"WT04-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-M-Purple\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1678\":{\"sku\":\"WT04-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-M-Red\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1679\":{\"sku\":\"WT04-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-L-Blue\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1680\":{\"sku\":\"WT04-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-L-Purple\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1681\":{\"sku\":\"WT04-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-L-Red\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1682\":{\"sku\":\"WT04-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XL-Blue\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1683\":{\"sku\":\"WT04-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XL-Purple\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1684\":{\"sku\":\"WT04-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank-XL-Red\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"nona-fitness-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1685\":{\"sku\":\"WT04\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Nona Fitness Tank\",\"description\":\"<p>It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.<\\/p>\\n<p>&bull; Blue\\/white striped mesh tank.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Chafe-resistant trim around armholes and collar. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cotton|Spandex,pattern=Striped,climate=Indoor|Warm,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT04-XS-Blue,size=XS,color=Blue|sku=WT04-XS-Purple,size=XS,color=Purple|sku=WT04-XS-Red,size=XS,color=Red|sku=WT04-S-Blue,size=S,color=Blue|sku=WT04-S-Purple,size=S,color=Purple|sku=WT04-S-Red,size=S,color=Red|sku=WT04-M-Blue,size=M,color=Blue|sku=WT04-M-Purple,size=M,color=Purple|sku=WT04-M-Red,size=M,color=Red|sku=WT04-L-Blue,size=L,color=Blue|sku=WT04-L-Purple,size=L,color=Purple|sku=WT04-L-Red,size=L,color=Red|sku=WT04-XL-Blue,size=XL,color=Blue|sku=WT04-XL-Purple,size=XL,color=Purple|sku=WT04-XL-Red,size=XL,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cotton\",\"Spandex\"],\"pattern\":\"Striped\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1686\":{\"sku\":\"WT05-XS-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XS-Orange\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xs-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Orange\"},\"1687\":{\"sku\":\"WT05-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XS-Purple\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1688\":{\"sku\":\"WT05-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XS-White\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1689\":{\"sku\":\"WT05-S-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-S-Orange\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-s-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Orange\"},\"1690\":{\"sku\":\"WT05-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-S-Purple\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1691\":{\"sku\":\"WT05-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-S-White\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1692\":{\"sku\":\"WT05-M-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-M-Orange\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-m-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Orange\"},\"1693\":{\"sku\":\"WT05-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-M-Purple\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1694\":{\"sku\":\"WT05-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-M-White\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1695\":{\"sku\":\"WT05-L-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-L-Orange\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-l-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Orange\"},\"1696\":{\"sku\":\"WT05-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-L-Purple\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1697\":{\"sku\":\"WT05-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-L-White\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1698\":{\"sku\":\"WT05-XL-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XL-Orange\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xl-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Orange\"},\"1699\":{\"sku\":\"WT05-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XL-Purple\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"}}',1,'[[regtime]]'),(18,'catalog_product','append','{\"1700\":{\"sku\":\"WT05-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top-XL-White\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"leah-yoga-top-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1701\":{\"sku\":\"WT05\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Leah Yoga Top\",\"description\":\"<p>The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.<\\/p>\\n<p>&bull; Blue heather rouched tank top.<br \\/>&bull; Camisole tank top.<br \\/>&bull; Banding and shirring details.<br \\/>&bull; Body hugging fit.<br \\/>&bull; Contrast topstitch.<br \\/>&bull; Interior shelf bra with shapewear technology.<br \\/>&bull; 65% Polyester 35% Cotton.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank|Camisole,material=Cotton|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT05-XS-Orange,size=XS,color=Orange|sku=WT05-XS-Purple,size=XS,color=Purple|sku=WT05-XS-White,size=XS,color=White|sku=WT05-S-Orange,size=S,color=Orange|sku=WT05-S-Purple,size=S,color=Purple|sku=WT05-S-White,size=S,color=White|sku=WT05-M-Orange,size=M,color=Orange|sku=WT05-M-Purple,size=M,color=Purple|sku=WT05-M-White,size=M,color=White|sku=WT05-L-Orange,size=L,color=Orange|sku=WT05-L-Purple,size=L,color=Purple|sku=WT05-L-White,size=L,color=White|sku=WT05-XL-Orange,size=XL,color=Orange|sku=WT05-XL-Purple,size=XL,color=Purple|sku=WT05-XL-White,size=XL,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"image\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt05-purple_alt1.jpg,\\/w\\/t\\/wt05-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":[\"Tank\",\"Camisole\"],\"material\":[\"Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1702\":{\"sku\":\"WT06-XS-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XS-Blue\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xs-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Blue\"},\"1703\":{\"sku\":\"WT06-XS-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XS-Red\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xs-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Red\"},\"1704\":{\"sku\":\"WT06-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XS-Yellow\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1705\":{\"sku\":\"WT06-S-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-S-Blue\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-s-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Blue\"},\"1706\":{\"sku\":\"WT06-S-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-S-Red\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-s-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Red\"},\"1707\":{\"sku\":\"WT06-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-S-Yellow\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1708\":{\"sku\":\"WT06-M-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-M-Blue\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-m-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Blue\"},\"1709\":{\"sku\":\"WT06-M-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-M-Red\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-m-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Red\"},\"1710\":{\"sku\":\"WT06-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-M-Yellow\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1711\":{\"sku\":\"WT06-L-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-L-Blue\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-l-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Blue\"},\"1712\":{\"sku\":\"WT06-L-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-L-Red\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-l-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Red\"},\"1713\":{\"sku\":\"WT06-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-L-Yellow\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1714\":{\"sku\":\"WT06-XL-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XL-Blue\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xl-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Blue\"},\"1715\":{\"sku\":\"WT06-XL-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XL-Red\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xl-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Red\"},\"1716\":{\"sku\":\"WT06-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank-XL-Yellow\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"chloe-compete-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1717\":{\"sku\":\"WT06\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks\",\"product_websites\":\"base\",\"name\":\"Chloe Compete Tank\",\"description\":\"<p>You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.<\\/p>\\n<p>&bull; Royal blue tank top - nylon\\/spandex.<br \\/>&bull; Flatlock stitching.<br \\/>&bull; Moisture-wicking fabric. <br \\/>&bull; Ergonomic seaming. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Mesh|Nylon|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT06-XS-Blue,size=XS,color=Blue|sku=WT06-XS-Red,size=XS,color=Red|sku=WT06-XS-Yellow,size=XS,color=Yellow|sku=WT06-S-Blue,size=S,color=Blue|sku=WT06-S-Red,size=S,color=Red|sku=WT06-S-Yellow,size=S,color=Yellow|sku=WT06-M-Blue,size=M,color=Blue|sku=WT06-M-Red,size=M,color=Red|sku=WT06-M-Yellow,size=M,color=Yellow|sku=WT06-L-Blue,size=L,color=Blue|sku=WT06-L-Red,size=L,color=Red|sku=WT06-L-Yellow,size=L,color=Yellow|sku=WT06-XL-Blue,size=XL,color=Blue|sku=WT06-XL-Red,size=XL,color=Red|sku=WT06-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"image\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt06-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Mesh\",\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1718\":{\"sku\":\"WT07-XS-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XS-Green\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xs-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Green\"},\"1719\":{\"sku\":\"WT07-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XS-White\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1720\":{\"sku\":\"WT07-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XS-Yellow\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1721\":{\"sku\":\"WT07-S-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-S-Green\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-s-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Green\"},\"1722\":{\"sku\":\"WT07-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-S-White\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1723\":{\"sku\":\"WT07-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-S-Yellow\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1724\":{\"sku\":\"WT07-M-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-M-Green\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-m-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Green\"},\"1725\":{\"sku\":\"WT07-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-M-White\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1726\":{\"sku\":\"WT07-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-M-Yellow\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1727\":{\"sku\":\"WT07-L-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-L-Green\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-l-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Green\"},\"1728\":{\"sku\":\"WT07-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-L-White\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1729\":{\"sku\":\"WT07-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-L-Yellow\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1730\":{\"sku\":\"WT07-XL-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XL-Green\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xl-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Green\"},\"1731\":{\"sku\":\"WT07-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XL-White\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1732\":{\"sku\":\"WT07-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic-XL-Yellow\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maya-tunic-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1733\":{\"sku\":\"WT07\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Maya Tunic\",\"description\":\"<p>With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.<\\/p>\\n<p>&bull; Mint green heather tunic-style tank. <br \\/>&bull; Wrapped back with cut out detail.<br \\/>&bull; Drawcord detail at end.<br \\/>&bull; Abutted seams.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Organic Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT07-XS-Green,size=XS,color=Green|sku=WT07-XS-White,size=XS,color=White|sku=WT07-XS-Yellow,size=XS,color=Yellow|sku=WT07-S-Green,size=S,color=Green|sku=WT07-S-White,size=S,color=White|sku=WT07-S-Yellow,size=S,color=Yellow|sku=WT07-M-Green,size=M,color=Green|sku=WT07-M-White,size=M,color=White|sku=WT07-M-Yellow,size=M,color=Yellow|sku=WT07-L-Green,size=L,color=Green|sku=WT07-L-White,size=L,color=White|sku=WT07-L-Yellow,size=L,color=Yellow|sku=WT07-XL-Green,size=XL,color=Green|sku=WT07-XL-White,size=XL,color=White|sku=WT07-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"image\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt07-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt07-green_alt1.jpg,\\/w\\/t\\/wt07-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1734\":{\"sku\":\"WT08-XS-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XS-Black\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xs-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Black\"},\"1735\":{\"sku\":\"WT08-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XS-Purple\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1736\":{\"sku\":\"WT08-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XS-Yellow\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1737\":{\"sku\":\"WT08-S-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-S-Black\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-s-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Black\"},\"1738\":{\"sku\":\"WT08-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-S-Purple\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1739\":{\"sku\":\"WT08-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-S-Yellow\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1740\":{\"sku\":\"WT08-M-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-M-Black\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-m-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Black\"},\"1741\":{\"sku\":\"WT08-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-M-Purple\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1742\":{\"sku\":\"WT08-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-M-Yellow\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1743\":{\"sku\":\"WT08-L-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-L-Black\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-l-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Black\"},\"1744\":{\"sku\":\"WT08-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-L-Purple\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1745\":{\"sku\":\"WT08-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-L-Yellow\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1746\":{\"sku\":\"WT08-XL-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XL-Black\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xl-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Black\"},\"1747\":{\"sku\":\"WT08-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XL-Purple\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1748\":{\"sku\":\"WT08-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank-XL-Yellow\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"antonia-racer-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1749\":{\"sku\":\"WT08\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Antonia Racer Tank\",\"description\":\"<p>You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.<\\/p>\\n<p>&bull; Machine wash.<br \\/>&bull; Line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=HeatTec&reg;|Nylon|Polyester,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT08-XS-Black,size=XS,color=Black|sku=WT08-XS-Purple,size=XS,color=Purple|sku=WT08-XS-Yellow,size=XS,color=Yellow|sku=WT08-S-Black,size=S,color=Black|sku=WT08-S-Purple,size=S,color=Purple|sku=WT08-S-Yellow,size=S,color=Yellow|sku=WT08-M-Black,size=M,color=Black|sku=WT08-M-Purple,size=M,color=Purple|sku=WT08-M-Yellow,size=M,color=Yellow|sku=WT08-L-Black,size=L,color=Black|sku=WT08-L-Purple,size=L,color=Purple|sku=WT08-L-Yellow,size=L,color=Yellow|sku=WT08-XL-Black,size=XL,color=Black|sku=WT08-XL-Purple,size=XL,color=Purple|sku=WT08-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"image\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt08-black_alt1.jpg,\\/w\\/t\\/wt08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"HeatTec&reg;\",\"Nylon\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1750\":{\"sku\":\"WT09-XS-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XS-Purple\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xs-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Purple\"},\"1751\":{\"sku\":\"WT09-XS-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XS-White\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xs-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"White\"},\"1752\":{\"sku\":\"WT09-XS-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XS-Yellow\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xs-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XS,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XS\",\"color\":\"Yellow\"},\"1753\":{\"sku\":\"WT09-S-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-S-Purple\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-s-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Purple\"},\"1754\":{\"sku\":\"WT09-S-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-S-White\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-s-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"White\"},\"1755\":{\"sku\":\"WT09-S-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-S-Yellow\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-s-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=S,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"S\",\"color\":\"Yellow\"},\"1756\":{\"sku\":\"WT09-M-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-M-Purple\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-m-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Purple\"},\"1757\":{\"sku\":\"WT09-M-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-M-White\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-m-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"White\"},\"1758\":{\"sku\":\"WT09-M-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-M-Yellow\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-m-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=M,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"M\",\"color\":\"Yellow\"},\"1759\":{\"sku\":\"WT09-L-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-L-Purple\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-l-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Purple\"},\"1760\":{\"sku\":\"WT09-L-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-L-White\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-l-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"White\"},\"1761\":{\"sku\":\"WT09-L-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-L-Yellow\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-l-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=L,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"L\",\"color\":\"Yellow\"},\"1762\":{\"sku\":\"WT09-XL-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XL-Purple\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xl-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Purple\"},\"1763\":{\"sku\":\"WT09-XL-White\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XL-White\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xl-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"White\"},\"1764\":{\"sku\":\"WT09-XL-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank-XL-Yellow\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"breathe-easy-tank-xl-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=XL,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"XL\",\"color\":\"Yellow\"},\"1765\":{\"sku\":\"WT09\",\"store_view_code\":null,\"attribute_set_code\":\"Top\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Tops\\/Bras & Tanks,Default Category\\/Promotions\\/Women Sale,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Breathe-Easy Tank\",\"description\":\"<p>The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona&reg; fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.<\\/p>\\n<p>&bull; Machine wash\\/dry.<br \\/>&bull; Cocona&reg; fabric.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"34\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_general=Tank,material=Cocona&reg; performance fabric|Cotton,pattern=Solid,climate=Indoor|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WT09-XS-Purple,size=XS,color=Purple|sku=WT09-XS-White,size=XS,color=White|sku=WT09-XS-Yellow,size=XS,color=Yellow|sku=WT09-S-Purple,size=S,color=Purple|sku=WT09-S-White,size=S,color=White|sku=WT09-S-Yellow,size=S,color=Yellow|sku=WT09-M-Purple,size=M,color=Purple|sku=WT09-M-White,size=M,color=White|sku=WT09-M-Yellow,size=M,color=Yellow|sku=WT09-L-Purple,size=L,color=Purple|sku=WT09-L-White,size=L,color=White|sku=WT09-L-Yellow,size=L,color=Yellow|sku=WT09-XL-Purple,size=XL,color=Purple|sku=WT09-XL-White,size=XL,color=White|sku=WT09-XL-Yellow,size=XL,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"image\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/t\\/wt09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/t\\/wt09-white_back.jpg\",\"_store\":null,\"_attribute_set\":\"Top\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_general\":\"Tank\",\"material\":[\"Cocona&reg; performance fabric\",\"Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"Yes\"},\"1766\":{\"sku\":\"WP01-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-28-Black\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1767\":{\"sku\":\"WP01-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-28-Gray\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1768\":{\"sku\":\"WP01-28-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-28-White\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-28-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"White\"},\"1769\":{\"sku\":\"WP01-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-29-Black\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1770\":{\"sku\":\"WP01-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-29-Gray\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1771\":{\"sku\":\"WP01-29-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant-29-White\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"karmen-yoga-pant-29-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"White\"},\"1772\":{\"sku\":\"WP01\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Karmen Yoga Pant\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"39\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Sweatpants,material=CoolTech&trade;|Organic Cotton,pattern=Solid,climate=Indoor|Mild,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP01-28-Black,size=28,color=Black|sku=WP01-28-Gray,size=28,color=Gray|sku=WP01-28-White,size=28,color=White|sku=WP01-29-Black,size=29,color=Black|sku=WP01-29-Gray,size=29,color=Gray|sku=WP01-29-White,size=29,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp01-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp01-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Sweatpants\",\"material\":[\"CoolTech&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Mild\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1773\":{\"sku\":\"WP02-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-28-Blue\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1774\":{\"sku\":\"WP02-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-28-Purple\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1775\":{\"sku\":\"WP02-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-28-Red\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1776\":{\"sku\":\"WP02-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-29-Blue\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1777\":{\"sku\":\"WP02-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-29-Purple\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1778\":{\"sku\":\"WP02-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings-29-Red\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"emma-leggings-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1779\":{\"sku\":\"WP02\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Emma Leggings\",\"description\":\"<p>These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.<\\/p>\\n<p>&bull; Light blue heather yoga pants. <br \\/>&bull; Body hugging fit.<br \\/>&bull; Low rise fit.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Sweatpants,material=Cocona&reg; performance fabric|Organic Cotton,pattern=Solid,climate=Cool|Indoor|Mild|Spring,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP02-28-Blue,size=28,color=Blue|sku=WP02-28-Purple,size=28,color=Purple|sku=WP02-28-Red,size=28,color=Red|sku=WP02-29-Blue,size=29,color=Blue|sku=WP02-29-Purple,size=29,color=Purple|sku=WP02-29-Red,size=29,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp02-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp02-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Sweatpants\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Mild\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1780\":{\"sku\":\"WP03-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-28-Black\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1781\":{\"sku\":\"WP03-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-28-Blue\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1782\":{\"sku\":\"WP03-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-28-Purple\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1783\":{\"sku\":\"WP03-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-29-Black\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1784\":{\"sku\":\"WP03-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-29-Blue\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1785\":{\"sku\":\"WP03-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant-29-Purple\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ida-workout-parachute-pant-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1786\":{\"sku\":\"WP03\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Ida Workout Parachute Pant\",\"description\":\"<p>The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.<\\/p>\\n<p>&bull; Royal blue parachute pants.<br \\/>&bull; Contrast stripe.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Drawstring closure.<br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Parachute|Track Pants,material=LumaTech&trade;|Nylon|Spandex,pattern=Color-Blocked,climate=Indoor|Hot|Mild|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP03-28-Black,size=28,color=Black|sku=WP03-28-Blue,size=28,color=Blue|sku=WP03-28-Purple,size=28,color=Purple|sku=WP03-29-Black,size=29,color=Black|sku=WP03-29-Blue,size=29,color=Blue|sku=WP03-29-Purple,size=29,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp03-blue_alt1.jpg,\\/w\\/p\\/wp03-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Parachute\",\"Track Pants\"],\"material\":[\"LumaTech&trade;\",\"Nylon\",\"Spandex\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1787\":{\"sku\":\"WP04-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-28-Black\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1788\":{\"sku\":\"WP04-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-28-Blue\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1789\":{\"sku\":\"WP04-28-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-28-White\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-28-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"White\"},\"1790\":{\"sku\":\"WP04-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-29-Black\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1791\":{\"sku\":\"WP04-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-29-Blue\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1792\":{\"sku\":\"WP04-29-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant-29-White\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"cora-parachute-pant-29-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"White\"},\"1793\":{\"sku\":\"WP04\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Cora Parachute Pant\",\"description\":\"<p>Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.<\\/p>\\n<p>&bull; Light blue parachute pants.<br \\/>&bull; Power mesh internal waistband for support.<br \\/>&bull; Internal waistband pocket.<br \\/>&bull; Antimicrobial finish.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Parachute|Track Pants,material=LumaTech&trade;|Nylon|Spandex,pattern=Solid,climate=Indoor|Hot|Mild|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP04-28-Black,size=28,color=Black|sku=WP04-28-Blue,size=28,color=Blue|sku=WP04-28-White,size=28,color=White|sku=WP04-29-Black,size=29,color=Black|sku=WP04-29-Blue,size=29,color=Blue|sku=WP04-29-White,size=29,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"image\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp04-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp04-blue_alt1.jpg,\\/w\\/p\\/wp04-blue_alternate.jpg,\\/w\\/p\\/wp04-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Parachute\",\"Track Pants\"],\"material\":[\"LumaTech&trade;\",\"Nylon\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1794\":{\"sku\":\"WP05-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-28-Blue\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1795\":{\"sku\":\"WP05-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-28-Gray\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1796\":{\"sku\":\"WP05-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-28-Red\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1797\":{\"sku\":\"WP05-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-29-Blue\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1798\":{\"sku\":\"WP05-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-29-Gray\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1799\":{\"sku\":\"WP05-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings-29-Red\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sahara-leggings-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"}}',1,'[[regtime]]');
INSERT INTO `[[dbprefix]]importexport_importdata` VALUES (19,'catalog_product','append','{\"1800\":{\"sku\":\"WP05\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Sahara Leggings\",\"description\":\"<p>Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.<\\/p>\\n<p>&bull; Pinstripe legging with rouched ankles.<br \\/>&bull; Secret pocket at waistband.<br \\/>&bull; Flat seams for comfort.<br \\/>&bull; Shaped fit with low rise.<br \\/>&bull; 4-way stretch, moisture-wicking material.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"75\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Leggings|Sweatpants|Track Pants,material=LumaTech&trade;|Organic Cotton,pattern=Solid,climate=Cool|Indoor|Spring,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP05-28-Blue,size=28,color=Blue|sku=WP05-28-Gray,size=28,color=Gray|sku=WP05-28-Red,size=28,color=Red|sku=WP05-29-Blue,size=29,color=Blue|sku=WP05-29-Gray,size=29,color=Gray|sku=WP05-29-Red,size=29,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp05-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp05-gray_alt1.jpg,\\/w\\/p\\/wp05-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Leggings\",\"Sweatpants\",\"Track Pants\"],\"material\":[\"LumaTech&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"Cool\",\"Indoor\",\"Spring\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1801\":{\"sku\":\"WP06-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-28-Black\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1802\":{\"sku\":\"WP06-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-28-Blue\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1803\":{\"sku\":\"WP06-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-28-Orange\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1804\":{\"sku\":\"WP06-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-29-Black\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1805\":{\"sku\":\"WP06-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-29-Blue\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1806\":{\"sku\":\"WP06-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights-29-Orange\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"diana-tights-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1807\":{\"sku\":\"WP06\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Diana Tights\",\"description\":\"<p>Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.<\\/p>\\n<p>&bull; Black legging with slate details.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Secret interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"59\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri|Leggings,material=Microfiber|Polyester|Spandex,pattern=Solid,climate=All-weather|Cool|Indoor|Mild|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP06-28-Black,size=28,color=Black|sku=WP06-28-Blue,size=28,color=Blue|sku=WP06-28-Orange,size=28,color=Orange|sku=WP06-29-Black,size=29,color=Black|sku=WP06-29-Blue,size=29,color=Blue|sku=WP06-29-Orange,size=29,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp06-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp06-black_alt1.jpg,\\/w\\/p\\/wp06-black_back.jpg,\\/w\\/p\\/wp06-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Capri\",\"Leggings\"],\"material\":[\"Microfiber\",\"Polyester\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Cool\",\"Indoor\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1808\":{\"sku\":\"WP07-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-28-Black\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1809\":{\"sku\":\"WP07-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-28-Blue\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1810\":{\"sku\":\"WP07-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-28-Orange\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1811\":{\"sku\":\"WP07-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-29-Black\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1812\":{\"sku\":\"WP07-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-29-Blue\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1813\":{\"sku\":\"WP07-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri-29-Orange\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"aeon-capri-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1814\":{\"sku\":\"WP07\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Aeon Capri\",\"description\":\"<p>Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.<\\/p>\\n<p>&bull; Black capris with teal accents.<br \\/>&bull; Thick, 3\\\" flattering waistband.<br \\/>&bull; Media pocket on inner waistband.<br \\/>&bull; Dry wick finish for ultimate comfort and dryness.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri,material=CoolTech&trade;|Microfiber|Organic Cotton,pattern=Color-Blocked,climate=Indoor|Hot|Mild,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP07-28-Black,size=28,color=Black|sku=WP07-28-Blue,size=28,color=Blue|sku=WP07-28-Orange,size=28,color=Orange|sku=WP07-29-Black,size=29,color=Black|sku=WP07-29-Blue,size=29,color=Blue|sku=WP07-29-Orange,size=29,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp07-black_alt1.jpg,\\/w\\/p\\/wp07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Capri\",\"material\":[\"CoolTech&trade;\",\"Microfiber\",\"Organic Cotton\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1815\":{\"sku\":\"WP08-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-28-Black\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1816\":{\"sku\":\"WP08-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-28-Green\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1817\":{\"sku\":\"WP08-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-28-Red\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1818\":{\"sku\":\"WP08-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-29-Black\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1819\":{\"sku\":\"WP08-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-29-Green\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1820\":{\"sku\":\"WP08-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri-29-Red\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bardot-capri-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1821\":{\"sku\":\"WP08\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Bardot Capri\",\"description\":\"<p>Black is back &mdash; was it ever gone? &mdash; which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.<\\/p>\\n<p>&bull; Black capris with pink waistband.<br \\/>&bull; Cropped leggings.<br \\/>&bull; Waistband drawcord. <br \\/>&bull; Flat, thin and flattering.<br \\/>&bull; Made with organic fabric.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"48\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri|Leggings,material=Microfiber|Rayon|Spandex,pattern=Color-Blocked,climate=Indoor|Hot|Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP08-28-Black,size=28,color=Black|sku=WP08-28-Green,size=28,color=Green|sku=WP08-28-Red,size=28,color=Red|sku=WP08-29-Black,size=29,color=Black|sku=WP08-29-Green,size=29,color=Green|sku=WP08-29-Red,size=29,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"image\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp08-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp08-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Capri\",\"Leggings\"],\"material\":[\"Microfiber\",\"Rayon\",\"Spandex\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1822\":{\"sku\":\"WP09-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-28-Black\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1823\":{\"sku\":\"WP09-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-28-Blue\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1824\":{\"sku\":\"WP09-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-28-Purple\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1825\":{\"sku\":\"WP09-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-29-Black\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1826\":{\"sku\":\"WP09-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-29-Blue\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1827\":{\"sku\":\"WP09-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri-29-Purple\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"carina-basic-capri-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1828\":{\"sku\":\"WP09\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Carina Basic Capri\",\"description\":\"<p>Perfect as workout pants or \\\"accessory,\\\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.<\\/p>\\n<p>&bull; Black capris with rouching detail.<br \\/>&bull; 93% cotton, 7% spandex.<br \\/>&bull; Elasticized waistband.<br \\/>&bull; Reinforced seams with exposed topstitching.<br \\/>&bull; Soft, medium-weight jersey with added stretch.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri|Compression|Leggings,material=Cotton|Spandex,pattern=Solid,climate=All-weather|Indoor|Mild|Spring|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP09-28-Black,size=28,color=Black|sku=WP09-28-Blue,size=28,color=Blue|sku=WP09-28-Purple,size=28,color=Purple|sku=WP09-29-Black,size=29,color=Black|sku=WP09-29-Blue,size=29,color=Blue|sku=WP09-29-Purple,size=29,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"image\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp09-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp09-black_alt1.jpg,\\/w\\/p\\/wp09-black_back.jpg,\\/w\\/p\\/wp09-black_outfit.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Capri\",\"Compression\",\"Leggings\"],\"material\":[\"Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1829\":{\"sku\":\"WP10-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-28-Black\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1830\":{\"sku\":\"WP10-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-28-Gray\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1831\":{\"sku\":\"WP10-28-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-28-White\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-28-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"White\"},\"1832\":{\"sku\":\"WP10-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-29-Black\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1833\":{\"sku\":\"WP10-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-29-Gray\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1834\":{\"sku\":\"WP10-29-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant-29-White\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"daria-bikram-pant-29-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"White\"},\"1835\":{\"sku\":\"WP10\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Daria Bikram Pant\",\"description\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.<\\/p>\\n<p>&bull; Heather gray capris with pink striped waist.<br \\/>&bull; Flatlock seams.<br \\/>&bull; Interior pocket.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"51\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri,material=Organic Cotton|Spandex,pattern=Color-Blocked,climate=All-weather|Indoor|Mild|Spring|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP10-28-Black,size=28,color=Black|sku=WP10-28-Gray,size=28,color=Gray|sku=WP10-28-White,size=28,color=White|sku=WP10-29-Black,size=29,color=Black|sku=WP10-29-Gray,size=29,color=Gray|sku=WP10-29-White,size=29,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp10-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp10-gray_alt1.jpg,\\/w\\/p\\/wp10-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Capri\",\"material\":[\"Organic Cotton\",\"Spandex\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"All-weather\",\"Indoor\",\"Mild\",\"Spring\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1836\":{\"sku\":\"WP11-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-28-Blue\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1837\":{\"sku\":\"WP11-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-28-Green\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1838\":{\"sku\":\"WP11-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-28-Red\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1839\":{\"sku\":\"WP11-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-29-Blue\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1840\":{\"sku\":\"WP11-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-29-Green\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1841\":{\"sku\":\"WP11-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri-29-Red\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sylvia-capri-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1842\":{\"sku\":\"WP11\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\",\"product_websites\":\"base\",\"name\":\"Sylvia Capri\",\"description\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.<\\/p>\\n<p>&bull; Green striped capri.<br \\/>&bull; Strategic side seam<br \\/>&bull; Comfort gusset with lining.<br \\/>&bull; Flat seaming.<br \\/>&bull; Wide waistband.<br \\/>&bull; Moisture wicking.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri,material=Lycra&reg;|Organic Cotton|Polyester,pattern=Striped,climate=Indoor,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP11-28-Blue,size=28,color=Blue|sku=WP11-28-Green,size=28,color=Green|sku=WP11-28-Red,size=28,color=Red|sku=WP11-29-Blue,size=29,color=Blue|sku=WP11-29-Green,size=29,color=Green|sku=WP11-29-Red,size=29,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"image\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp11-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp11-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Capri\",\"material\":[\"Lycra&reg;\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Striped\",\"climate\":\"Indoor\",\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1843\":{\"sku\":\"WP12-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-28-Blue\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1844\":{\"sku\":\"WP12-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-28-Gray\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1845\":{\"sku\":\"WP12-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-28-Green\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1846\":{\"sku\":\"WP12-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-29-Blue\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1847\":{\"sku\":\"WP12-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-29-Gray\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1848\":{\"sku\":\"WP12-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri-29-Green\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"deirdre-relaxed-fit-capri-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1849\":{\"sku\":\"WP12\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Deirdre Relaxed-Fit Capri\",\"description\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.<\\/p>\\n<p>&bull; Heather gray capris with mint green waist &amp; accents.<br \\/>&bull; Comfortable, relaxed fit with high rise.<br \\/>&bull; Moisture-wicking, 4-way stretch construction.<br \\/>&bull; Lined with mesh for better support.<br \\/>&bull; Hidden pocket at waistband.<br \\/>&bull; Flatlock seams and lined gusset for comfort.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"63\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri,material=Cocona&reg; performance fabric|Organic Cotton|Rayon,pattern=Color-Blocked,climate=Indoor|Hot|Mild,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP12-28-Blue,size=28,color=Blue|sku=WP12-28-Gray,size=28,color=Gray|sku=WP12-28-Green,size=28,color=Green|sku=WP12-29-Blue,size=29,color=Blue|sku=WP12-29-Gray,size=29,color=Gray|sku=WP12-29-Green,size=29,color=Green\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"image\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp12-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp12-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Capri\",\"material\":[\"Cocona&reg; performance fabric\",\"Organic Cotton\",\"Rayon\"],\"pattern\":\"Color-Blocked\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1850\":{\"sku\":\"WP13-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-28-Blue\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1851\":{\"sku\":\"WP13-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-28-Green\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1852\":{\"sku\":\"WP13-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-28-Orange\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1853\":{\"sku\":\"WP13-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-29-Blue\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1854\":{\"sku\":\"WP13-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-29-Green\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1855\":{\"sku\":\"WP13-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri-29-Orange\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"portia-capri-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1856\":{\"sku\":\"WP13\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Pants,Default Category\\/Promotions\\/Pants,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Portia Capri\",\"description\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.<\\/p>\\n<p>&bull; Salmon heather capri sweats.<br \\/>&bull; Relaxed fit, high waist. <br \\/>&bull; Inseam: 21\\\". <br \\/>&bull; Wide elastic waistband. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Capri,material=Organic Cotton,pattern=Solid,climate=Indoor|Hot|Mild,eco_collection=Yes,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WP13-28-Blue,size=28,color=Blue|sku=WP13-28-Green,size=28,color=Green|sku=WP13-28-Orange,size=28,color=Orange|sku=WP13-29-Blue,size=29,color=Blue|sku=WP13-29-Green,size=29,color=Green|sku=WP13-29-Orange,size=29,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"image\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/p\\/wp13-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/p\\/wp13-orange_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Capri\",\"material\":\"Organic Cotton\",\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1857\":{\"sku\":\"WSH01-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-28-Black\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1858\":{\"sku\":\"WSH01-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-28-Green\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1859\":{\"sku\":\"WSH01-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-28-Red\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1860\":{\"sku\":\"WSH01-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-29-Black\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1861\":{\"sku\":\"WSH01-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-29-Green\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1862\":{\"sku\":\"WSH01-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-29-Red\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1863\":{\"sku\":\"WSH01-30-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-30-Black\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-30-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Black\"},\"1864\":{\"sku\":\"WSH01-30-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-30-Green\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-30-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Green\"},\"1865\":{\"sku\":\"WSH01-30-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-30-Red\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-30-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Red\"},\"1866\":{\"sku\":\"WSH01-31-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-31-Black\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-31-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Black\"},\"1867\":{\"sku\":\"WSH01-31-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-31-Green\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-31-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Green\"},\"1868\":{\"sku\":\"WSH01-31-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-31-Red\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-31-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Red\"},\"1869\":{\"sku\":\"WSH01-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-32-Black\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"1870\":{\"sku\":\"WSH01-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-32-Green\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"1871\":{\"sku\":\"WSH01-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short-32-Red\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"fiona-fitness-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"1872\":{\"sku\":\"WSH01\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Fiona Fitness Short\",\"description\":\"<p>Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.<\\/p>\\n<p>&bull; Black run shorts <br \\/>- cotton\\/spandex.<br \\/>&bull; 5&rdquo; inseam.<br \\/>&bull; Machine wash\\/Line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"29\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic|Base Layer,material=Organic Cotton|Spandex,pattern=Solid,climate=Indoor|Hot|Mild|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH01-28-Black,size=28,color=Black|sku=WSH01-28-Green,size=28,color=Green|sku=WSH01-28-Red,size=28,color=Red|sku=WSH01-29-Black,size=29,color=Black|sku=WSH01-29-Green,size=29,color=Green|sku=WSH01-29-Red,size=29,color=Red|sku=WSH01-30-Black,size=30,color=Black|sku=WSH01-30-Green,size=30,color=Green|sku=WSH01-30-Red,size=30,color=Red|sku=WSH01-31-Black,size=31,color=Black|sku=WSH01-31-Green,size=31,color=Green|sku=WSH01-31-Red,size=31,color=Red|sku=WSH01-32-Black,size=32,color=Black|sku=WSH01-32-Green,size=32,color=Green|sku=WSH01-32-Red,size=32,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh01-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh01-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Basic\",\"Base Layer\"],\"material\":[\"Organic Cotton\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1873\":{\"sku\":\"WSH02-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-28-Gray\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1874\":{\"sku\":\"WSH02-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-28-Orange\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1875\":{\"sku\":\"WSH02-28-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-28-Yellow\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-28-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Yellow\"},\"1876\":{\"sku\":\"WSH02-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-29-Gray\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1877\":{\"sku\":\"WSH02-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-29-Orange\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1878\":{\"sku\":\"WSH02-29-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-29-Yellow\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-29-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Yellow\"},\"1879\":{\"sku\":\"WSH02-30-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-30-Gray\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-30-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Gray\"},\"1880\":{\"sku\":\"WSH02-30-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-30-Orange\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-30-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Orange\"},\"1881\":{\"sku\":\"WSH02-30-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-30-Yellow\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-30-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Yellow\"},\"1882\":{\"sku\":\"WSH02-31-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-31-Gray\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-31-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Gray\"},\"1883\":{\"sku\":\"WSH02-31-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-31-Orange\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-31-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Orange\"},\"1884\":{\"sku\":\"WSH02-31-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-31-Yellow\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-31-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Yellow\"},\"1885\":{\"sku\":\"WSH02-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-32-Gray\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"1886\":{\"sku\":\"WSH02-32-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-32-Orange\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-32-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Orange\"},\"1887\":{\"sku\":\"WSH02-32-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short-32-Yellow\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"maxima-drawstring-short-32-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Yellow\"},\"1888\":{\"sku\":\"WSH02\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Maxima Drawstring Short\",\"description\":\"<p>Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.<\\/p>\\n<p>&bull; Light gray run shorts <br \\/>- cotton polyester. <br \\/>&bull; Contrast binding. <br \\/>&bull; 3\\\" inseam. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=Cotton|Polyester,pattern=Solid,climate=Indoor|Hot|Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH02-28-Gray,size=28,color=Gray|sku=WSH02-28-Orange,size=28,color=Orange|sku=WSH02-28-Yellow,size=28,color=Yellow|sku=WSH02-29-Gray,size=29,color=Gray|sku=WSH02-29-Orange,size=29,color=Orange|sku=WSH02-29-Yellow,size=29,color=Yellow|sku=WSH02-30-Gray,size=30,color=Gray|sku=WSH02-30-Orange,size=30,color=Orange|sku=WSH02-30-Yellow,size=30,color=Yellow|sku=WSH02-31-Gray,size=31,color=Gray|sku=WSH02-31-Orange,size=31,color=Orange|sku=WSH02-31-Yellow,size=31,color=Yellow|sku=WSH02-32-Gray,size=32,color=Gray|sku=WSH02-32-Orange,size=32,color=Orange|sku=WSH02-32-Yellow,size=32,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh02-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh02-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"Cotton\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"Indoor\",\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1889\":{\"sku\":\"WSH03-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-28-Blue\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1890\":{\"sku\":\"WSH03-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-28-Gray\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1891\":{\"sku\":\"WSH03-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-28-Orange\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1892\":{\"sku\":\"WSH03-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-29-Blue\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1893\":{\"sku\":\"WSH03-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-29-Gray\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1894\":{\"sku\":\"WSH03-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-29-Orange\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1895\":{\"sku\":\"WSH03-30-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-30-Blue\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-30-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Blue\"},\"1896\":{\"sku\":\"WSH03-30-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-30-Gray\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-30-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Gray\"},\"1897\":{\"sku\":\"WSH03-30-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-30-Orange\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-30-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Orange\"},\"1898\":{\"sku\":\"WSH03-31-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-31-Blue\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-31-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Blue\"},\"1899\":{\"sku\":\"WSH03-31-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-31-Gray\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-31-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Gray\"}}',1,'[[regtime]]'),(20,'catalog_product','append','{\"1900\":{\"sku\":\"WSH03-31-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-31-Orange\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-31-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Orange\"},\"1901\":{\"sku\":\"WSH03-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-32-Blue\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"1902\":{\"sku\":\"WSH03-32-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-32-Gray\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-32-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Gray\"},\"1903\":{\"sku\":\"WSH03-32-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short-32-Orange\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"gwen-drawstring-bike-short-32-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Orange\"},\"1904\":{\"sku\":\"WSH03\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Gwen Drawstring Bike Short\",\"description\":\"<p>For a completely modern style with moisture-wicking CoolTech&trade; technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.<\\/p>\\n<p>&bull; Dark heather gray rouched bike shorts.<br \\/>&bull; Fitted. Inseam: 2\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"50\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic|Snug|Base Layer,material=LumaTech&trade;|Organic Cotton,pattern=Solid,climate=All-weather|Indoor|Hot,eco_collection=Yes,performance_fabric=Yes,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH03-28-Blue,size=28,color=Blue|sku=WSH03-28-Gray,size=28,color=Gray|sku=WSH03-28-Orange,size=28,color=Orange|sku=WSH03-29-Blue,size=29,color=Blue|sku=WSH03-29-Gray,size=29,color=Gray|sku=WSH03-29-Orange,size=29,color=Orange|sku=WSH03-30-Blue,size=30,color=Blue|sku=WSH03-30-Gray,size=30,color=Gray|sku=WSH03-30-Orange,size=30,color=Orange|sku=WSH03-31-Blue,size=31,color=Blue|sku=WSH03-31-Gray,size=31,color=Gray|sku=WSH03-31-Orange,size=31,color=Orange|sku=WSH03-32-Blue,size=32,color=Blue|sku=WSH03-32-Gray,size=32,color=Gray|sku=WSH03-32-Orange,size=32,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh03-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh03-gray_alt1.jpg,\\/w\\/s\\/wsh03-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Basic\",\"Snug\",\"Base Layer\"],\"material\":[\"LumaTech&trade;\",\"Organic Cotton\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1905\":{\"sku\":\"WSH04-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-28-Black\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1906\":{\"sku\":\"WSH04-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-28-Green\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1907\":{\"sku\":\"WSH04-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-28-Orange\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1908\":{\"sku\":\"WSH04-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-29-Black\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1909\":{\"sku\":\"WSH04-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-29-Green\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1910\":{\"sku\":\"WSH04-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-29-Orange\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1911\":{\"sku\":\"WSH04-30-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-30-Black\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-30-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Black\"},\"1912\":{\"sku\":\"WSH04-30-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-30-Green\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-30-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Green\"},\"1913\":{\"sku\":\"WSH04-30-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-30-Orange\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-30-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Orange\"},\"1914\":{\"sku\":\"WSH04-31-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-31-Black\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-31-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Black\"},\"1915\":{\"sku\":\"WSH04-31-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-31-Green\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-31-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Green\"},\"1916\":{\"sku\":\"WSH04-31-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-31-Orange\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-31-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Orange\"},\"1917\":{\"sku\":\"WSH04-32-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-32-Black\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-32-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Black\"},\"1918\":{\"sku\":\"WSH04-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-32-Green\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"1919\":{\"sku\":\"WSH04-32-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short-32-Orange\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"artemis-running-short-32-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Orange\"},\"1920\":{\"sku\":\"WSH04\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Artemis Running Short\",\"description\":\"<p>Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.<\\/p>\\n<p>&bull; Black rouched shorts with mint waist. <br \\/>&bull; Soft, lightweight construction.<br \\/>&bull; LumaTech&trade; wicking technology.<br \\/>&bull; Semi-fitted.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=Spandex|Wool,pattern=Solid-Highlight,climate=All-weather|Indoor|Hot|Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH04-28-Black,size=28,color=Black|sku=WSH04-28-Green,size=28,color=Green|sku=WSH04-28-Orange,size=28,color=Orange|sku=WSH04-29-Black,size=29,color=Black|sku=WSH04-29-Green,size=29,color=Green|sku=WSH04-29-Orange,size=29,color=Orange|sku=WSH04-30-Black,size=30,color=Black|sku=WSH04-30-Green,size=30,color=Green|sku=WSH04-30-Orange,size=30,color=Orange|sku=WSH04-31-Black,size=31,color=Black|sku=WSH04-31-Green,size=31,color=Green|sku=WSH04-31-Orange,size=31,color=Orange|sku=WSH04-32-Black,size=32,color=Black|sku=WSH04-32-Green,size=32,color=Green|sku=WSH04-32-Orange,size=32,color=Orange\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh04-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh04-black_alt1.jpg,\\/w\\/s\\/wsh04-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"Spandex\",\"Wool\"],\"pattern\":\"Solid-Highlight\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1921\":{\"sku\":\"WSH05-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-28-Blue\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1922\":{\"sku\":\"WSH05-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-28-Purple\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1923\":{\"sku\":\"WSH05-28-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-28-Yellow\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-28-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Yellow\"},\"1924\":{\"sku\":\"WSH05-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-29-Blue\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1925\":{\"sku\":\"WSH05-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-29-Purple\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1926\":{\"sku\":\"WSH05-29-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-29-Yellow\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-29-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Yellow\"},\"1927\":{\"sku\":\"WSH05-30-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-30-Blue\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-30-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Blue\"},\"1928\":{\"sku\":\"WSH05-30-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-30-Purple\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-30-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Purple\"},\"1929\":{\"sku\":\"WSH05-30-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-30-Yellow\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-30-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Yellow\"},\"1930\":{\"sku\":\"WSH05-31-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-31-Blue\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-31-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Blue\"},\"1931\":{\"sku\":\"WSH05-31-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-31-Purple\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-31-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Purple\"},\"1932\":{\"sku\":\"WSH05-31-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-31-Yellow\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-31-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Yellow\"},\"1933\":{\"sku\":\"WSH05-32-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-32-Blue\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-32-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Blue\"},\"1934\":{\"sku\":\"WSH05-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-32-Purple\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"1935\":{\"sku\":\"WSH05-32-Yellow\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short-32-Yellow\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"bess-yoga-short-32-yellow\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Yellow\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-yellow_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Yellow\"},\"1936\":{\"sku\":\"WSH05\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Promotions\\/Women Sale,Default Category\",\"product_websites\":\"base\",\"name\":\"Bess Yoga Short\",\"description\":\"<p>Designed for intense physical activity &ndash; think bikram &ndash; our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.<\\/p>\\n<p>&bull; Navy cotton shorts with light bue waist detail.<br \\/>&bull; Front shirred waistband.<br \\/>&bull; Flat-lock, chafe-free side seams.<br \\/>&bull; Vented gusset.<br \\/>&bull; Hidden interior pocket.<br \\/>&bull; Sustainable and recycled fabric.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"28\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=Cotton|CoolTech&trade;|Mesh,pattern=Solid-Highlight,climate=All-weather|Hot|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=Yes\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH05-28-Blue,size=28,color=Blue|sku=WSH05-28-Purple,size=28,color=Purple|sku=WSH05-28-Yellow,size=28,color=Yellow|sku=WSH05-29-Blue,size=29,color=Blue|sku=WSH05-29-Purple,size=29,color=Purple|sku=WSH05-29-Yellow,size=29,color=Yellow|sku=WSH05-30-Blue,size=30,color=Blue|sku=WSH05-30-Purple,size=30,color=Purple|sku=WSH05-30-Yellow,size=30,color=Yellow|sku=WSH05-31-Blue,size=31,color=Blue|sku=WSH05-31-Purple,size=31,color=Purple|sku=WSH05-31-Yellow,size=31,color=Yellow|sku=WSH05-32-Blue,size=32,color=Blue|sku=WSH05-32-Purple,size=32,color=Purple|sku=WSH05-32-Yellow,size=32,color=Yellow\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh05-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh05-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"Cotton\",\"CoolTech&trade;\",\"Mesh\"],\"pattern\":\"Solid-Highlight\",\"climate\":[\"All-weather\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"Yes\"},\"1937\":{\"sku\":\"WSH06-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-28-Gray\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1938\":{\"sku\":\"WSH06-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-28-Orange\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1939\":{\"sku\":\"WSH06-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-28-Purple\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1940\":{\"sku\":\"WSH06-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-29-Gray\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1941\":{\"sku\":\"WSH06-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-29-Orange\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1942\":{\"sku\":\"WSH06-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short-29-Purple\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"angel-light-running-short-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1943\":{\"sku\":\"WSH06\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Angel Light Running Short\",\"description\":\"<p>The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona&reg; performance technology, it can whisk away sweat and block UV rays.<\\/p>\\n<p>&bull; Dark heather gray running shorts.<br \\/>&bull; Snug fit. <br \\/>&bull; Elastic waistband. <br \\/>&bull; Cocona&reg; performance fabric. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"42\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic|Snug,material=Cocona&reg; performance fabric|Mesh|Polyester,pattern=Solid,climate=All-weather|Indoor|Hot,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH06-28-Gray,size=28,color=Gray|sku=WSH06-28-Orange,size=28,color=Orange|sku=WSH06-28-Purple,size=28,color=Purple|sku=WSH06-29-Gray,size=29,color=Gray|sku=WSH06-29-Orange,size=29,color=Orange|sku=WSH06-29-Purple,size=29,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh06-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh06-gray_alt1.jpg,\\/w\\/s\\/wsh06-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Basic\",\"Snug\"],\"material\":[\"Cocona&reg; performance fabric\",\"Mesh\",\"Polyester\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1944\":{\"sku\":\"WSH07-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-28-Black\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1945\":{\"sku\":\"WSH07-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-28-Blue\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1946\":{\"sku\":\"WSH07-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-28-Purple\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1947\":{\"sku\":\"WSH07-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-29-Black\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1948\":{\"sku\":\"WSH07-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-29-Blue\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1949\":{\"sku\":\"WSH07-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short-29-Purple\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"echo-fit-compression-short-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1950\":{\"sku\":\"WSH07\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/New Luma Yoga Collection,Default Category\",\"product_websites\":\"base\",\"name\":\"Echo Fit Compression Short\",\"description\":\"<p>Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.<\\/p>\\n<p>&bull; Black compression shorts.<br \\/>&bull; High-waisted cut.<br \\/>&bull; Compression fit.<br \\/>&bull; Inseam: 1.0\\\". <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"24\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Snug|Base Layer|Compression,material=Lycra&reg;|Spandex|Wool,pattern=Solid,climate=All-weather|Indoor|Hot|Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=Yes,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH07-28-Black,size=28,color=Black|sku=WSH07-28-Blue,size=28,color=Blue|sku=WSH07-28-Purple,size=28,color=Purple|sku=WSH07-29-Black,size=29,color=Black|sku=WSH07-29-Blue,size=29,color=Blue|sku=WSH07-29-Purple,size=29,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh07-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh07-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Snug\",\"Base Layer\",\"Compression\"],\"material\":[\"Lycra&reg;\",\"Spandex\",\"Wool\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Indoor\",\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"Yes\",\"sale\":\"No\"},\"1951\":{\"sku\":\"WSH08-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short-28-Purple\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sybil-running-short-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1952\":{\"sku\":\"WSH08-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short-29-Purple\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sybil-running-short-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1953\":{\"sku\":\"WSH08-30-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short-30-Purple\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sybil-running-short-30-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Purple\"},\"1954\":{\"sku\":\"WSH08-31-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short-31-Purple\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sybil-running-short-31-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Purple\"},\"1955\":{\"sku\":\"WSH08-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short-32-Purple\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"sybil-running-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"1956\":{\"sku\":\"WSH08\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Performance Fabrics,Default Category\",\"product_websites\":\"base\",\"name\":\"Sybil Running Short\",\"description\":\"<p>Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.<\\/p>\\n<p>&bull; Blue running shorts with green waist.<br \\/>&bull; Drawstring-adjustable waist.<br \\/>&bull; 4\\\" inseam. Machine wash\\/line dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=Cocona&reg; performance fabric|Cotton|Mesh,pattern=Solid-Highlight,climate=Indoor|Hot,eco_collection=No,performance_fabric=Yes,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH08-28-Purple,size=28,color=Purple|sku=WSH08-29-Purple,size=29,color=Purple|sku=WSH08-30-Purple,size=30,color=Purple|sku=WSH08-31-Purple,size=31,color=Purple|sku=WSH08-32-Purple,size=32,color=Purple\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"image\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh08-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh08-purple_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"Cocona&reg; performance fabric\",\"Cotton\",\"Mesh\"],\"pattern\":\"Solid-Highlight\",\"climate\":[\"Indoor\",\"Hot\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1957\":{\"sku\":\"WSH09-28-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-28-Gray\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-28-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Gray\"},\"1958\":{\"sku\":\"WSH09-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-28-Green\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1959\":{\"sku\":\"WSH09-28-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-28-White\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-28-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"White\"},\"1960\":{\"sku\":\"WSH09-29-Gray\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-29-Gray\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-29-gray\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Gray\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Gray\"},\"1961\":{\"sku\":\"WSH09-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-29-Green\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1962\":{\"sku\":\"WSH09-29-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short-29-White\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"mimi-all-purpose-short-29-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"White\"},\"1963\":{\"sku\":\"WSH09\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts\",\"product_websites\":\"base\",\"name\":\"Mimi All-Purpose Short\",\"description\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.<\\/p>\\n<p>&bull; Gray\\/seafoam two-layer shorts.<br \\/>&bull; Water-resistant construction.<br \\/>&bull; Inner mesh brief for breathable support.<br \\/>&bull; 2.0\\\" inseam.<br \\/>&bull; Reflective trim for visibility.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"44\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=Nylon|Organic Cotton|Polyester,pattern=Solid-Highlight,climate=Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH09-28-Gray,size=28,color=Gray|sku=WSH09-28-Green,size=28,color=Green|sku=WSH09-28-White,size=28,color=White|sku=WSH09-29-Gray,size=29,color=Gray|sku=WSH09-29-Green,size=29,color=Green|sku=WSH09-29-White,size=29,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"image\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh09-gray_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh09-gray_alt1.jpg,\\/w\\/s\\/wsh09-gray_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"Nylon\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid-Highlight\",\"climate\":[\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1964\":{\"sku\":\"WSH10-28-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-28-Black\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-28-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Black\"},\"1965\":{\"sku\":\"WSH10-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-28-Orange\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1966\":{\"sku\":\"WSH10-28-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-28-White\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-28-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"White\"},\"1967\":{\"sku\":\"WSH10-29-Black\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-29-Black\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-29-black\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Black\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Black\"},\"1968\":{\"sku\":\"WSH10-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-29-Orange\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1969\":{\"sku\":\"WSH10-29-White\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short-29-White\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ana-running-short-29-white\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=White\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-white_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"White\"},\"1970\":{\"sku\":\"WSH10\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Eco Friendly,Default Category\",\"product_websites\":\"base\",\"name\":\"Ana Running Short\",\"description\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.<\\/p>\\n<p>&bull; Black\\/pink two-layer shorts.<br \\/>&bull; Low-rise elastic waistband.<br \\/>&bull; Relaxed fit. <br \\/>&bull; Ultra-lightweight fabric. <br \\/>&bull; Internal drawstring. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"40\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic,material=CoolTech&trade;|Organic Cotton|Polyester,pattern=Solid-Highlight,climate=All-weather|Warm,eco_collection=Yes,performance_fabric=No,erin_recommends=No,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH10-28-Black,size=28,color=Black|sku=WSH10-28-Orange,size=28,color=Orange|sku=WSH10-28-White,size=28,color=White|sku=WSH10-29-Black,size=29,color=Black|sku=WSH10-29-Orange,size=29,color=Orange|sku=WSH10-29-White,size=29,color=White\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"image\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh10-black_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh10-black_alt1.jpg,\\/w\\/s\\/wsh10-black_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":\"Basic\",\"material\":[\"CoolTech&trade;\",\"Organic Cotton\",\"Polyester\"],\"pattern\":\"Solid-Highlight\",\"climate\":[\"All-weather\",\"Warm\"],\"eco_collection\":\"Yes\",\"performance_fabric\":\"No\",\"erin_recommends\":\"No\",\"new\":\"No\",\"sale\":\"No\"},\"1971\":{\"sku\":\"WSH11-28-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-28-Blue\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-28-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Blue\"},\"1972\":{\"sku\":\"WSH11-28-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-28-Orange\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-28-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Orange\"},\"1973\":{\"sku\":\"WSH11-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-28-Red\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1974\":{\"sku\":\"WSH11-29-Blue\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-29-Blue\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-29-blue\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Blue\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Blue\"},\"1975\":{\"sku\":\"WSH11-29-Orange\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-29-Orange\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-29-orange\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Orange\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-orange_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Orange\"},\"1976\":{\"sku\":\"WSH11-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short-29-Red\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"ina-compression-short-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1977\":{\"sku\":\"WSH11\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Ina Compression Short\",\"description\":\"<p>One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.<\\/p>\\n<p>&bull; Royal blue bike shorts.<br \\/>&bull; Compression fit. <br \\/>&bull; Moisture-wicking. <br \\/>&bull; Anti-microbial. <br \\/>&bull; Machine wash\\/dry.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"49\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Snug|Base Layer|Compression,material=LumaTech&trade;|Spandex,pattern=Solid,climate=All-weather|Hot|Warm,eco_collection=No,performance_fabric=Yes,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH11-28-Blue,size=28,color=Blue|sku=WSH11-28-Orange,size=28,color=Orange|sku=WSH11-28-Red,size=28,color=Red|sku=WSH11-29-Blue,size=29,color=Blue|sku=WSH11-29-Orange,size=29,color=Orange|sku=WSH11-29-Red,size=29,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"image\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh11-blue_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh11-blue_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Snug\",\"Base Layer\",\"Compression\"],\"material\":[\"LumaTech&trade;\",\"Spandex\"],\"pattern\":\"Solid\",\"climate\":[\"All-weather\",\"Hot\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"Yes\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"},\"1978\":{\"sku\":\"WSH12-28-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-28-Green\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-28-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Green\"},\"1979\":{\"sku\":\"WSH12-28-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-28-Purple\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-28-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Purple\"},\"1980\":{\"sku\":\"WSH12-28-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-28-Red\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-28-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=28,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"28\",\"color\":\"Red\"},\"1981\":{\"sku\":\"WSH12-29-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-29-Green\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-29-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Green\"},\"1982\":{\"sku\":\"WSH12-29-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-29-Purple\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-29-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Purple\"},\"1983\":{\"sku\":\"WSH12-29-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-29-Red\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-29-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=29,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"29\",\"color\":\"Red\"},\"1984\":{\"sku\":\"WSH12-30-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-30-Green\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-30-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Green\"},\"1985\":{\"sku\":\"WSH12-30-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-30-Purple\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-30-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Purple\"},\"1986\":{\"sku\":\"WSH12-30-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-30-Red\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-30-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=30,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"30\",\"color\":\"Red\"},\"1987\":{\"sku\":\"WSH12-31-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-31-Green\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-31-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Green\"},\"1988\":{\"sku\":\"WSH12-31-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-31-Purple\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-31-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Purple\"},\"1989\":{\"sku\":\"WSH12-31-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-31-Red\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-31-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=31,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"31\",\"color\":\"Red\"},\"1990\":{\"sku\":\"WSH12-32-Green\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-32-Green\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-32-green\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Green\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Green\"},\"1991\":{\"sku\":\"WSH12-32-Purple\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-32-Purple\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-32-purple\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Purple\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-purple_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Purple\"},\"1992\":{\"sku\":\"WSH12-32-Red\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"simple\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short-32-Red\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":\"1\",\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Not Visible Individually\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":\"erika-running-short-32-red\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=0,required_options=0,size=32,color=Red\",\"qty\":\"100\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":null,\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":null,\"image\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-red_main.jpg\",\"thumbnail_label\":null,\"_media_image\":null,\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"0\",\"required_options\":\"0\",\"size\":\"32\",\"color\":\"Red\"},\"1993\":{\"sku\":\"WSH12\",\"store_view_code\":null,\"attribute_set_code\":\"Bottom\",\"product_type\":\"configurable\",\"categories\":\"Default Category\\/Women\\/Bottoms\\/Shorts,Default Category\\/Collections\\/Erin Recommends,Default Category\",\"product_websites\":\"base\",\"name\":\"Erika Running Short\",\"description\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.<\\/p>\\n<p>&bull; Seafoam pattern running shorts.<br \\/>&bull; Elastic waistband.<br \\/>&bull; Snug fit.<br \\/>&bull; 4\'\' inseam.<br \\/>&bull; 76% premium brushed Nylon \\/ 24% Spandex.<\\/p>\",\"short_description\":null,\"weight\":null,\"product_online\":\"1\",\"tax_class_name\":\"Taxable Goods\",\"visibility\":\"Catalog, Search\",\"price\":\"45\",\"special_price\":null,\"special_price_from_date\":null,\"special_price_to_date\":null,\"url_key\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"base_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"base_image_label\":null,\"small_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"small_image_label\":null,\"thumbnail_image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_image_label\":null,\"created_at\":null,\"updated_at\":null,\"new_from_date\":null,\"new_to_date\":null,\"display_product_options_in\":null,\"map_price\":null,\"msrp_price\":null,\"map_enabled\":null,\"gift_message_available\":null,\"custom_design\":null,\"custom_design_from\":null,\"custom_design_to\":null,\"custom_layout_update\":null,\"page_layout\":null,\"product_options_container\":null,\"msrp_display_actual_price_type\":null,\"country_of_manufacture\":null,\"additional_attributes\":\"has_options=1,required_options=1,style_bottom=Basic|Snug,material=Organic Cotton|Polyester|Spandex,pattern=Graphic Print,climate=Hot|Mild|Warm,eco_collection=No,performance_fabric=No,erin_recommends=Yes,new=No,sale=No\",\"qty\":\"0\",\"out_of_stock_qty\":\"0\",\"use_config_min_qty\":\"1\",\"is_qty_decimal\":\"0\",\"allow_backorders\":\"0\",\"use_config_backorders\":\"1\",\"min_cart_qty\":\"1\",\"use_config_min_sale_qty\":\"1\",\"max_cart_qty\":\"0\",\"use_config_max_sale_qty\":\"1\",\"is_in_stock\":\"1\",\"notify_on_stock_below\":null,\"use_config_notify_stock_qty\":\"1\",\"manage_stock\":\"0\",\"use_config_manage_stock\":\"1\",\"use_config_qty_increments\":\"1\",\"qty_increments\":\"0\",\"use_config_enable_qty_inc\":\"1\",\"enable_qty_increments\":\"0\",\"is_decimal_divided\":\"0\",\"website_id\":\"1\",\"configurable_variations\":\"sku=WSH12-28-Green,size=28,color=Green|sku=WSH12-28-Purple,size=28,color=Purple|sku=WSH12-28-Red,size=28,color=Red|sku=WSH12-29-Green,size=29,color=Green|sku=WSH12-29-Purple,size=29,color=Purple|sku=WSH12-29-Red,size=29,color=Red|sku=WSH12-30-Green,size=30,color=Green|sku=WSH12-30-Purple,size=30,color=Purple|sku=WSH12-30-Red,size=30,color=Red|sku=WSH12-31-Green,size=31,color=Green|sku=WSH12-31-Purple,size=31,color=Purple|sku=WSH12-31-Red,size=31,color=Red|sku=WSH12-32-Green,size=32,color=Green|sku=WSH12-32-Purple,size=32,color=Purple|sku=WSH12-32-Red,size=32,color=Red\",\"configurable_variation_prices\":null,\"configurable_variation_labels\":null,\"additional_images\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"image\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"image_label\":null,\"thumbnail\":\"\\/w\\/s\\/wsh12-green_main.jpg\",\"thumbnail_label\":null,\"_media_image\":\"\\/w\\/s\\/wsh12-green_alt1.jpg,\\/w\\/s\\/wsh12-green_back.jpg\",\"_store\":null,\"_attribute_set\":\"Bottom\",\"_product_websites\":\"base\",\"status\":\"1\",\"news_from_date\":null,\"news_to_date\":null,\"options_container\":null,\"minimal_price\":null,\"msrp\":null,\"msrp_enabled\":null,\"special_from_date\":null,\"special_to_date\":null,\"min_qty\":\"0\",\"backorders\":\"0\",\"min_sale_qty\":\"1\",\"max_sale_qty\":\"0\",\"notify_stock_qty\":null,\"meta_keyword\":null,\"has_options\":\"1\",\"required_options\":\"1\",\"style_bottom\":[\"Basic\",\"Snug\"],\"material\":[\"Organic Cotton\",\"Polyester\",\"Spandex\"],\"pattern\":\"Graphic Print\",\"climate\":[\"Hot\",\"Mild\",\"Warm\"],\"eco_collection\":\"No\",\"performance_fabric\":\"No\",\"erin_recommends\":\"Yes\",\"new\":\"No\",\"sale\":\"No\"}}',1,'[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]importexport_importdata` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]indexer_state`
--

DROP TABLE IF EXISTS `[[dbprefix]]indexer_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]indexer_state` (
  `state_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Indexer State ID',
  `indexer_id` varchar(255) DEFAULT NULL COMMENT 'Indexer ID',
  `status` varchar(16) DEFAULT 'invalid' COMMENT 'Indexer Status',
  `updated` datetime DEFAULT NULL COMMENT 'Indexer Status',
  `hash_config` varchar(32) NOT NULL COMMENT 'Hash of indexer config',
  PRIMARY KEY (`state_id`),
  KEY `[[DBPREFIX]]INDEXER_STATE_INDEXER_ID` (`indexer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COMMENT='Indexer State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]indexer_state`
--

LOCK TABLES `[[dbprefix]]indexer_state` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]indexer_state` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]indexer_state` VALUES (1,'design_config_grid','valid','[[regtime]]','8c49170a5f6cda7c636509728ffe9c66'),(2,'customer_grid','valid','[[regtime]]','af7ead9cab1d91a5669b5f892ee8494b'),(3,'catalog_category_product','valid','[[regtime]]','89742b9dd791a8140743cb2e1d51c217'),(4,'catalog_product_category','valid','[[regtime]]','e45469997b60996a1485d421f702a43b'),(5,'catalogrule_rule','valid','[[regtime]]','317f310dcfd15a320b7f00d16647d1d3'),(6,'catalog_product_attribute','valid','[[regtime]]','b3d51fb73c8743f378ac7b0223c04238'),(7,'inventory','valid','[[regtime]]','720522c617f1e1b13451bf67bd34aa32'),(8,'catalogrule_product','valid','[[regtime]]','69ce2c45b02208cc6376a66263cd3aa8'),(9,'cataloginventory_stock','valid','[[regtime]]','17c61f49a5270aeeef34b25924498c31'),(10,'catalog_product_price','valid','[[regtime]]','4af6b6f869235f5dddc15e22adc5918d'),(11,'catalogsearch_fulltext','valid','[[regtime]]','5201e6d3450ee2586e9317512e3d66db'),(12,'sales_order_data_exporter','valid','[[regtime]]','51ad118a92bfc75ea6e17dd068d92900'),(13,'sales_order_status_data_exporter','valid','[[regtime]]','6cc925ff67f41b1e877013e5eb6f7ff4'),(14,'store_data_exporter','valid','[[regtime]]','fa1f4555034fe9b40917d7e3c8b3e382');
/*!40000 ALTER TABLE `[[dbprefix]]indexer_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]integration`
--

DROP TABLE IF EXISTS `[[dbprefix]]integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]integration` (
  `integration_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID',
  `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface',
  `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person',
  `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials',
  `status` smallint unsigned NOT NULL COMMENT 'Integration status',
  `consumer_id` int unsigned DEFAULT NULL COMMENT 'Oauth consumer',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `setup_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Integration type - manual or config file',
  `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url',
  PRIMARY KEY (`integration_id`),
  UNIQUE KEY `[[DBPREFIX]]INTEGRATION_NAME` (`name`),
  UNIQUE KEY `[[DBPREFIX]]INTEGRATION_CONSUMER_ID` (`consumer_id`),
  CONSTRAINT `[[DBPREFIX]]INTEGRATION_CONSUMER_ID_[[DBPREFIX]]OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `[[dbprefix]]oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]integration`
--

LOCK TABLES `[[dbprefix]]integration` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]integration` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]integration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]inventory_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_cl`
--

LOCK TABLES `[[dbprefix]]inventory_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_geoname`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_geoname`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_geoname` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'entity id',
  `country_code` varchar(64) NOT NULL,
  `postcode` varchar(64) NOT NULL,
  `city` varchar(180) NOT NULL,
  `region` varchar(100) NOT NULL,
  `province` varchar(64) NOT NULL,
  `latitude` double NOT NULL,
  `longitude` double NOT NULL,
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_geoname`
--

LOCK TABLES `[[dbprefix]]inventory_geoname` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_geoname` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_geoname` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_low_stock_notification_configuration`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_low_stock_notification_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` (
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `notify_stock_qty` decimal(12,4) DEFAULT NULL,
  PRIMARY KEY (`source_code`,`sku`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_low_stock_notification_configuration`
--

LOCK TABLES `[[dbprefix]]inventory_low_stock_notification_configuration` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_order_notification`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_order_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_order_notification` (
  `order_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `notification_sent` smallint NOT NULL COMMENT 'Has Notification Been Sent For Order',
  `send_notification` smallint NOT NULL COMMENT 'Should Notification Be Send For Order',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `[[DBPREFIX]]INV_ORDER_NTFC_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_order_notification`
--

LOCK TABLES `[[dbprefix]]inventory_order_notification` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_order_notification` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_order_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_pickup_location_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_pickup_location_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_pickup_location_order` (
  `order_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `[[DBPREFIX]]INV_PICKUP_LOCATION_ORDER_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_pickup_location_order`
--

LOCK TABLES `[[dbprefix]]inventory_pickup_location_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_pickup_location_quote_address`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_pickup_location_quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_pickup_location_quote_address` (
  `address_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Quote Address ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`address_id`),
  CONSTRAINT `FK_453C43AC6463D44FB8D9AEE93F8D5368` FOREIGN KEY (`address_id`) REFERENCES `[[dbprefix]]quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_pickup_location_quote_address`
--

LOCK TABLES `[[dbprefix]]inventory_pickup_location_quote_address` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_quote_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_quote_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_reservation`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_reservation` (
  `reservation_id` int unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int unsigned NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(10,4) NOT NULL DEFAULT '0.0000',
  `metadata` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`reservation_id`),
  KEY `[[DBPREFIX]]INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_reservation`
--

LOCK TABLES `[[dbprefix]]inventory_reservation` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_reservation` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_reservation` VALUES (1,1,'WS03-XS-Red',1.0000,'{\"event_type\":\"shipment_created\",\"object_type\":\"order\",\"object_id\":\"1\",\"object_increment_id\":\"000000001\"}'),(2,1,'WS08-XS-Blue',1.0000,'{\"event_type\":\"shipment_created\",\"object_type\":\"order\",\"object_id\":\"2\",\"object_increment_id\":\"000000002\"}');
/*!40000 ALTER TABLE `[[dbprefix]]inventory_reservation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_shipment_source`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_shipment_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_shipment_source` (
  `shipment_id` int unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  PRIMARY KEY (`shipment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_shipment_source`
--

LOCK TABLES `[[dbprefix]]inventory_shipment_source` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_shipment_source` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_shipment_source` VALUES (1,'default'),(2,'default');
/*!40000 ALTER TABLE `[[dbprefix]]inventory_shipment_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_source`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_source` (
  `source_code` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `enabled` smallint unsigned NOT NULL DEFAULT '1',
  `description` text,
  `latitude` decimal(8,6) DEFAULT NULL,
  `longitude` decimal(9,6) DEFAULT NULL,
  `country_id` varchar(2) NOT NULL,
  `region_id` int unsigned DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `street` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) NOT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `use_default_carrier_config` smallint unsigned NOT NULL DEFAULT '1',
  `is_pickup_location_active` tinyint(1) NOT NULL DEFAULT '0',
  `frontend_name` varchar(255) DEFAULT '',
  `frontend_description` text,
  PRIMARY KEY (`source_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_source`
--

LOCK TABLES `[[dbprefix]]inventory_source` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_source` VALUES ('default','Default Source',1,'Default Source',0.000000,0.000000,'US',NULL,NULL,NULL,NULL,'00000',NULL,NULL,NULL,NULL,1,0,'',NULL);
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_source_carrier_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_carrier_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_source_carrier_link` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `carrier_code` varchar(255) NOT NULL,
  `position` smallint unsigned DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `FK_895099EF516A80F7577B3E11E0D49D35` (`source_code`),
  CONSTRAINT `FK_895099EF516A80F7577B3E11E0D49D35` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_source_carrier_link`
--

LOCK TABLES `[[dbprefix]]inventory_source_carrier_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_carrier_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_carrier_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_source_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_source_item` (
  `source_item_id` int unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(12,4) NOT NULL DEFAULT '0.0000',
  `status` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`source_item_id`),
  UNIQUE KEY `[[DBPREFIX]]INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`),
  KEY `[[DBPREFIX]]INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`),
  CONSTRAINT `[[DBPREFIX]]INV_SOURCE_ITEM_SOURCE_CODE_[[DBPREFIX]]INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2039 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_source_item`
--

LOCK TABLES `[[dbprefix]]inventory_source_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_source_item` VALUES (1,'default','24-MB01',100.0000,1),(2,'default','24-MB04',100.0000,1),(3,'default','24-MB03',100.0000,1),(4,'default','24-MB05',100.0000,1),(5,'default','24-MB06',100.0000,1),(6,'default','24-MB02',100.0000,1),(7,'default','24-UB02',100.0000,1),(8,'default','24-WB01',100.0000,1),(9,'default','24-WB02',100.0000,1),(10,'default','24-WB05',100.0000,1),(11,'default','24-WB06',100.0000,1),(12,'default','24-WB03',100.0000,1),(13,'default','24-WB07',100.0000,1),(14,'default','24-WB04',100.0000,1),(15,'default','24-UG06',100.0000,1),(16,'default','24-UG07',100.0000,1),(17,'default','24-UG04',100.0000,1),(18,'default','24-UG02',100.0000,1),(19,'default','24-UG05',100.0000,1),(20,'default','24-UG01',100.0000,1),(21,'default','24-WG084',100.0000,1),(22,'default','24-WG088',100.0000,1),(23,'default','24-UG03',100.0000,1),(24,'default','24-WG081-gray',100.0000,1),(25,'default','24-WG081-pink',100.0000,1),(26,'default','24-WG081-blue',100.0000,1),(27,'default','24-WG082-gray',100.0000,1),(28,'default','24-WG082-pink',100.0000,1),(29,'default','24-WG082-blue',100.0000,1),(30,'default','24-WG083-gray',100.0000,1),(31,'default','24-WG083-pink',100.0000,1),(32,'default','24-WG083-blue',100.0000,1),(33,'default','24-WG085',100.0000,1),(34,'default','24-WG086',100.0000,1),(35,'default','24-WG087',100.0000,1),(36,'default','24-MG04',100.0000,1),(37,'default','24-MG01',100.0000,1),(38,'default','24-MG03',100.0000,1),(39,'default','24-MG05',100.0000,1),(40,'default','24-MG02',100.0000,1),(41,'default','24-WG09',100.0000,1),(42,'default','24-WG01',100.0000,1),(43,'default','24-WG03',100.0000,1),(44,'default','24-WG02',100.0000,1),(45,'default','MH01-XS-Black',100.0000,1),(46,'default','MH01-XS-Gray',100.0000,1),(47,'default','MH01-XS-Orange',100.0000,1),(48,'default','MH01-S-Black',100.0000,1),(49,'default','MH01-S-Gray',100.0000,1),(50,'default','MH01-S-Orange',100.0000,1),(51,'default','MH01-M-Black',100.0000,1),(52,'default','MH01-M-Gray',100.0000,1),(53,'default','MH01-M-Orange',100.0000,1),(54,'default','MH01-L-Black',100.0000,1),(55,'default','MH01-L-Gray',100.0000,1),(56,'default','MH01-L-Orange',100.0000,1),(57,'default','MH01-XL-Black',100.0000,1),(58,'default','MH01-XL-Gray',100.0000,1),(59,'default','MH01-XL-Orange',100.0000,1),(60,'default','MH01',0.0000,1),(61,'default','MH02-XS-Black',100.0000,1),(62,'default','MH02-XS-Purple',100.0000,1),(63,'default','MH02-XS-Red',100.0000,1),(64,'default','MH02-S-Black',100.0000,1),(65,'default','MH02-S-Purple',100.0000,1),(66,'default','MH02-S-Red',100.0000,1),(67,'default','MH02-M-Black',100.0000,1),(68,'default','MH02-M-Purple',100.0000,1),(69,'default','MH02-M-Red',100.0000,1),(70,'default','MH02-L-Black',100.0000,1),(71,'default','MH02-L-Purple',100.0000,1),(72,'default','MH02-L-Red',100.0000,1),(73,'default','MH02-XL-Black',100.0000,1),(74,'default','MH02-XL-Purple',100.0000,1),(75,'default','MH02-XL-Red',100.0000,1),(76,'default','MH02',0.0000,1),(77,'default','MH03-XS-Black',100.0000,1),(78,'default','MH03-XS-Blue',100.0000,1),(79,'default','MH03-XS-Green',100.0000,1),(80,'default','MH03-S-Black',100.0000,1),(81,'default','MH03-S-Blue',100.0000,1),(82,'default','MH03-S-Green',100.0000,1),(83,'default','MH03-M-Black',100.0000,1),(84,'default','MH03-M-Blue',100.0000,1),(85,'default','MH03-M-Green',100.0000,1),(86,'default','MH03-L-Black',100.0000,1),(87,'default','MH03-L-Blue',100.0000,1),(88,'default','MH03-L-Green',100.0000,1),(89,'default','MH03-XL-Black',100.0000,1),(90,'default','MH03-XL-Blue',100.0000,1),(91,'default','MH03-XL-Green',100.0000,1),(92,'default','MH03',0.0000,1),(93,'default','MH04-XS-Green',100.0000,1),(94,'default','MH04-XS-White',100.0000,1),(95,'default','MH04-XS-Yellow',100.0000,1),(96,'default','MH04-S-Green',100.0000,1),(97,'default','MH04-S-White',100.0000,1),(98,'default','MH04-S-Yellow',100.0000,1),(99,'default','MH04-M-Green',100.0000,1),(100,'default','MH04-M-White',100.0000,1),(101,'default','MH04-M-Yellow',100.0000,1),(102,'default','MH04-L-Green',100.0000,1),(103,'default','MH04-L-White',100.0000,1),(104,'default','MH04-L-Yellow',100.0000,1),(105,'default','MH04-XL-Green',100.0000,1),(106,'default','MH04-XL-White',100.0000,1),(107,'default','MH04-XL-Yellow',100.0000,1),(108,'default','MH04',0.0000,1),(109,'default','MH05-XS-Green',100.0000,1),(110,'default','MH05-XS-Red',100.0000,1),(111,'default','MH05-XS-White',100.0000,1),(112,'default','MH05-S-Green',100.0000,1),(113,'default','MH05-S-Red',100.0000,1),(114,'default','MH05-S-White',100.0000,1),(115,'default','MH05-M-Green',100.0000,1),(116,'default','MH05-M-Red',100.0000,1),(117,'default','MH05-M-White',100.0000,1),(118,'default','MH05-L-Green',100.0000,1),(119,'default','MH05-L-Red',100.0000,1),(120,'default','MH05-L-White',100.0000,1),(121,'default','MH05-XL-Green',100.0000,1),(122,'default','MH05-XL-Red',100.0000,1),(123,'default','MH05-XL-White',100.0000,1),(124,'default','MH05',0.0000,1),(125,'default','MH06-XS-Black',100.0000,1),(126,'default','MH06-XS-Blue',100.0000,1),(127,'default','MH06-XS-Purple',100.0000,1),(128,'default','MH06-S-Black',100.0000,1),(129,'default','MH06-S-Blue',100.0000,1),(130,'default','MH06-S-Purple',100.0000,1),(131,'default','MH06-M-Black',100.0000,1),(132,'default','MH06-M-Blue',100.0000,1),(133,'default','MH06-M-Purple',100.0000,1),(134,'default','MH06-L-Black',100.0000,1),(135,'default','MH06-L-Blue',100.0000,1),(136,'default','MH06-L-Purple',100.0000,1),(137,'default','MH06-XL-Black',100.0000,1),(138,'default','MH06-XL-Blue',100.0000,1),(139,'default','MH06-XL-Purple',100.0000,1),(140,'default','MH06',0.0000,1),(141,'default','MH07-XS-Black',100.0000,1),(142,'default','MH07-XS-Gray',100.0000,1),(143,'default','MH07-XS-Green',100.0000,1),(144,'default','MH07-S-Black',100.0000,1),(145,'default','MH07-S-Gray',100.0000,1),(146,'default','MH07-S-Green',100.0000,1),(147,'default','MH07-M-Black',100.0000,1),(148,'default','MH07-M-Gray',100.0000,1),(149,'default','MH07-M-Green',100.0000,1),(150,'default','MH07-L-Black',100.0000,1),(151,'default','MH07-L-Gray',100.0000,1),(152,'default','MH07-L-Green',100.0000,1),(153,'default','MH07-XL-Black',100.0000,1),(154,'default','MH07-XL-Gray',100.0000,1),(155,'default','MH07-XL-Green',100.0000,1),(156,'default','MH07',0.0000,1),(157,'default','MH08-XS-Brown',100.0000,1),(158,'default','MH08-XS-Purple',100.0000,1),(159,'default','MH08-XS-Red',100.0000,1),(160,'default','MH08-S-Brown',100.0000,1),(161,'default','MH08-S-Purple',100.0000,1),(162,'default','MH08-S-Red',100.0000,1),(163,'default','MH08-M-Brown',100.0000,1),(164,'default','MH08-M-Purple',100.0000,1),(165,'default','MH08-M-Red',100.0000,1),(166,'default','MH08-L-Brown',100.0000,1),(167,'default','MH08-L-Purple',100.0000,1),(168,'default','MH08-L-Red',100.0000,1),(169,'default','MH08-XL-Brown',100.0000,1),(170,'default','MH08-XL-Purple',100.0000,1),(171,'default','MH08-XL-Red',100.0000,1),(172,'default','MH08',0.0000,1),(173,'default','MH09-XS-Blue',100.0000,1),(174,'default','MH09-XS-Green',100.0000,1),(175,'default','MH09-XS-Red',100.0000,1),(176,'default','MH09-S-Blue',100.0000,1),(177,'default','MH09-S-Green',100.0000,1),(178,'default','MH09-S-Red',100.0000,1),(179,'default','MH09-M-Blue',100.0000,1),(180,'default','MH09-M-Green',100.0000,1),(181,'default','MH09-M-Red',100.0000,1),(182,'default','MH09-L-Blue',100.0000,1),(183,'default','MH09-L-Green',100.0000,1),(184,'default','MH09-L-Red',100.0000,1),(185,'default','MH09-XL-Blue',100.0000,1),(186,'default','MH09-XL-Green',100.0000,1),(187,'default','MH09-XL-Red',100.0000,1),(188,'default','MH09',0.0000,1),(189,'default','MH10-XS-Black',100.0000,1),(190,'default','MH10-XS-Blue',100.0000,1),(191,'default','MH10-XS-Red',100.0000,1),(192,'default','MH10-S-Black',100.0000,1),(193,'default','MH10-S-Blue',100.0000,1),(194,'default','MH10-S-Red',100.0000,1),(195,'default','MH10-M-Black',100.0000,1),(196,'default','MH10-M-Blue',100.0000,1),(197,'default','MH10-M-Red',100.0000,1),(198,'default','MH10-L-Black',100.0000,1),(199,'default','MH10-L-Blue',100.0000,1),(200,'default','MH10-L-Red',100.0000,1),(201,'default','MH10-XL-Black',100.0000,1),(202,'default','MH10-XL-Blue',100.0000,1),(203,'default','MH10-XL-Red',100.0000,1),(204,'default','MH10',0.0000,1),(205,'default','MH11-XS-Orange',100.0000,1),(206,'default','MH11-XS-Red',100.0000,1),(207,'default','MH11-XS-White',100.0000,1),(208,'default','MH11-S-Orange',100.0000,1),(209,'default','MH11-S-Red',100.0000,1),(210,'default','MH11-S-White',100.0000,1),(211,'default','MH11-M-Orange',100.0000,1),(212,'default','MH11-M-Red',100.0000,1),(213,'default','MH11-M-White',100.0000,1),(214,'default','MH11-L-Orange',100.0000,1),(215,'default','MH11-L-Red',100.0000,1),(216,'default','MH11-L-White',100.0000,1),(217,'default','MH11-XL-Orange',100.0000,1),(218,'default','MH11-XL-Red',100.0000,1),(219,'default','MH11-XL-White',100.0000,1),(220,'default','MH11',0.0000,1),(221,'default','MH12-XS-Blue',100.0000,1),(222,'default','MH12-XS-Green',100.0000,1),(223,'default','MH12-XS-Red',100.0000,1),(224,'default','MH12-S-Blue',100.0000,1),(225,'default','MH12-S-Green',100.0000,1),(226,'default','MH12-S-Red',100.0000,1),(227,'default','MH12-M-Blue',100.0000,1),(228,'default','MH12-M-Green',100.0000,1),(229,'default','MH12-M-Red',100.0000,1),(230,'default','MH12-L-Blue',100.0000,1),(231,'default','MH12-L-Green',100.0000,1),(232,'default','MH12-L-Red',100.0000,1),(233,'default','MH12-XL-Blue',100.0000,1),(234,'default','MH12-XL-Green',100.0000,1),(235,'default','MH12-XL-Red',100.0000,1),(236,'default','MH12',0.0000,1),(237,'default','MH13-XS-Blue',100.0000,1),(238,'default','MH13-XS-Green',100.0000,1),(239,'default','MH13-XS-Lavender',100.0000,1),(240,'default','MH13-S-Blue',100.0000,1),(241,'default','MH13-S-Green',100.0000,1),(242,'default','MH13-S-Lavender',100.0000,1),(243,'default','MH13-M-Blue',100.0000,1),(244,'default','MH13-M-Green',100.0000,1),(245,'default','MH13-M-Lavender',100.0000,1),(246,'default','MH13-L-Blue',100.0000,1),(247,'default','MH13-L-Green',100.0000,1),(248,'default','MH13-L-Lavender',100.0000,1),(249,'default','MH13-XL-Blue',100.0000,1),(250,'default','MH13-XL-Green',100.0000,1),(251,'default','MH13-XL-Lavender',100.0000,1),(252,'default','MH13',0.0000,1),(253,'default','MJ01-XS-Orange',100.0000,1),(254,'default','MJ01-XS-Red',100.0000,1),(255,'default','MJ01-XS-Yellow',100.0000,1),(256,'default','MJ01-S-Orange',100.0000,1),(257,'default','MJ01-S-Red',100.0000,1),(258,'default','MJ01-S-Yellow',100.0000,1),(259,'default','MJ01-M-Orange',100.0000,1),(260,'default','MJ01-M-Red',100.0000,1),(261,'default','MJ01-M-Yellow',100.0000,1),(262,'default','MJ01-L-Orange',100.0000,1),(263,'default','MJ01-L-Red',100.0000,1),(264,'default','MJ01-L-Yellow',100.0000,1),(265,'default','MJ01-XL-Orange',100.0000,1),(266,'default','MJ01-XL-Red',100.0000,1),(267,'default','MJ01-XL-Yellow',100.0000,1),(268,'default','MJ01',0.0000,1),(269,'default','MJ02-XS-Green',100.0000,1),(270,'default','MJ02-XS-Orange',100.0000,1),(271,'default','MJ02-XS-Red',100.0000,1),(272,'default','MJ02-S-Green',100.0000,1),(273,'default','MJ02-S-Orange',100.0000,1),(274,'default','MJ02-S-Red',100.0000,1),(275,'default','MJ02-M-Green',100.0000,1),(276,'default','MJ02-M-Orange',100.0000,1),(277,'default','MJ02-M-Red',100.0000,1),(278,'default','MJ02-L-Green',100.0000,1),(279,'default','MJ02-L-Orange',100.0000,1),(280,'default','MJ02-L-Red',100.0000,1),(281,'default','MJ02-XL-Green',100.0000,1),(282,'default','MJ02-XL-Orange',100.0000,1),(283,'default','MJ02-XL-Red',100.0000,1),(284,'default','MJ02',0.0000,1),(285,'default','MJ04-XS-Black',100.0000,1),(286,'default','MJ04-XS-Blue',100.0000,1),(287,'default','MJ04-XS-Purple',100.0000,1),(288,'default','MJ04-S-Black',100.0000,1),(289,'default','MJ04-S-Blue',100.0000,1),(290,'default','MJ04-S-Purple',100.0000,1),(291,'default','MJ04-M-Black',100.0000,1),(292,'default','MJ04-M-Blue',100.0000,1),(293,'default','MJ04-M-Purple',100.0000,1),(294,'default','MJ04-L-Black',100.0000,1),(295,'default','MJ04-L-Blue',100.0000,1),(296,'default','MJ04-L-Purple',100.0000,1),(297,'default','MJ04-XL-Black',100.0000,1),(298,'default','MJ04-XL-Blue',100.0000,1),(299,'default','MJ04-XL-Purple',100.0000,1),(300,'default','MJ04',0.0000,1),(301,'default','MJ07-XS-Black',100.0000,1),(302,'default','MJ07-XS-Red',100.0000,1),(303,'default','MJ07-XS-Yellow',100.0000,1),(304,'default','MJ07-S-Black',100.0000,1),(305,'default','MJ07-S-Red',100.0000,1),(306,'default','MJ07-S-Yellow',100.0000,1),(307,'default','MJ07-M-Black',100.0000,1),(308,'default','MJ07-M-Red',100.0000,1),(309,'default','MJ07-M-Yellow',100.0000,1),(310,'default','MJ07-L-Black',100.0000,1),(311,'default','MJ07-L-Red',100.0000,1),(312,'default','MJ07-L-Yellow',100.0000,1),(313,'default','MJ07-XL-Black',100.0000,1),(314,'default','MJ07-XL-Red',100.0000,1),(315,'default','MJ07-XL-Yellow',100.0000,1),(316,'default','MJ07',0.0000,1),(317,'default','MJ08-XS-Blue',100.0000,1),(318,'default','MJ08-XS-Gray',100.0000,1),(319,'default','MJ08-XS-Green',100.0000,1),(320,'default','MJ08-S-Blue',100.0000,1),(321,'default','MJ08-S-Gray',100.0000,1),(322,'default','MJ08-S-Green',100.0000,1),(323,'default','MJ08-M-Blue',100.0000,1),(324,'default','MJ08-M-Gray',100.0000,1),(325,'default','MJ08-M-Green',100.0000,1),(326,'default','MJ08-L-Blue',100.0000,1),(327,'default','MJ08-L-Gray',100.0000,1),(328,'default','MJ08-L-Green',100.0000,1),(329,'default','MJ08-XL-Blue',100.0000,1),(330,'default','MJ08-XL-Gray',100.0000,1),(331,'default','MJ08-XL-Green',100.0000,1),(332,'default','MJ08',0.0000,1),(333,'default','MJ09-XS-Blue',100.0000,1),(334,'default','MJ09-XS-White',100.0000,1),(335,'default','MJ09-XS-Yellow',100.0000,1),(336,'default','MJ09-S-Blue',100.0000,1),(337,'default','MJ09-S-White',100.0000,1),(338,'default','MJ09-S-Yellow',100.0000,1),(339,'default','MJ09-M-Blue',100.0000,1),(340,'default','MJ09-M-White',100.0000,1),(341,'default','MJ09-M-Yellow',100.0000,1),(342,'default','MJ09-L-Blue',100.0000,1),(343,'default','MJ09-L-White',100.0000,1),(344,'default','MJ09-L-Yellow',100.0000,1),(345,'default','MJ09-XL-Blue',100.0000,1),(346,'default','MJ09-XL-White',100.0000,1),(347,'default','MJ09-XL-Yellow',100.0000,1),(348,'default','MJ09',0.0000,1),(349,'default','MJ10-XS-Black',100.0000,1),(350,'default','MJ10-XS-Orange',100.0000,1),(351,'default','MJ10-XS-Red',100.0000,1),(352,'default','MJ10-S-Black',100.0000,1),(353,'default','MJ10-S-Orange',100.0000,1),(354,'default','MJ10-S-Red',100.0000,1),(355,'default','MJ10-M-Black',100.0000,1),(356,'default','MJ10-M-Orange',100.0000,1),(357,'default','MJ10-M-Red',100.0000,1),(358,'default','MJ10-L-Black',100.0000,1),(359,'default','MJ10-L-Orange',100.0000,1),(360,'default','MJ10-L-Red',100.0000,1),(361,'default','MJ10-XL-Black',100.0000,1),(362,'default','MJ10-XL-Orange',100.0000,1),(363,'default','MJ10-XL-Red',100.0000,1),(364,'default','MJ10',0.0000,1),(365,'default','MJ11-XS-Black',100.0000,1),(366,'default','MJ11-XS-Green',100.0000,1),(367,'default','MJ11-XS-Red',100.0000,1),(368,'default','MJ11-S-Black',100.0000,1),(369,'default','MJ11-S-Green',100.0000,1),(370,'default','MJ11-S-Red',100.0000,1),(371,'default','MJ11-M-Black',100.0000,1),(372,'default','MJ11-M-Green',100.0000,1),(373,'default','MJ11-M-Red',100.0000,1),(374,'default','MJ11-L-Black',100.0000,1),(375,'default','MJ11-L-Green',100.0000,1),(376,'default','MJ11-L-Red',100.0000,1),(377,'default','MJ11-XL-Black',100.0000,1),(378,'default','MJ11-XL-Green',100.0000,1),(379,'default','MJ11-XL-Red',100.0000,1),(380,'default','MJ11',0.0000,1),(381,'default','MJ06-XS-Blue',100.0000,1),(382,'default','MJ06-XS-Green',100.0000,1),(383,'default','MJ06-XS-Purple',100.0000,1),(384,'default','MJ06-S-Blue',100.0000,1),(385,'default','MJ06-S-Green',100.0000,1),(386,'default','MJ06-S-Purple',100.0000,1),(387,'default','MJ06-M-Blue',100.0000,1),(388,'default','MJ06-M-Green',100.0000,1),(389,'default','MJ06-M-Purple',100.0000,1),(390,'default','MJ06-L-Blue',100.0000,1),(391,'default','MJ06-L-Green',100.0000,1),(392,'default','MJ06-L-Purple',100.0000,1),(393,'default','MJ06-XL-Blue',100.0000,1),(394,'default','MJ06-XL-Green',100.0000,1),(395,'default','MJ06-XL-Purple',100.0000,1),(396,'default','MJ06',0.0000,1),(397,'default','MJ03-XS-Black',100.0000,1),(398,'default','MJ03-XS-Green',100.0000,1),(399,'default','MJ03-XS-Red',100.0000,1),(400,'default','MJ03-S-Black',100.0000,1),(401,'default','MJ03-S-Green',100.0000,1),(402,'default','MJ03-S-Red',100.0000,1),(403,'default','MJ03-M-Black',100.0000,1),(404,'default','MJ03-M-Green',100.0000,1),(405,'default','MJ03-M-Red',100.0000,1),(406,'default','MJ03-L-Black',100.0000,1),(407,'default','MJ03-L-Green',100.0000,1),(408,'default','MJ03-L-Red',100.0000,1),(409,'default','MJ03-XL-Black',100.0000,1),(410,'default','MJ03-XL-Green',100.0000,1),(411,'default','MJ03-XL-Red',100.0000,1),(412,'default','MJ03',0.0000,1),(413,'default','MJ12-XS-Black',100.0000,1),(414,'default','MJ12-XS-Blue',100.0000,1),(415,'default','MJ12-XS-Orange',100.0000,1),(416,'default','MJ12-S-Black',100.0000,1),(417,'default','MJ12-S-Blue',100.0000,1),(418,'default','MJ12-S-Orange',100.0000,1),(419,'default','MJ12-M-Black',100.0000,1),(420,'default','MJ12-M-Blue',100.0000,1),(421,'default','MJ12-M-Orange',100.0000,1),(422,'default','MJ12-L-Black',100.0000,1),(423,'default','MJ12-L-Blue',100.0000,1),(424,'default','MJ12-L-Orange',100.0000,1),(425,'default','MJ12-XL-Black',100.0000,1),(426,'default','MJ12-XL-Blue',100.0000,1),(427,'default','MJ12-XL-Orange',100.0000,1),(428,'default','MJ12',0.0000,1),(429,'default','MS04-XS-Black',100.0000,1),(430,'default','MS04-XS-Orange',100.0000,1),(431,'default','MS04-XS-Red',100.0000,1),(432,'default','MS04-S-Black',100.0000,1),(433,'default','MS04-S-Orange',100.0000,1),(434,'default','MS04-S-Red',100.0000,1),(435,'default','MS04-M-Black',100.0000,1),(436,'default','MS04-M-Orange',100.0000,1),(437,'default','MS04-M-Red',100.0000,1),(438,'default','MS04-L-Black',100.0000,1),(439,'default','MS04-L-Orange',100.0000,1),(440,'default','MS04-L-Red',100.0000,1),(441,'default','MS04-XL-Black',100.0000,1),(442,'default','MS04-XL-Orange',100.0000,1),(443,'default','MS04-XL-Red',100.0000,1),(444,'default','MS04',0.0000,1),(445,'default','MS05-XS-Black',100.0000,1),(446,'default','MS05-XS-Blue',100.0000,1),(447,'default','MS05-XS-Purple',100.0000,1),(448,'default','MS05-S-Black',100.0000,1),(449,'default','MS05-S-Blue',100.0000,1),(450,'default','MS05-S-Purple',100.0000,1),(451,'default','MS05-M-Black',100.0000,1),(452,'default','MS05-M-Blue',100.0000,1),(453,'default','MS05-M-Purple',100.0000,1),(454,'default','MS05-L-Black',100.0000,1),(455,'default','MS05-L-Blue',100.0000,1),(456,'default','MS05-L-Purple',100.0000,1),(457,'default','MS05-XL-Black',100.0000,1),(458,'default','MS05-XL-Blue',100.0000,1),(459,'default','MS05-XL-Purple',100.0000,1),(460,'default','MS05',0.0000,1),(461,'default','MS09-XS-Black',100.0000,1),(462,'default','MS09-XS-Blue',100.0000,1),(463,'default','MS09-XS-Red',100.0000,1),(464,'default','MS09-S-Black',100.0000,1),(465,'default','MS09-S-Blue',100.0000,1),(466,'default','MS09-S-Red',100.0000,1),(467,'default','MS09-M-Black',100.0000,1),(468,'default','MS09-M-Blue',100.0000,1),(469,'default','MS09-M-Red',100.0000,1),(470,'default','MS09-L-Black',100.0000,1),(471,'default','MS09-L-Blue',100.0000,1),(472,'default','MS09-L-Red',100.0000,1),(473,'default','MS09-XL-Black',100.0000,1),(474,'default','MS09-XL-Blue',100.0000,1),(475,'default','MS09-XL-Red',100.0000,1),(476,'default','MS09',0.0000,1),(477,'default','MS11-XS-Blue',100.0000,1),(478,'default','MS11-XS-Green',100.0000,1),(479,'default','MS11-XS-Yellow',100.0000,1),(480,'default','MS11-S-Blue',100.0000,1),(481,'default','MS11-S-Green',100.0000,1),(482,'default','MS11-S-Yellow',100.0000,1),(483,'default','MS11-M-Blue',100.0000,1),(484,'default','MS11-M-Green',100.0000,1),(485,'default','MS11-M-Yellow',100.0000,1),(486,'default','MS11-L-Blue',100.0000,1),(487,'default','MS11-L-Green',100.0000,1),(488,'default','MS11-L-Yellow',100.0000,1),(489,'default','MS11-XL-Blue',100.0000,1),(490,'default','MS11-XL-Green',100.0000,1),(491,'default','MS11-XL-Yellow',100.0000,1),(492,'default','MS11',0.0000,1),(493,'default','MS12-XS-Black',100.0000,1),(494,'default','MS12-XS-Blue',100.0000,1),(495,'default','MS12-XS-Red',100.0000,1),(496,'default','MS12-S-Black',100.0000,1),(497,'default','MS12-S-Blue',100.0000,1),(498,'default','MS12-S-Red',100.0000,1),(499,'default','MS12-M-Black',100.0000,1),(500,'default','MS12-M-Blue',100.0000,1),(501,'default','MS12-M-Red',100.0000,1),(502,'default','MS12-L-Black',100.0000,1),(503,'default','MS12-L-Blue',100.0000,1),(504,'default','MS12-L-Red',100.0000,1),(505,'default','MS12-XL-Black',100.0000,1),(506,'default','MS12-XL-Blue',100.0000,1),(507,'default','MS12-XL-Red',100.0000,1),(508,'default','MS12',0.0000,1),(509,'default','MS03-XS-Gray',100.0000,1),(510,'default','MS03-XS-Green',100.0000,1),(511,'default','MS03-XS-Orange',100.0000,1),(512,'default','MS03-S-Gray',100.0000,1),(513,'default','MS03-S-Green',100.0000,1),(514,'default','MS03-S-Orange',100.0000,1),(515,'default','MS03-M-Gray',100.0000,1),(516,'default','MS03-M-Green',100.0000,1),(517,'default','MS03-M-Orange',100.0000,1),(518,'default','MS03-L-Gray',100.0000,1),(519,'default','MS03-L-Green',100.0000,1),(520,'default','MS03-L-Orange',100.0000,1),(521,'default','MS03-XL-Gray',100.0000,1),(522,'default','MS03-XL-Green',100.0000,1),(523,'default','MS03-XL-Orange',100.0000,1),(524,'default','MS03',0.0000,1),(525,'default','MS06-XS-Blue',100.0000,1),(526,'default','MS06-XS-Green',100.0000,1),(527,'default','MS06-XS-Yellow',100.0000,1),(528,'default','MS06-S-Blue',100.0000,1),(529,'default','MS06-S-Green',100.0000,1),(530,'default','MS06-S-Yellow',100.0000,1),(531,'default','MS06-M-Blue',100.0000,1),(532,'default','MS06-M-Green',100.0000,1),(533,'default','MS06-M-Yellow',100.0000,1),(534,'default','MS06-L-Blue',100.0000,1),(535,'default','MS06-L-Green',100.0000,1),(536,'default','MS06-L-Yellow',100.0000,1),(537,'default','MS06-XL-Blue',100.0000,1),(538,'default','MS06-XL-Green',100.0000,1),(539,'default','MS06-XL-Yellow',100.0000,1),(540,'default','MS06',0.0000,1),(541,'default','MS01-XS-Black',100.0000,1),(542,'default','MS01-XS-Brown',100.0000,1),(543,'default','MS01-XS-Yellow',100.0000,1),(544,'default','MS01-S-Black',100.0000,1),(545,'default','MS01-S-Brown',100.0000,1),(546,'default','MS01-S-Yellow',100.0000,1),(547,'default','MS01-M-Black',100.0000,1),(548,'default','MS01-M-Brown',100.0000,1),(549,'default','MS01-M-Yellow',100.0000,1),(550,'default','MS01-L-Black',100.0000,1),(551,'default','MS01-L-Brown',100.0000,1),(552,'default','MS01-L-Yellow',100.0000,1),(553,'default','MS01-XL-Black',100.0000,1),(554,'default','MS01-XL-Brown',100.0000,1),(555,'default','MS01-XL-Yellow',100.0000,1),(556,'default','MS01',0.0000,1),(557,'default','MS02-XS-Black',100.0000,1),(558,'default','MS02-XS-Blue',100.0000,1),(559,'default','MS02-XS-Gray',100.0000,1),(560,'default','MS02-S-Black',100.0000,1),(561,'default','MS02-S-Blue',100.0000,1),(562,'default','MS02-S-Gray',100.0000,1),(563,'default','MS02-M-Black',100.0000,1),(564,'default','MS02-M-Blue',100.0000,1),(565,'default','MS02-M-Gray',100.0000,1),(566,'default','MS02-L-Black',100.0000,1),(567,'default','MS02-L-Blue',100.0000,1),(568,'default','MS02-L-Gray',100.0000,1),(569,'default','MS02-XL-Black',100.0000,1),(570,'default','MS02-XL-Blue',100.0000,1),(571,'default','MS02-XL-Gray',100.0000,1),(572,'default','MS02',0.0000,1),(573,'default','MS10-XS-Black',100.0000,1),(574,'default','MS10-XS-Blue',100.0000,1),(575,'default','MS10-XS-Red',100.0000,1),(576,'default','MS10-S-Black',100.0000,1),(577,'default','MS10-S-Blue',100.0000,1),(578,'default','MS10-S-Red',100.0000,1),(579,'default','MS10-M-Black',100.0000,1),(580,'default','MS10-M-Blue',100.0000,1),(581,'default','MS10-M-Red',100.0000,1),(582,'default','MS10-L-Black',100.0000,1),(583,'default','MS10-L-Blue',100.0000,1),(584,'default','MS10-L-Red',100.0000,1),(585,'default','MS10-XL-Black',100.0000,1),(586,'default','MS10-XL-Blue',100.0000,1),(587,'default','MS10-XL-Red',100.0000,1),(588,'default','MS10',0.0000,1),(589,'default','MS07-XS-Black',100.0000,1),(590,'default','MS07-XS-Green',100.0000,1),(591,'default','MS07-XS-White',100.0000,1),(592,'default','MS07-S-Black',100.0000,1),(593,'default','MS07-S-Green',100.0000,1),(594,'default','MS07-S-White',100.0000,1),(595,'default','MS07-M-Black',100.0000,1),(596,'default','MS07-M-Green',100.0000,1),(597,'default','MS07-M-White',100.0000,1),(598,'default','MS07-L-Black',100.0000,1),(599,'default','MS07-L-Green',100.0000,1),(600,'default','MS07-L-White',100.0000,1),(601,'default','MS07-XL-Black',100.0000,1),(602,'default','MS07-XL-Green',100.0000,1),(603,'default','MS07-XL-White',100.0000,1),(604,'default','MS07',0.0000,1),(605,'default','MS08-XS-Black',100.0000,1),(606,'default','MS08-XS-Blue',100.0000,1),(607,'default','MS08-XS-Red',100.0000,1),(608,'default','MS08-S-Black',100.0000,1),(609,'default','MS08-S-Blue',100.0000,1),(610,'default','MS08-S-Red',100.0000,1),(611,'default','MS08-M-Black',100.0000,1),(612,'default','MS08-M-Blue',100.0000,1),(613,'default','MS08-M-Red',100.0000,1),(614,'default','MS08-L-Black',100.0000,1),(615,'default','MS08-L-Blue',100.0000,1),(616,'default','MS08-L-Red',100.0000,1),(617,'default','MS08-XL-Black',100.0000,1),(618,'default','MS08-XL-Blue',100.0000,1),(619,'default','MS08-XL-Red',100.0000,1),(620,'default','MS08',0.0000,1),(621,'default','MT01-XS-Gray',100.0000,1),(622,'default','MT01-XS-Orange',100.0000,1),(623,'default','MT01-XS-Red',100.0000,1),(624,'default','MT01-S-Gray',100.0000,1),(625,'default','MT01-S-Orange',100.0000,1),(626,'default','MT01-S-Red',100.0000,1),(627,'default','MT01-M-Gray',100.0000,1),(628,'default','MT01-M-Orange',100.0000,1),(629,'default','MT01-M-Red',100.0000,1),(630,'default','MT01-L-Gray',100.0000,1),(631,'default','MT01-L-Orange',100.0000,1),(632,'default','MT01-L-Red',100.0000,1),(633,'default','MT01-XL-Gray',100.0000,1),(634,'default','MT01-XL-Orange',100.0000,1),(635,'default','MT01-XL-Red',100.0000,1),(636,'default','MT01',0.0000,1),(637,'default','MT02-XS-Gray',100.0000,1),(638,'default','MT02-XS-Red',100.0000,1),(639,'default','MT02-XS-White',100.0000,1),(640,'default','MT02-S-Gray',100.0000,1),(641,'default','MT02-S-Red',100.0000,1),(642,'default','MT02-S-White',100.0000,1),(643,'default','MT02-M-Gray',100.0000,1),(644,'default','MT02-M-Red',100.0000,1),(645,'default','MT02-M-White',100.0000,1),(646,'default','MT02-L-Gray',100.0000,1),(647,'default','MT02-L-Red',100.0000,1),(648,'default','MT02-L-White',100.0000,1),(649,'default','MT02-XL-Gray',100.0000,1),(650,'default','MT02-XL-Red',100.0000,1),(651,'default','MT02-XL-White',100.0000,1),(652,'default','MT02',0.0000,1),(653,'default','MT03-XS-Blue',100.0000,1),(654,'default','MT03-XS-Red',100.0000,1),(655,'default','MT03-XS-Yellow',100.0000,1),(656,'default','MT03-S-Blue',100.0000,1),(657,'default','MT03-S-Red',100.0000,1),(658,'default','MT03-S-Yellow',100.0000,1),(659,'default','MT03-M-Blue',100.0000,1),(660,'default','MT03-M-Red',100.0000,1),(661,'default','MT03-M-Yellow',100.0000,1),(662,'default','MT03-L-Blue',100.0000,1),(663,'default','MT03-L-Red',100.0000,1),(664,'default','MT03-L-Yellow',100.0000,1),(665,'default','MT03-XL-Blue',100.0000,1),(666,'default','MT03-XL-Red',100.0000,1),(667,'default','MT03-XL-Yellow',100.0000,1),(668,'default','MT03',0.0000,1),(669,'default','MT04-XS-Blue',100.0000,1),(670,'default','MT04-S-Blue',100.0000,1),(671,'default','MT04-M-Blue',100.0000,1),(672,'default','MT04-L-Blue',100.0000,1),(673,'default','MT04-XL-Blue',100.0000,1),(674,'default','MT04',0.0000,1),(675,'default','MT05-XS-Blue',100.0000,1),(676,'default','MT05-S-Blue',100.0000,1),(677,'default','MT05-M-Blue',100.0000,1),(678,'default','MT05-L-Blue',100.0000,1),(679,'default','MT05-XL-Blue',100.0000,1),(680,'default','MT05',0.0000,1),(681,'default','MT06-XS-Black',100.0000,1),(682,'default','MT06-S-Black',100.0000,1),(683,'default','MT06-M-Black',100.0000,1),(684,'default','MT06-L-Black',100.0000,1),(685,'default','MT06-XL-Black',100.0000,1),(686,'default','MT06',0.0000,1),(687,'default','MT07-XS-Gray',100.0000,1),(688,'default','MT07-S-Gray',100.0000,1),(689,'default','MT07-M-Gray',100.0000,1),(690,'default','MT07-L-Gray',100.0000,1),(691,'default','MT07-XL-Gray',100.0000,1),(692,'default','MT07',0.0000,1),(693,'default','MT08-XS-Green',100.0000,1),(694,'default','MT08-S-Green',100.0000,1),(695,'default','MT08-M-Green',100.0000,1),(696,'default','MT08-L-Green',100.0000,1),(697,'default','MT08-XL-Green',100.0000,1),(698,'default','MT08',0.0000,1),(699,'default','MT09-XS-Blue',100.0000,1),(700,'default','MT09-S-Blue',100.0000,1),(701,'default','MT09-M-Blue',100.0000,1),(702,'default','MT09-L-Blue',100.0000,1),(703,'default','MT09-XL-Blue',100.0000,1),(704,'default','MT09',0.0000,1),(705,'default','MT10-XS-Yellow',100.0000,1),(706,'default','MT10-S-Yellow',100.0000,1),(707,'default','MT10-M-Yellow',100.0000,1),(708,'default','MT10-L-Yellow',100.0000,1),(709,'default','MT10-XL-Yellow',100.0000,1),(710,'default','MT10',0.0000,1),(711,'default','MT11-XS-Blue',100.0000,1),(712,'default','MT11-S-Blue',100.0000,1),(713,'default','MT11-M-Blue',100.0000,1),(714,'default','MT11-L-Blue',100.0000,1),(715,'default','MT11-XL-Blue',100.0000,1),(716,'default','MT11',0.0000,1),(717,'default','MT12-XS-Blue',100.0000,1),(718,'default','MT12-S-Blue',100.0000,1),(719,'default','MT12-M-Blue',100.0000,1),(720,'default','MT12-L-Blue',100.0000,1),(721,'default','MT12-XL-Blue',100.0000,1),(722,'default','MT12',0.0000,1),(723,'default','MP01-32-Black',100.0000,1),(724,'default','MP01-32-Gray',100.0000,1),(725,'default','MP01-32-Purple',100.0000,1),(726,'default','MP01-33-Black',100.0000,1),(727,'default','MP01-33-Gray',100.0000,1),(728,'default','MP01-33-Purple',100.0000,1),(729,'default','MP01-34-Black',100.0000,1),(730,'default','MP01-34-Gray',100.0000,1),(731,'default','MP01-34-Purple',100.0000,1),(732,'default','MP01-36-Black',100.0000,1),(733,'default','MP01-36-Gray',100.0000,1),(734,'default','MP01-36-Purple',100.0000,1),(735,'default','MP01',0.0000,1),(736,'default','MP02-32-Blue',100.0000,1),(737,'default','MP02-32-Gray',100.0000,1),(738,'default','MP02-32-Red',100.0000,1),(739,'default','MP02-33-Blue',100.0000,1),(740,'default','MP02-33-Gray',100.0000,1),(741,'default','MP02-33-Red',100.0000,1),(742,'default','MP02-34-Blue',100.0000,1),(743,'default','MP02-34-Gray',100.0000,1),(744,'default','MP02-34-Red',100.0000,1),(745,'default','MP02-36-Blue',100.0000,1),(746,'default','MP02-36-Gray',100.0000,1),(747,'default','MP02-36-Red',100.0000,1),(748,'default','MP02',0.0000,1),(749,'default','MP03-32-Blue',100.0000,1),(750,'default','MP03-32-Green',100.0000,1),(751,'default','MP03-32-Red',100.0000,1),(752,'default','MP03-33-Blue',100.0000,1),(753,'default','MP03-33-Green',100.0000,1),(754,'default','MP03-33-Red',100.0000,1),(755,'default','MP03-34-Blue',100.0000,1),(756,'default','MP03-34-Green',100.0000,1),(757,'default','MP03-34-Red',100.0000,1),(758,'default','MP03-36-Blue',100.0000,1),(759,'default','MP03-36-Green',100.0000,1),(760,'default','MP03-36-Red',100.0000,1),(761,'default','MP03',0.0000,1),(762,'default','MP04-32-Black',100.0000,1),(763,'default','MP04-32-Gray',100.0000,1),(764,'default','MP04-32-Green',100.0000,1),(765,'default','MP04-33-Black',100.0000,1),(766,'default','MP04-33-Gray',100.0000,1),(767,'default','MP04-33-Green',100.0000,1),(768,'default','MP04-34-Black',100.0000,1),(769,'default','MP04-34-Gray',100.0000,1),(770,'default','MP04-34-Green',100.0000,1),(771,'default','MP04-36-Black',100.0000,1),(772,'default','MP04-36-Gray',100.0000,1),(773,'default','MP04-36-Green',100.0000,1),(774,'default','MP04',0.0000,1),(775,'default','MP05-32-Black',100.0000,1),(776,'default','MP05-32-Blue',100.0000,1),(777,'default','MP05-32-Green',100.0000,1),(778,'default','MP05-33-Black',100.0000,1),(779,'default','MP05-33-Blue',100.0000,1),(780,'default','MP05-33-Green',100.0000,1),(781,'default','MP05-34-Black',100.0000,1),(782,'default','MP05-34-Blue',100.0000,1),(783,'default','MP05-34-Green',100.0000,1),(784,'default','MP05-36-Black',100.0000,1),(785,'default','MP05-36-Blue',100.0000,1),(786,'default','MP05-36-Green',100.0000,1),(787,'default','MP05',0.0000,1),(788,'default','MP06-32-Gray',100.0000,1),(789,'default','MP06-32-Green',100.0000,1),(790,'default','MP06-32-Orange',100.0000,1),(791,'default','MP06-33-Gray',100.0000,1),(792,'default','MP06-33-Green',100.0000,1),(793,'default','MP06-33-Orange',100.0000,1),(794,'default','MP06-34-Gray',100.0000,1),(795,'default','MP06-34-Green',100.0000,1),(796,'default','MP06-34-Orange',100.0000,1),(797,'default','MP06-36-Gray',100.0000,1),(798,'default','MP06-36-Green',100.0000,1),(799,'default','MP06-36-Orange',100.0000,1),(800,'default','MP06',0.0000,1),(801,'default','MP07-32-Black',100.0000,1),(802,'default','MP07-32-Blue',100.0000,1),(803,'default','MP07-32-Purple',100.0000,1),(804,'default','MP07-33-Black',100.0000,1),(805,'default','MP07-33-Blue',100.0000,1),(806,'default','MP07-33-Purple',100.0000,1),(807,'default','MP07-34-Black',100.0000,1),(808,'default','MP07-34-Blue',100.0000,1),(809,'default','MP07-34-Purple',100.0000,1),(810,'default','MP07-36-Black',100.0000,1),(811,'default','MP07-36-Blue',100.0000,1),(812,'default','MP07-36-Purple',100.0000,1),(813,'default','MP07',0.0000,1),(814,'default','MP08-32-Blue',100.0000,1),(815,'default','MP08-32-Green',100.0000,1),(816,'default','MP08-32-Red',100.0000,1),(817,'default','MP08-33-Blue',100.0000,1),(818,'default','MP08-33-Green',100.0000,1),(819,'default','MP08-33-Red',100.0000,1),(820,'default','MP08-34-Blue',100.0000,1),(821,'default','MP08-34-Green',100.0000,1),(822,'default','MP08-34-Red',100.0000,1),(823,'default','MP08-36-Blue',100.0000,1),(824,'default','MP08-36-Green',100.0000,1),(825,'default','MP08-36-Red',100.0000,1),(826,'default','MP08',0.0000,1),(827,'default','MP09-32-Black',100.0000,1),(828,'default','MP09-32-Blue',100.0000,1),(829,'default','MP09-32-Red',100.0000,1),(830,'default','MP09-33-Black',100.0000,1),(831,'default','MP09-33-Blue',100.0000,1),(832,'default','MP09-33-Red',100.0000,1),(833,'default','MP09-34-Black',100.0000,1),(834,'default','MP09-34-Blue',100.0000,1),(835,'default','MP09-34-Red',100.0000,1),(836,'default','MP09-36-Black',100.0000,1),(837,'default','MP09-36-Blue',100.0000,1),(838,'default','MP09-36-Red',100.0000,1),(839,'default','MP09',0.0000,1),(840,'default','MP10-32-Black',100.0000,1),(841,'default','MP10-32-Blue',100.0000,1),(842,'default','MP10-32-Green',100.0000,1),(843,'default','MP10-33-Black',100.0000,1),(844,'default','MP10-33-Blue',100.0000,1),(845,'default','MP10-33-Green',100.0000,1),(846,'default','MP10-34-Black',100.0000,1),(847,'default','MP10-34-Blue',100.0000,1),(848,'default','MP10-34-Green',100.0000,1),(849,'default','MP10-36-Black',100.0000,1),(850,'default','MP10-36-Blue',100.0000,1),(851,'default','MP10-36-Green',100.0000,1),(852,'default','MP10',0.0000,1),(853,'default','MP11-32-Blue',100.0000,1),(854,'default','MP11-32-Brown',100.0000,1),(855,'default','MP11-32-Green',100.0000,1),(856,'default','MP11-33-Blue',100.0000,1),(857,'default','MP11-33-Brown',100.0000,1),(858,'default','MP11-33-Green',100.0000,1),(859,'default','MP11-34-Blue',100.0000,1),(860,'default','MP11-34-Brown',100.0000,1),(861,'default','MP11-34-Green',100.0000,1),(862,'default','MP11-36-Blue',100.0000,1),(863,'default','MP11-36-Brown',100.0000,1),(864,'default','MP11-36-Green',100.0000,1),(865,'default','MP11',0.0000,1),(866,'default','MP12-32-Black',100.0000,1),(867,'default','MP12-32-Blue',100.0000,1),(868,'default','MP12-32-Red',100.0000,1),(869,'default','MP12-33-Black',100.0000,1),(870,'default','MP12-33-Blue',100.0000,1),(871,'default','MP12-33-Red',100.0000,1),(872,'default','MP12-34-Black',100.0000,1),(873,'default','MP12-34-Blue',100.0000,1),(874,'default','MP12-34-Red',100.0000,1),(875,'default','MP12-36-Black',100.0000,1),(876,'default','MP12-36-Blue',100.0000,1),(877,'default','MP12-36-Red',100.0000,1),(878,'default','MP12',0.0000,1),(879,'default','MSH01-32-Black',100.0000,1),(880,'default','MSH01-32-Blue',100.0000,1),(881,'default','MSH01-32-Red',100.0000,1),(882,'default','MSH01-33-Black',100.0000,1),(883,'default','MSH01-33-Blue',100.0000,1),(884,'default','MSH01-33-Red',100.0000,1),(885,'default','MSH01-34-Black',100.0000,1),(886,'default','MSH01-34-Blue',100.0000,1),(887,'default','MSH01-34-Red',100.0000,1),(888,'default','MSH01-36-Black',100.0000,1),(889,'default','MSH01-36-Blue',100.0000,1),(890,'default','MSH01-36-Red',100.0000,1),(891,'default','MSH01',0.0000,1),(892,'default','MSH02-32-Black',100.0000,1),(893,'default','MSH02-33-Black',100.0000,1),(894,'default','MSH02-34-Black',100.0000,1),(895,'default','MSH02-36-Black',100.0000,1),(896,'default','MSH02',0.0000,1),(897,'default','MSH03-32-Black',100.0000,1),(898,'default','MSH03-32-Blue',100.0000,1),(899,'default','MSH03-32-Green',100.0000,1),(900,'default','MSH03-33-Black',100.0000,1),(901,'default','MSH03-33-Blue',100.0000,1),(902,'default','MSH03-33-Green',100.0000,1),(903,'default','MSH03-34-Black',100.0000,1),(904,'default','MSH03-34-Blue',100.0000,1),(905,'default','MSH03-34-Green',100.0000,1),(906,'default','MSH03-36-Black',100.0000,1),(907,'default','MSH03-36-Blue',100.0000,1),(908,'default','MSH03-36-Green',100.0000,1),(909,'default','MSH03',0.0000,1),(910,'default','MSH04-32-Gray',100.0000,1),(911,'default','MSH04-32-Purple',100.0000,1),(912,'default','MSH04-32-Yellow',100.0000,1),(913,'default','MSH04-33-Gray',100.0000,1),(914,'default','MSH04-33-Purple',100.0000,1),(915,'default','MSH04-33-Yellow',100.0000,1),(916,'default','MSH04-34-Gray',100.0000,1),(917,'default','MSH04-34-Purple',100.0000,1),(918,'default','MSH04-34-Yellow',100.0000,1),(919,'default','MSH04-36-Gray',100.0000,1),(920,'default','MSH04-36-Purple',100.0000,1),(921,'default','MSH04-36-Yellow',100.0000,1),(922,'default','MSH04',0.0000,1),(923,'default','MSH05-32-Black',100.0000,1),(924,'default','MSH05-32-Blue',100.0000,1),(925,'default','MSH05-32-Gray',100.0000,1),(926,'default','MSH05-33-Black',100.0000,1),(927,'default','MSH05-33-Blue',100.0000,1),(928,'default','MSH05-33-Gray',100.0000,1),(929,'default','MSH05-34-Black',100.0000,1),(930,'default','MSH05-34-Blue',100.0000,1),(931,'default','MSH05-34-Gray',100.0000,1),(932,'default','MSH05-36-Black',100.0000,1),(933,'default','MSH05-36-Blue',100.0000,1),(934,'default','MSH05-36-Gray',100.0000,1),(935,'default','MSH05',0.0000,1),(936,'default','MSH06-32-Blue',100.0000,1),(937,'default','MSH06-32-Gray',100.0000,1),(938,'default','MSH06-32-Red',100.0000,1),(939,'default','MSH06-33-Blue',100.0000,1),(940,'default','MSH06-33-Gray',100.0000,1),(941,'default','MSH06-33-Red',100.0000,1),(942,'default','MSH06-34-Blue',100.0000,1),(943,'default','MSH06-34-Gray',100.0000,1),(944,'default','MSH06-34-Red',100.0000,1),(945,'default','MSH06-36-Blue',100.0000,1),(946,'default','MSH06-36-Gray',100.0000,1),(947,'default','MSH06-36-Red',100.0000,1),(948,'default','MSH06',0.0000,1),(949,'default','MSH07-32-Black',100.0000,1),(950,'default','MSH07-32-Blue',100.0000,1),(951,'default','MSH07-32-Purple',100.0000,1),(952,'default','MSH07-33-Black',100.0000,1),(953,'default','MSH07-33-Blue',100.0000,1),(954,'default','MSH07-33-Purple',100.0000,1),(955,'default','MSH07-34-Black',100.0000,1),(956,'default','MSH07-34-Blue',100.0000,1),(957,'default','MSH07-34-Purple',100.0000,1),(958,'default','MSH07-36-Black',100.0000,1),(959,'default','MSH07-36-Blue',100.0000,1),(960,'default','MSH07-36-Purple',100.0000,1),(961,'default','MSH07',0.0000,1),(962,'default','MSH08-32-Black',100.0000,1),(963,'default','MSH08-32-Blue',100.0000,1),(964,'default','MSH08-32-Green',100.0000,1),(965,'default','MSH08-33-Black',100.0000,1),(966,'default','MSH08-33-Blue',100.0000,1),(967,'default','MSH08-33-Green',100.0000,1),(968,'default','MSH08-34-Black',100.0000,1),(969,'default','MSH08-34-Blue',100.0000,1),(970,'default','MSH08-34-Green',100.0000,1),(971,'default','MSH08-36-Black',100.0000,1),(972,'default','MSH08-36-Blue',100.0000,1),(973,'default','MSH08-36-Green',100.0000,1),(974,'default','MSH08',0.0000,1),(975,'default','MSH09-32-Black',100.0000,1),(976,'default','MSH09-32-Blue',100.0000,1),(977,'default','MSH09-32-Green',100.0000,1),(978,'default','MSH09-33-Black',100.0000,1),(979,'default','MSH09-33-Blue',100.0000,1),(980,'default','MSH09-33-Green',100.0000,1),(981,'default','MSH09-34-Black',100.0000,1),(982,'default','MSH09-34-Blue',100.0000,1),(983,'default','MSH09-34-Green',100.0000,1),(984,'default','MSH09-36-Black',100.0000,1),(985,'default','MSH09-36-Blue',100.0000,1),(986,'default','MSH09-36-Green',100.0000,1),(987,'default','MSH09',0.0000,1),(988,'default','MSH10-32-Blue',100.0000,1),(989,'default','MSH10-32-Green',100.0000,1),(990,'default','MSH10-32-Purple',100.0000,1),(991,'default','MSH10-33-Blue',100.0000,1),(992,'default','MSH10-33-Green',100.0000,1),(993,'default','MSH10-33-Purple',100.0000,1),(994,'default','MSH10-34-Blue',100.0000,1),(995,'default','MSH10-34-Green',100.0000,1),(996,'default','MSH10-34-Purple',100.0000,1),(997,'default','MSH10-36-Blue',100.0000,1),(998,'default','MSH10-36-Green',100.0000,1),(999,'default','MSH10-36-Purple',100.0000,1),(1000,'default','MSH10',0.0000,1),(1001,'default','MSH11-32-Black',100.0000,1),(1002,'default','MSH11-32-Blue',100.0000,1),(1003,'default','MSH11-32-Red',100.0000,1),(1004,'default','MSH11-33-Black',100.0000,1),(1005,'default','MSH11-33-Blue',100.0000,1),(1006,'default','MSH11-33-Red',100.0000,1),(1007,'default','MSH11-34-Black',100.0000,1),(1008,'default','MSH11-34-Blue',100.0000,1),(1009,'default','MSH11-34-Red',100.0000,1),(1010,'default','MSH11-36-Black',100.0000,1),(1011,'default','MSH11-36-Blue',100.0000,1),(1012,'default','MSH11-36-Red',100.0000,1),(1013,'default','MSH11',0.0000,1),(1014,'default','MSH12-32-Black',100.0000,1),(1015,'default','MSH12-32-Gray',100.0000,1),(1016,'default','MSH12-32-Red',100.0000,1),(1017,'default','MSH12-33-Black',100.0000,1),(1018,'default','MSH12-33-Gray',100.0000,1),(1019,'default','MSH12-33-Red',100.0000,1),(1020,'default','MSH12-34-Black',100.0000,1),(1021,'default','MSH12-34-Gray',100.0000,1),(1022,'default','MSH12-34-Red',100.0000,1),(1023,'default','MSH12-36-Black',100.0000,1),(1024,'default','MSH12-36-Gray',100.0000,1),(1025,'default','MSH12-36-Red',100.0000,1),(1026,'default','MSH12',0.0000,1),(1027,'default','WH01-XS-Green',100.0000,1),(1028,'default','WH01-XS-Orange',100.0000,1),(1029,'default','WH01-XS-Purple',100.0000,1),(1030,'default','WH01-S-Green',100.0000,1),(1031,'default','WH01-S-Orange',100.0000,1),(1032,'default','WH01-S-Purple',100.0000,1),(1033,'default','WH01-M-Green',100.0000,1),(1034,'default','WH01-M-Orange',100.0000,1),(1035,'default','WH01-M-Purple',100.0000,1),(1036,'default','WH01-L-Green',100.0000,1),(1037,'default','WH01-L-Orange',100.0000,1),(1038,'default','WH01-L-Purple',100.0000,1),(1039,'default','WH01-XL-Green',100.0000,1),(1040,'default','WH01-XL-Orange',100.0000,1),(1041,'default','WH01-XL-Purple',100.0000,1),(1042,'default','WH01',0.0000,1),(1043,'default','WH02-XS-Blue',100.0000,1),(1044,'default','WH02-XS-Green',100.0000,1),(1045,'default','WH02-XS-Orange',100.0000,1),(1046,'default','WH02-S-Blue',100.0000,1),(1047,'default','WH02-S-Green',100.0000,1),(1048,'default','WH02-S-Orange',100.0000,1),(1049,'default','WH02-M-Blue',100.0000,1),(1050,'default','WH02-M-Green',100.0000,1),(1051,'default','WH02-M-Orange',100.0000,1),(1052,'default','WH02-L-Blue',100.0000,1),(1053,'default','WH02-L-Green',100.0000,1),(1054,'default','WH02-L-Orange',100.0000,1),(1055,'default','WH02-XL-Blue',100.0000,1),(1056,'default','WH02-XL-Green',100.0000,1),(1057,'default','WH02-XL-Orange',100.0000,1),(1058,'default','WH02',0.0000,1),(1059,'default','WH03-XS-Green',100.0000,1),(1060,'default','WH03-XS-Purple',100.0000,1),(1061,'default','WH03-XS-Red',100.0000,1),(1062,'default','WH03-S-Green',100.0000,1),(1063,'default','WH03-S-Purple',100.0000,1),(1064,'default','WH03-S-Red',100.0000,1),(1065,'default','WH03-M-Green',100.0000,1),(1066,'default','WH03-M-Purple',100.0000,1),(1067,'default','WH03-M-Red',100.0000,1),(1068,'default','WH03-L-Green',100.0000,1),(1069,'default','WH03-L-Purple',100.0000,1),(1070,'default','WH03-L-Red',100.0000,1),(1071,'default','WH03-XL-Green',100.0000,1),(1072,'default','WH03-XL-Purple',100.0000,1),(1073,'default','WH03-XL-Red',100.0000,1),(1074,'default','WH03',0.0000,1),(1075,'default','WH04-XS-Blue',100.0000,1),(1076,'default','WH04-XS-Orange',100.0000,1),(1077,'default','WH04-XS-Purple',100.0000,1),(1078,'default','WH04-S-Blue',100.0000,1),(1079,'default','WH04-S-Orange',100.0000,1),(1080,'default','WH04-S-Purple',100.0000,1),(1081,'default','WH04-M-Blue',100.0000,1),(1082,'default','WH04-M-Orange',100.0000,1),(1083,'default','WH04-M-Purple',100.0000,1),(1084,'default','WH04-L-Blue',100.0000,1),(1085,'default','WH04-L-Orange',100.0000,1),(1086,'default','WH04-L-Purple',100.0000,1),(1087,'default','WH04-XL-Blue',100.0000,1),(1088,'default','WH04-XL-Orange',100.0000,1),(1089,'default','WH04-XL-Purple',100.0000,1),(1090,'default','WH04',0.0000,1),(1091,'default','WH05-XS-Orange',100.0000,1),(1092,'default','WH05-XS-Purple',100.0000,1),(1093,'default','WH05-XS-White',100.0000,1),(1094,'default','WH05-S-Orange',100.0000,1),(1095,'default','WH05-S-Purple',100.0000,1),(1096,'default','WH05-S-White',100.0000,1),(1097,'default','WH05-M-Orange',100.0000,1),(1098,'default','WH05-M-Purple',100.0000,1),(1099,'default','WH05-M-White',100.0000,1),(1100,'default','WH05-L-Orange',100.0000,1),(1101,'default','WH05-L-Purple',100.0000,1),(1102,'default','WH05-L-White',100.0000,1),(1103,'default','WH05-XL-Orange',100.0000,1),(1104,'default','WH05-XL-Purple',100.0000,1),(1105,'default','WH05-XL-White',100.0000,1),(1106,'default','WH05',0.0000,1),(1107,'default','WH06-XS-Purple',100.0000,1),(1108,'default','WH06-S-Purple',100.0000,1),(1109,'default','WH06-M-Purple',100.0000,1),(1110,'default','WH06-L-Purple',100.0000,1),(1111,'default','WH06-XL-Purple',100.0000,1),(1112,'default','WH06',0.0000,1),(1113,'default','WH07-XS-Gray',100.0000,1),(1114,'default','WH07-XS-Purple',100.0000,1),(1115,'default','WH07-XS-White',100.0000,1),(1116,'default','WH07-S-Gray',100.0000,1),(1117,'default','WH07-S-Purple',100.0000,1),(1118,'default','WH07-S-White',100.0000,1),(1119,'default','WH07-M-Gray',100.0000,1),(1120,'default','WH07-M-Purple',100.0000,1),(1121,'default','WH07-M-White',100.0000,1),(1122,'default','WH07-L-Gray',100.0000,1),(1123,'default','WH07-L-Purple',100.0000,1),(1124,'default','WH07-L-White',100.0000,1),(1125,'default','WH07-XL-Gray',100.0000,1),(1126,'default','WH07-XL-Purple',100.0000,1),(1127,'default','WH07-XL-White',100.0000,1),(1128,'default','WH07',0.0000,1),(1129,'default','WH08-XS-Orange',100.0000,1),(1130,'default','WH08-XS-Purple',100.0000,1),(1131,'default','WH08-XS-White',100.0000,1),(1132,'default','WH08-S-Orange',100.0000,1),(1133,'default','WH08-S-Purple',100.0000,1),(1134,'default','WH08-S-White',100.0000,1),(1135,'default','WH08-M-Orange',100.0000,1),(1136,'default','WH08-M-Purple',100.0000,1),(1137,'default','WH08-M-White',100.0000,1),(1138,'default','WH08-L-Orange',100.0000,1),(1139,'default','WH08-L-Purple',100.0000,1),(1140,'default','WH08-L-White',100.0000,1),(1141,'default','WH08-XL-Orange',100.0000,1),(1142,'default','WH08-XL-Purple',100.0000,1),(1143,'default','WH08-XL-White',100.0000,1),(1144,'default','WH08',0.0000,1),(1145,'default','WH09-XS-Green',100.0000,1),(1146,'default','WH09-XS-Purple',100.0000,1),(1147,'default','WH09-XS-Red',100.0000,1),(1148,'default','WH09-S-Green',100.0000,1),(1149,'default','WH09-S-Purple',100.0000,1),(1150,'default','WH09-S-Red',100.0000,1),(1151,'default','WH09-M-Green',100.0000,1),(1152,'default','WH09-M-Purple',100.0000,1),(1153,'default','WH09-M-Red',100.0000,1),(1154,'default','WH09-L-Green',100.0000,1),(1155,'default','WH09-L-Purple',100.0000,1),(1156,'default','WH09-L-Red',100.0000,1),(1157,'default','WH09-XL-Green',100.0000,1),(1158,'default','WH09-XL-Purple',100.0000,1),(1159,'default','WH09-XL-Red',100.0000,1),(1160,'default','WH09',0.0000,1),(1161,'default','WH10-XS-Blue',100.0000,1),(1162,'default','WH10-XS-Gray',100.0000,1),(1163,'default','WH10-XS-Yellow',100.0000,1),(1164,'default','WH10-S-Blue',100.0000,1),(1165,'default','WH10-S-Gray',100.0000,1),(1166,'default','WH10-S-Yellow',100.0000,1),(1167,'default','WH10-M-Blue',100.0000,1),(1168,'default','WH10-M-Gray',100.0000,1),(1169,'default','WH10-M-Yellow',100.0000,1),(1170,'default','WH10-L-Blue',100.0000,1),(1171,'default','WH10-L-Gray',100.0000,1),(1172,'default','WH10-L-Yellow',100.0000,1),(1173,'default','WH10-XL-Blue',100.0000,1),(1174,'default','WH10-XL-Gray',100.0000,1),(1175,'default','WH10-XL-Yellow',100.0000,1),(1176,'default','WH10',0.0000,1),(1177,'default','WH11-XS-Blue',100.0000,1),(1178,'default','WH11-XS-Green',100.0000,1),(1179,'default','WH11-XS-Orange',100.0000,1),(1180,'default','WH11-S-Blue',100.0000,1),(1181,'default','WH11-S-Green',100.0000,1),(1182,'default','WH11-S-Orange',100.0000,1),(1183,'default','WH11-M-Blue',100.0000,1),(1184,'default','WH11-M-Green',100.0000,1),(1185,'default','WH11-M-Orange',100.0000,1),(1186,'default','WH11-L-Blue',100.0000,1),(1187,'default','WH11-L-Green',100.0000,1),(1188,'default','WH11-L-Orange',100.0000,1),(1189,'default','WH11-XL-Blue',100.0000,1),(1190,'default','WH11-XL-Green',100.0000,1),(1191,'default','WH11-XL-Orange',100.0000,1),(1192,'default','WH11',0.0000,1),(1193,'default','WH12-XS-Gray',100.0000,1),(1194,'default','WH12-XS-Green',100.0000,1),(1195,'default','WH12-XS-Purple',100.0000,1),(1196,'default','WH12-S-Gray',100.0000,1),(1197,'default','WH12-S-Green',100.0000,1),(1198,'default','WH12-S-Purple',100.0000,1),(1199,'default','WH12-M-Gray',100.0000,1),(1200,'default','WH12-M-Green',100.0000,1),(1201,'default','WH12-M-Purple',100.0000,1),(1202,'default','WH12-L-Gray',100.0000,1),(1203,'default','WH12-L-Green',100.0000,1),(1204,'default','WH12-L-Purple',100.0000,1),(1205,'default','WH12-XL-Gray',100.0000,1),(1206,'default','WH12-XL-Green',100.0000,1),(1207,'default','WH12-XL-Purple',100.0000,1),(1208,'default','WH12',0.0000,1),(1209,'default','WJ01-S-Blue',100.0000,1),(1210,'default','WJ01-S-Red',100.0000,1),(1211,'default','WJ01-S-Yellow',100.0000,1),(1212,'default','WJ01-M-Blue',100.0000,1),(1213,'default','WJ01-M-Red',100.0000,1),(1214,'default','WJ01-M-Yellow',100.0000,1),(1215,'default','WJ01-L-Blue',100.0000,1),(1216,'default','WJ01-L-Red',100.0000,1),(1217,'default','WJ01-L-Yellow',100.0000,1),(1218,'default','WJ01',0.0000,1),(1219,'default','WJ02-XS-Black',100.0000,1),(1220,'default','WJ02-XS-Blue',100.0000,1),(1221,'default','WJ02-XS-Gray',100.0000,1),(1222,'default','WJ02-S-Black',100.0000,1),(1223,'default','WJ02-S-Blue',100.0000,1),(1224,'default','WJ02-S-Gray',100.0000,1),(1225,'default','WJ02-M-Black',100.0000,1),(1226,'default','WJ02-M-Blue',100.0000,1),(1227,'default','WJ02-M-Gray',100.0000,1),(1228,'default','WJ02-L-Black',100.0000,1),(1229,'default','WJ02-L-Blue',100.0000,1),(1230,'default','WJ02-L-Gray',100.0000,1),(1231,'default','WJ02-XL-Black',100.0000,1),(1232,'default','WJ02-XL-Blue',100.0000,1),(1233,'default','WJ02-XL-Gray',100.0000,1),(1234,'default','WJ02',0.0000,1),(1235,'default','WJ03-XS-Blue',100.0000,1),(1236,'default','WJ03-XS-Orange',100.0000,1),(1237,'default','WJ03-XS-Red',100.0000,1),(1238,'default','WJ03-S-Blue',100.0000,1),(1239,'default','WJ03-S-Orange',100.0000,1),(1240,'default','WJ03-S-Red',100.0000,1),(1241,'default','WJ03-M-Blue',100.0000,1),(1242,'default','WJ03-M-Orange',100.0000,1),(1243,'default','WJ03-M-Red',100.0000,1),(1244,'default','WJ03-L-Blue',100.0000,1),(1245,'default','WJ03-L-Orange',100.0000,1),(1246,'default','WJ03-L-Red',100.0000,1),(1247,'default','WJ03-XL-Blue',100.0000,1),(1248,'default','WJ03-XL-Orange',100.0000,1),(1249,'default','WJ03-XL-Red',100.0000,1),(1250,'default','WJ03',0.0000,1),(1251,'default','WJ04-XS-Orange',100.0000,1),(1252,'default','WJ04-XS-Red',100.0000,1),(1253,'default','WJ04-XS-White',100.0000,1),(1254,'default','WJ04-S-Orange',100.0000,1),(1255,'default','WJ04-S-Red',100.0000,1),(1256,'default','WJ04-S-White',100.0000,1),(1257,'default','WJ04-M-Orange',100.0000,1),(1258,'default','WJ04-M-Red',100.0000,1),(1259,'default','WJ04-M-White',100.0000,1),(1260,'default','WJ04-L-Orange',100.0000,1),(1261,'default','WJ04-L-Red',100.0000,1),(1262,'default','WJ04-L-White',100.0000,1),(1263,'default','WJ04-XL-Orange',100.0000,1),(1264,'default','WJ04-XL-Red',100.0000,1),(1265,'default','WJ04-XL-White',100.0000,1),(1266,'default','WJ04',0.0000,1),(1267,'default','WJ05-XS-Brown',100.0000,1),(1268,'default','WJ05-XS-Green',100.0000,1),(1269,'default','WJ05-XS-Red',100.0000,1),(1270,'default','WJ05-S-Brown',100.0000,1),(1271,'default','WJ05-S-Green',100.0000,1),(1272,'default','WJ05-S-Red',100.0000,1),(1273,'default','WJ05-M-Brown',100.0000,1),(1274,'default','WJ05-M-Green',100.0000,1),(1275,'default','WJ05-M-Red',100.0000,1),(1276,'default','WJ05-L-Brown',100.0000,1),(1277,'default','WJ05-L-Green',100.0000,1),(1278,'default','WJ05-L-Red',100.0000,1),(1279,'default','WJ05-XL-Brown',100.0000,1),(1280,'default','WJ05-XL-Green',100.0000,1),(1281,'default','WJ05-XL-Red',100.0000,1),(1282,'default','WJ05',0.0000,1),(1283,'default','WJ07-XS-Orange',100.0000,1),(1284,'default','WJ07-XS-Purple',100.0000,1),(1285,'default','WJ07-XS-Red',100.0000,1),(1286,'default','WJ07-S-Orange',100.0000,1),(1287,'default','WJ07-S-Purple',100.0000,1),(1288,'default','WJ07-S-Red',100.0000,1),(1289,'default','WJ07-M-Orange',100.0000,1),(1290,'default','WJ07-M-Purple',100.0000,1),(1291,'default','WJ07-M-Red',100.0000,1),(1292,'default','WJ07-L-Orange',100.0000,1),(1293,'default','WJ07-L-Purple',100.0000,1),(1294,'default','WJ07-L-Red',100.0000,1),(1295,'default','WJ07-XL-Orange',100.0000,1),(1296,'default','WJ07-XL-Purple',100.0000,1),(1297,'default','WJ07-XL-Red',100.0000,1),(1298,'default','WJ07',0.0000,1),(1299,'default','WJ08-XS-Gray',100.0000,1),(1300,'default','WJ08-XS-Orange',100.0000,1),(1301,'default','WJ08-XS-Purple',100.0000,1),(1302,'default','WJ08-S-Gray',100.0000,1),(1303,'default','WJ08-S-Orange',100.0000,1),(1304,'default','WJ08-S-Purple',100.0000,1),(1305,'default','WJ08-M-Gray',100.0000,1),(1306,'default','WJ08-M-Orange',100.0000,1),(1307,'default','WJ08-M-Purple',100.0000,1),(1308,'default','WJ08-L-Gray',100.0000,1),(1309,'default','WJ08-L-Orange',100.0000,1),(1310,'default','WJ08-L-Purple',100.0000,1),(1311,'default','WJ08-XL-Gray',100.0000,1),(1312,'default','WJ08-XL-Orange',100.0000,1),(1313,'default','WJ08-XL-Purple',100.0000,1),(1314,'default','WJ08',0.0000,1),(1315,'default','WJ09-XS-Blue',100.0000,1),(1316,'default','WJ09-XS-Gray',100.0000,1),(1317,'default','WJ09-XS-Green',100.0000,1),(1318,'default','WJ09-S-Blue',100.0000,1),(1319,'default','WJ09-S-Gray',100.0000,1),(1320,'default','WJ09-S-Green',100.0000,1),(1321,'default','WJ09-M-Blue',100.0000,1),(1322,'default','WJ09-M-Gray',100.0000,1),(1323,'default','WJ09-M-Green',100.0000,1),(1324,'default','WJ09-L-Blue',100.0000,1),(1325,'default','WJ09-L-Gray',100.0000,1),(1326,'default','WJ09-L-Green',100.0000,1),(1327,'default','WJ09-XL-Blue',100.0000,1),(1328,'default','WJ09-XL-Gray',100.0000,1),(1329,'default','WJ09-XL-Green',100.0000,1),(1330,'default','WJ09',0.0000,1),(1331,'default','WJ10-XS-Black',100.0000,1),(1332,'default','WJ10-XS-Orange',100.0000,1),(1333,'default','WJ10-XS-Yellow',100.0000,1),(1334,'default','WJ10-S-Black',100.0000,1),(1335,'default','WJ10-S-Orange',100.0000,1),(1336,'default','WJ10-S-Yellow',100.0000,1),(1337,'default','WJ10-M-Black',100.0000,1),(1338,'default','WJ10-M-Orange',100.0000,1),(1339,'default','WJ10-M-Yellow',100.0000,1),(1340,'default','WJ10-L-Black',100.0000,1),(1341,'default','WJ10-L-Orange',100.0000,1),(1342,'default','WJ10-L-Yellow',100.0000,1),(1343,'default','WJ10-XL-Black',100.0000,1),(1344,'default','WJ10-XL-Orange',100.0000,1),(1345,'default','WJ10-XL-Yellow',100.0000,1),(1346,'default','WJ10',0.0000,1),(1347,'default','WJ11-XS-Black',100.0000,1),(1348,'default','WJ11-XS-Blue',100.0000,1),(1349,'default','WJ11-XS-Orange',100.0000,1),(1350,'default','WJ11-S-Black',100.0000,1),(1351,'default','WJ11-S-Blue',100.0000,1),(1352,'default','WJ11-S-Orange',100.0000,1),(1353,'default','WJ11-M-Black',100.0000,1),(1354,'default','WJ11-M-Blue',100.0000,1),(1355,'default','WJ11-M-Orange',100.0000,1),(1356,'default','WJ11-L-Black',100.0000,1),(1357,'default','WJ11-L-Blue',100.0000,1),(1358,'default','WJ11-L-Orange',100.0000,1),(1359,'default','WJ11-XL-Black',100.0000,1),(1360,'default','WJ11-XL-Blue',100.0000,1),(1361,'default','WJ11-XL-Orange',100.0000,1),(1362,'default','WJ11',0.0000,1),(1363,'default','WJ06-XS-Blue',100.0000,1),(1364,'default','WJ06-XS-Green',100.0000,1),(1365,'default','WJ06-XS-Purple',100.0000,1),(1366,'default','WJ06-S-Blue',100.0000,1),(1367,'default','WJ06-S-Green',100.0000,1),(1368,'default','WJ06-S-Purple',100.0000,1),(1369,'default','WJ06-M-Blue',100.0000,1),(1370,'default','WJ06-M-Green',100.0000,1),(1371,'default','WJ06-M-Purple',100.0000,1),(1372,'default','WJ06-L-Blue',100.0000,1),(1373,'default','WJ06-L-Green',100.0000,1),(1374,'default','WJ06-L-Purple',100.0000,1),(1375,'default','WJ06-XL-Blue',100.0000,1),(1376,'default','WJ06-XL-Green',100.0000,1),(1377,'default','WJ06-XL-Purple',100.0000,1),(1378,'default','WJ06',0.0000,1),(1379,'default','WJ12-XS-Black',100.0000,1),(1380,'default','WJ12-XS-Blue',100.0000,1),(1381,'default','WJ12-XS-Purple',100.0000,1),(1382,'default','WJ12-S-Black',100.0000,1),(1383,'default','WJ12-S-Blue',100.0000,1),(1384,'default','WJ12-S-Purple',100.0000,1),(1385,'default','WJ12-M-Black',100.0000,1),(1386,'default','WJ12-M-Blue',100.0000,1),(1387,'default','WJ12-M-Purple',100.0000,1),(1388,'default','WJ12-L-Black',100.0000,1),(1389,'default','WJ12-L-Blue',100.0000,1),(1390,'default','WJ12-L-Purple',100.0000,1),(1391,'default','WJ12-XL-Black',100.0000,1),(1392,'default','WJ12-XL-Blue',100.0000,1),(1393,'default','WJ12-XL-Purple',100.0000,1),(1394,'default','WJ12',0.0000,1),(1395,'default','WS02-XS-Blue',100.0000,1),(1396,'default','WS02-XS-Green',100.0000,1),(1397,'default','WS02-XS-Red',100.0000,1),(1398,'default','WS02-S-Blue',100.0000,1),(1399,'default','WS02-S-Green',100.0000,1),(1400,'default','WS02-S-Red',100.0000,1),(1401,'default','WS02-M-Blue',100.0000,1),(1402,'default','WS02-M-Green',100.0000,1),(1403,'default','WS02-M-Red',100.0000,1),(1404,'default','WS02-L-Blue',100.0000,1),(1405,'default','WS02-L-Green',100.0000,1),(1406,'default','WS02-L-Red',100.0000,1),(1407,'default','WS02-XL-Blue',100.0000,1),(1408,'default','WS02-XL-Green',100.0000,1),(1409,'default','WS02-XL-Red',100.0000,1),(1410,'default','WS02',0.0000,1),(1411,'default','WS03-XS-Blue',100.0000,1),(1412,'default','WS03-XS-Green',100.0000,1),(1413,'default','WS03-XS-Red',99.0000,1),(1414,'default','WS03-S-Blue',100.0000,1),(1415,'default','WS03-S-Green',100.0000,1),(1416,'default','WS03-S-Red',100.0000,1),(1417,'default','WS03-M-Blue',100.0000,1),(1418,'default','WS03-M-Green',100.0000,1),(1419,'default','WS03-M-Red',100.0000,1),(1420,'default','WS03-L-Blue',100.0000,1),(1421,'default','WS03-L-Green',100.0000,1),(1422,'default','WS03-L-Red',100.0000,1),(1423,'default','WS03-XL-Blue',100.0000,1),(1424,'default','WS03-XL-Green',100.0000,1),(1425,'default','WS03-XL-Red',100.0000,1),(1426,'default','WS03',0.0000,1),(1427,'default','WS04-XS-Blue',100.0000,1),(1428,'default','WS04-XS-Green',100.0000,1),(1429,'default','WS04-XS-Red',100.0000,1),(1430,'default','WS04-S-Blue',100.0000,1),(1431,'default','WS04-S-Green',100.0000,1),(1432,'default','WS04-S-Red',100.0000,1),(1433,'default','WS04-M-Blue',100.0000,1),(1434,'default','WS04-M-Green',100.0000,1),(1435,'default','WS04-M-Red',100.0000,1),(1436,'default','WS04-L-Blue',100.0000,1),(1437,'default','WS04-L-Green',100.0000,1),(1438,'default','WS04-L-Red',100.0000,1),(1439,'default','WS04-XL-Blue',100.0000,1),(1440,'default','WS04-XL-Green',100.0000,1),(1441,'default','WS04-XL-Red',100.0000,1),(1442,'default','WS04',0.0000,1),(1443,'default','WS06-XS-Gray',100.0000,1),(1444,'default','WS06-XS-Purple',100.0000,1),(1445,'default','WS06-XS-Red',100.0000,1),(1446,'default','WS06-S-Gray',100.0000,1),(1447,'default','WS06-S-Purple',100.0000,1),(1448,'default','WS06-S-Red',100.0000,1),(1449,'default','WS06-M-Gray',100.0000,1),(1450,'default','WS06-M-Purple',100.0000,1),(1451,'default','WS06-M-Red',100.0000,1),(1452,'default','WS06-L-Gray',100.0000,1),(1453,'default','WS06-L-Purple',100.0000,1),(1454,'default','WS06-L-Red',100.0000,1),(1455,'default','WS06-XL-Gray',100.0000,1),(1456,'default','WS06-XL-Purple',100.0000,1),(1457,'default','WS06-XL-Red',100.0000,1),(1458,'default','WS06',0.0000,1),(1459,'default','WS07-XS-Black',100.0000,1),(1460,'default','WS07-XS-White',100.0000,1),(1461,'default','WS07-XS-Yellow',100.0000,1),(1462,'default','WS07-S-Black',100.0000,1),(1463,'default','WS07-S-White',100.0000,1),(1464,'default','WS07-S-Yellow',100.0000,1),(1465,'default','WS07-M-Black',100.0000,1),(1466,'default','WS07-M-White',100.0000,1),(1467,'default','WS07-M-Yellow',100.0000,1),(1468,'default','WS07-L-Black',100.0000,1),(1469,'default','WS07-L-White',100.0000,1),(1470,'default','WS07-L-Yellow',100.0000,1),(1471,'default','WS07-XL-Black',100.0000,1),(1472,'default','WS07-XL-White',100.0000,1),(1473,'default','WS07-XL-Yellow',100.0000,1),(1474,'default','WS07',0.0000,1),(1475,'default','WS08-XS-Black',100.0000,1),(1476,'default','WS08-XS-Blue',99.0000,1),(1477,'default','WS08-XS-Red',100.0000,1),(1478,'default','WS08-S-Black',100.0000,1),(1479,'default','WS08-S-Blue',100.0000,1),(1480,'default','WS08-S-Red',100.0000,1),(1481,'default','WS08-M-Black',100.0000,1),(1482,'default','WS08-M-Blue',100.0000,1),(1483,'default','WS08-M-Red',100.0000,1),(1484,'default','WS08-L-Black',100.0000,1),(1485,'default','WS08-L-Blue',100.0000,1),(1486,'default','WS08-L-Red',100.0000,1),(1487,'default','WS08-XL-Black',100.0000,1),(1488,'default','WS08-XL-Blue',100.0000,1),(1489,'default','WS08-XL-Red',100.0000,1),(1490,'default','WS08',0.0000,1),(1491,'default','WS09-XS-Blue',100.0000,1),(1492,'default','WS09-XS-Red',100.0000,1),(1493,'default','WS09-XS-White',100.0000,1),(1494,'default','WS09-S-Blue',100.0000,1),(1495,'default','WS09-S-Red',100.0000,1),(1496,'default','WS09-S-White',100.0000,1),(1497,'default','WS09-M-Blue',100.0000,1),(1498,'default','WS09-M-Red',100.0000,1),(1499,'default','WS09-M-White',100.0000,1),(1500,'default','WS09-L-Blue',100.0000,1),(1501,'default','WS09-L-Red',100.0000,1),(1502,'default','WS09-L-White',100.0000,1),(1503,'default','WS09-XL-Blue',100.0000,1),(1504,'default','WS09-XL-Red',100.0000,1),(1505,'default','WS09-XL-White',100.0000,1),(1506,'default','WS09',0.0000,1),(1507,'default','WS10-XS-Green',100.0000,1),(1508,'default','WS10-XS-Red',100.0000,1),(1509,'default','WS10-XS-Yellow',100.0000,1),(1510,'default','WS10-S-Green',100.0000,1),(1511,'default','WS10-S-Red',100.0000,1),(1512,'default','WS10-S-Yellow',100.0000,1),(1513,'default','WS10-M-Green',100.0000,1),(1514,'default','WS10-M-Red',100.0000,1),(1515,'default','WS10-M-Yellow',100.0000,1),(1516,'default','WS10-L-Green',100.0000,1),(1517,'default','WS10-L-Red',100.0000,1),(1518,'default','WS10-L-Yellow',100.0000,1),(1519,'default','WS10-XL-Green',100.0000,1),(1520,'default','WS10-XL-Red',100.0000,1),(1521,'default','WS10-XL-Yellow',100.0000,1),(1522,'default','WS10',0.0000,1),(1523,'default','WS11-XS-Green',100.0000,1),(1524,'default','WS11-XS-Orange',100.0000,1),(1525,'default','WS11-XS-Yellow',100.0000,1),(1526,'default','WS11-S-Green',100.0000,1),(1527,'default','WS11-S-Orange',100.0000,1),(1528,'default','WS11-S-Yellow',100.0000,1),(1529,'default','WS11-M-Green',100.0000,1),(1530,'default','WS11-M-Orange',100.0000,1),(1531,'default','WS11-M-Yellow',100.0000,1),(1532,'default','WS11-L-Green',100.0000,1),(1533,'default','WS11-L-Orange',100.0000,1),(1534,'default','WS11-L-Yellow',100.0000,1),(1535,'default','WS11-XL-Green',100.0000,1),(1536,'default','WS11-XL-Orange',100.0000,1),(1537,'default','WS11-XL-Yellow',100.0000,1),(1538,'default','WS11',0.0000,1),(1539,'default','WS12-XS-Blue',100.0000,1),(1540,'default','WS12-XS-Orange',100.0000,1),(1541,'default','WS12-XS-Purple',100.0000,1),(1542,'default','WS12-S-Blue',100.0000,1),(1543,'default','WS12-S-Orange',100.0000,1),(1544,'default','WS12-S-Purple',100.0000,1),(1545,'default','WS12-M-Blue',100.0000,1),(1546,'default','WS12-M-Orange',100.0000,1),(1547,'default','WS12-M-Purple',100.0000,1),(1548,'default','WS12-L-Blue',100.0000,1),(1549,'default','WS12-L-Orange',100.0000,1),(1550,'default','WS12-L-Purple',100.0000,1),(1551,'default','WS12-XL-Blue',100.0000,1),(1552,'default','WS12-XL-Orange',100.0000,1),(1553,'default','WS12-XL-Purple',100.0000,1),(1554,'default','WS12',0.0000,1),(1555,'default','WS01-XS-Black',100.0000,1),(1556,'default','WS01-XS-Green',100.0000,1),(1557,'default','WS01-XS-Yellow',100.0000,1),(1558,'default','WS01-S-Black',100.0000,1),(1559,'default','WS01-S-Green',100.0000,1),(1560,'default','WS01-S-Yellow',100.0000,1),(1561,'default','WS01-M-Black',100.0000,1),(1562,'default','WS01-M-Green',100.0000,1),(1563,'default','WS01-M-Yellow',100.0000,1),(1564,'default','WS01-L-Black',100.0000,1),(1565,'default','WS01-L-Green',100.0000,1),(1566,'default','WS01-L-Yellow',100.0000,1),(1567,'default','WS01-XL-Black',100.0000,1),(1568,'default','WS01-XL-Green',100.0000,1),(1569,'default','WS01-XL-Yellow',100.0000,1),(1570,'default','WS01',0.0000,1),(1571,'default','WS05-XS-Black',100.0000,1),(1572,'default','WS05-XS-Orange',100.0000,1),(1573,'default','WS05-XS-Yellow',100.0000,1),(1574,'default','WS05-S-Black',100.0000,1),(1575,'default','WS05-S-Orange',100.0000,1),(1576,'default','WS05-S-Yellow',100.0000,1),(1577,'default','WS05-M-Black',100.0000,1),(1578,'default','WS05-M-Orange',100.0000,1),(1579,'default','WS05-M-Yellow',100.0000,1),(1580,'default','WS05-L-Black',100.0000,1),(1581,'default','WS05-L-Orange',100.0000,1),(1582,'default','WS05-L-Yellow',100.0000,1),(1583,'default','WS05-XL-Black',100.0000,1),(1584,'default','WS05-XL-Orange',100.0000,1),(1585,'default','WS05-XL-Yellow',100.0000,1),(1586,'default','WS05',0.0000,1),(1587,'default','WB01-XS-Black',100.0000,1),(1588,'default','WB01-XS-Gray',100.0000,1),(1589,'default','WB01-XS-Purple',100.0000,1),(1590,'default','WB01-S-Black',100.0000,1),(1591,'default','WB01-S-Gray',100.0000,1),(1592,'default','WB01-S-Purple',100.0000,1),(1593,'default','WB01-M-Black',100.0000,1),(1594,'default','WB01-M-Gray',100.0000,1),(1595,'default','WB01-M-Purple',100.0000,1),(1596,'default','WB01-L-Black',100.0000,1),(1597,'default','WB01-L-Gray',100.0000,1),(1598,'default','WB01-L-Purple',100.0000,1),(1599,'default','WB01-XL-Black',100.0000,1),(1600,'default','WB01-XL-Gray',100.0000,1),(1601,'default','WB01-XL-Purple',100.0000,1),(1602,'default','WB01',0.0000,1),(1603,'default','WB02-XS-Blue',100.0000,1),(1604,'default','WB02-XS-Orange',100.0000,1),(1605,'default','WB02-XS-Yellow',100.0000,1),(1606,'default','WB02-S-Blue',100.0000,1),(1607,'default','WB02-S-Orange',100.0000,1),(1608,'default','WB02-S-Yellow',100.0000,1),(1609,'default','WB02-M-Blue',100.0000,1),(1610,'default','WB02-M-Orange',100.0000,1),(1611,'default','WB02-M-Yellow',100.0000,1),(1612,'default','WB02-L-Blue',100.0000,1),(1613,'default','WB02-L-Orange',100.0000,1),(1614,'default','WB02-L-Yellow',100.0000,1),(1615,'default','WB02-XL-Blue',100.0000,1),(1616,'default','WB02-XL-Orange',100.0000,1),(1617,'default','WB02-XL-Yellow',100.0000,1),(1618,'default','WB02',0.0000,1),(1619,'default','WB03-XS-Green',100.0000,1),(1620,'default','WB03-XS-Red',100.0000,1),(1621,'default','WB03-XS-Yellow',100.0000,1),(1622,'default','WB03-S-Green',100.0000,1),(1623,'default','WB03-S-Red',100.0000,1),(1624,'default','WB03-S-Yellow',100.0000,1),(1625,'default','WB03-M-Green',100.0000,1),(1626,'default','WB03-M-Red',100.0000,1),(1627,'default','WB03-M-Yellow',100.0000,1),(1628,'default','WB03-L-Green',100.0000,1),(1629,'default','WB03-L-Red',100.0000,1),(1630,'default','WB03-L-Yellow',100.0000,1),(1631,'default','WB03-XL-Green',100.0000,1),(1632,'default','WB03-XL-Red',100.0000,1),(1633,'default','WB03-XL-Yellow',100.0000,1),(1634,'default','WB03',0.0000,1),(1635,'default','WB04-XS-Blue',100.0000,1),(1636,'default','WB04-XS-Purple',100.0000,1),(1637,'default','WB04-XS-Yellow',100.0000,1),(1638,'default','WB04-S-Blue',100.0000,1),(1639,'default','WB04-S-Purple',100.0000,1),(1640,'default','WB04-S-Yellow',100.0000,1),(1641,'default','WB04-M-Blue',100.0000,1),(1642,'default','WB04-M-Purple',100.0000,1),(1643,'default','WB04-M-Yellow',100.0000,1),(1644,'default','WB04-L-Blue',100.0000,1),(1645,'default','WB04-L-Purple',100.0000,1),(1646,'default','WB04-L-Yellow',100.0000,1),(1647,'default','WB04-XL-Blue',100.0000,1),(1648,'default','WB04-XL-Purple',100.0000,1),(1649,'default','WB04-XL-Yellow',100.0000,1),(1650,'default','WB04',0.0000,1),(1651,'default','WB05-XS-Black',100.0000,1),(1652,'default','WB05-XS-Orange',100.0000,1),(1653,'default','WB05-XS-Purple',100.0000,1),(1654,'default','WB05-S-Black',100.0000,1),(1655,'default','WB05-S-Orange',100.0000,1),(1656,'default','WB05-S-Purple',100.0000,1),(1657,'default','WB05-M-Black',100.0000,1),(1658,'default','WB05-M-Orange',100.0000,1),(1659,'default','WB05-M-Purple',100.0000,1),(1660,'default','WB05-L-Black',100.0000,1),(1661,'default','WB05-L-Orange',100.0000,1),(1662,'default','WB05-L-Purple',100.0000,1),(1663,'default','WB05-XL-Black',100.0000,1),(1664,'default','WB05-XL-Orange',100.0000,1),(1665,'default','WB05-XL-Purple',100.0000,1),(1666,'default','WB05',0.0000,1),(1667,'default','WT01-XS-Black',100.0000,1),(1668,'default','WT01-XS-Blue',100.0000,1),(1669,'default','WT01-XS-Orange',100.0000,1),(1670,'default','WT01-S-Black',100.0000,1),(1671,'default','WT01-S-Blue',100.0000,1),(1672,'default','WT01-S-Orange',100.0000,1),(1673,'default','WT01-M-Black',100.0000,1),(1674,'default','WT01-M-Blue',100.0000,1),(1675,'default','WT01-M-Orange',100.0000,1),(1676,'default','WT01-L-Black',100.0000,1),(1677,'default','WT01-L-Blue',100.0000,1),(1678,'default','WT01-L-Orange',100.0000,1),(1679,'default','WT01-XL-Black',100.0000,1),(1680,'default','WT01-XL-Blue',100.0000,1),(1681,'default','WT01-XL-Orange',100.0000,1),(1682,'default','WT01',0.0000,1),(1683,'default','WT02-XS-Green',100.0000,1),(1684,'default','WT02-XS-Orange',100.0000,1),(1685,'default','WT02-XS-Yellow',100.0000,1),(1686,'default','WT02-S-Green',100.0000,1),(1687,'default','WT02-S-Orange',100.0000,1),(1688,'default','WT02-S-Yellow',100.0000,1),(1689,'default','WT02-M-Green',100.0000,1),(1690,'default','WT02-M-Orange',100.0000,1),(1691,'default','WT02-M-Yellow',100.0000,1),(1692,'default','WT02-L-Green',100.0000,1),(1693,'default','WT02-L-Orange',100.0000,1),(1694,'default','WT02-L-Yellow',100.0000,1),(1695,'default','WT02-XL-Green',100.0000,1),(1696,'default','WT02-XL-Orange',100.0000,1),(1697,'default','WT02-XL-Yellow',100.0000,1),(1698,'default','WT02',0.0000,1),(1699,'default','WT03-XS-Orange',100.0000,1),(1700,'default','WT03-XS-Purple',100.0000,1),(1701,'default','WT03-XS-Red',100.0000,1),(1702,'default','WT03-S-Orange',100.0000,1),(1703,'default','WT03-S-Purple',100.0000,1),(1704,'default','WT03-S-Red',100.0000,1),(1705,'default','WT03-M-Orange',100.0000,1),(1706,'default','WT03-M-Purple',100.0000,1),(1707,'default','WT03-M-Red',100.0000,1),(1708,'default','WT03-L-Orange',100.0000,1),(1709,'default','WT03-L-Purple',100.0000,1),(1710,'default','WT03-L-Red',100.0000,1),(1711,'default','WT03-XL-Orange',100.0000,1),(1712,'default','WT03-XL-Purple',100.0000,1),(1713,'default','WT03-XL-Red',100.0000,1),(1714,'default','WT03',0.0000,1),(1715,'default','WT04-XS-Blue',100.0000,1),(1716,'default','WT04-XS-Purple',100.0000,1),(1717,'default','WT04-XS-Red',100.0000,1),(1718,'default','WT04-S-Blue',100.0000,1),(1719,'default','WT04-S-Purple',100.0000,1),(1720,'default','WT04-S-Red',100.0000,1),(1721,'default','WT04-M-Blue',100.0000,1),(1722,'default','WT04-M-Purple',100.0000,1),(1723,'default','WT04-M-Red',100.0000,1),(1724,'default','WT04-L-Blue',100.0000,1),(1725,'default','WT04-L-Purple',100.0000,1),(1726,'default','WT04-L-Red',100.0000,1),(1727,'default','WT04-XL-Blue',100.0000,1),(1728,'default','WT04-XL-Purple',100.0000,1),(1729,'default','WT04-XL-Red',100.0000,1),(1730,'default','WT04',0.0000,1),(1731,'default','WT05-XS-Orange',100.0000,1),(1732,'default','WT05-XS-Purple',100.0000,1),(1733,'default','WT05-XS-White',100.0000,1),(1734,'default','WT05-S-Orange',100.0000,1),(1735,'default','WT05-S-Purple',100.0000,1),(1736,'default','WT05-S-White',100.0000,1),(1737,'default','WT05-M-Orange',100.0000,1),(1738,'default','WT05-M-Purple',100.0000,1),(1739,'default','WT05-M-White',100.0000,1),(1740,'default','WT05-L-Orange',100.0000,1),(1741,'default','WT05-L-Purple',100.0000,1),(1742,'default','WT05-L-White',100.0000,1),(1743,'default','WT05-XL-Orange',100.0000,1),(1744,'default','WT05-XL-Purple',100.0000,1),(1745,'default','WT05-XL-White',100.0000,1),(1746,'default','WT05',0.0000,1),(1747,'default','WT06-XS-Blue',100.0000,1),(1748,'default','WT06-XS-Red',100.0000,1),(1749,'default','WT06-XS-Yellow',100.0000,1),(1750,'default','WT06-S-Blue',100.0000,1),(1751,'default','WT06-S-Red',100.0000,1),(1752,'default','WT06-S-Yellow',100.0000,1),(1753,'default','WT06-M-Blue',100.0000,1),(1754,'default','WT06-M-Red',100.0000,1),(1755,'default','WT06-M-Yellow',100.0000,1),(1756,'default','WT06-L-Blue',100.0000,1),(1757,'default','WT06-L-Red',100.0000,1),(1758,'default','WT06-L-Yellow',100.0000,1),(1759,'default','WT06-XL-Blue',100.0000,1),(1760,'default','WT06-XL-Red',100.0000,1),(1761,'default','WT06-XL-Yellow',100.0000,1),(1762,'default','WT06',0.0000,1),(1763,'default','WT07-XS-Green',100.0000,1),(1764,'default','WT07-XS-White',100.0000,1),(1765,'default','WT07-XS-Yellow',100.0000,1),(1766,'default','WT07-S-Green',100.0000,1),(1767,'default','WT07-S-White',100.0000,1),(1768,'default','WT07-S-Yellow',100.0000,1),(1769,'default','WT07-M-Green',100.0000,1),(1770,'default','WT07-M-White',100.0000,1),(1771,'default','WT07-M-Yellow',100.0000,1),(1772,'default','WT07-L-Green',100.0000,1),(1773,'default','WT07-L-White',100.0000,1),(1774,'default','WT07-L-Yellow',100.0000,1),(1775,'default','WT07-XL-Green',100.0000,1),(1776,'default','WT07-XL-White',100.0000,1),(1777,'default','WT07-XL-Yellow',100.0000,1),(1778,'default','WT07',0.0000,1),(1779,'default','WT08-XS-Black',100.0000,1),(1780,'default','WT08-XS-Purple',100.0000,1),(1781,'default','WT08-XS-Yellow',100.0000,1),(1782,'default','WT08-S-Black',100.0000,1),(1783,'default','WT08-S-Purple',100.0000,1),(1784,'default','WT08-S-Yellow',100.0000,1),(1785,'default','WT08-M-Black',100.0000,1),(1786,'default','WT08-M-Purple',100.0000,1),(1787,'default','WT08-M-Yellow',100.0000,1),(1788,'default','WT08-L-Black',100.0000,1),(1789,'default','WT08-L-Purple',100.0000,1),(1790,'default','WT08-L-Yellow',100.0000,1),(1791,'default','WT08-XL-Black',100.0000,1),(1792,'default','WT08-XL-Purple',100.0000,1),(1793,'default','WT08-XL-Yellow',100.0000,1),(1794,'default','WT08',0.0000,1),(1795,'default','WT09-XS-Purple',100.0000,1),(1796,'default','WT09-XS-White',100.0000,1),(1797,'default','WT09-XS-Yellow',100.0000,1),(1798,'default','WT09-S-Purple',100.0000,1),(1799,'default','WT09-S-White',100.0000,1),(1800,'default','WT09-S-Yellow',100.0000,1),(1801,'default','WT09-M-Purple',100.0000,1),(1802,'default','WT09-M-White',100.0000,1),(1803,'default','WT09-M-Yellow',100.0000,1),(1804,'default','WT09-L-Purple',100.0000,1),(1805,'default','WT09-L-White',100.0000,1),(1806,'default','WT09-L-Yellow',100.0000,1),(1807,'default','WT09-XL-Purple',100.0000,1),(1808,'default','WT09-XL-White',100.0000,1),(1809,'default','WT09-XL-Yellow',100.0000,1),(1810,'default','WT09',0.0000,1),(1811,'default','WP01-28-Black',100.0000,1),(1812,'default','WP01-28-Gray',100.0000,1),(1813,'default','WP01-28-White',100.0000,1),(1814,'default','WP01-29-Black',100.0000,1),(1815,'default','WP01-29-Gray',100.0000,1),(1816,'default','WP01-29-White',100.0000,1),(1817,'default','WP01',0.0000,1),(1818,'default','WP02-28-Blue',100.0000,1),(1819,'default','WP02-28-Purple',100.0000,1),(1820,'default','WP02-28-Red',100.0000,1),(1821,'default','WP02-29-Blue',100.0000,1),(1822,'default','WP02-29-Purple',100.0000,1),(1823,'default','WP02-29-Red',100.0000,1),(1824,'default','WP02',0.0000,1),(1825,'default','WP03-28-Black',100.0000,1),(1826,'default','WP03-28-Blue',100.0000,1),(1827,'default','WP03-28-Purple',100.0000,1),(1828,'default','WP03-29-Black',100.0000,1),(1829,'default','WP03-29-Blue',100.0000,1),(1830,'default','WP03-29-Purple',100.0000,1),(1831,'default','WP03',0.0000,1),(1832,'default','WP04-28-Black',100.0000,1),(1833,'default','WP04-28-Blue',100.0000,1),(1834,'default','WP04-28-White',100.0000,1),(1835,'default','WP04-29-Black',100.0000,1),(1836,'default','WP04-29-Blue',100.0000,1),(1837,'default','WP04-29-White',100.0000,1),(1838,'default','WP04',0.0000,1),(1839,'default','WP05-28-Blue',100.0000,1),(1840,'default','WP05-28-Gray',100.0000,1),(1841,'default','WP05-28-Red',100.0000,1),(1842,'default','WP05-29-Blue',100.0000,1),(1843,'default','WP05-29-Gray',100.0000,1),(1844,'default','WP05-29-Red',100.0000,1),(1845,'default','WP05',0.0000,1),(1846,'default','WP06-28-Black',100.0000,1),(1847,'default','WP06-28-Blue',100.0000,1),(1848,'default','WP06-28-Orange',100.0000,1),(1849,'default','WP06-29-Black',100.0000,1),(1850,'default','WP06-29-Blue',100.0000,1),(1851,'default','WP06-29-Orange',100.0000,1),(1852,'default','WP06',0.0000,1),(1853,'default','WP07-28-Black',100.0000,1),(1854,'default','WP07-28-Blue',100.0000,1),(1855,'default','WP07-28-Orange',100.0000,1),(1856,'default','WP07-29-Black',100.0000,1),(1857,'default','WP07-29-Blue',100.0000,1),(1858,'default','WP07-29-Orange',100.0000,1),(1859,'default','WP07',0.0000,1),(1860,'default','WP08-28-Black',100.0000,1),(1861,'default','WP08-28-Green',100.0000,1),(1862,'default','WP08-28-Red',100.0000,1),(1863,'default','WP08-29-Black',100.0000,1),(1864,'default','WP08-29-Green',100.0000,1),(1865,'default','WP08-29-Red',100.0000,1),(1866,'default','WP08',0.0000,1),(1867,'default','WP09-28-Black',100.0000,1),(1868,'default','WP09-28-Blue',100.0000,1),(1869,'default','WP09-28-Purple',100.0000,1),(1870,'default','WP09-29-Black',100.0000,1),(1871,'default','WP09-29-Blue',100.0000,1),(1872,'default','WP09-29-Purple',100.0000,1),(1873,'default','WP09',0.0000,1),(1874,'default','WP10-28-Black',100.0000,1),(1875,'default','WP10-28-Gray',100.0000,1),(1876,'default','WP10-28-White',100.0000,1),(1877,'default','WP10-29-Black',100.0000,1),(1878,'default','WP10-29-Gray',100.0000,1),(1879,'default','WP10-29-White',100.0000,1),(1880,'default','WP10',0.0000,1),(1881,'default','WP11-28-Blue',100.0000,1),(1882,'default','WP11-28-Green',100.0000,1),(1883,'default','WP11-28-Red',100.0000,1),(1884,'default','WP11-29-Blue',100.0000,1),(1885,'default','WP11-29-Green',100.0000,1),(1886,'default','WP11-29-Red',100.0000,1),(1887,'default','WP11',0.0000,1),(1888,'default','WP12-28-Blue',100.0000,1),(1889,'default','WP12-28-Gray',100.0000,1),(1890,'default','WP12-28-Green',100.0000,1),(1891,'default','WP12-29-Blue',100.0000,1),(1892,'default','WP12-29-Gray',100.0000,1),(1893,'default','WP12-29-Green',100.0000,1),(1894,'default','WP12',0.0000,1),(1895,'default','WP13-28-Blue',100.0000,1),(1896,'default','WP13-28-Green',100.0000,1),(1897,'default','WP13-28-Orange',100.0000,1),(1898,'default','WP13-29-Blue',100.0000,1),(1899,'default','WP13-29-Green',100.0000,1),(1900,'default','WP13-29-Orange',100.0000,1),(1901,'default','WP13',0.0000,1),(1902,'default','WSH01-28-Black',100.0000,1),(1903,'default','WSH01-28-Green',100.0000,1),(1904,'default','WSH01-28-Red',100.0000,1),(1905,'default','WSH01-29-Black',100.0000,1),(1906,'default','WSH01-29-Green',100.0000,1),(1907,'default','WSH01-29-Red',100.0000,1),(1908,'default','WSH01-30-Black',100.0000,1),(1909,'default','WSH01-30-Green',100.0000,1),(1910,'default','WSH01-30-Red',100.0000,1),(1911,'default','WSH01-31-Black',100.0000,1),(1912,'default','WSH01-31-Green',100.0000,1),(1913,'default','WSH01-31-Red',100.0000,1),(1914,'default','WSH01-32-Black',100.0000,1),(1915,'default','WSH01-32-Green',100.0000,1),(1916,'default','WSH01-32-Red',100.0000,1),(1917,'default','WSH01',0.0000,1),(1918,'default','WSH02-28-Gray',100.0000,1),(1919,'default','WSH02-28-Orange',100.0000,1),(1920,'default','WSH02-28-Yellow',100.0000,1),(1921,'default','WSH02-29-Gray',100.0000,1),(1922,'default','WSH02-29-Orange',100.0000,1),(1923,'default','WSH02-29-Yellow',100.0000,1),(1924,'default','WSH02-30-Gray',100.0000,1),(1925,'default','WSH02-30-Orange',100.0000,1),(1926,'default','WSH02-30-Yellow',100.0000,1),(1927,'default','WSH02-31-Gray',100.0000,1),(1928,'default','WSH02-31-Orange',100.0000,1),(1929,'default','WSH02-31-Yellow',100.0000,1),(1930,'default','WSH02-32-Gray',100.0000,1),(1931,'default','WSH02-32-Orange',100.0000,1),(1932,'default','WSH02-32-Yellow',100.0000,1),(1933,'default','WSH02',0.0000,1),(1934,'default','WSH03-28-Blue',100.0000,1),(1935,'default','WSH03-28-Gray',100.0000,1),(1936,'default','WSH03-28-Orange',100.0000,1),(1937,'default','WSH03-29-Blue',100.0000,1),(1938,'default','WSH03-29-Gray',100.0000,1),(1939,'default','WSH03-29-Orange',100.0000,1),(1940,'default','WSH03-30-Blue',100.0000,1),(1941,'default','WSH03-30-Gray',100.0000,1),(1942,'default','WSH03-30-Orange',100.0000,1),(1943,'default','WSH03-31-Blue',100.0000,1),(1944,'default','WSH03-31-Gray',100.0000,1),(1945,'default','WSH03-31-Orange',100.0000,1),(1946,'default','WSH03-32-Blue',100.0000,1),(1947,'default','WSH03-32-Gray',100.0000,1),(1948,'default','WSH03-32-Orange',100.0000,1),(1949,'default','WSH03',0.0000,1),(1950,'default','WSH04-28-Black',100.0000,1),(1951,'default','WSH04-28-Green',100.0000,1),(1952,'default','WSH04-28-Orange',100.0000,1),(1953,'default','WSH04-29-Black',100.0000,1),(1954,'default','WSH04-29-Green',100.0000,1),(1955,'default','WSH04-29-Orange',100.0000,1),(1956,'default','WSH04-30-Black',100.0000,1),(1957,'default','WSH04-30-Green',100.0000,1),(1958,'default','WSH04-30-Orange',100.0000,1),(1959,'default','WSH04-31-Black',100.0000,1),(1960,'default','WSH04-31-Green',100.0000,1),(1961,'default','WSH04-31-Orange',100.0000,1),(1962,'default','WSH04-32-Black',100.0000,1),(1963,'default','WSH04-32-Green',100.0000,1),(1964,'default','WSH04-32-Orange',100.0000,1),(1965,'default','WSH04',0.0000,1),(1966,'default','WSH05-28-Blue',100.0000,1),(1967,'default','WSH05-28-Purple',100.0000,1),(1968,'default','WSH05-28-Yellow',100.0000,1),(1969,'default','WSH05-29-Blue',100.0000,1),(1970,'default','WSH05-29-Purple',100.0000,1),(1971,'default','WSH05-29-Yellow',100.0000,1),(1972,'default','WSH05-30-Blue',100.0000,1),(1973,'default','WSH05-30-Purple',100.0000,1),(1974,'default','WSH05-30-Yellow',100.0000,1),(1975,'default','WSH05-31-Blue',100.0000,1),(1976,'default','WSH05-31-Purple',100.0000,1),(1977,'default','WSH05-31-Yellow',100.0000,1),(1978,'default','WSH05-32-Blue',100.0000,1),(1979,'default','WSH05-32-Purple',100.0000,1),(1980,'default','WSH05-32-Yellow',100.0000,1),(1981,'default','WSH05',0.0000,1),(1982,'default','WSH06-28-Gray',100.0000,1),(1983,'default','WSH06-28-Orange',100.0000,1),(1984,'default','WSH06-28-Purple',100.0000,1),(1985,'default','WSH06-29-Gray',100.0000,1),(1986,'default','WSH06-29-Orange',100.0000,1),(1987,'default','WSH06-29-Purple',100.0000,1),(1988,'default','WSH06',0.0000,1),(1989,'default','WSH07-28-Black',100.0000,1),(1990,'default','WSH07-28-Blue',100.0000,1),(1991,'default','WSH07-28-Purple',100.0000,1),(1992,'default','WSH07-29-Black',100.0000,1),(1993,'default','WSH07-29-Blue',100.0000,1),(1994,'default','WSH07-29-Purple',100.0000,1),(1995,'default','WSH07',0.0000,1),(1996,'default','WSH08-28-Purple',100.0000,1),(1997,'default','WSH08-29-Purple',100.0000,1),(1998,'default','WSH08-30-Purple',100.0000,1),(1999,'default','WSH08-31-Purple',100.0000,1),(2000,'default','WSH08-32-Purple',100.0000,1),(2001,'default','WSH08',0.0000,1),(2002,'default','WSH09-28-Gray',100.0000,1),(2003,'default','WSH09-28-Green',100.0000,1),(2004,'default','WSH09-28-White',100.0000,1),(2005,'default','WSH09-29-Gray',100.0000,1),(2006,'default','WSH09-29-Green',100.0000,1),(2007,'default','WSH09-29-White',100.0000,1),(2008,'default','WSH09',0.0000,1),(2009,'default','WSH10-28-Black',100.0000,1),(2010,'default','WSH10-28-Orange',100.0000,1),(2011,'default','WSH10-28-White',100.0000,1),(2012,'default','WSH10-29-Black',100.0000,1),(2013,'default','WSH10-29-Orange',100.0000,1),(2014,'default','WSH10-29-White',100.0000,1),(2015,'default','WSH10',0.0000,1),(2016,'default','WSH11-28-Blue',100.0000,1),(2017,'default','WSH11-28-Orange',100.0000,1),(2018,'default','WSH11-28-Red',100.0000,1),(2019,'default','WSH11-29-Blue',100.0000,1),(2020,'default','WSH11-29-Orange',100.0000,1),(2021,'default','WSH11-29-Red',100.0000,1),(2022,'default','WSH11',0.0000,1),(2023,'default','WSH12-28-Green',100.0000,1),(2024,'default','WSH12-28-Purple',100.0000,1),(2025,'default','WSH12-28-Red',100.0000,1),(2026,'default','WSH12-29-Green',100.0000,1),(2027,'default','WSH12-29-Purple',100.0000,1),(2028,'default','WSH12-29-Red',100.0000,1),(2029,'default','WSH12-30-Green',100.0000,1),(2030,'default','WSH12-30-Purple',100.0000,1),(2031,'default','WSH12-30-Red',100.0000,1),(2032,'default','WSH12-31-Green',100.0000,1),(2033,'default','WSH12-31-Purple',100.0000,1),(2034,'default','WSH12-31-Red',100.0000,1),(2035,'default','WSH12-32-Green',100.0000,1),(2036,'default','WSH12-32-Purple',100.0000,1),(2037,'default','WSH12-32-Red',100.0000,1),(2038,'default','WSH12',0.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_source_stock_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_stock_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_source_stock_link` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `priority` smallint unsigned NOT NULL,
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `[[DBPREFIX]]INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`),
  KEY `FK_A7FCEDA59E4EE5A11A6AD98F0A9B364F` (`source_code`),
  KEY `[[DBPREFIX]]INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`),
  CONSTRAINT `FK_A7FCEDA59E4EE5A11A6AD98F0A9B364F` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]INV_SOURCE_STOCK_LNK_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `[[dbprefix]]inventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_source_stock_link`
--

LOCK TABLES `[[dbprefix]]inventory_source_stock_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_stock_link` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_source_stock_link` VALUES (1,1,'default',1);
/*!40000 ALTER TABLE `[[dbprefix]]inventory_source_stock_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]inventory_stock`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_stock` (
  `stock_id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_stock`
--

LOCK TABLES `[[dbprefix]]inventory_stock` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_stock` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_stock` VALUES (1,'Default Stock');
/*!40000 ALTER TABLE `[[dbprefix]]inventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Temporary view structure for view `[[dbprefix]]inventory_stock_1`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock_1`;
/*!50001 DROP VIEW IF EXISTS `[[dbprefix]]inventory_stock_1`*/;
SET @saved_cs_client     = @@character_set_client;
/*!50503 SET character_set_client = utf8mb4 */;
/*!50001 CREATE VIEW `[[dbprefix]]inventory_stock_1` AS SELECT 
 1 AS `product_id`,
 1 AS `website_id`,
 1 AS `stock_id`,
 1 AS `quantity`,
 1 AS `is_salable`,
 1 AS `sku`*/;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `[[dbprefix]]inventory_stock_sales_channel`
--

DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock_sales_channel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]inventory_stock_sales_channel` (
  `type` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `stock_id` int unsigned NOT NULL,
  PRIMARY KEY (`type`,`code`),
  KEY `[[DBPREFIX]]INV_STOCK_SALES_CHANNEL_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` (`stock_id`),
  CONSTRAINT `[[DBPREFIX]]INV_STOCK_SALES_CHANNEL_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `[[dbprefix]]inventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]inventory_stock_sales_channel`
--

LOCK TABLES `[[dbprefix]]inventory_stock_sales_channel` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]inventory_stock_sales_channel` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]inventory_stock_sales_channel` VALUES ('website','base',1);
/*!40000 ALTER TABLE `[[dbprefix]]inventory_stock_sales_channel` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]jwt_auth_revoked`
--

DROP TABLE IF EXISTS `[[dbprefix]]jwt_auth_revoked`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]jwt_auth_revoked` (
  `user_type_id` int unsigned NOT NULL COMMENT 'User Type ID',
  `user_id` int unsigned NOT NULL COMMENT 'User ID',
  `revoke_before` bigint unsigned NOT NULL COMMENT 'Not accepting tokens issued before this timestamp',
  PRIMARY KEY (`user_type_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Holds revoked JWT authentication data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]jwt_auth_revoked`
--

LOCK TABLES `[[dbprefix]]jwt_auth_revoked` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]jwt_auth_revoked` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]jwt_auth_revoked` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]layout_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]layout_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]layout_link` (
  `layout_link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `theme_id` int unsigned NOT NULL COMMENT 'Theme ID',
  `layout_update_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update ID',
  `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Defines whether Layout Update is Temporary',
  PRIMARY KEY (`layout_link_id`),
  KEY `[[DBPREFIX]]LAYOUT_LINK_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`),
  KEY `[[DBPREFIX]]LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`),
  KEY `[[DBPREFIX]]LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`),
  CONSTRAINT `[[DBPREFIX]]LAYOUT_LINK_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]LAYOUT_LINK_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]LYT_LNK_LYT_UPDATE_ID_[[DBPREFIX]]LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `[[dbprefix]]layout_update` (`layout_update_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='Layout Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]layout_link`
--

LOCK TABLES `[[dbprefix]]layout_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]layout_link` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]layout_link` VALUES (1,0,3,1,0),(2,0,3,2,0),(3,0,3,3,0),(4,0,3,4,0),(5,0,3,5,0),(6,0,3,6,0),(7,0,3,7,0),(8,0,3,8,0),(9,0,3,9,0),(10,0,3,10,0),(11,0,3,11,0),(12,0,3,12,0),(13,0,3,13,0),(14,0,3,14,0),(15,0,3,15,0),(16,0,3,16,0),(17,0,3,17,0);
/*!40000 ALTER TABLE `[[dbprefix]]layout_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]layout_update`
--

DROP TABLE IF EXISTS `[[dbprefix]]layout_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]layout_update` (
  `layout_update_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID',
  `handle` varchar(255) DEFAULT NULL COMMENT 'Handle',
  `xml` text COMMENT 'Xml',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Update Timestamp',
  PRIMARY KEY (`layout_update_id`),
  KEY `[[DBPREFIX]]LAYOUT_UPDATE_HANDLE` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='Layout Updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]layout_update`
--

LOCK TABLES `[[dbprefix]]layout_update` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]layout_update` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]layout_update` VALUES (1,'contact_index_index','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"e37dS0ByOyu7c2SDOdNLUg3vQEcGI46E\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">2</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(2,'default','<body><referenceContainer name=\"cms_footer_links_container\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"P5pG6qu4lvFS3xSlQudZf3tTLqa7Vp68\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">1</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(3,'catalog_category_view_id_37','<body><referenceContainer name=\"sidebar.main\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"ErzHeTWxGtb2u3gKdjuglKGTE3CvFjQt\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">3</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(4,'catalog_category_view_id_3','<body><referenceContainer name=\"sidebar.main\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"qtWvKbq6Xklg8cW0B7T9evJhsK8bezzu\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">4</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(5,'catalog_category_view_id_11','<body><referenceContainer name=\"sidebar.main\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"QGBhwHmyjv9ynIUygTHRprzTB8zaH2bx\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">5</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(6,'catalog_category_view_id_20','<body><referenceContainer name=\"sidebar.main\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"psXOzL1L0ABG8oXUZHgEwbS4bOJH31Cx\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">6</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(7,'catalog_category_view_id_38','<body><referenceContainer name=\"sidebar.main\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"VyIll3pnsXg4UuFOptfTfyJRnJ7UsnGH\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">7</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(8,'catalog_category_view_id_20','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"RpzS3hwYKul9dWpovEqmYa4UmEur9qlC\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">8</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(9,'catalog_category_view_id_9','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"WfiBGGHGx2a6dEUs3gX4W33MZRxNgPGw\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">9</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(10,'catalog_category_view_id_11','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"De7eyl34j7xQbajQHiMphGAnmRrqpj0h\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">10</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(11,'catalog_category_view_id_3','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"96IIpjaDxfwfRmbQdHRA2QSp37PODzAb\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">11</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(12,'catalog_category_view_id_38','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"HeI9LAUiQQ156eVyeKQiX5i5eRklTrLI\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">13</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(13,'catalog_category_view_id_37','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"SS6vVmViye40So6VS9ULX6xe5ADVetKb\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">12</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(14,'cms_index_index','<body><referenceContainer name=\"content\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"Ziu8ycreI7pyEr0MF51u0AaDRWEkokEG\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">14</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(15,'catalog_category_view_id_39','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"xw1nTHDCW9kBJa4JftI5WuR7zadLuyaE\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">15</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(16,'catalog_category_view_id_40','<body><referenceContainer name=\"content.top\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"kXnrPu8r6jGwjGxINZADEgPJCtirRY1A\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">16</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00'),(17,'customer_account_login','<body><referenceContainer name=\"customer.login.container\"><block class=\"Magento\\Cms\\Block\\Widget\\Block\" name=\"hygyTeiHRrWPJLSzAT2OvBcxudOQAwV5\" template=\"widget/static_block/default.phtml\"><action method=\"setData\"><argument name=\"name\" xsi:type=\"string\">block_id</argument><argument name=\"value\" xsi:type=\"string\">17</argument></action></block></referenceContainer></body>',0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `[[dbprefix]]layout_update` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]login_as_customer`
--

DROP TABLE IF EXISTS `[[dbprefix]]login_as_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]login_as_customer` (
  `secret` varchar(64) NOT NULL COMMENT 'Login Secret',
  `customer_id` int NOT NULL COMMENT 'Customer ID',
  `admin_id` int NOT NULL COMMENT 'Admin ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  PRIMARY KEY (`secret`),
  KEY `[[DBPREFIX]]LOGIN_AS_CUSTOMER_CREATED_AT` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Magento Login as Customer Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]login_as_customer`
--

LOCK TABLES `[[dbprefix]]login_as_customer` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]login_as_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]login_as_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]login_as_customer_assistance_allowed`
--

DROP TABLE IF EXISTS `[[dbprefix]]login_as_customer_assistance_allowed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]login_as_customer_assistance_allowed` (
  `customer_id` int unsigned NOT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`customer_id`),
  CONSTRAINT `FK_9A8E2AFC28B1513F453046DF7E9DBAFF` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Magento Login as Customer Assistance Allowed Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]login_as_customer_assistance_allowed`
--

LOCK TABLES `[[dbprefix]]login_as_customer_assistance_allowed` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]login_as_customer_assistance_allowed` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]login_as_customer_assistance_allowed` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]magento_acknowledged_bulk`
--

DROP TABLE IF EXISTS `[[dbprefix]]magento_acknowledged_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]magento_acknowledged_bulk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`),
  CONSTRAINT `[[DBPREFIX]]MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_[[DBPREFIX]]MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `[[dbprefix]]magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Bulk that was viewed by user from notification area';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]magento_acknowledged_bulk`
--

LOCK TABLES `[[dbprefix]]magento_acknowledged_bulk` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]magento_acknowledged_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]magento_acknowledged_bulk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]magento_bulk`
--

DROP TABLE IF EXISTS `[[dbprefix]]magento_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]magento_bulk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)',
  `uuid` varbinary(39) DEFAULT NULL COMMENT 'Bulk UUID (can be exposed to reference bulk entity)',
  `user_id` int unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action',
  `user_type` int DEFAULT NULL COMMENT 'Which type of user',
  `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description',
  `operation_count` int unsigned NOT NULL COMMENT 'Total number of operations scheduled within this bulk',
  `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bulk start time',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]MAGENTO_BULK_UUID` (`uuid`),
  KEY `[[DBPREFIX]]MAGENTO_BULK_USER_ID` (`user_id`),
  KEY `[[DBPREFIX]]MAGENTO_BULK_START_TIME` (`start_time`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Bulk entity that represents set of related asynchronous operations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]magento_bulk`
--

LOCK TABLES `[[dbprefix]]magento_bulk` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]magento_bulk` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]magento_bulk` VALUES (1,_binary '0d128c87-eb71-4e4b-92c9-75a049ffd7a9',NULL,2,'Rule processing: 1',1,'[[regtime]]'),(2,_binary '59577464-119e-4a88-99b4-502d1fafa019',NULL,2,'Rule processing: 1',1,'[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]magento_bulk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]magento_login_as_customer_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]magento_login_as_customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]magento_login_as_customer_log` (
  `log_id` int NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `time` timestamp NULL DEFAULT NULL COMMENT 'Event Date',
  `user_id` int unsigned DEFAULT NULL COMMENT 'User Id',
  `user_name` varchar(40) DEFAULT NULL COMMENT 'User Name',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer Id',
  `customer_email` varchar(40) DEFAULT NULL COMMENT 'Customer email',
  PRIMARY KEY (`log_id`),
  KEY `[[DBPREFIX]]MAGENTO_LOGIN_AS_CUSTOMER_LOG_USER_ID` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Login as Customer Logging';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]magento_login_as_customer_log`
--

LOCK TABLES `[[dbprefix]]magento_login_as_customer_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]magento_login_as_customer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]magento_login_as_customer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]magento_operation`
--

DROP TABLE IF EXISTS `[[dbprefix]]magento_operation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]magento_operation` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Operation ID',
  `operation_key` int unsigned DEFAULT NULL COMMENT 'Operation Key',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Name of the related message queue topic',
  `serialized_data` blob COMMENT 'Data (serialized) required to perform an operation',
  `result_serialized_data` blob COMMENT 'Result data (serialized) after perform an operation',
  `status` smallint DEFAULT '0' COMMENT 'Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)',
  `error_code` smallint DEFAULT NULL COMMENT 'Code of the error that appeared during operation execution (used to aggregate related failed operations)',
  `result_message` varchar(255) DEFAULT NULL COMMENT 'Operation result message',
  `started_at` timestamp NULL DEFAULT NULL COMMENT 'Datetime the operation started processing',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`),
  KEY `[[DBPREFIX]]MAGENTO_OPERATION_STATUS_STARTED_AT` (`status`,`started_at`),
  CONSTRAINT `[[DBPREFIX]]MAGENTO_OPERATION_BULK_UUID_[[DBPREFIX]]MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `[[dbprefix]]magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Operation entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]magento_operation`
--

LOCK TABLES `[[dbprefix]]magento_operation` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]magento_operation` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]magento_operation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]media_content_asset`
--

DROP TABLE IF EXISTS `[[dbprefix]]media_content_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]media_content_asset` (
  `asset_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `entity_type` varchar(255) NOT NULL COMMENT 'Content type',
  `entity_id` varchar(255) NOT NULL COMMENT 'Content entity id',
  `field` varchar(255) NOT NULL COMMENT 'Content field',
  PRIMARY KEY (`entity_type`,`entity_id`,`field`,`asset_id`),
  KEY `[[DBPREFIX]]MEDIA_CONTENT_ASSET_ASSET_ID` (`asset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Relation between media content and media asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]media_content_asset`
--

LOCK TABLES `[[dbprefix]]media_content_asset` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]media_content_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]media_content_asset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]media_gallery_asset`
--

DROP TABLE IF EXISTS `[[dbprefix]]media_gallery_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]media_gallery_asset` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `path` text COMMENT 'Path',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text COMMENT 'Description',
  `source` varchar(255) DEFAULT NULL COMMENT 'Source',
  `hash` varchar(255) DEFAULT NULL COMMENT 'File hash',
  `content_type` varchar(255) DEFAULT NULL COMMENT 'Content Type',
  `width` int unsigned NOT NULL DEFAULT '0' COMMENT 'Width',
  `height` int unsigned NOT NULL DEFAULT '0' COMMENT 'Height',
  `size` int unsigned NOT NULL COMMENT 'Asset file size in bytes',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]MEDIA_GALLERY_ASSET_ID` (`id`),
  FULLTEXT KEY `[[DBPREFIX]]MEDIA_GALLERY_ASSET_TITLE` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]media_gallery_asset`
--

LOCK TABLES `[[dbprefix]]media_gallery_asset` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_asset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]media_gallery_asset_keyword`
--

DROP TABLE IF EXISTS `[[dbprefix]]media_gallery_asset_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]media_gallery_asset_keyword` (
  `keyword_id` int unsigned NOT NULL COMMENT 'Keyword Id',
  `asset_id` int unsigned NOT NULL COMMENT 'Asset ID',
  PRIMARY KEY (`keyword_id`,`asset_id`),
  KEY `[[DBPREFIX]]MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID` (`asset_id`),
  KEY `[[DBPREFIX]]MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID` (`keyword_id`),
  CONSTRAINT `[[DBPREFIX]]MDA_GLR_ASSET_KEYWORD_ASSET_ID_[[DBPREFIX]]MDA_GLR_ASSET_ID` FOREIGN KEY (`asset_id`) REFERENCES `[[dbprefix]]media_gallery_asset` (`id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]MDA_GLR_ASSET_KEYWORD_KEYWORD_ID_[[DBPREFIX]]MDA_GLR_KEYWORD_ID` FOREIGN KEY (`keyword_id`) REFERENCES `[[dbprefix]]media_gallery_keyword` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Asset Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]media_gallery_asset_keyword`
--

LOCK TABLES `[[dbprefix]]media_gallery_asset_keyword` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_asset_keyword` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_asset_keyword` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]media_gallery_keyword`
--

DROP TABLE IF EXISTS `[[dbprefix]]media_gallery_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]media_gallery_keyword` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Keyword ID',
  `keyword` varchar(255) NOT NULL COMMENT 'Keyword',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]MEDIA_GALLERY_KEYWORD_KEYWORD` (`keyword`),
  KEY `[[DBPREFIX]]MEDIA_GALLERY_KEYWORD_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]media_gallery_keyword`
--

LOCK TABLES `[[dbprefix]]media_gallery_keyword` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_keyword` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]media_gallery_keyword` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]mview_state`
--

DROP TABLE IF EXISTS `[[dbprefix]]mview_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]mview_state` (
  `state_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'View State ID',
  `view_id` varchar(255) DEFAULT NULL COMMENT 'View ID',
  `mode` varchar(16) DEFAULT 'disabled' COMMENT 'View Mode',
  `status` varchar(16) DEFAULT 'idle' COMMENT 'View Status',
  `updated` datetime DEFAULT NULL COMMENT 'View updated time',
  `version_id` int unsigned DEFAULT NULL COMMENT 'View Version ID',
  PRIMARY KEY (`state_id`),
  KEY `[[DBPREFIX]]MVIEW_STATE_VIEW_ID` (`view_id`),
  KEY `[[DBPREFIX]]MVIEW_STATE_MODE` (`mode`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COMMENT='View State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]mview_state`
--

LOCK TABLES `[[dbprefix]]mview_state` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]mview_state` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]mview_state` VALUES (1,'sales_order_data_exporter','enabled','idle','[[regtime]]',16),(2,'sales_order_status_data_exporter','enabled','idle','[[regtime]]',12),(3,'store_data_exporter','enabled','idle','[[regtime]]',2),(4,'design_config_dummy','enabled','idle','[[regtime]]',NULL),(5,'customer_dummy','enabled','idle','[[regtime]]',NULL),(6,'catalog_category_product','enabled','idle','[[regtime]]',NULL),(7,'catalog_product_category','enabled','idle','[[regtime]]',NULL),(8,'catalogrule_rule','enabled','idle','[[regtime]]',NULL),(9,'catalog_product_attribute','enabled','idle','[[regtime]]',NULL),(10,'inventory','enabled','idle','[[regtime]]',NULL),(11,'catalogrule_product','enabled','idle','[[regtime]]',NULL),(12,'cataloginventory_stock','enabled','idle','[[regtime]]',NULL),(13,'catalog_product_price','enabled','idle','[[regtime]]',NULL),(14,'catalogsearch_fulltext','enabled','idle','[[regtime]]',NULL);
/*!40000 ALTER TABLE `[[dbprefix]]mview_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_problem`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_problem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_problem` (
  `problem_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Problem ID',
  `subscriber_id` int unsigned DEFAULT NULL COMMENT 'Subscriber ID',
  `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID',
  `problem_error_code` int unsigned DEFAULT '0' COMMENT 'Problem Error Code',
  `problem_error_text` varchar(200) DEFAULT NULL COMMENT 'Problem Error Text',
  PRIMARY KEY (`problem_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`),
  CONSTRAINT `FK_9A0EF739131075541975180BD4666ABF` FOREIGN KEY (`subscriber_id`) REFERENCES `[[dbprefix]]newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]NEWSLETTER_PROBLEM_QUEUE_ID_[[DBPREFIX]]NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `[[dbprefix]]newsletter_queue` (`queue_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Problems';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_problem`
--

LOCK TABLES `[[dbprefix]]newsletter_problem` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_problem` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_problem` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_queue`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_queue` (
  `queue_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `template_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Template ID',
  `newsletter_type` int DEFAULT NULL COMMENT 'Newsletter Type',
  `newsletter_text` text COMMENT 'Newsletter Text',
  `newsletter_styles` text COMMENT 'Newsletter Styles',
  `newsletter_subject` varchar(200) DEFAULT NULL COMMENT 'Newsletter Subject',
  `newsletter_sender_name` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Name',
  `newsletter_sender_email` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Email',
  `queue_status` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Status',
  `queue_start_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Start At',
  `queue_finish_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Finish At',
  PRIMARY KEY (`queue_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`),
  CONSTRAINT `[[DBPREFIX]]NLTTR_QUEUE_TEMPLATE_ID_[[DBPREFIX]]NLTTR_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `[[dbprefix]]newsletter_template` (`template_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_queue`
--

LOCK TABLES `[[dbprefix]]newsletter_queue` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_queue_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_queue_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_queue_link` (
  `queue_link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Link ID',
  `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID',
  `subscriber_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Subscriber ID',
  `letter_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Letter Sent At',
  PRIMARY KEY (`queue_link_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`),
  CONSTRAINT `FK_C036601298B8945332203F84525A00FC` FOREIGN KEY (`subscriber_id`) REFERENCES `[[dbprefix]]newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]NLTTR_QUEUE_LNK_QUEUE_ID_[[DBPREFIX]]NLTTR_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `[[dbprefix]]newsletter_queue` (`queue_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_queue_link`
--

LOCK TABLES `[[dbprefix]]newsletter_queue_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_queue_store_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_queue_store_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_queue_store_link` (
  `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`queue_id`,`store_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]NLTTR_QUEUE_STORE_LNK_QUEUE_ID_[[DBPREFIX]]NLTTR_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `[[dbprefix]]newsletter_queue` (`queue_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue Store Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_queue_store_link`
--

LOCK TABLES `[[dbprefix]]newsletter_queue_store_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue_store_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_queue_store_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_subscriber`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_subscriber` (
  `subscriber_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Subscriber ID',
  `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID',
  `change_status_at` timestamp NULL DEFAULT NULL COMMENT 'Change Status At',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `subscriber_email` varchar(150) DEFAULT NULL COMMENT 'Subscriber Email',
  `subscriber_status` int NOT NULL DEFAULT '0' COMMENT 'Subscriber Status',
  `subscriber_confirm_code` varchar(32) DEFAULT 'NULL' COMMENT 'Subscriber Confirm Code',
  PRIMARY KEY (`subscriber_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`),
  CONSTRAINT `[[DBPREFIX]]NEWSLETTER_SUBSCRIBER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Subscriber';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_subscriber`
--

LOCK TABLES `[[dbprefix]]newsletter_subscriber` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_subscriber` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_subscriber` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]newsletter_template`
--

DROP TABLE IF EXISTS `[[dbprefix]]newsletter_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]newsletter_template` (
  `template_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) DEFAULT NULL COMMENT 'Template Code',
  `template_text` text COMMENT 'Template Text',
  `template_styles` text COMMENT 'Template Styles',
  `template_type` int unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) DEFAULT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `template_actual` smallint unsigned DEFAULT '1' COMMENT 'Template Actual',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Added At',
  `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At',
  `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  KEY `[[DBPREFIX]]NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`),
  KEY `[[DBPREFIX]]NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `[[DBPREFIX]]NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Template';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]newsletter_template`
--

LOCK TABLES `[[dbprefix]]newsletter_template` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]newsletter_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]oauth_consumer`
--

DROP TABLE IF EXISTS `[[dbprefix]]oauth_consumer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]oauth_consumer` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `name` varchar(255) NOT NULL COMMENT 'Name of consumer',
  `key` varchar(32) NOT NULL COMMENT 'Key code',
  `secret` varchar(128) NOT NULL COMMENT 'Secret code',
  `callback_url` text COMMENT 'Callback URL',
  `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]OAUTH_CONSUMER_KEY` (`key`),
  UNIQUE KEY `[[DBPREFIX]]OAUTH_CONSUMER_SECRET` (`secret`),
  KEY `[[DBPREFIX]]OAUTH_CONSUMER_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]OAUTH_CONSUMER_UPDATED_AT` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Consumers';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]oauth_consumer`
--

LOCK TABLES `[[dbprefix]]oauth_consumer` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_consumer` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_consumer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]oauth_nonce`
--

DROP TABLE IF EXISTS `[[dbprefix]]oauth_nonce`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]oauth_nonce` (
  `nonce` varchar(32) NOT NULL COMMENT 'Nonce String',
  `timestamp` int unsigned NOT NULL COMMENT 'Nonce Timestamp',
  `consumer_id` int unsigned NOT NULL COMMENT 'Consumer ID',
  PRIMARY KEY (`nonce`,`consumer_id`),
  KEY `[[DBPREFIX]]OAUTH_NONCE_CONSUMER_ID_[[DBPREFIX]]OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`),
  KEY `[[DBPREFIX]]OAUTH_NONCE_TIMESTAMP` (`timestamp`),
  CONSTRAINT `[[DBPREFIX]]OAUTH_NONCE_CONSUMER_ID_[[DBPREFIX]]OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `[[dbprefix]]oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Nonce';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]oauth_nonce`
--

LOCK TABLES `[[dbprefix]]oauth_nonce` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_nonce` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_nonce` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]oauth_token`
--

DROP TABLE IF EXISTS `[[dbprefix]]oauth_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]oauth_token` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `consumer_id` int unsigned DEFAULT NULL COMMENT 'Oauth Consumer ID',
  `admin_id` int unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer user ID',
  `type` varchar(16) NOT NULL COMMENT 'Token Type',
  `token` varchar(32) NOT NULL COMMENT 'Token',
  `secret` varchar(128) NOT NULL COMMENT 'Token Secret',
  `verifier` varchar(32) DEFAULT NULL COMMENT 'Token Verifier',
  `callback_url` text NOT NULL COMMENT 'Token Callback URL',
  `revoked` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token revoked',
  `authorized` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token authorized',
  `user_type` int DEFAULT NULL COMMENT 'User type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Token creation timestamp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]OAUTH_TOKEN_TOKEN` (`token`),
  KEY `[[DBPREFIX]]OAUTH_TOKEN_ADMIN_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` (`admin_id`),
  KEY `[[DBPREFIX]]OAUTH_TOKEN_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  KEY `[[DBPREFIX]]OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`),
  KEY `[[DBPREFIX]]OAUTH_TOKEN_CREATED_AT` (`created_at`),
  CONSTRAINT `[[DBPREFIX]]OAUTH_TOKEN_ADMIN_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]OAUTH_TOKEN_CONSUMER_ID_[[DBPREFIX]]OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `[[dbprefix]]oauth_consumer` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]OAUTH_TOKEN_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]oauth_token`
--

LOCK TABLES `[[dbprefix]]oauth_token` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]oauth_token_request_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]oauth_token_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]oauth_token_request_log` (
  `log_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login',
  `user_type` smallint unsigned NOT NULL COMMENT 'User type (admin or customer)',
  `failures_count` smallint unsigned DEFAULT '0' COMMENT 'Number of failed authentication attempts in a row',
  `lock_expires_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Lock expiration time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `[[DBPREFIX]]OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Log of token request authentication failures.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]oauth_token_request_log`
--

LOCK TABLES `[[dbprefix]]oauth_token_request_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_token_request_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]oauth_token_request_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]pagebuilder_template`
--

DROP TABLE IF EXISTS `[[dbprefix]]pagebuilder_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]pagebuilder_template` (
  `template_id` int NOT NULL AUTO_INCREMENT COMMENT 'Template ID Auto Increment',
  `name` varchar(1024) NOT NULL COMMENT 'Template Name',
  `preview_image` varchar(1024) DEFAULT NULL COMMENT 'Template Preview Image',
  `template` longtext NOT NULL COMMENT 'Master Format HTML',
  `created_for` varchar(255) DEFAULT NULL COMMENT 'Created For',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`template_id`),
  FULLTEXT KEY `[[DBPREFIX]]PAGEBUILDER_TEMPLATE_NAME` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Page Builder Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]pagebuilder_template`
--

LOCK TABLES `[[dbprefix]]pagebuilder_template` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]pagebuilder_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]pagebuilder_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]password_reset_request_event`
--

DROP TABLE IF EXISTS `[[dbprefix]]password_reset_request_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]password_reset_request_event` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `request_type` smallint unsigned NOT NULL COMMENT 'Type of the event under a security control',
  `account_reference` varchar(255) DEFAULT NULL COMMENT 'An identifier for existing account or another target',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp when the event occurs',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`),
  KEY `[[DBPREFIX]]PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Password Reset Request Event under a security control';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]password_reset_request_event`
--

LOCK TABLES `[[dbprefix]]password_reset_request_event` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]password_reset_request_event` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]password_reset_request_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]patch_list`
--

DROP TABLE IF EXISTS `[[dbprefix]]patch_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]patch_list` (
  `patch_id` int NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment',
  `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name',
  PRIMARY KEY (`patch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb3 COMMENT='List of data/schema patches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]patch_list`
--

LOCK TABLES `[[dbprefix]]patch_list` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]patch_list` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\CatalogRule\\Setup\\Patch\\Schema\\CleanUpProductPriceReplicaTable'),(4,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(5,'Magento\\TwoFactorAuth\\Setup\\Patch\\Schema\\CopyTablesFromOldModule'),(6,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\CreateLegacyStockStatusView'),(7,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\InitializeDefaultStock'),(8,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\UpdateInventorySourceItem'),(9,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\ReindexDefaultSource'),(10,'Magento\\InventorySales\\Setup\\Patch\\Schema\\InitializeWebsiteDefaultSock'),(11,'Magento\\Review\\Setup\\Patch\\Schema\\AddUniqueConstraintToReviewEntitySummary'),(12,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(13,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(14,'Magento\\Config\\Setup\\Patch\\Data\\RemoveTinymceConfig'),(15,'Magento\\Config\\Setup\\Patch\\Data\\UnsetTinymce3'),(16,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(17,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(18,'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),(19,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAlbania'),(20,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForArgentina'),(21,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(22,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(23,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(24,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelarus'),(25,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),(26,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBolivia'),(27,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBulgaria'),(28,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChile'),(29,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),(30,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),(31,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCostaRica'),(32,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCzechia'),(33,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForDenmark'),(34,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForEcuador'),(35,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGreece'),(36,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGuyana'),(37,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIceland'),(38,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForItaly'),(39,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(40,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForParaguay'),(41,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPeru'),(42,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),(43,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPortugal'),(44,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSuriname'),(45,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSweden'),(46,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUkraine'),(47,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUruguay'),(48,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForVenezuela'),(49,'Magento\\Directory\\Setup\\Patch\\Data\\AddRegionsForIndia'),(50,'Magento\\Directory\\Setup\\Patch\\Data\\UpdateRegionNamesForSwitzerland'),(51,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(52,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(53,'Magento\\Security\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(54,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(55,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(56,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(57,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(58,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(59,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(60,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(61,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(62,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(63,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(64,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(65,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(66,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(67,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(68,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(69,'Magento\\Customer\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(70,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAddressAttributesSortOrder'),(71,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(72,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(73,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateDefaultCustomerGroupInConfig'),(74,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(75,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(76,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(77,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(78,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(79,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(80,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(81,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(82,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(83,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(84,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(85,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(86,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(87,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(88,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),(89,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMultiselectAttributesBackendTypes'),(90,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductDescriptionOrder'),(91,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(92,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductUrlKey'),(93,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(94,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(95,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(96,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeConsumerSecret'),(97,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeOauthToken'),(98,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(99,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(100,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(101,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(102,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(103,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchRemovalNotification'),(104,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(105,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(106,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),(107,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(108,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(109,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(110,'Magento\\Quote\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(111,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(112,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(113,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeyForProducts'),(114,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),(115,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(116,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(117,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(118,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(119,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(120,'Magento\\Sales\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(121,'Magento\\MediaGalleryUi\\Setup\\Patch\\Data\\AddMediaGalleryPermissions'),(122,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(123,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(124,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(125,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\CopyConfigFromOldModule'),(126,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptConfiguration'),(127,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptGoogleSecrets'),(128,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptSecrets'),(129,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\GenerateDuoSecurityKey'),(130,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\PopulateCountryTable'),(131,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\ResetU2fConfig'),(132,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\UpdateOtpWindow'),(133,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(134,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(135,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(136,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(137,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(138,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(139,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(140,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(141,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(142,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(143,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(144,'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),(145,'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(146,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(147,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(148,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(149,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(150,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(151,'Magento\\CatalogSampleData\\Setup\\Patch\\Data\\InstallCatalogSampleData'),(152,'Magento\\Elasticsearch\\Setup\\Patch\\Data\\InvalidateIndex'),(153,'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(154,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(155,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(156,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(157,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(158,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(159,'Magento\\BundleSampleData\\Setup\\Patch\\Data\\InstallBundleSampleData'),(160,'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),(161,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(162,'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),(163,'Magento\\GroupedProductSampleData\\Setup\\Patch\\Data\\InstallGroupedProductSampleData'),(164,'Magento\\DownloadableSampleData\\Setup\\Patch\\Data\\InstallDownloadableSampleData'),(165,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(166,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(167,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(168,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(169,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(170,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpdateProductAttribute'),(171,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpgradePageBuilderStripStyles'),(172,'Magento\\ThemeSampleData\\Setup\\Patch\\Data\\InstallThemeSampleData'),(173,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(174,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(175,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateBmltoPayLater'),(176,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(177,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonLabel'),(178,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonSize'),(179,'Magento\\ConfigurableSampleData\\Setup\\Patch\\Data\\InstallConfigurableSampleData'),(180,'Magento\\ServicesId\\Setup\\Patch\\Data\\RemoveKeySetEncryptedConfigFlag'),(181,'Magento\\ReCaptchaMigration\\Setup\\Patch\\Data\\MigrateConfigToRecaptchaModules'),(182,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(183,'Magento\\ReviewSampleData\\Setup\\Patch\\Data\\InstallReviewSampleData'),(184,'Magento\\OfflineShippingSampleData\\Setup\\Patch\\Data\\InstallOfflineShippingSampleData'),(185,'Magento\\CatalogRuleSampleData\\Setup\\Patch\\Data\\InstallCatalogRuleSampleData'),(186,'Magento\\TaxSampleData\\Setup\\Patch\\Data\\InstallTaxSampleData'),(187,'Magento\\SalesRuleSampleData\\Setup\\Patch\\Data\\InstallSalesRuleSampleData'),(188,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(189,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(190,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(191,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(192,'Magento\\SwatchesSampleData\\Setup\\Patch\\Data\\InstallSwatchesSampleData'),(193,'Magento\\MsrpSampleData\\Setup\\Patch\\Data\\InstallMsrpSampleData'),(194,'Magento\\CustomerSampleData\\Setup\\Patch\\Data\\InstallCustomerSampleData'),(195,'Magento\\CmsSampleData\\Setup\\Patch\\Data\\InstallCmsSampleData'),(196,'Magento\\SalesSampleData\\Setup\\Patch\\Data\\InstallSalesSampleData'),(197,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(198,'Magento\\ProductLinksSampleData\\Setup\\Patch\\Data\\InstallProductLinksSampleData'),(199,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(200,'Magento\\WidgetSampleData\\Setup\\Patch\\Data\\InstallWidgetSampleData'),(201,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(202,'Magento\\Wishlist\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(203,'Magento\\WishlistSampleData\\Setup\\Patch\\Data\\InstallWishlistSampleData');
/*!40000 ALTER TABLE `[[dbprefix]]patch_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_order_data_production_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_order_data_production_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_order_data_production_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Order identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Order Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_order_data_production_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_order_data_production_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_data_production_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_data_production_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Order identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Order Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_data_sandbox_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Order Status identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Order Status Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_status_data_prod_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Order Status identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Order Status Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_order_status_data_sandbox_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_store_data_production_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_store_data_production_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_store_data_production_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Store identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Store Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_store_data_production_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_store_data_production_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_store_data_production_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_store_data_production_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash`
--

DROP TABLE IF EXISTS `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash` (
  `identifier` varchar(64) NOT NULL COMMENT 'Store identifier',
  `feed_hash` varchar(64) NOT NULL COMMENT 'feed_hash',
  `submitted_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Submitted At',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Payment Services Store Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash`
--

LOCK TABLES `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]payment_services_store_data_sandbox_submitted_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_billing_agreement`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_billing_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_billing_agreement` (
  `agreement_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID',
  `customer_id` int unsigned NOT NULL COMMENT 'Customer ID',
  `method_code` varchar(32) NOT NULL COMMENT 'Method Code',
  `reference_id` varchar(32) NOT NULL COMMENT 'Reference ID',
  `status` varchar(20) NOT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label',
  PRIMARY KEY (`agreement_id`),
  KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Billing Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_billing_agreement`
--

LOCK TABLES `[[dbprefix]]paypal_billing_agreement` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_billing_agreement_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_billing_agreement_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_billing_agreement_order` (
  `agreement_id` int unsigned NOT NULL COMMENT 'Agreement ID',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  PRIMARY KEY (`agreement_id`,`order_id`),
  KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`),
  CONSTRAINT `FK_9EE0F3B5AE741E1A1BDDF5A663BFCB42` FOREIGN KEY (`agreement_id`) REFERENCES `[[dbprefix]]paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_ORDER_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Billing Agreement Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_billing_agreement_order`
--

LOCK TABLES `[[dbprefix]]paypal_billing_agreement_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_cert`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_cert`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_cert` (
  `cert_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `content` text COMMENT 'Content',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`cert_id`),
  KEY `[[DBPREFIX]]PAYPAL_CERT_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]PAYPAL_CERT_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Certificate Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_cert`
--

LOCK TABLES `[[dbprefix]]paypal_cert` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_cert` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_cert` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_payment_transaction`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_payment_transaction` (
  `transaction_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `additional_information` blob COMMENT 'Additional Information',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `[[DBPREFIX]]PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='PayPal Payflow Link Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_payment_transaction`
--

LOCK TABLES `[[dbprefix]]paypal_payment_transaction` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_payment_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_settlement_report`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_settlement_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_settlement_report` (
  `report_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Report ID',
  `report_date` date DEFAULT NULL COMMENT 'Report Date',
  `account_id` varchar(64) DEFAULT NULL COMMENT 'Account ID',
  `filename` varchar(24) DEFAULT NULL COMMENT 'Filename',
  `last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last Modified',
  PRIMARY KEY (`report_id`),
  UNIQUE KEY `[[DBPREFIX]]PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Settlement Report Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_settlement_report`
--

LOCK TABLES `[[dbprefix]]paypal_settlement_report` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_settlement_report` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_settlement_report` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]paypal_settlement_report_row`
--

DROP TABLE IF EXISTS `[[dbprefix]]paypal_settlement_report_row`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]paypal_settlement_report_row` (
  `row_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `report_id` int unsigned NOT NULL COMMENT 'Report ID',
  `transaction_id` varchar(19) DEFAULT NULL COMMENT 'Transaction ID',
  `invoice_id` varchar(127) DEFAULT NULL COMMENT 'Invoice ID',
  `paypal_reference_id` varchar(19) DEFAULT NULL COMMENT 'Paypal Reference ID',
  `paypal_reference_id_type` varchar(3) DEFAULT NULL COMMENT 'Paypal Reference ID Type',
  `transaction_event_code` varchar(5) DEFAULT NULL COMMENT 'Transaction Event Code',
  `transaction_initiation_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Initiation Date',
  `transaction_completion_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Completion Date',
  `transaction_debit_or_credit` varchar(2) NOT NULL DEFAULT 'CR' COMMENT 'Transaction Debit Or Credit',
  `gross_transaction_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Gross Transaction Amount',
  `gross_transaction_currency` varchar(3) DEFAULT NULL COMMENT 'Gross Transaction Currency',
  `fee_debit_or_credit` varchar(2) DEFAULT NULL COMMENT 'Fee Debit Or Credit',
  `fee_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Fee Amount',
  `fee_currency` varchar(3) DEFAULT NULL COMMENT 'Fee Currency',
  `custom_field` varchar(255) DEFAULT NULL COMMENT 'Custom Field',
  `consumer_id` varchar(127) DEFAULT NULL COMMENT 'Consumer ID',
  `payment_tracking_id` varchar(255) DEFAULT NULL COMMENT 'Payment Tracking ID',
  `store_id` varchar(50) DEFAULT NULL COMMENT 'Store ID',
  PRIMARY KEY (`row_id`),
  KEY `[[DBPREFIX]]PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`),
  CONSTRAINT `FK_4B9222F51A9075175B75AB5C187FBFBF` FOREIGN KEY (`report_id`) REFERENCES `[[dbprefix]]paypal_settlement_report` (`report_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Settlement Report Row Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]paypal_settlement_report_row`
--

LOCK TABLES `[[dbprefix]]paypal_settlement_report_row` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_settlement_report_row` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]paypal_settlement_report_row` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]persistent_session`
--

DROP TABLE IF EXISTS `[[dbprefix]]persistent_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]persistent_session` (
  `persistent_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Session ID',
  `key` varchar(50) NOT NULL COMMENT 'Unique cookie key',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `info` text COMMENT 'Session Data',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`persistent_id`),
  UNIQUE KEY `[[DBPREFIX]]PERSISTENT_SESSION_KEY` (`key`),
  UNIQUE KEY `[[DBPREFIX]]PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]PERSISTENT_SESSION_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]PERSISTENT_SESSION_UPDATED_AT` (`updated_at`),
  CONSTRAINT `[[DBPREFIX]]PERSISTENT_SESS_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PERSISTENT_SESSION_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Persistent Session';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]persistent_session`
--

LOCK TABLES `[[dbprefix]]persistent_session` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]persistent_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]persistent_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]product_alert_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]product_alert_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]product_alert_price` (
  `alert_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert price ID',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price amount',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date',
  `last_send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert last send date',
  `send_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert send count',
  `status` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status',
  PRIMARY KEY (`alert_price_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_PRICE_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_PRICE_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRODUCT_ALERT_PRICE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Product Alert Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]product_alert_price`
--

LOCK TABLES `[[dbprefix]]product_alert_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]product_alert_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]product_alert_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]product_alert_stock`
--

DROP TABLE IF EXISTS `[[dbprefix]]product_alert_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]product_alert_stock` (
  `alert_stock_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock ID',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date',
  `send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert send date',
  `send_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Send Count',
  `status` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status',
  PRIMARY KEY (`alert_stock_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_STOCK_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_STOCK_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRD_ALERT_STOCK_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]PRODUCT_ALERT_STOCK_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Product Alert Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]product_alert_stock`
--

LOCK TABLES `[[dbprefix]]product_alert_stock` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]product_alert_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]product_alert_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]queue`
--

DROP TABLE IF EXISTS `[[dbprefix]]queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]queue` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Queue name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]QUEUE_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb3 COMMENT='Table storing unique queues';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]queue`
--

LOCK TABLES `[[dbprefix]]queue` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]queue` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]queue` VALUES (21,'async.operations.all'),(4,'catalog_website_attribute_value_sync'),(17,'codegenerator'),(6,'export'),(12,'inventory.indexer.sourceItem'),(13,'inventory.indexer.stock'),(8,'inventory.mass.update'),(9,'inventory.reservations.cleanup'),(10,'inventory.reservations.update'),(11,'inventory.reservations.updateSalabilityStatus'),(7,'inventory.source.items.cleanup'),(14,'media.content.synchronization'),(15,'media.gallery.renditions.update'),(16,'media.gallery.synchronization'),(5,'media.storage.catalog.image.resize'),(2,'product_action_attribute.update'),(3,'product_action_attribute.website.update'),(20,'product_alert.queue'),(19,'sales.rule.quote.trigger.recollect'),(18,'sales.rule.update.coupon.usage'),(1,'saveConfig');
/*!40000 ALTER TABLE `[[dbprefix]]queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]queue_lock`
--

DROP TABLE IF EXISTS `[[dbprefix]]queue_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]queue_lock` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `message_code` varchar(255) NOT NULL DEFAULT '' COMMENT 'Message Code',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]QUEUE_LOCK_MESSAGE_CODE` (`message_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Messages that were processed are inserted here to be locked.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]queue_lock`
--

LOCK TABLES `[[dbprefix]]queue_lock` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]queue_lock` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]queue_lock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]queue_message`
--

DROP TABLE IF EXISTS `[[dbprefix]]queue_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]queue_message` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic',
  `body` longtext COMMENT 'Message body',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Queue messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]queue_message`
--

LOCK TABLES `[[dbprefix]]queue_message` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]queue_message` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]queue_message` VALUES (1,'sales.rule.update.coupon.usage','{\"id\":null,\"bulk_uuid\":\"0d128c87-eb71-4e4b-92c9-75a049ffd7a9\",\"topic_name\":\"sales.rule.update.coupon.usage\",\"serialized_data\":\"{\\\"applied_rule_ids\\\":[1],\\\"coupon_code\\\":\\\"\\\",\\\"customer_id\\\":1,\\\"is_increment\\\":true}\",\"result_serialized_data\":null,\"status\":4,\"result_message\":null,\"error_code\":null}'),(2,'inventory.reservations.updateSalabilityStatus','{\"skus\":[],\"stock\":1}'),(3,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"WS03-XS-Red\"],\"stock\":1}'),(4,'sales.rule.update.coupon.usage','{\"id\":null,\"bulk_uuid\":\"59577464-119e-4a88-99b4-502d1fafa019\",\"topic_name\":\"sales.rule.update.coupon.usage\",\"serialized_data\":\"{\\\"applied_rule_ids\\\":[1],\\\"coupon_code\\\":\\\"\\\",\\\"customer_id\\\":1,\\\"is_increment\\\":true}\",\"result_serialized_data\":null,\"status\":4,\"result_message\":null,\"error_code\":null}'),(5,'inventory.reservations.updateSalabilityStatus','{\"skus\":[],\"stock\":1}'),(6,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"WS08-XS-Blue\"],\"stock\":1}');
/*!40000 ALTER TABLE `[[dbprefix]]queue_message` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]queue_message_status`
--

DROP TABLE IF EXISTS `[[dbprefix]]queue_message_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]queue_message_status` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Relation ID',
  `queue_id` int unsigned NOT NULL COMMENT 'Queue ID',
  `message_id` bigint unsigned NOT NULL COMMENT 'Message ID',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `status` smallint unsigned NOT NULL COMMENT 'Message status in particular queue',
  `number_of_trials` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Number of trials to processed failed message processing',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`),
  KEY `[[DBPREFIX]]QUEUE_MESSAGE_STATUS_MESSAGE_ID_[[DBPREFIX]]QUEUE_MESSAGE_ID` (`message_id`),
  KEY `[[DBPREFIX]]QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`),
  CONSTRAINT `[[DBPREFIX]]QUEUE_MESSAGE_STATUS_MESSAGE_ID_[[DBPREFIX]]QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `[[dbprefix]]queue_message` (`id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]QUEUE_MESSAGE_STATUS_QUEUE_ID_[[DBPREFIX]]QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `[[dbprefix]]queue` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Relation table to keep associations between queues and messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]queue_message_status`
--

LOCK TABLES `[[dbprefix]]queue_message_status` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]queue_message_status` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]queue_message_status` VALUES (1,18,1,'[[regtime]]',2,0),(2,11,2,'[[regtime]]',2,0),(3,11,3,'[[regtime]]',2,0),(4,18,4,'[[regtime]]',2,0),(5,11,5,'[[regtime]]',2,0),(6,11,6,'[[regtime]]',2,0);
/*!40000 ALTER TABLE `[[dbprefix]]queue_message_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]queue_poison_pill`
--

DROP TABLE IF EXISTS `[[dbprefix]]queue_poison_pill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]queue_poison_pill` (
  `version` varchar(255) NOT NULL COMMENT 'Poison Pill version.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sequence table for poison pill versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]queue_poison_pill`
--

LOCK TABLES `[[dbprefix]]queue_poison_pill` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]queue_poison_pill` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]queue_poison_pill` VALUES ('version-66c6fba9af9de');
/*!40000 ALTER TABLE `[[dbprefix]]queue_poison_pill` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `converted_at` timestamp NULL DEFAULT NULL COMMENT 'Converted At',
  `is_active` smallint unsigned DEFAULT '1' COMMENT 'Is Active',
  `is_virtual` smallint unsigned DEFAULT '0' COMMENT 'Is Virtual',
  `is_multi_shipping` smallint unsigned DEFAULT '0' COMMENT 'Is Multi Shipping',
  `items_count` int unsigned DEFAULT '0' COMMENT 'Items Count',
  `items_qty` decimal(12,4) DEFAULT '0.0000' COMMENT 'Items Qty',
  `orig_order_id` int unsigned DEFAULT '0' COMMENT 'Orig Order ID',
  `store_to_base_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Base Rate',
  `store_to_quote_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Quote Rate',
  `base_currency_code` varchar(255) DEFAULT NULL COMMENT 'Base Currency Code',
  `store_currency_code` varchar(255) DEFAULT NULL COMMENT 'Store Currency Code',
  `quote_currency_code` varchar(255) DEFAULT NULL COMMENT 'Quote Currency Code',
  `grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Grand Total',
  `checkout_method` varchar(255) DEFAULT NULL COMMENT 'Checkout Method',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `customer_tax_class_id` int unsigned DEFAULT NULL COMMENT 'Customer Tax Class ID',
  `customer_group_id` int unsigned DEFAULT '0' COMMENT 'Customer Group ID',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_prefix` varchar(40) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_firstname` varchar(255) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_middlename` varchar(40) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_lastname` varchar(255) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_suffix` varchar(40) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint unsigned DEFAULT '1' COMMENT 'Customer Note Notify',
  `customer_is_guest` smallint unsigned DEFAULT '0' COMMENT 'Customer Is Guest',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `applied_rule_ids` varchar(255) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `reserved_order_id` varchar(64) DEFAULT NULL COMMENT 'Reserved Order ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `global_currency_code` varchar(255) DEFAULT NULL COMMENT 'Global Currency Code',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_quote_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Quote Rate',
  `customer_taxvat` varchar(255) DEFAULT NULL COMMENT 'Customer Taxvat',
  `customer_gender` varchar(255) DEFAULT NULL COMMENT 'Customer Gender',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal With Discount',
  `is_changed` int unsigned DEFAULT NULL COMMENT 'Is Changed',
  `trigger_recollect` smallint NOT NULL DEFAULT '0' COMMENT 'Trigger Recollect',
  `ext_shipping_info` text COMMENT 'Ext Shipping Info',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `is_persistent` smallint unsigned DEFAULT '0' COMMENT 'Is Quote Persistent',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`),
  KEY `[[DBPREFIX]]QUOTE_STORE_ID_UPDATED_AT` (`store_id`,`updated_at`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote`
--

LOCK TABLES `[[dbprefix]]quote` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote` VALUES (1,1,'[[regtime]]','[[regtime]]',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'USD','USD','USD',36.3900,36.3900,NULL,1,3,1,'roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,'1973-12-15 00:00:00',NULL,1,0,NULL,'1','000000001',NULL,NULL,'USD',1.0000,1.0000,NULL,'2',29.0000,29.0000,29.0000,29.0000,1,0,NULL,NULL,0),(2,1,'[[regtime]]','[[regtime]]',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'USD','USD','USD',39.6400,39.6400,NULL,1,3,1,'roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,'1973-12-15 00:00:00',NULL,1,0,NULL,'1','000000002',NULL,NULL,'USD',1.0000,1.0000,NULL,'2',32.0000,32.0000,32.0000,32.0000,1,0,NULL,NULL,0);
/*!40000 ALTER TABLE `[[dbprefix]]quote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_address`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_address` (
  `address_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address ID',
  `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `save_in_address_book` smallint DEFAULT '0' COMMENT 'Save In Address Book',
  `customer_address_id` int unsigned DEFAULT NULL COMMENT 'Customer Address ID',
  `address_type` varchar(10) DEFAULT NULL COMMENT 'Address Type',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Prefix',
  `firstname` varchar(255) DEFAULT NULL,
  `middlename` varchar(40) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `region_id` int unsigned DEFAULT NULL COMMENT 'Region ID',
  `postcode` varchar(20) DEFAULT NULL COMMENT 'Postcode',
  `country_id` varchar(30) DEFAULT NULL COMMENT 'Country ID',
  `telephone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `same_as_billing` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Same As Billing',
  `collect_shipping_rates` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Collect Shipping Rates',
  `shipping_method` varchar(120) DEFAULT NULL,
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `weight` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Weight',
  `subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal With Discount',
  `tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Shipping Amount',
  `base_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Shipping Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Grand Total',
  `customer_notes` text COMMENT 'Customer Notes',
  `applied_taxes` text COMMENT 'Applied Taxes',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `vat_id` text COMMENT 'Vat ID',
  `vat_is_valid` smallint DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text COMMENT 'Vat Request ID',
  `vat_request_date` text COMMENT 'Vat Request Date',
  `vat_request_success` smallint DEFAULT NULL COMMENT 'Vat Request Success',
  `validated_country_code` text COMMENT 'Validated Country Code',
  `validated_vat_number` text COMMENT 'Validated Vat Number',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  PRIMARY KEY (`address_id`),
  KEY `[[DBPREFIX]]QUOTE_ADDRESS_QUOTE_ID` (`quote_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_ADDRESS_QUOTE_ID_[[DBPREFIX]]QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `[[dbprefix]]quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_address`
--

LOCK TABLES `[[dbprefix]]quote_address` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_address` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote_address` VALUES (1,1,'[[regtime]]','[[regtime]]',1,0,1,'billing','roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,NULL,'6146 Honey Bluff Parkway','Calder','Michigan',33,'49628-7978','US','(555) 229-3326',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,1,'[[regtime]]','[[regtime]]',1,0,1,'shipping','roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,NULL,'6146 Honey Bluff Parkway','Calder','Michigan',33,'49628-7978','US','(555) 229-3326',NULL,1,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,29.0000,29.0000,29.0000,29.0000,2.3900,2.3900,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,36.3900,36.3900,NULL,'{\"US-MI-*-Rate 1\":{\"amount\":2.39,\"base_amount\":2.39,\"percent\":8.25,\"id\":\"US-MI-*-Rate 1\",\"rates\":[{\"percent\":8.25,\"code\":\"US-MI-*-Rate 1\",\"title\":\"US-MI-*-Rate 1\"}],\"item_id\":null,\"item_type\":\"product\",\"associated_item_id\":null,\"process\":0}}',NULL,0.0000,0.0000,31.3900,31.3900,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,2,'[[regtime]]','[[regtime]]',1,0,1,'billing','roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,NULL,'6146 Honey Bluff Parkway','Calder','Michigan',33,'49628-7978','US','(555) 229-3326',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,2,'[[regtime]]','[[regtime]]',1,0,1,'shipping','roni_cost@example.com',NULL,'Veronica',NULL,'Costello',NULL,NULL,'6146 Honey Bluff Parkway','Calder','Michigan',33,'49628-7978','US','(555) 229-3326',NULL,1,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,32.0000,32.0000,32.0000,32.0000,2.6400,2.6400,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,39.6400,39.6400,NULL,'{\"US-MI-*-Rate 1\":{\"amount\":2.64,\"base_amount\":2.64,\"percent\":8.25,\"id\":\"US-MI-*-Rate 1\",\"rates\":[{\"percent\":8.25,\"code\":\"US-MI-*-Rate 1\",\"title\":\"US-MI-*-Rate 1\"}],\"item_id\":null,\"item_type\":\"product\",\"associated_item_id\":null,\"process\":0}}',NULL,0.0000,0.0000,34.6400,34.6400,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `[[dbprefix]]quote_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_address_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_address_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_address_item` (
  `address_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Item ID',
  `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_address_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Address ID',
  `quote_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Item ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `super_product_id` int unsigned DEFAULT NULL COMMENT 'Super Product ID',
  `parent_product_id` int unsigned DEFAULT NULL COMMENT 'Parent Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `image` varchar(255) DEFAULT NULL COMMENT 'Image',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `is_qty_decimal` int unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `discount_percent` decimal(12,4) DEFAULT NULL COMMENT 'Discount Percent',
  `no_discount` int unsigned DEFAULT NULL COMMENT 'No Discount',
  `tax_percent` decimal(12,4) DEFAULT NULL COMMENT 'Tax Percent',
  `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price',
  `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` int unsigned DEFAULT NULL COMMENT 'Free Shipping',
  PRIMARY KEY (`address_item_id`),
  KEY `[[DBPREFIX]]QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`),
  KEY `[[DBPREFIX]]QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `[[DBPREFIX]]QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`),
  KEY `[[DBPREFIX]]QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `FK_C8DC8D276B1E4E72CF56C0BA214DC849` FOREIGN KEY (`parent_item_id`) REFERENCES `[[dbprefix]]quote_address_item` (`address_item_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]QUOTE_ADDR_ITEM_QUOTE_ADDR_ID_[[DBPREFIX]]QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `[[dbprefix]]quote_address` (`address_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_[[DBPREFIX]]QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `[[dbprefix]]quote_item` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Address Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_address_item`
--

LOCK TABLES `[[dbprefix]]quote_address_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_address_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]quote_address_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_id_mask`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_id_mask`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_id_mask` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `quote_id` int unsigned NOT NULL COMMENT 'Quote ID',
  `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  PRIMARY KEY (`entity_id`,`quote_id`),
  KEY `[[DBPREFIX]]QUOTE_ID_MASK_QUOTE_ID` (`quote_id`),
  KEY `[[DBPREFIX]]QUOTE_ID_MASK_MASKED_ID` (`masked_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_ID_MASK_QUOTE_ID_[[DBPREFIX]]QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `[[dbprefix]]quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Quote ID and masked ID mapping';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_id_mask`
--

LOCK TABLES `[[dbprefix]]quote_id_mask` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_id_mask` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]quote_id_mask` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_item` (
  `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `is_qty_decimal` smallint unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint unsigned DEFAULT '0' COMMENT 'No Discount',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `base_price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price',
  `custom_price` decimal(20,4) DEFAULT NULL COMMENT 'Custom Price',
  `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `original_custom_price` decimal(20,4) DEFAULT NULL COMMENT 'Original Custom Price',
  `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  PRIMARY KEY (`item_id`),
  KEY `[[DBPREFIX]]QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `[[DBPREFIX]]QUOTE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]QUOTE_ITEM_QUOTE_ID` (`quote_id`),
  KEY `[[DBPREFIX]]QUOTE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_ITEM_PARENT_ITEM_ID_[[DBPREFIX]]QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `[[dbprefix]]quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]QUOTE_ITEM_QUOTE_ID_[[DBPREFIX]]QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `[[dbprefix]]quote` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]QUOTE_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_item`
--

LOCK TABLES `[[dbprefix]]quote_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote_item` VALUES (1,1,'[[regtime]]','[[regtime]]',1428,1,NULL,0,'WS03-XS-Red','Iris Workout Top',NULL,'1',NULL,0,0,1.0000,1.0000,29.0000,29.0000,NULL,0.0000,0.0000,0.0000,8.2500,2.3900,2.3900,29.0000,29.0000,0.0000,1.0000,'configurable',NULL,NULL,NULL,NULL,NULL,31.3900,31.3900,31.3900,31.3900,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,1,'[[regtime]]','[[regtime]]',1415,1,1,0,'WS03-XS-Red','Iris Workout Top-XS-Red',NULL,NULL,NULL,0,0,1.0000,1.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,2,'[[regtime]]','[[regtime]]',1492,1,NULL,0,'WS08-XS-Blue','Minerva LumaTech&trade; V-Tee',NULL,'1',NULL,0,0,1.0000,1.0000,32.0000,32.0000,NULL,0.0000,0.0000,0.0000,8.2500,2.6400,2.6400,32.0000,32.0000,0.0000,1.0000,'configurable',NULL,NULL,NULL,NULL,NULL,34.6400,34.6400,34.6400,34.6400,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,2,'[[regtime]]','[[regtime]]',1478,1,3,0,'WS08-XS-Blue','Minerva LumaTech&trade; V-Tee-XS-Blue',NULL,NULL,NULL,0,0,1.0000,1.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `[[dbprefix]]quote_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_item_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_item_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `item_id` int unsigned NOT NULL COMMENT 'Item ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_ITEM_OPTION_ITEM_ID_[[DBPREFIX]]QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `[[dbprefix]]quote_item` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Item Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_item_option`
--

LOCK TABLES `[[dbprefix]]quote_item_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_item_option` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote_item_option` VALUES (1,1,1428,'info_buyRequest','{\"qty\":1,\"super_attribute\":{\"142\":\"166\",\"93\":\"58\"}}'),(2,1,1428,'attributes','{\"142\":\"166\",\"93\":\"58\"}'),(3,1,1415,'product_qty_1415','1'),(4,1,1415,'simple_product','1415'),(5,2,1415,'info_buyRequest','{\"qty\":1,\"super_attribute\":{\"142\":\"166\",\"93\":\"58\"}}'),(6,2,1415,'parent_product_id','1428'),(7,3,1492,'info_buyRequest','{\"qty\":1,\"super_attribute\":{\"142\":\"166\",\"93\":\"50\"}}'),(8,3,1492,'attributes','{\"142\":\"166\",\"93\":\"50\"}'),(9,3,1478,'product_qty_1478','1'),(10,3,1478,'simple_product','1478'),(11,4,1478,'info_buyRequest','{\"qty\":1,\"super_attribute\":{\"142\":\"166\",\"93\":\"50\"}}'),(12,4,1478,'parent_product_id','1492');
/*!40000 ALTER TABLE `[[dbprefix]]quote_item_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_payment`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_payment` (
  `payment_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payment ID',
  `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `cc_type` varchar(255) DEFAULT NULL COMMENT 'Cc Type',
  `cc_number_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Number Enc',
  `cc_last_4` varchar(255) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_cid_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Cid Enc',
  `cc_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_exp_month` varchar(255) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_exp_year` smallint unsigned DEFAULT '0' COMMENT 'Cc Exp Year',
  `cc_ss_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Owner',
  `cc_ss_start_month` smallint unsigned DEFAULT '0' COMMENT 'Cc Ss Start Month',
  `cc_ss_start_year` smallint unsigned DEFAULT '0' COMMENT 'Cc Ss Start Year',
  `po_number` varchar(255) DEFAULT NULL COMMENT 'Po Number',
  `additional_data` text COMMENT 'Additional Data',
  `cc_ss_issue` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `additional_information` text COMMENT 'Additional Information',
  `paypal_payer_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer ID',
  `paypal_payer_status` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Status',
  `paypal_correlation_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Correlation ID',
  PRIMARY KEY (`payment_id`),
  KEY `[[DBPREFIX]]QUOTE_PAYMENT_QUOTE_ID` (`quote_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_PAYMENT_QUOTE_ID_[[DBPREFIX]]QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `[[dbprefix]]quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_payment`
--

LOCK TABLES `[[dbprefix]]quote_payment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_payment` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote_payment` VALUES (1,1,'[[regtime]]','[[regtime]]','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(2,2,'[[regtime]]','[[regtime]]','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]quote_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]quote_shipping_rate`
--

DROP TABLE IF EXISTS `[[dbprefix]]quote_shipping_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]quote_shipping_rate` (
  `rate_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate ID',
  `address_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Address ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `carrier` varchar(255) DEFAULT NULL COMMENT 'Carrier',
  `carrier_title` varchar(255) DEFAULT NULL COMMENT 'Carrier Title',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `method_description` text COMMENT 'Method Description',
  `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `error_message` text COMMENT 'Error Message',
  `method_title` text COMMENT 'Method Title',
  PRIMARY KEY (`rate_id`),
  KEY `[[DBPREFIX]]QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`),
  CONSTRAINT `[[DBPREFIX]]QUOTE_SHPP_RATE_ADDR_ID_[[DBPREFIX]]QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`address_id`) REFERENCES `[[dbprefix]]quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Shipping Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]quote_shipping_rate`
--

LOCK TABLES `[[dbprefix]]quote_shipping_rate` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]quote_shipping_rate` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]quote_shipping_rate` VALUES (1,2,'[[regtime]]','[[regtime]]','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(2,2,'[[regtime]]','[[regtime]]','tablerate','Best Way','tablerate_bestway','bestway',NULL,15.0000,NULL,'Table Rate'),(3,4,'[[regtime]]','[[regtime]]','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(4,4,'[[regtime]]','[[regtime]]','tablerate','Best Way','tablerate_bestway','bestway',NULL,15.0000,NULL,'Table Rate');
/*!40000 ALTER TABLE `[[dbprefix]]quote_shipping_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating` (
  `rating_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating ID',
  `entity_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code',
  `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Position On Storefront',
  `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'Rating is active.',
  PRIMARY KEY (`rating_id`),
  UNIQUE KEY `[[DBPREFIX]]RATING_RATING_CODE` (`rating_code`),
  KEY `[[DBPREFIX]]RATING_ENTITY_ID` (`entity_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_ENTITY_ID_[[DBPREFIX]]RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]rating_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Ratings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating`
--

LOCK TABLES `[[dbprefix]]rating` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating` VALUES (1,1,'Quality',0,1),(2,1,'Value',0,1),(3,1,'Price',0,1),(4,1,'Rating',0,1);
/*!40000 ALTER TABLE `[[dbprefix]]rating` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_entity` (
  `entity_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]RATING_ENTITY_ENTITY_CODE` (`entity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Rating entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_entity`
--

LOCK TABLES `[[dbprefix]]rating_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review');
/*!40000 ALTER TABLE `[[dbprefix]]rating_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating Option ID',
  `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID',
  `code` varchar(32) NOT NULL COMMENT 'Rating Option Code',
  `value` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Option Value',
  `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Ration option position on Storefront',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]RATING_OPTION_RATING_ID` (`rating_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_OPTION_RATING_ID_[[DBPREFIX]]RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `[[dbprefix]]rating` (`rating_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Rating options';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_option`
--

LOCK TABLES `[[dbprefix]]rating_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_option` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5),(16,4,'1',1,1),(17,4,'2',2,2),(18,4,'3',3,3),(19,4,'4',4,4),(20,4,'5',5,5);
/*!40000 ALTER TABLE `[[dbprefix]]rating_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_option_vote`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_option_vote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_option_vote` (
  `vote_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Vote ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Vote option ID',
  `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP',
  `remote_ip_long` bigint NOT NULL DEFAULT '0' COMMENT 'Customer IP converted to long integer format',
  `customer_id` int unsigned DEFAULT '0' COMMENT 'Customer ID',
  `entity_pk_value` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID',
  `review_id` bigint unsigned DEFAULT NULL COMMENT 'Review ID',
  `percent` smallint NOT NULL DEFAULT '0' COMMENT 'Percent amount',
  `value` smallint NOT NULL DEFAULT '0' COMMENT 'Vote option value',
  PRIMARY KEY (`vote_id`),
  KEY `[[DBPREFIX]]RATING_OPTION_VOTE_REVIEW_ID_[[DBPREFIX]]REVIEW_REVIEW_ID` (`review_id`),
  KEY `[[DBPREFIX]]RATING_OPTION_VOTE_OPTION_ID` (`option_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_OPTION_VOTE_OPTION_ID_[[DBPREFIX]]RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]rating_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]RATING_OPTION_VOTE_REVIEW_ID_[[DBPREFIX]]REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `[[dbprefix]]review` (`review_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=347 DEFAULT CHARSET=utf8mb3 COMMENT='Rating option values';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_option_vote`
--

LOCK TABLES `[[dbprefix]]rating_option_vote` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_option_vote` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating_option_vote` VALUES (1,17,'',0,NULL,1,4,1,40,2),(2,18,'',0,NULL,1,4,2,60,3),(3,20,'',0,NULL,6,4,3,100,5),(4,18,'',0,NULL,6,4,4,60,3),(5,17,'',0,NULL,6,4,5,40,2),(6,19,'',0,NULL,3,4,6,80,4),(7,18,'',0,NULL,3,4,7,60,3),(8,18,'',0,NULL,3,4,8,60,3),(9,20,'',0,NULL,2,4,9,100,5),(10,19,'',0,NULL,2,4,10,80,4),(11,16,'',0,NULL,4,4,11,20,1),(12,19,'',0,NULL,4,4,12,80,4),(13,20,'',0,NULL,4,4,13,100,5),(14,20,'',0,NULL,5,4,14,100,5),(15,17,'',0,NULL,5,4,15,40,2),(16,20,'',0,NULL,37,4,16,100,5),(17,20,'',0,NULL,37,4,17,100,5),(18,18,'',0,NULL,37,4,18,60,3),(19,19,'',0,NULL,40,4,19,80,4),(20,19,'',0,NULL,40,4,20,80,4),(21,18,'',0,NULL,40,4,21,60,3),(22,18,'',0,NULL,38,4,22,60,3),(23,17,'',0,NULL,38,4,23,40,2),(24,17,'',0,NULL,38,4,24,40,2),(25,19,'',0,NULL,36,4,25,80,4),(26,19,'',0,NULL,36,4,26,80,4),(27,20,'',0,NULL,39,4,27,100,5),(28,19,'',0,NULL,39,4,28,80,4),(29,17,'',0,NULL,39,4,29,40,2),(30,17,'',0,NULL,39,4,30,40,2),(31,20,'',0,NULL,270,4,31,100,5),(32,19,'',0,NULL,270,4,32,80,4),(33,20,'',0,NULL,286,4,33,100,5),(34,19,'',0,NULL,286,4,34,80,4),(35,17,'',0,NULL,414,4,35,40,2),(36,17,'',0,NULL,414,4,36,40,2),(37,19,'',0,NULL,414,4,37,80,4),(38,20,'',0,NULL,302,4,38,100,5),(39,19,'',0,NULL,302,4,39,80,4),(40,20,'',0,NULL,302,4,40,100,5),(41,20,'',0,NULL,398,4,41,100,5),(42,18,'',0,NULL,398,4,42,60,3),(43,19,'',0,NULL,398,4,43,80,4),(44,17,'',0,NULL,318,4,44,40,2),(45,18,'',0,NULL,318,4,45,60,3),(46,18,'',0,NULL,334,4,46,60,3),(47,18,'',0,NULL,334,4,47,60,3),(48,19,'',0,NULL,334,4,48,80,4),(49,19,'',0,NULL,350,4,49,80,4),(50,18,'',0,NULL,350,4,50,60,3),(51,19,'',0,NULL,366,4,51,80,4),(52,18,'',0,NULL,366,4,52,60,3),(53,17,'',0,NULL,737,4,53,40,2),(54,19,'',0,NULL,737,4,54,80,4),(55,16,'',0,NULL,737,4,55,20,1),(56,17,'',0,NULL,750,4,56,40,2),(57,17,'',0,NULL,750,4,57,40,2),(58,18,'',0,NULL,750,4,58,60,3),(59,19,'',0,NULL,763,4,59,80,4),(60,18,'',0,NULL,763,4,60,60,3),(61,19,'',0,NULL,776,4,61,80,4),(62,20,'',0,NULL,776,4,62,100,5),(63,19,'',0,NULL,776,4,63,80,4),(64,19,'',0,NULL,789,4,64,80,4),(65,19,'',0,NULL,789,4,65,80,4),(66,18,'',0,NULL,789,4,66,60,3),(67,18,'',0,NULL,558,4,67,60,3),(68,19,'',0,NULL,558,4,68,80,4),(69,20,'',0,NULL,558,4,69,100,5),(70,20,'',0,NULL,574,4,70,100,5),(71,19,'',0,NULL,574,4,71,80,4),(72,20,'',0,NULL,526,4,72,100,5),(73,16,'',0,NULL,526,4,73,20,1),(74,20,'',0,NULL,446,4,74,100,5),(75,17,'',0,NULL,446,4,75,40,2),(76,18,'',0,NULL,446,4,76,60,3),(77,20,'',0,NULL,462,4,77,100,5),(78,19,'',0,NULL,462,4,78,80,4),(79,18,'',0,NULL,462,4,79,60,3),(80,18,'',0,NULL,542,4,80,60,3),(81,19,'',0,NULL,542,4,81,80,4),(82,18,'',0,NULL,606,4,82,60,3),(83,18,'',0,NULL,606,4,83,60,3),(84,19,'',0,NULL,606,4,84,80,4),(85,20,'',0,NULL,622,4,85,100,5),(86,18,'',0,NULL,622,4,86,60,3),(87,18,'',0,NULL,622,4,87,60,3),(88,17,'',0,NULL,622,4,88,40,2),(89,19,'',0,NULL,478,4,89,80,4),(90,17,'',0,NULL,478,4,90,40,2),(91,20,'',0,NULL,478,4,91,100,5),(92,20,'',0,NULL,590,4,92,100,5),(93,16,'',0,NULL,590,4,93,20,1),(94,18,'',0,NULL,590,4,94,60,3),(95,19,'',0,NULL,494,4,95,80,4),(96,18,'',0,NULL,494,4,96,60,3),(97,20,'',0,NULL,494,4,97,100,5),(98,16,'',0,NULL,510,4,98,20,1),(99,17,'',0,NULL,510,4,99,40,2),(100,20,'',0,NULL,510,4,100,100,5),(101,19,'',0,NULL,893,4,101,80,4),(102,19,'',0,NULL,893,4,102,80,4),(103,19,'',0,NULL,893,4,103,80,4),(104,18,'',0,NULL,911,4,104,60,3),(105,19,'',0,NULL,911,4,105,80,4),(106,19,'',0,NULL,911,4,106,80,4),(107,17,'',0,NULL,924,4,107,40,2),(108,18,'',0,NULL,924,4,108,60,3),(109,19,'',0,NULL,924,4,109,80,4),(110,20,'',0,NULL,937,4,110,100,5),(111,17,'',0,NULL,937,4,111,40,2),(112,19,'',0,NULL,937,4,112,80,4),(113,18,'',0,NULL,950,4,113,60,3),(114,19,'',0,NULL,950,4,114,80,4),(115,20,'',0,NULL,963,4,115,100,5),(116,20,'',0,NULL,963,4,116,100,5),(117,18,'',0,NULL,963,4,117,60,3),(118,19,'',0,NULL,976,4,118,80,4),(119,17,'',0,NULL,976,4,119,40,2),(120,18,'',0,NULL,989,4,120,60,3),(121,18,'',0,NULL,989,4,121,60,3),(122,19,'',0,NULL,989,4,122,80,4),(123,16,'',0,NULL,638,4,123,20,1),(124,19,'',0,NULL,638,4,124,80,4),(125,18,'',0,NULL,638,4,125,60,3),(126,18,'',0,NULL,638,4,126,60,3),(127,18,'',0,NULL,654,4,127,60,3),(128,19,'',0,NULL,654,4,128,80,4),(129,20,'',0,NULL,654,4,129,100,5),(130,18,'',0,NULL,670,4,130,60,3),(131,18,'',0,NULL,670,4,131,60,3),(132,17,'',0,NULL,670,4,132,40,2),(133,17,'',0,NULL,676,4,133,40,2),(134,18,'',0,NULL,676,4,134,60,3),(135,19,'',0,NULL,676,4,135,80,4),(136,20,'',0,NULL,676,4,136,100,5),(137,20,'',0,NULL,7,4,137,100,5),(138,19,'',0,NULL,7,4,138,80,4),(139,18,'',0,NULL,7,4,139,60,3),(140,20,'',0,NULL,20,4,140,100,5),(141,19,'',0,NULL,20,4,141,80,4),(142,16,'',0,NULL,20,4,142,20,1),(143,18,'',0,NULL,18,4,143,60,3),(144,18,'',0,NULL,18,4,144,60,3),(145,20,'',0,NULL,23,4,145,100,5),(146,16,'',0,NULL,23,4,146,20,1),(147,18,'',0,NULL,23,4,147,60,3),(148,19,'',0,NULL,17,4,148,80,4),(149,20,'',0,NULL,17,4,149,100,5),(150,20,'',0,NULL,17,4,150,100,5),(151,20,'',0,NULL,19,4,151,100,5),(152,18,'',0,NULL,19,4,152,60,3),(153,20,'',0,NULL,19,4,153,100,5),(154,18,'',0,NULL,15,4,154,60,3),(155,20,'',0,NULL,16,4,155,100,5),(156,20,'',0,NULL,16,4,156,100,5),(157,19,'',0,NULL,8,4,157,80,4),(158,18,'',0,NULL,8,4,158,60,3),(159,18,'',0,NULL,8,4,159,60,3),(160,19,'',0,NULL,9,4,160,80,4),(161,18,'',0,NULL,9,4,161,60,3),(162,20,'',0,NULL,12,4,162,100,5),(163,19,'',0,NULL,12,4,163,80,4),(164,19,'',0,NULL,14,4,164,80,4),(165,18,'',0,NULL,14,4,165,60,3),(166,18,'',0,NULL,14,4,166,60,3),(167,20,'',0,NULL,10,4,167,100,5),(168,18,'',0,NULL,10,4,168,60,3),(169,20,'',0,NULL,11,4,169,100,5),(170,20,'',0,NULL,11,4,170,100,5),(171,16,'',0,NULL,11,4,171,20,1),(172,17,'',0,NULL,13,4,172,40,2),(173,19,'',0,NULL,13,4,173,80,4),(174,18,'',0,NULL,13,4,174,60,3),(175,19,'',0,NULL,42,4,175,80,4),(176,18,'',0,NULL,42,4,176,60,3),(177,18,'',0,NULL,42,4,177,60,3),(178,20,'',0,NULL,44,4,178,100,5),(179,17,'',0,NULL,44,4,179,40,2),(180,17,'',0,NULL,43,4,180,40,2),(181,18,'',0,NULL,43,4,181,60,3),(182,18,'',0,NULL,43,4,182,60,3),(183,19,'',0,NULL,41,4,183,80,4),(184,19,'',0,NULL,41,4,184,80,4),(185,18,'',0,NULL,1044,4,185,60,3),(186,20,'',0,NULL,1044,4,186,100,5),(187,20,'',0,NULL,1044,4,187,100,5),(188,20,'',0,NULL,1060,4,188,100,5),(189,16,'',0,NULL,1060,4,189,20,1),(190,19,'',0,NULL,1060,4,190,80,4),(191,19,'',0,NULL,1076,4,191,80,4),(192,18,'',0,NULL,1076,4,192,60,3),(193,17,'',0,NULL,1076,4,193,40,2),(194,17,'',0,NULL,1092,4,194,40,2),(195,19,'',0,NULL,1092,4,195,80,4),(196,18,'',0,NULL,1092,4,196,60,3),(197,19,'',0,NULL,1108,4,197,80,4),(198,19,'',0,NULL,1108,4,198,80,4),(199,19,'',0,NULL,1108,4,199,80,4),(200,19,'',0,NULL,1114,4,200,80,4),(201,19,'',0,NULL,1114,4,201,80,4),(202,18,'',0,NULL,1220,4,202,60,3),(203,19,'',0,NULL,1220,4,203,80,4),(204,18,'',0,NULL,1220,4,204,60,3),(205,20,'',0,NULL,1236,4,205,100,5),(206,17,'',0,NULL,1236,4,206,40,2),(207,18,'',0,NULL,1236,4,207,60,3),(208,19,'',0,NULL,1236,4,208,80,4),(209,20,'',0,NULL,1252,4,209,100,5),(210,20,'',0,NULL,1252,4,210,100,5),(211,18,'',0,NULL,1252,4,211,60,3),(212,20,'',0,NULL,1268,4,212,100,5),(213,19,'',0,NULL,1268,4,213,80,4),(214,19,'',0,NULL,1284,4,214,80,4),(215,19,'',0,NULL,1284,4,215,80,4),(216,20,'',0,NULL,1284,4,216,100,5),(217,18,'',0,NULL,1380,4,217,60,3),(218,20,'',0,NULL,1380,4,218,100,5),(219,20,'',0,NULL,1380,4,219,100,5),(220,18,'',0,NULL,1300,4,220,60,3),(221,17,'',0,NULL,1300,4,221,40,2),(222,20,'',0,NULL,1300,4,222,100,5),(223,20,'',0,NULL,1316,4,223,100,5),(224,16,'',0,NULL,1316,4,224,20,1),(225,19,'',0,NULL,1332,4,225,80,4),(226,19,'',0,NULL,1332,4,226,80,4),(227,20,'',0,NULL,1332,4,227,100,5),(228,18,'',0,NULL,1348,4,228,60,3),(229,18,'',0,NULL,1348,4,229,60,3),(230,18,'',0,NULL,1348,4,230,60,3),(231,20,'',0,NULL,1364,4,231,100,5),(232,18,'',0,NULL,1364,4,232,60,3),(233,20,'',0,NULL,1364,4,233,100,5),(234,19,'',0,NULL,1819,4,234,80,4),(235,19,'',0,NULL,1819,4,235,80,4),(236,20,'',0,NULL,1826,4,236,100,5),(237,19,'',0,NULL,1826,4,237,80,4),(238,20,'',0,NULL,1826,4,238,100,5),(239,20,'',0,NULL,1833,4,239,100,5),(240,19,'',0,NULL,1833,4,240,80,4),(241,16,'',0,NULL,1833,4,241,20,1),(242,19,'',0,NULL,1840,4,242,80,4),(243,20,'',0,NULL,1840,4,243,100,5),(244,20,'',0,NULL,1840,4,244,100,5),(245,17,'',0,NULL,1840,4,245,40,2),(246,18,'',0,NULL,1847,4,246,60,3),(247,18,'',0,NULL,1847,4,247,60,3),(248,18,'',0,NULL,1854,4,248,60,3),(249,17,'',0,NULL,1854,4,249,40,2),(250,20,'',0,NULL,1854,4,250,100,5),(251,20,'',0,NULL,1572,4,251,100,5),(252,19,'',0,NULL,1572,4,252,80,4),(253,19,'',0,NULL,1572,4,253,80,4),(254,19,'',0,NULL,1412,4,254,80,4),(255,18,'',0,NULL,1412,4,255,60,3),(256,19,'',0,NULL,1412,4,256,80,4),(257,20,'',0,NULL,1428,4,257,100,5),(258,17,'',0,NULL,1428,4,258,40,2),(259,18,'',0,NULL,1428,4,259,60,3),(260,17,'',0,NULL,1428,4,260,40,2),(261,17,'',0,NULL,1444,4,261,40,2),(262,19,'',0,NULL,1444,4,262,80,4),(263,19,'',0,NULL,1588,4,263,80,4),(264,20,'',0,NULL,1588,4,264,100,5),(265,17,'',0,NULL,1588,4,265,40,2),(266,17,'',0,NULL,1476,4,266,40,2),(267,19,'',0,NULL,1476,4,267,80,4),(268,19,'',0,NULL,1492,4,268,80,4),(269,16,'',0,NULL,1492,4,269,20,1),(270,17,'',0,NULL,1492,4,270,40,2),(271,19,'',0,NULL,1508,4,271,80,4),(272,18,'',0,NULL,1508,4,272,60,3),(273,19,'',0,NULL,1508,4,273,80,4),(274,20,'',0,NULL,1524,4,274,100,5),(275,19,'',0,NULL,1524,4,275,80,4),(276,18,'',0,NULL,1524,4,276,60,3),(277,18,'',0,NULL,1540,4,277,60,3),(278,20,'',0,NULL,1540,4,278,100,5),(279,20,'',0,NULL,1540,4,279,100,5),(280,18,'',0,NULL,1556,4,280,60,3),(281,17,'',0,NULL,1556,4,281,40,2),(282,19,'',0,NULL,1556,4,282,80,4),(283,19,'',0,NULL,1919,4,283,80,4),(284,18,'',0,NULL,1919,4,284,60,3),(285,17,'',0,NULL,1919,4,285,40,2),(286,20,'',0,NULL,1935,4,286,100,5),(287,20,'',0,NULL,1935,4,287,100,5),(288,17,'',0,NULL,1935,4,288,40,2),(289,20,'',0,NULL,1951,4,289,100,5),(290,19,'',0,NULL,1951,4,290,80,4),(291,19,'',0,NULL,1967,4,291,80,4),(292,19,'',0,NULL,1967,4,292,80,4),(293,17,'',0,NULL,1983,4,293,40,2),(294,19,'',0,NULL,1983,4,294,80,4),(295,20,'',0,NULL,1983,4,295,100,5),(296,18,'',0,NULL,1990,4,296,60,3),(297,19,'',0,NULL,1990,4,297,80,4),(298,20,'',0,NULL,1997,4,298,100,5),(299,17,'',0,NULL,1997,4,299,40,2),(300,18,'',0,NULL,1997,4,300,60,3),(301,20,'',0,NULL,2003,4,301,100,5),(302,19,'',0,NULL,2003,4,302,80,4),(303,20,'',0,NULL,2003,4,303,100,5),(304,16,'',0,NULL,2010,4,304,20,1),(305,19,'',0,NULL,2010,4,305,80,4),(306,20,'',0,NULL,2010,4,306,100,5),(307,19,'',0,NULL,2017,4,307,80,4),(308,20,'',0,NULL,2017,4,308,100,5),(309,18,'',0,NULL,2017,4,309,60,3),(310,20,'',0,NULL,2024,4,310,100,5),(311,19,'',0,NULL,2024,4,311,80,4),(312,17,'',0,NULL,2024,4,312,40,2),(313,16,'',0,NULL,2040,4,313,20,1),(314,18,'',0,NULL,2040,4,314,60,3),(315,20,'',0,NULL,2040,4,315,100,5),(316,18,'',0,NULL,1604,4,316,60,3),(317,19,'',0,NULL,1604,4,317,80,4),(318,19,'',0,NULL,1604,4,318,80,4),(319,19,'',0,NULL,1604,4,319,80,4),(320,17,'',0,NULL,1620,4,320,40,2),(321,16,'',0,NULL,1620,4,321,20,1),(322,20,'',0,NULL,1620,4,322,100,5),(323,19,'',0,NULL,1620,4,323,80,4),(324,19,'',0,NULL,1636,4,324,80,4),(325,17,'',0,NULL,1636,4,325,40,2),(326,19,'',0,NULL,1636,4,326,80,4),(327,17,'',0,NULL,1652,4,327,40,2),(328,19,'',0,NULL,1652,4,328,80,4),(329,18,'',0,NULL,1652,4,329,60,3),(330,16,'',0,NULL,1668,4,330,20,1),(331,17,'',0,NULL,1668,4,331,40,2),(332,18,'',0,NULL,1668,4,332,60,3),(333,20,'',0,NULL,1764,4,333,100,5),(334,19,'',0,NULL,1764,4,334,80,4),(335,17,'',0,NULL,1764,4,335,40,2),(336,19,'',0,NULL,1780,4,336,80,4),(337,17,'',0,NULL,1796,4,337,40,2),(338,18,'',0,NULL,1796,4,338,60,3),(339,19,'',0,NULL,1796,4,339,80,4),(340,19,'',0,NULL,1812,4,340,80,4),(341,18,'',0,NULL,1812,4,341,60,3),(342,19,'',0,NULL,1684,4,342,80,4),(343,19,'',0,NULL,1684,4,343,80,4),(344,18,'',0,NULL,1700,4,344,60,3),(345,17,'',0,NULL,1700,4,345,40,2),(346,18,'',0,NULL,1700,4,346,60,3);
/*!40000 ALTER TABLE `[[dbprefix]]rating_option_vote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_option_vote_aggregated`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_option_vote_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_option_vote_aggregated` (
  `primary_id` int NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation ID',
  `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID',
  `entity_pk_value` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `vote_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Vote dty',
  `vote_value_sum` int unsigned NOT NULL DEFAULT '0' COMMENT 'General vote sum',
  `percent` smallint NOT NULL DEFAULT '0' COMMENT 'Vote percent',
  `percent_approved` smallint DEFAULT '0' COMMENT 'Vote percent approved by admin',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  KEY `[[DBPREFIX]]RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`),
  KEY `[[DBPREFIX]]RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_OPT_VOTE_AGGRED_RATING_ID_[[DBPREFIX]]RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `[[dbprefix]]rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]RATING_OPTION_VOTE_AGGREGATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb3 COMMENT='Rating vote aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_option_vote_aggregated`
--

LOCK TABLES `[[dbprefix]]rating_option_vote_aggregated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_option_vote_aggregated` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating_option_vote_aggregated` VALUES (1,4,1,2,5,50,50,0),(2,4,1,2,5,50,50,1),(3,4,6,3,10,67,67,0),(4,4,6,3,10,67,67,1),(5,4,3,3,10,67,67,0),(6,4,3,3,10,67,67,1),(7,4,2,2,9,90,90,0),(8,4,2,2,9,90,90,1),(9,4,4,3,10,67,67,0),(10,4,4,3,10,67,67,1),(11,4,5,2,7,70,70,0),(12,4,5,2,7,70,70,1),(13,4,37,3,13,87,87,0),(14,4,37,3,13,87,87,1),(15,4,40,3,11,73,73,0),(16,4,40,3,11,73,73,1),(17,4,38,3,7,47,47,0),(18,4,38,3,7,47,47,1),(19,4,36,2,8,80,80,0),(20,4,36,2,8,80,80,1),(21,4,39,4,13,65,65,0),(22,4,39,4,13,65,65,1),(23,4,270,2,9,90,90,0),(24,4,270,2,9,90,90,1),(25,4,286,2,9,90,90,0),(26,4,286,2,9,90,90,1),(27,4,414,3,8,53,53,0),(28,4,414,3,8,53,53,1),(29,4,302,3,14,93,93,0),(30,4,302,3,14,93,93,1),(31,4,398,3,12,80,80,0),(32,4,398,3,12,80,80,1),(33,4,318,2,5,50,50,0),(34,4,318,2,5,50,50,1),(35,4,334,3,10,67,67,0),(36,4,334,3,10,67,67,1),(37,4,350,2,7,70,70,0),(38,4,350,2,7,70,70,1),(39,4,366,2,7,70,70,0),(40,4,366,2,7,70,70,1),(41,4,737,3,7,47,47,0),(42,4,737,3,7,47,47,1),(43,4,750,3,7,47,47,0),(44,4,750,3,7,47,47,1),(45,4,763,2,7,70,70,0),(46,4,763,2,7,70,70,1),(47,4,776,3,13,87,87,0),(48,4,776,3,13,87,87,1),(49,4,789,3,11,73,73,0),(50,4,789,3,11,73,73,1),(51,4,558,3,12,80,80,0),(52,4,558,3,12,80,80,1),(53,4,574,2,9,90,90,0),(54,4,574,2,9,90,90,1),(55,4,526,2,6,60,60,0),(56,4,526,2,6,60,60,1),(57,4,446,3,10,67,67,0),(58,4,446,3,10,67,67,1),(59,4,462,3,12,80,80,0),(60,4,462,3,12,80,80,1),(61,4,542,2,7,70,70,0),(62,4,542,2,7,70,70,1),(63,4,606,3,10,67,67,0),(64,4,606,3,10,67,67,1),(65,4,622,4,13,65,65,0),(66,4,622,4,13,65,65,1),(67,4,478,3,11,73,73,0),(68,4,478,3,11,73,73,1),(69,4,590,3,9,60,60,0),(70,4,590,3,9,60,60,1),(71,4,494,3,12,80,80,0),(72,4,494,3,12,80,80,1),(73,4,510,3,8,53,53,0),(74,4,510,3,8,53,53,1),(75,4,893,3,12,80,80,0),(76,4,893,3,12,80,80,1),(77,4,911,3,11,73,73,0),(78,4,911,3,11,73,73,1),(79,4,924,3,9,60,60,0),(80,4,924,3,9,60,60,1),(81,4,937,3,11,73,73,0),(82,4,937,3,11,73,73,1),(83,4,950,2,7,70,70,0),(84,4,950,2,7,70,70,1),(85,4,963,3,13,87,87,0),(86,4,963,3,13,87,87,1),(87,4,976,2,6,60,60,0),(88,4,976,2,6,60,60,1),(89,4,989,3,10,67,67,0),(90,4,989,3,10,67,67,1),(91,4,638,4,11,55,55,0),(92,4,638,4,11,55,55,1),(93,4,654,3,12,80,80,0),(94,4,654,3,12,80,80,1),(95,4,670,3,8,53,53,0),(96,4,670,3,8,53,53,1),(97,4,676,4,14,70,70,0),(98,4,676,4,14,70,70,1),(99,4,7,3,12,80,80,0),(100,4,7,3,12,80,80,1),(101,4,20,3,10,67,67,0),(102,4,20,3,10,67,67,1),(103,4,18,2,6,60,60,0),(104,4,18,2,6,60,60,1),(105,4,23,3,9,60,60,0),(106,4,23,3,9,60,60,1),(107,4,17,3,14,93,93,0),(108,4,17,3,14,93,93,1),(109,4,19,3,13,87,87,0),(110,4,19,3,13,87,87,1),(111,4,15,1,3,60,60,0),(112,4,15,1,3,60,60,1),(113,4,16,2,10,100,100,0),(114,4,16,2,10,100,100,1),(115,4,8,3,10,67,67,0),(116,4,8,3,10,67,67,1),(117,4,9,2,7,70,70,0),(118,4,9,2,7,70,70,1),(119,4,12,2,9,90,90,0),(120,4,12,2,9,90,90,1),(121,4,14,3,10,67,67,0),(122,4,14,3,10,67,67,1),(123,4,10,2,8,80,80,0),(124,4,10,2,8,80,80,1),(125,4,11,3,11,73,73,0),(126,4,11,3,11,73,73,1),(127,4,13,3,9,60,60,0),(128,4,13,3,9,60,60,1),(129,4,42,3,10,67,67,0),(130,4,42,3,10,67,67,1),(131,4,44,2,7,70,70,0),(132,4,44,2,7,70,70,1),(133,4,43,3,8,53,53,0),(134,4,43,3,8,53,53,1),(135,4,41,2,8,80,80,0),(136,4,41,2,8,80,80,1),(137,4,1044,3,13,87,87,0),(138,4,1044,3,13,87,87,1),(139,4,1060,3,10,67,67,0),(140,4,1060,3,10,67,67,1),(141,4,1076,3,9,60,60,0),(142,4,1076,3,9,60,60,1),(143,4,1092,3,9,60,60,0),(144,4,1092,3,9,60,60,1),(145,4,1108,3,12,80,80,0),(146,4,1108,3,12,80,80,1),(147,4,1114,2,8,80,80,0),(148,4,1114,2,8,80,80,1),(149,4,1220,3,10,67,67,0),(150,4,1220,3,10,67,67,1),(151,4,1236,4,14,70,70,0),(152,4,1236,4,14,70,70,1),(153,4,1252,3,13,87,87,0),(154,4,1252,3,13,87,87,1),(155,4,1268,2,9,90,90,0),(156,4,1268,2,9,90,90,1),(157,4,1284,3,13,87,87,0),(158,4,1284,3,13,87,87,1),(159,4,1380,3,13,87,87,0),(160,4,1380,3,13,87,87,1),(161,4,1300,3,10,67,67,0),(162,4,1300,3,10,67,67,1),(163,4,1316,2,6,60,60,0),(164,4,1316,2,6,60,60,1),(165,4,1332,3,13,87,87,0),(166,4,1332,3,13,87,87,1),(167,4,1348,3,9,60,60,0),(168,4,1348,3,9,60,60,1),(169,4,1364,3,13,87,87,0),(170,4,1364,3,13,87,87,1),(171,4,1819,2,8,80,80,0),(172,4,1819,2,8,80,80,1),(173,4,1826,3,14,93,93,0),(174,4,1826,3,14,93,93,1),(175,4,1833,3,10,67,67,0),(176,4,1833,3,10,67,67,1),(177,4,1840,4,16,80,80,0),(178,4,1840,4,16,80,80,1),(179,4,1847,2,6,60,60,0),(180,4,1847,2,6,60,60,1),(181,4,1854,3,10,67,67,0),(182,4,1854,3,10,67,67,1),(183,4,1572,3,13,87,87,0),(184,4,1572,3,13,87,87,1),(185,4,1412,3,11,73,73,0),(186,4,1412,3,11,73,73,1),(187,4,1428,4,12,60,60,0),(188,4,1428,4,12,60,60,1),(189,4,1444,2,6,60,60,0),(190,4,1444,2,6,60,60,1),(191,4,1588,3,11,73,73,0),(192,4,1588,3,11,73,73,1),(193,4,1476,2,6,60,60,0),(194,4,1476,2,6,60,60,1),(195,4,1492,3,7,47,47,0),(196,4,1492,3,7,47,47,1),(197,4,1508,3,11,73,73,0),(198,4,1508,3,11,73,73,1),(199,4,1524,3,12,80,80,0),(200,4,1524,3,12,80,80,1),(201,4,1540,3,13,87,87,0),(202,4,1540,3,13,87,87,1),(203,4,1556,3,9,60,60,0),(204,4,1556,3,9,60,60,1),(205,4,1919,3,9,60,60,0),(206,4,1919,3,9,60,60,1),(207,4,1935,3,12,80,80,0),(208,4,1935,3,12,80,80,1),(209,4,1951,2,9,90,90,0),(210,4,1951,2,9,90,90,1),(211,4,1967,2,8,80,80,0),(212,4,1967,2,8,80,80,1),(213,4,1983,3,11,73,73,0),(214,4,1983,3,11,73,73,1),(215,4,1990,2,7,70,70,0),(216,4,1990,2,7,70,70,1),(217,4,1997,3,10,67,67,0),(218,4,1997,3,10,67,67,1),(219,4,2003,3,14,93,93,0),(220,4,2003,3,14,93,93,1),(221,4,2010,3,10,67,67,0),(222,4,2010,3,10,67,67,1),(223,4,2017,3,12,80,80,0),(224,4,2017,3,12,80,80,1),(225,4,2024,3,11,73,73,0),(226,4,2024,3,11,73,73,1),(227,4,2040,3,9,60,60,0),(228,4,2040,3,9,60,60,1),(229,4,1604,4,15,75,75,0),(230,4,1604,4,15,75,75,1),(231,4,1620,4,12,60,60,0),(232,4,1620,4,12,60,60,1),(233,4,1636,3,10,67,67,0),(234,4,1636,3,10,67,67,1),(235,4,1652,3,9,60,60,0),(236,4,1652,3,9,60,60,1),(237,4,1668,3,6,40,40,0),(238,4,1668,3,6,40,40,1),(239,4,1764,3,11,73,73,0),(240,4,1764,3,11,73,73,1),(241,4,1780,1,4,80,80,0),(242,4,1780,1,4,80,80,1),(243,4,1796,3,9,60,60,0),(244,4,1796,3,9,60,60,1),(245,4,1812,2,7,70,70,0),(246,4,1812,2,7,70,70,1),(247,4,1684,2,8,80,80,0),(248,4,1684,2,8,80,80,1),(249,4,1700,3,8,53,53,0),(250,4,1700,3,8,53,53,1);
/*!40000 ALTER TABLE `[[dbprefix]]rating_option_vote_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_store` (
  `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `[[DBPREFIX]]RATING_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_STORE_RATING_ID_[[DBPREFIX]]RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `[[dbprefix]]rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]RATING_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_store`
--

LOCK TABLES `[[dbprefix]]rating_store` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_store` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]rating_store` VALUES (4,0),(4,1);
/*!40000 ALTER TABLE `[[dbprefix]]rating_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]rating_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]rating_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]rating_title` (
  `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Rating Label',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `[[DBPREFIX]]RATING_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]RATING_TITLE_RATING_ID_[[DBPREFIX]]RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `[[dbprefix]]rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]RATING_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]rating_title`
--

LOCK TABLES `[[dbprefix]]rating_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]rating_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]rating_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]release_notification_viewer_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]release_notification_viewer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]release_notification_viewer_log` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `viewer_id` int unsigned NOT NULL COMMENT 'Viewer admin user ID',
  `last_view_version` varchar(16) NOT NULL COMMENT 'Viewer last view on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`),
  CONSTRAINT `[[DBPREFIX]]RELEASE_NTFC_VIEWER_LOG_VIEWER_ID_[[DBPREFIX]]ADM_USR_USR_ID` FOREIGN KEY (`viewer_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Release Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]release_notification_viewer_log`
--

LOCK TABLES `[[dbprefix]]release_notification_viewer_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]release_notification_viewer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]release_notification_viewer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_compared_product_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_compared_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_compared_product_index` (
  `index_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]REPORT_CMPD_PRD_IDX_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_CMPD_PRD_IDX_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Compared Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_compared_product_index`
--

LOCK TABLES `[[dbprefix]]report_compared_product_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_compared_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_compared_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_event`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_event` (
  `event_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event ID',
  `logged_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Logged At',
  `event_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Event Type ID',
  `object_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Object ID',
  `subject_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Subject ID',
  `subtype` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Subtype',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`event_id`),
  KEY `[[DBPREFIX]]REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`),
  KEY `[[DBPREFIX]]REPORT_EVENT_SUBJECT_ID` (`subject_id`),
  KEY `[[DBPREFIX]]REPORT_EVENT_OBJECT_ID` (`object_id`),
  KEY `[[DBPREFIX]]REPORT_EVENT_SUBTYPE` (`subtype`),
  KEY `[[DBPREFIX]]REPORT_EVENT_STORE_ID` (`store_id`),
  CONSTRAINT `FK_1E9A364859CCE03F3DD9ACF825D18BF6` FOREIGN KEY (`event_type_id`) REFERENCES `[[dbprefix]]report_event_types` (`event_type_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_EVENT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Event Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_event`
--

LOCK TABLES `[[dbprefix]]report_event` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_event` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_event_types`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_event_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_event_types` (
  `event_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Type ID',
  `event_name` varchar(64) NOT NULL COMMENT 'Event Name',
  `customer_login` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Login',
  PRIMARY KEY (`event_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Reports Event Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_event_types`
--

LOCK TABLES `[[dbprefix]]report_event_types` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_event_types` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0);
/*!40000 ALTER TABLE `[[dbprefix]]report_event_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_viewed_product_aggregated_daily`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_viewed_product_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_viewed_product_aggregated_daily` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_E27C3B52E1A2D5E4845EB01EF11F49B2` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_VIEWED_PRD_AGGRED_DAILY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_viewed_product_aggregated_daily`
--

LOCK TABLES `[[dbprefix]]report_viewed_product_aggregated_daily` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_daily` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_daily` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_viewed_product_aggregated_monthly`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_viewed_product_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_viewed_product_aggregated_monthly` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_B76260026D9FE9E45230A731A9860BA7` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_D5C3C380933099BF6DBA36FC13AA307B` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_viewed_product_aggregated_monthly`
--

LOCK TABLES `[[dbprefix]]report_viewed_product_aggregated_monthly` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_monthly` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_monthly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_viewed_product_aggregated_yearly`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_viewed_product_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_viewed_product_aggregated_yearly` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_6599AF5F11E05C842A7B226C6C7F3377` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_D9D14244DB9E38A4F72DE0072D998249` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_viewed_product_aggregated_yearly`
--

LOCK TABLES `[[dbprefix]]report_viewed_product_aggregated_yearly` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_yearly` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_aggregated_yearly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]report_viewed_product_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]report_viewed_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]report_viewed_product_index` (
  `index_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]REPORT_VIEWED_PRD_IDX_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_VIEWED_PRD_IDX_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Viewed Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]report_viewed_product_index`
--

LOCK TABLES `[[dbprefix]]report_viewed_product_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]report_viewed_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]reporting_counts`
--

DROP TABLE IF EXISTS `[[dbprefix]]reporting_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]reporting_counts` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Item Reported',
  `count` int unsigned DEFAULT NULL COMMENT 'Count Value',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for all count related events generated via the cron job';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]reporting_counts`
--

LOCK TABLES `[[dbprefix]]reporting_counts` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_counts` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_counts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]reporting_module_status`
--

DROP TABLE IF EXISTS `[[dbprefix]]reporting_module_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]reporting_module_status` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Module ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Module Name',
  `active` varchar(255) DEFAULT NULL COMMENT 'Module Active Status',
  `setup_version` varchar(255) DEFAULT NULL COMMENT 'Module Version',
  `state` varchar(255) DEFAULT NULL COMMENT 'Module State',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Module Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]reporting_module_status`
--

LOCK TABLES `[[dbprefix]]reporting_module_status` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_module_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_module_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]reporting_orders`
--

DROP TABLE IF EXISTS `[[dbprefix]]reporting_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]reporting_orders` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `total` decimal(20,4) unsigned DEFAULT NULL,
  `total_base` decimal(20,4) unsigned DEFAULT NULL,
  `item_count` int unsigned NOT NULL COMMENT 'Line Item Count',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for all orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]reporting_orders`
--

LOCK TABLES `[[dbprefix]]reporting_orders` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]reporting_system_updates`
--

DROP TABLE IF EXISTS `[[dbprefix]]reporting_system_updates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]reporting_system_updates` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Update Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for system updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]reporting_system_updates`
--

LOCK TABLES `[[dbprefix]]reporting_system_updates` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_system_updates` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_system_updates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]reporting_users`
--

DROP TABLE IF EXISTS `[[dbprefix]]reporting_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]reporting_users` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'User Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for user actions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]reporting_users`
--

LOCK TABLES `[[dbprefix]]reporting_users` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]reporting_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review`
--

DROP TABLE IF EXISTS `[[dbprefix]]review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review` (
  `review_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Review create date',
  `entity_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `entity_pk_value` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `status_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Status code',
  PRIMARY KEY (`review_id`),
  KEY `[[DBPREFIX]]REVIEW_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]REVIEW_STATUS_ID` (`status_id`),
  KEY `[[DBPREFIX]]REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`),
  CONSTRAINT `[[DBPREFIX]]REVIEW_ENTITY_ID_[[DBPREFIX]]REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]review_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REVIEW_STATUS_ID_[[DBPREFIX]]REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `[[dbprefix]]review_status` (`status_id`)
) ENGINE=InnoDB AUTO_INCREMENT=347 DEFAULT CHARSET=utf8mb3 COMMENT='Review base information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review`
--

LOCK TABLES `[[dbprefix]]review` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]review` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]review` VALUES (1,'[[regtime]]',1,1,1),(2,'[[regtime]]',1,1,1),(3,'[[regtime]]',1,6,1),(4,'[[regtime]]',1,6,1),(5,'[[regtime]]',1,6,1),(6,'[[regtime]]',1,3,1),(7,'[[regtime]]',1,3,1),(8,'[[regtime]]',1,3,1),(9,'[[regtime]]',1,2,1),(10,'[[regtime]]',1,2,1),(11,'[[regtime]]',1,4,1),(12,'[[regtime]]',1,4,1),(13,'[[regtime]]',1,4,1),(14,'[[regtime]]',1,5,1),(15,'[[regtime]]',1,5,1),(16,'[[regtime]]',1,37,1),(17,'[[regtime]]',1,37,1),(18,'[[regtime]]',1,37,1),(19,'[[regtime]]',1,40,1),(20,'[[regtime]]',1,40,1),(21,'[[regtime]]',1,40,1),(22,'[[regtime]]',1,38,1),(23,'[[regtime]]',1,38,1),(24,'[[regtime]]',1,38,1),(25,'[[regtime]]',1,36,1),(26,'[[regtime]]',1,36,1),(27,'[[regtime]]',1,39,1),(28,'[[regtime]]',1,39,1),(29,'[[regtime]]',1,39,1),(30,'[[regtime]]',1,39,1),(31,'[[regtime]]',1,270,1),(32,'[[regtime]]',1,270,1),(33,'[[regtime]]',1,286,1),(34,'[[regtime]]',1,286,1),(35,'[[regtime]]',1,414,1),(36,'[[regtime]]',1,414,1),(37,'[[regtime]]',1,414,1),(38,'[[regtime]]',1,302,1),(39,'[[regtime]]',1,302,1),(40,'[[regtime]]',1,302,1),(41,'[[regtime]]',1,398,1),(42,'[[regtime]]',1,398,1),(43,'[[regtime]]',1,398,1),(44,'[[regtime]]',1,318,1),(45,'[[regtime]]',1,318,1),(46,'[[regtime]]',1,334,1),(47,'[[regtime]]',1,334,1),(48,'[[regtime]]',1,334,1),(49,'[[regtime]]',1,350,1),(50,'[[regtime]]',1,350,1),(51,'[[regtime]]',1,366,1),(52,'[[regtime]]',1,366,1),(53,'[[regtime]]',1,737,1),(54,'[[regtime]]',1,737,1),(55,'[[regtime]]',1,737,1),(56,'[[regtime]]',1,750,1),(57,'[[regtime]]',1,750,1),(58,'[[regtime]]',1,750,1),(59,'[[regtime]]',1,763,1),(60,'[[regtime]]',1,763,1),(61,'[[regtime]]',1,776,1),(62,'[[regtime]]',1,776,1),(63,'[[regtime]]',1,776,1),(64,'[[regtime]]',1,789,1),(65,'[[regtime]]',1,789,1),(66,'[[regtime]]',1,789,1),(67,'[[regtime]]',1,558,1),(68,'[[regtime]]',1,558,1),(69,'[[regtime]]',1,558,1),(70,'[[regtime]]',1,574,1),(71,'[[regtime]]',1,574,1),(72,'[[regtime]]',1,526,1),(73,'[[regtime]]',1,526,1),(74,'[[regtime]]',1,446,1),(75,'[[regtime]]',1,446,1),(76,'[[regtime]]',1,446,1),(77,'[[regtime]]',1,462,1),(78,'[[regtime]]',1,462,1),(79,'[[regtime]]',1,462,1),(80,'[[regtime]]',1,542,1),(81,'[[regtime]]',1,542,1),(82,'[[regtime]]',1,606,1),(83,'[[regtime]]',1,606,1),(84,'[[regtime]]',1,606,1),(85,'[[regtime]]',1,622,1),(86,'[[regtime]]',1,622,1),(87,'[[regtime]]',1,622,1),(88,'[[regtime]]',1,622,1),(89,'[[regtime]]',1,478,1),(90,'[[regtime]]',1,478,1),(91,'[[regtime]]',1,478,1),(92,'[[regtime]]',1,590,1),(93,'[[regtime]]',1,590,1),(94,'[[regtime]]',1,590,1),(95,'[[regtime]]',1,494,1),(96,'[[regtime]]',1,494,1),(97,'[[regtime]]',1,494,1),(98,'[[regtime]]',1,510,1),(99,'[[regtime]]',1,510,1),(100,'[[regtime]]',1,510,1),(101,'[[regtime]]',1,893,1),(102,'[[regtime]]',1,893,1),(103,'[[regtime]]',1,893,1),(104,'[[regtime]]',1,911,1),(105,'[[regtime]]',1,911,1),(106,'[[regtime]]',1,911,1),(107,'[[regtime]]',1,924,1),(108,'[[regtime]]',1,924,1),(109,'[[regtime]]',1,924,1),(110,'[[regtime]]',1,937,1),(111,'[[regtime]]',1,937,1),(112,'[[regtime]]',1,937,1),(113,'[[regtime]]',1,950,1),(114,'[[regtime]]',1,950,1),(115,'[[regtime]]',1,963,1),(116,'[[regtime]]',1,963,1),(117,'[[regtime]]',1,963,1),(118,'[[regtime]]',1,976,1),(119,'[[regtime]]',1,976,1),(120,'[[regtime]]',1,989,1),(121,'[[regtime]]',1,989,1),(122,'[[regtime]]',1,989,1),(123,'[[regtime]]',1,638,1),(124,'[[regtime]]',1,638,1),(125,'[[regtime]]',1,638,1),(126,'[[regtime]]',1,638,1),(127,'[[regtime]]',1,654,1),(128,'[[regtime]]',1,654,1),(129,'[[regtime]]',1,654,1),(130,'[[regtime]]',1,670,1),(131,'[[regtime]]',1,670,1),(132,'[[regtime]]',1,670,1),(133,'[[regtime]]',1,676,1),(134,'[[regtime]]',1,676,1),(135,'[[regtime]]',1,676,1),(136,'[[regtime]]',1,676,1),(137,'[[regtime]]',1,7,1),(138,'[[regtime]]',1,7,1),(139,'[[regtime]]',1,7,1),(140,'[[regtime]]',1,20,1),(141,'[[regtime]]',1,20,1),(142,'[[regtime]]',1,20,1),(143,'[[regtime]]',1,18,1),(144,'[[regtime]]',1,18,1),(145,'[[regtime]]',1,23,1),(146,'[[regtime]]',1,23,1),(147,'[[regtime]]',1,23,1),(148,'[[regtime]]',1,17,1),(149,'[[regtime]]',1,17,1),(150,'[[regtime]]',1,17,1),(151,'[[regtime]]',1,19,1),(152,'[[regtime]]',1,19,1),(153,'[[regtime]]',1,19,1),(154,'[[regtime]]',1,15,1),(155,'[[regtime]]',1,16,1),(156,'[[regtime]]',1,16,1),(157,'[[regtime]]',1,8,1),(158,'[[regtime]]',1,8,1),(159,'[[regtime]]',1,8,1),(160,'[[regtime]]',1,9,1),(161,'[[regtime]]',1,9,1),(162,'[[regtime]]',1,12,1),(163,'[[regtime]]',1,12,1),(164,'[[regtime]]',1,14,1),(165,'[[regtime]]',1,14,1),(166,'[[regtime]]',1,14,1),(167,'[[regtime]]',1,10,1),(168,'[[regtime]]',1,10,1),(169,'[[regtime]]',1,11,1),(170,'[[regtime]]',1,11,1),(171,'[[regtime]]',1,11,1),(172,'[[regtime]]',1,13,1),(173,'[[regtime]]',1,13,1),(174,'[[regtime]]',1,13,1),(175,'[[regtime]]',1,42,1),(176,'[[regtime]]',1,42,1),(177,'[[regtime]]',1,42,1),(178,'[[regtime]]',1,44,1),(179,'[[regtime]]',1,44,1),(180,'[[regtime]]',1,43,1),(181,'[[regtime]]',1,43,1),(182,'[[regtime]]',1,43,1),(183,'[[regtime]]',1,41,1),(184,'[[regtime]]',1,41,1),(185,'[[regtime]]',1,1044,1),(186,'[[regtime]]',1,1044,1),(187,'[[regtime]]',1,1044,1),(188,'[[regtime]]',1,1060,1),(189,'[[regtime]]',1,1060,1),(190,'[[regtime]]',1,1060,1),(191,'[[regtime]]',1,1076,1),(192,'[[regtime]]',1,1076,1),(193,'[[regtime]]',1,1076,1),(194,'[[regtime]]',1,1092,1),(195,'[[regtime]]',1,1092,1),(196,'[[regtime]]',1,1092,1),(197,'[[regtime]]',1,1108,1),(198,'[[regtime]]',1,1108,1),(199,'[[regtime]]',1,1108,1),(200,'[[regtime]]',1,1114,1),(201,'[[regtime]]',1,1114,1),(202,'[[regtime]]',1,1220,1),(203,'[[regtime]]',1,1220,1),(204,'[[regtime]]',1,1220,1),(205,'[[regtime]]',1,1236,1),(206,'[[regtime]]',1,1236,1),(207,'[[regtime]]',1,1236,1),(208,'[[regtime]]',1,1236,1),(209,'[[regtime]]',1,1252,1),(210,'[[regtime]]',1,1252,1),(211,'[[regtime]]',1,1252,1),(212,'[[regtime]]',1,1268,1),(213,'[[regtime]]',1,1268,1),(214,'[[regtime]]',1,1284,1),(215,'[[regtime]]',1,1284,1),(216,'[[regtime]]',1,1284,1),(217,'[[regtime]]',1,1380,1),(218,'[[regtime]]',1,1380,1),(219,'[[regtime]]',1,1380,1),(220,'[[regtime]]',1,1300,1),(221,'[[regtime]]',1,1300,1),(222,'[[regtime]]',1,1300,1),(223,'[[regtime]]',1,1316,1),(224,'[[regtime]]',1,1316,1),(225,'[[regtime]]',1,1332,1),(226,'[[regtime]]',1,1332,1),(227,'[[regtime]]',1,1332,1),(228,'[[regtime]]',1,1348,1),(229,'[[regtime]]',1,1348,1),(230,'[[regtime]]',1,1348,1),(231,'[[regtime]]',1,1364,1),(232,'[[regtime]]',1,1364,1),(233,'[[regtime]]',1,1364,1),(234,'[[regtime]]',1,1819,1),(235,'[[regtime]]',1,1819,1),(236,'[[regtime]]',1,1826,1),(237,'[[regtime]]',1,1826,1),(238,'[[regtime]]',1,1826,1),(239,'[[regtime]]',1,1833,1),(240,'[[regtime]]',1,1833,1),(241,'[[regtime]]',1,1833,1),(242,'[[regtime]]',1,1840,1),(243,'[[regtime]]',1,1840,1),(244,'[[regtime]]',1,1840,1),(245,'[[regtime]]',1,1840,1),(246,'[[regtime]]',1,1847,1),(247,'[[regtime]]',1,1847,1),(248,'[[regtime]]',1,1854,1),(249,'[[regtime]]',1,1854,1),(250,'[[regtime]]',1,1854,1),(251,'[[regtime]]',1,1572,1),(252,'[[regtime]]',1,1572,1),(253,'[[regtime]]',1,1572,1),(254,'[[regtime]]',1,1412,1),(255,'[[regtime]]',1,1412,1),(256,'[[regtime]]',1,1412,1),(257,'[[regtime]]',1,1428,1),(258,'[[regtime]]',1,1428,1),(259,'[[regtime]]',1,1428,1),(260,'[[regtime]]',1,1428,1),(261,'[[regtime]]',1,1444,1),(262,'[[regtime]]',1,1444,1),(263,'[[regtime]]',1,1588,1),(264,'[[regtime]]',1,1588,1),(265,'[[regtime]]',1,1588,1),(266,'[[regtime]]',1,1476,1),(267,'[[regtime]]',1,1476,1),(268,'[[regtime]]',1,1492,1),(269,'[[regtime]]',1,1492,1),(270,'[[regtime]]',1,1492,1),(271,'[[regtime]]',1,1508,1),(272,'[[regtime]]',1,1508,1),(273,'[[regtime]]',1,1508,1),(274,'[[regtime]]',1,1524,1),(275,'[[regtime]]',1,1524,1),(276,'[[regtime]]',1,1524,1),(277,'[[regtime]]',1,1540,1),(278,'[[regtime]]',1,1540,1),(279,'[[regtime]]',1,1540,1),(280,'[[regtime]]',1,1556,1),(281,'[[regtime]]',1,1556,1),(282,'[[regtime]]',1,1556,1),(283,'[[regtime]]',1,1919,1),(284,'[[regtime]]',1,1919,1),(285,'[[regtime]]',1,1919,1),(286,'[[regtime]]',1,1935,1),(287,'[[regtime]]',1,1935,1),(288,'[[regtime]]',1,1935,1),(289,'[[regtime]]',1,1951,1),(290,'[[regtime]]',1,1951,1),(291,'[[regtime]]',1,1967,1),(292,'[[regtime]]',1,1967,1),(293,'[[regtime]]',1,1983,1),(294,'[[regtime]]',1,1983,1),(295,'[[regtime]]',1,1983,1),(296,'[[regtime]]',1,1990,1),(297,'[[regtime]]',1,1990,1),(298,'[[regtime]]',1,1997,1),(299,'[[regtime]]',1,1997,1),(300,'[[regtime]]',1,1997,1),(301,'[[regtime]]',1,2003,1),(302,'[[regtime]]',1,2003,1),(303,'[[regtime]]',1,2003,1),(304,'[[regtime]]',1,2010,1),(305,'[[regtime]]',1,2010,1),(306,'[[regtime]]',1,2010,1),(307,'[[regtime]]',1,2017,1),(308,'[[regtime]]',1,2017,1),(309,'[[regtime]]',1,2017,1),(310,'[[regtime]]',1,2024,1),(311,'[[regtime]]',1,2024,1),(312,'[[regtime]]',1,2024,1),(313,'[[regtime]]',1,2040,1),(314,'[[regtime]]',1,2040,1),(315,'[[regtime]]',1,2040,1),(316,'[[regtime]]',1,1604,1),(317,'[[regtime]]',1,1604,1),(318,'[[regtime]]',1,1604,1),(319,'[[regtime]]',1,1604,1),(320,'[[regtime]]',1,1620,1),(321,'[[regtime]]',1,1620,1),(322,'[[regtime]]',1,1620,1),(323,'[[regtime]]',1,1620,1),(324,'[[regtime]]',1,1636,1),(325,'[[regtime]]',1,1636,1),(326,'[[regtime]]',1,1636,1),(327,'[[regtime]]',1,1652,1),(328,'[[regtime]]',1,1652,1),(329,'[[regtime]]',1,1652,1),(330,'[[regtime]]',1,1668,1),(331,'[[regtime]]',1,1668,1),(332,'[[regtime]]',1,1668,1),(333,'[[regtime]]',1,1764,1),(334,'[[regtime]]',1,1764,1),(335,'[[regtime]]',1,1764,1),(336,'[[regtime]]',1,1780,1),(337,'[[regtime]]',1,1796,1),(338,'[[regtime]]',1,1796,1),(339,'[[regtime]]',1,1796,1),(340,'[[regtime]]',1,1812,1),(341,'[[regtime]]',1,1812,1),(342,'[[regtime]]',1,1684,1),(343,'[[regtime]]',1,1684,1),(344,'[[regtime]]',1,1700,1),(345,'[[regtime]]',1,1700,1),(346,'[[regtime]]',1,1700,1);
/*!40000 ALTER TABLE `[[dbprefix]]review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review_detail`
--

DROP TABLE IF EXISTS `[[dbprefix]]review_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review_detail` (
  `detail_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review detail ID',
  `review_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Review ID',
  `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `detail` text NOT NULL COMMENT 'Detail description',
  `nickname` varchar(128) NOT NULL COMMENT 'User nickname',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`detail_id`),
  KEY `[[DBPREFIX]]REVIEW_DETAIL_REVIEW_ID` (`review_id`),
  KEY `[[DBPREFIX]]REVIEW_DETAIL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `[[DBPREFIX]]REVIEW_DETAIL_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]REVIEW_DETAIL_REVIEW_ID_[[DBPREFIX]]REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `[[dbprefix]]review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REVIEW_DETAIL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=347 DEFAULT CHARSET=utf8mb3 COMMENT='Review detail information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review_detail`
--

LOCK TABLES `[[dbprefix]]review_detail` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]review_detail` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]review_detail` VALUES (1,1,1,'I prefer more compartments','I prefer more compartments. If you don\'t mind putting everything in one space, it\'s fine. Good for the gym.','Chi',NULL),(2,2,1,'I use it a lot ','It\'s a good size and I use it a lot. My only issue with it was I wanted the handles to be longer so I can wear it on my back.','Filiberto',NULL),(3,3,1,'I\'ve had this thing for really long','I\'ve had this thing for a really long time and it barely shows any signs of wear and tear. It\'s really big, too! I\'ve taken it on day trips as well as short vacations and usually have no trouble finding room for my stuff.','Herb',NULL),(4,4,1,'Decent bag','Decent bag. I keep my stuff in it for work and the gym. It\'s nice and roomy. I wish it had a more sophisticated design, though. Kinda looks like it\'s for kids.','Craig',NULL),(5,5,1,'Screwed up my back','I can\'t believe they\'re claiming these straps are \"padded.\" Wearing this thing to class for a semester totally screwed up my back, and my shoulders would start to ache after a few minutes where the straps dug in.','Orville',NULL),(6,6,1,'Awesome bag','Awesome bag but I found it to be smaller than I thought. I haven\'t felt any additional strain on my back and I use it all day long for my job.','Marty',NULL),(7,7,1,'The back needs more padding','If the back had more padding I would recommend it for everyone. You can tell the material is strong and not cheap so it\'s definitely worth it.','Chase',NULL),(8,8,1,'I bought this backpack for my son','I bought this backpack for my son to take to school, but he carries it like a suitcase now! It\'s also really good for airplane travel.','Kennith',NULL),(9,9,1,'awesome for going back and forth','This is awesome for going back and forth to class. I live off campus and it\'s a longer walk, but this pack fits comfortably and I can even store my laptop in the main compartment.','Gaston',NULL),(10,10,1,'comfy and i don\'t feel like a loser','comfy and i don\'t feel like a loser carrying it.','Issac',NULL),(11,11,1,'The shoulder strap broke ','The shoulder strap broke the first time I used it. Awesome.','Daren',NULL),(12,12,1,'Good for work. Holds everything ','This is good for work. Holds everything I need. The fabric doesn\'t seem that strong, but so far so good.','Garry',NULL),(13,13,1,'Great bag! I use it for everything! ','Great bag! I use it for everything! Not sure what happened with the person who said the strap broke because mine is perfect. Maybe it was fluke? I\'d return it and try another. It\'s been awesome for me!','Quinn',NULL),(14,14,1,'This bag is really cool','This bag is really cool. I\'m an art major, so I have tons of supplies that I have to lug back and forth every day for class. I didn\'t think this would be big enough, but surprisingly it can hold just about all my stuff. I really like the way it looks too.','Jame',NULL),(15,15,1,'Color is weird','I wanted to like this bag, and it is definitely good quality, but the color is so weird in real life. From a distance it kind of looks like I just found it in a dumpster. Shame because that is the only drawback.','Adalberto',NULL),(16,16,1,'I am OBSESSED with these','I run 5 times a day and am OBSESSED with this watch! It tracks and calculates all the things my brain can\'t because I hate maths. PS I know this is a men\'s watch and I am not a man, but I have large wrists!','Refugio',NULL),(17,17,1,'This thing is awesome ','This thing is awesome and remembers all the stuff I\'ve stored. ','Jewel',NULL),(18,18,1,'It slides around on my wrist','It slides around on my wrist when I sweat. I\'ve tried making it smaller but that doesn\'t seem to help.','Brice',NULL),(19,19,1,'Working flawlessly','I recently replace my 25 year old watch with this one, so it had high expectations to live up to. So far all the features are working flawlessly, I only hope it lasts as long as my old one.','Billy',NULL),(20,20,1,'offers a lot of technology','can\'t say this is the coolest looking watch I\'ve ever owned (it\'s no FAMOUS DESIGNER or anything) but it has a lot to offer technology-wise','Marc',NULL),(21,21,1,'Hydration alarm','This was given as a gift to me and it wasn\'t the one I asked for, but I\'m starting to like the different perks like the hydration alarm','Luther',NULL),(22,22,1,'It works ok but the ugliness is blinding','It works ok but the ugliness is blinding I am literally blinded','Leon',NULL),(23,23,1,'Watch too tight','Watch too tight please email how to loosen it or I\'ll leave bad review','Max',NULL),(24,24,1,'No ticktock','I got it because I thought it would still make a ticktick noise even though it\'s digital, but it doesn\'t!','Chuck',NULL),(25,25,1,'Not a bad watch for the price','Not a bad watch for the price. Wish it had actual numbers instead of marks, though.','Robert',NULL),(26,26,1,'the only watch I wear','Hands down, it\'s the only watch I wear when I\'m out on a run. The strap is soft and smooth, and the face even glows in the dark.','Noe',NULL),(27,27,1,'Dual time zone settings','When I\'m in another country, I hate not knowing what time it really is back home so the dual time zone settings are awesome!','Frank',NULL),(28,28,1,'Really perfect for travel ','Really perfect for my needs. I travel a ton, so I\'ll always know what time to give my wife a call back home.','Jamie',NULL),(29,29,1,'I really like the modern look','I really like the modern look of this watch, but I could only get one time zone to work. I hope it has a warranty because I\'m sending it back!','Bobby',NULL),(30,30,1,'This watch is so tight','This watch is so tight around my wrist! I don\'t care if it\'s adjustable, it cuts off my circulation.','Tommie',NULL),(31,31,1,'My favorite layers','This is one of my favorite layers for running in the winter, it keeps me warm but it\'s not super bulky.','Markus',NULL),(32,32,1,'Weird looking pocket','I where it when I\'m coaching football so I can run up and down the sidelines and yell without getting to hot. The pocket on the chest is weird looking tho.','Xavier',NULL),(33,33,1,'Perfect layer for the game','Perfect layer for wearing to the game, it doesn\'t shed all over your clothes like a regular hoodie.','Mike',NULL),(34,34,1,'The fabric is great','the fabric is great, it keeps me warm but it\'s not bulky like my other hoodies. Runs large, though.','Emory',NULL),(35,35,1,'This jacket isn\'t keeping me warm','This jacket isn\'t keeping me warm','Jon',NULL),(36,36,1,'I don\'t feel protected','Not sure exactly what \"elements\" they\'re talking about here. I don\'t feel protected from any \"elements\" in this throw-away.','Homer',NULL),(37,37,1,'avid hiker/snowboarder','I\'m an avid hiker/snowboarder and know quality when I see it. Please don\'t be fooled by the thin feel of this jacket - I always feel very comfortable and only rarely feel too warm, and then it\'s only because I wear insulating base layers. You will not be disappointed, especially if you\'re into winter sports or outdoor activities at higher elevations. My only issue with it is the zipper, which broke and had to be replaced.','Wilbur',NULL),(38,38,1,'Has never let me down','This jacket is going to be by my side for the rest of my life. It\'s never let me down once in a rainstorm, always keeping me dry as I bike back and forth to work. ','Long',NULL),(39,39,1,'Practically perferct','I have to say this is a practically perfect rain jacket. I do wish it was heavier though since it only works for me in spring and summer rainstorms. ','Lindsay',NULL),(40,40,1,'Excellent quality. I actually love','Excellent quality. I actually love when it rains because I get a lot of compliments whenever I wear this jacket. ','Randell',NULL),(41,41,1,'I just live for this track jacket','I just live for this track jacket. Because it\'s solid, I can put it on over any t-shirt and look really athletic. I may not exercise all the time, but wearing this jacket makes other people think I do!','Wyatt',NULL),(42,42,1,'Not 100% sure how I feel','Not 100% sure how I feel about this yet so I\'m going to number it right in the middle. It keeps me warm but the fleece is kind of itchy. It definitely has to go on top of another layer or you\'ll spend all day itching!','Glen',NULL),(43,43,1,'fleece lining','The fleece lining is what sold me! I hate being cold and this jacket really helps me not to be. Almost perfect-the hem slightly unraveled which is preventing me from giving it a 5.','Shon',NULL),(44,44,1,'I didn\'t think it was that warm','I didn\'t think it was that warm at all and it needs a hood. I wouldn\'t wear it in the winter that\'s for sure. ','Neal',NULL),(45,45,1,'for my son to wear to school ','I got this for my son to wear to school and it\'s treated him very well. Not too bulky and the reversible design is a very nice touch!','Herschel',NULL),(46,46,1,'Kinda bulky','Kinda bulky when you wear both, but they still let me move ok. Great for football games.','Rudolf',NULL),(47,47,1,'easy to take apart','I like this one. It\'s easy to take apart when you want to wear the quilted part and zips back in no problem. If you\'re a big guy its fits a little tight under the arms though.','Emmett',NULL),(48,48,1,'does everything it\'s suppose','This jacket does everything it\'s supposed to do. Keeps me warm and has lots of room for my stuff. Good buy!','Burl',NULL),(49,49,1,'Love it; don\'t have to take off gloves','Love it; don\'t have to take my gloves off and dig around in my pocket for my ipod','Carol',NULL),(50,50,1,'Wish buttons were on sleeve','Wish the buttons were on the sleeve but still very cool. Jacket is way warm too','Ronald',NULL),(51,51,1,'Great on my evening ride','I went back to the site and snagged another in a different color - they\'re great on my evening rides. I usually prefer raglan sleeves but I am always comfortable in this design, and the mesh works wonders for keeping my temperature down. ','Arden',NULL),(52,52,1,'Loop thing broke','I\'d give it 4 or 5 stars if it wasn\'t for the fact that the effing  loop thing broke. It wasn\'t stretchy enough and now im back to carrying my fone and sweating on it ughghg! ','Jessie',NULL),(53,53,1,'They chafed me!','They chafed me!','Rashad',NULL),(54,54,1,'They are comfy','Don\'t know why people on here are so negative about these pants. They are comfy and feel very lightweight and soft. The internal pocket is great for cash when I need to refeul during runs! ','Barrett',NULL),(55,55,1,'Saggy pants','After running in these saggy pants I just wanted to crawl into a hole a die. ','Davis',NULL),(56,56,1,'These are really bulky','These are really bulky and not very flattering at all. It looks like I have a big bulge at my stomach. I wear them around the house but I wouldn\'t go out in public with them on.','Donte',NULL),(57,57,1,'Inseam is WAY too long','Either I\'m too short or this inseam is way off. WAY too long! I trip constantly in these.','Reyes',NULL),(58,58,1,'Keeping me warm before games','They do the job of keeping me warm before a game. I wear them then and only then-wouldn\'t wear them anywhere else.','Harold',NULL),(59,59,1,'There\'s nothing to dislike','There\'s nothing to dislike about these track pants bc they do everything you want??blocks the wind and keeps you warm. Very happy I got them!','Darius',NULL),(60,60,1,'The mesh lining sometimes snags','The mesh lining sometimes snags when your taking them off but that\'s pretty common I think. Like them and would recommend.','Armando',NULL),(61,61,1,'These are great!','These are great! Major major points for the two-tone design plus all those technologies - I never feel gross after my runs. A must have for anyone serious about their body! ','Hershel',NULL),(62,62,1,'I bought these for my man.','I bought these for my man. What can I say, these pants keep him comfortable and dry. Never heard any complaints except that he wishes they stretched more. Good buy! ','Hans',NULL),(63,63,1,'I like them','I like them, they keep my sweat on the down low. They are stretchy. And I like the pockets. They look cool, too. So yeah. Go buy them.','Kenny',NULL),(64,64,1,'THESE PANTS KEEP ME WARM','THESE PANTS KEEP ME WARM WHEN IM BENCHED AT MY GAME! I DON\'T GET TO PLAY A LOT. LOL','Nicky',NULL),(65,65,1,'Good dog walking pants','Good dog walking pants','Mark',NULL),(66,66,1,'The draw string is more like half a draw','The draw string is more like half a draw string. Dosent stay so pants fall of my butt. I think they run too big.','Margarito',NULL),(67,67,1,'I got this for running','I got this for running, but the fit is kind of funny so I just end up wearing it for yard work. It\'s light enough, just nothing special.','Tyree',NULL),(68,68,1,'Nice and light. ','Nice and light. I like that there\'s no obnoxious design.','Weston',NULL),(69,69,1,'I bought 5 of the same color!','People at the gym probably think I don\'t wwas my cloths because I wear this evryday but I just bought 5 of the same color because it\'s awesome!','Jude',NULL),(70,70,1,'my new favorite CrossFit shirt','Fits great. It\'s my new favorite CrossFit shirt.','Leigh',NULL),(71,71,1,'Works for the gym','Works for the gym and even as an undershirt.','Roland',NULL),(72,72,1,'I like the crew neck','I got this shirt in the v-neck version too and I like the crew a lot better. It seems to fit better and I think the fabric is lighter. This one doesn\'t have the mesh inserts but allover the fabric feels better.','Edison',NULL),(73,73,1,'Hate the fabric','Why is this kind of fabric all the rage? I know it\'s supposed to be the best thing since sliced bread with the moisture wicking crap but I feel like I sweat MORE than with just regular cotton. I\'m over paying an arm and a leg for the \"technology.\" give me a 5 dollar tshirt from the dollar store!','Hai',NULL),(74,74,1,'Ready to hit the gym','As soon as I put this shirt on I feel ready to hit the gym, even on my laziest days. Something about the way it feels just gets me psyched up!','Cletus',NULL),(75,75,1,'Too small ','I\'m a bodybuilder with extremely large, buff muscles and this shirt simply does not accommodate my bulk. Even with the V neck it\'s too tight around my neck, and the sleeve openings were practically cutting off circulation to my biceps and triceps! I had to send it back but I have to admit that felt good ;)','Gustavo',NULL),(76,76,1,'it says moisturewicking?','it says moisturewicking but i still sweat when i wear this shirt, don\'t trust what you read on the internet','Filiberto',NULL),(77,77,1,'This shirt is a dream come true','This shirt is a dream come true for a sweat bucket like me. Love the material and I don\'t look like I got stuck in the rain when I\'m done working out.','Nathan',NULL),(78,78,1,'Awesome tee! Not cheap.','Awesome tee! Not the cheapest though.','Darwin',NULL),(79,79,1,'Liked the way it fit mostly','Liked the way it fit mostly. But the collar was weird. I guess it kept me dry?','Jonas',NULL),(80,80,1,'Keeps me cool','I like this shirt, it keeps me cool when I\'m lifting. Would like a tighter fit though.','Warren',NULL),(81,81,1,'Gets the job done. Even when I\'m pouring','Gets the job done. Even when I\'m pouring sweat, this shirt maintains a nice dry feel. I think the sizing runs a little large, so order accordingly.','Jerome',NULL),(82,82,1,'I sweat SO much.','I sweat SO much. This top is fine when I don\'t intend to exert myself, but BOY does it NOT work for people with hyperhydrosis!','Alfonzo',NULL),(83,83,1,'This shirt is too tight and too thin.','This shirt is too tight and too thin. REALLY emphasizes the fact that I do not have clearly defined pectorals.','Sergio',NULL),(84,84,1,'Great training top. ','Great training top. I like that it also has UV protection because I\'m outdoors all the time. Seems are a little weird tho.','Donnell',NULL),(85,85,1,'I love this shirt. Perfect fit','I love this shirt. Perfect fit, perfect price. My dad plays on a softball team and I got one for him and he is very happy too. has my vote! ','Erwin',NULL),(86,86,1,'Comfortable and soft','On the plus side, it\'s definitely comfortble and soft,  and yes it does keep you dry  no matter how much you sweat. However, I found the cuffs to be too tight and the material is a little too sheer for my tastes. But it\'s not the most expensive on the shelf, so whatever.','Don',NULL),(87,87,1,'It\'s okay, a little boring. ','It\'s okay, a little boring. ','Maynard',NULL),(88,88,1,'Very comfy but wears thin','It is very comfy but wears thin - I won\'t be able to get much more use out it as it now is revealing my bra I think. I have the white one so I will switch to a darker color if I decide to by another 1. Very embarrassing when your at the gym. ','Hiram',NULL),(89,89,1,'I\'ve lost 50 pounds in 5 months','I\'ve lost 50 pounds in 5 months and this shirt kept me comfortable since day one. I would recommend it to anyone serious about workout. Sizes run small tho so order a size up. ','Darwin',NULL),(90,90,1,'Fell apart in wash','I don\'t even know where to begin. It fell apart during the third wash. Whoever says this is a good-quality piece of gear is lying through their teeth! ','Chung',NULL),(91,91,1,'Fantastic shirt for the price!','This is a fantastic shirt for the price!','Jae',NULL),(92,92,1,'Luma got it right with this one.','Luma got it right with this one. I don\'t care about looking stylish, I just want a shirt that will still feel good after an hour at the gym, and that\'s what I got.','Alfred',NULL),(93,93,1,'Ripped the FIRST TIME I wore ','This shirt ripped the FIRST TIME I wore it.','Carlo',NULL),(94,94,1,'Really comfy shirt','Really comfy shirt, sometimes clings a bit but at least it dries fast.','Gus',NULL),(95,95,1,'I work out a lot','I work out a lot and my shoulders are really big, most tank tops are too tight in the armholes but this one is great.','Harry',NULL),(96,96,1,'Nice fit and fabric','Nice fit and fabric, but the inserts are in weird places.','Damon',NULL),(97,97,1,'I purchased this tank top for my son','I purchased this tank top for my son when he\'s working out in the gym after school. It fits great and he loves it!','Duncan',NULL),(98,98,1,'Yea. This pilled imeddiately','Yea. This pilled imeddiately after I washed it. Definatly returning.','Wendell',NULL),(99,99,1,'Why can\'t you make this in my size?','Why can\'t you make this in my size? Thank you for the color at least. ','Harold',NULL),(100,100,1,'Wear this on evening runs','Wear this on evening runs. I absolutely adore it and will probably buy more.','Kasey',NULL),(101,101,1,'Great for baoting ','We go boating a lot and these are great for when I\'m putting our boat in the water. Those tiny rocks and pebbles can be super sharp but I never feel a single one of them. ','Manual',NULL),(102,102,1,'These do drain well','These do drain well and are really comfortable but the bottoms can still be slippery if you\'re walking on wet rocks. Just be careful!','Milton',NULL),(103,103,1,'They work great in water','They work great in water but I also like to wear em on hotter days if we\'re walking around and regular sandals will let too much debris get in.','Antwan',NULL),(104,104,1,'The only things I care about when I\'m ru','The only things I care about when I\'m running are comfort and speed. These are definitely comfortable but I don\'t think their lightweight enough to give me great speed. And the search continues.','Lamont',NULL),(105,105,1,'Great! I wear these almost every day-esp','Great! I wear these almost every day-especially love that I don\'t have to worry about the laces.','Gerald',NULL),(106,106,1,'These sit in my foyer waiting for my eve','These sit in my foyer waiting for my everyday run. Sometimes I run 5 miles in them, sometimes 10. They never let me down.','Ike',NULL),(107,107,1,'Running in these are imPOSSible!! I only','Running in these are imPOSSible!! I only can run 23 minutes at a time, but these hurt when I even do that. They look pretty snazzy though, lots of compliments from the ladies on my route.','Hugh',NULL),(108,108,1,'Pretty average cts. Their comfrtable whe','Pretty average cts. Their comfrtable when I first start but don\'t try working out too hard in them. You\'re feet will definitely start to hurt!','Judson',NULL),(109,109,1,'I wear these to my gym daily. I go hard ','I wear these to my gym daily. I go hard on the treadmill and these don\'t let me down.','Carlo',NULL),(110,110,1,'Love, love, love - did I say love? It wa','Love, love, love - did I say love? It was totally worth it to wait for Luma to come out with a trail running shoe. Very comfortable.','Jerold',NULL),(111,111,1,'I slipped on a rock on these shoes and I','I slipped on a rock on these shoes and I could feel all the pain. I would go out running on a regular day in these but not if it\'s been previously raining.','Ezra',NULL),(112,112,1,'The only thing I don\'t like about these ','The only thing I don\'t like about these shoes are the weird toes. They point upward making it look really strange on a guy. Otherwise very good.','Simon',NULL),(113,113,1,'These are really good to play tennis in ','These are really good to play tennis in too. They fit a little narrow in the heel which was fine for me but might be a problem for others.','Noah',NULL),(114,114,1,'I wore these until they finally gave out','I wore these until they finally gave out! Great running shoes..very comfortable and light and I could feel the difference the Torsion system makes. Highly recommended for anyone going out 4 to 5 times a week.','Joey',NULL),(115,115,1,'How awesome is it to find a product that','How awesome is it to find a product that works exactly as advertised! These seriously felt like I\'d been wearing them forever, the first time I put them on. The way it molds to your foot is amazing. I have run two full marathons in these with barely a blister. GO LUMA!','King',NULL),(116,116,1,'I wouldn\'t be a runner if it wasn\'t for ','I wouldn\'t be a runner if it wasn\'t for these shoes. I used to get really bad shin splints, blisters and pulled muscles no matter how much I stretched. Once I bought these it got so much eaiser. It is true that they are not that stylish but if you are serious about running, who cares?','Irwin',NULL),(117,117,1,'I wear these for a variety of sports and','I wear these for a variety of sports and they are very comfortable, no complaints there. I\'m not crazy about the design though. In person they look kind of feminine. Plus the color is no bueno. They somehow looked dirty and old even fresh out of the box.','Monroe',NULL),(118,118,1,'Awesome shoes!! I didn\'t realize how muc','Awesome shoes!! I didn\'t realize how much I\'d been missing by wearing other shoes without a lot of heel cushioning. I\'m sticking with these from now on.','Josh',NULL),(119,119,1,'They ran too narrow for me and the mater','They ran too narrow for me and the material was almost too light - seemed pretty flimsy and I don\'t think they would last very long.','Leslie',NULL),(120,120,1,'These are really REALLY LIGHT! Not much ','These are really REALLY LIGHT! Not much shoe or cushioning. My calves were sore after running in them 5 miles the first time.','Jody',NULL),(121,121,1,'Not great on slippery grass. I wear them','Not great on slippery grass. I wear them mostly for walking around.','Chad',NULL),(122,122,1,'I used these as racing flats and they we','I used these as racing flats and they were awesome. ','Anibal',NULL),(123,123,1,'Unflattering','Honestly, could this be any more unflattering? The cut is really bad and I can\'t see anyone looking good in this unless they\'re really muscular.','Dominic',NULL),(124,124,1,'Keeps me comfortable','I\'ve only worn it a few times so far, but it really keeps me comfortable at the gym. I throw on a pair of athletic shorts and call it a day.','Mervin',NULL),(125,125,1,'Nothing to write home about','I agree with the reviewer above. You can get this same tank in a million other stores, nothing to write home about. Do like the top stitching though-really adds some athleticsm.','Trey',NULL),(126,126,1,'Average tank','It\'s just an average tank. Nothing really to say about it. I rarely work out so I can\'t speak to the moisture-wicking part.','Edmund',NULL),(127,127,1,'NOT for skinny dudes ','Unless ur really muscular this won\'t look good. I\'m keeping it cuz it\'s motivation to keep working out. But skinny dudes be warned.','Tracey',NULL),(128,128,1,'Keeps me feeling dry','The fabric is great when I\'m sweating hard. It keeps me feeling dry. Wish there was more ventilation.','Archie',NULL),(129,129,1,'I feel awesome when I wear this','I feel awesome when I wear this to hit the gym!!!  The cut makes my triceps look huge. It\'s so rewarding to look in the mirror after a really tough workout. My girlfriend says I look like a lunkhead but I know she loves it!!','Eldon',NULL),(130,130,1,'Comfortable','Not as lightweight as it seems but it was ok. Comfortable.','Joey',NULL),(131,131,1,'I bought a few of these for my husband. ','I bought a few of these for my husband. He likes them but they did shrink when washed. I just don\'t put them in the dryer anymore and it\'s fine!','Matthew',NULL),(132,132,1,'TINY neck hole??','Why is the neck opening so small??? Didn\'t fit right.','Monroe',NULL),(133,133,1,'Shirt can stink after','Ok, MAYBE this is just me but I sweat a LOT when I run, and I\'ve noticed that this shirt really retains odor.  I washed it three times and it still stank so I had to just throw it away. Which sucks because I really liked it, but come on!','Scotty',NULL),(134,134,1,'Wish it was longer','wish it was longer. i\'m 5\'11 with a long torso and it\'s too short.','Alexander',NULL),(135,135,1,'Razorback version?','I\'d prefer if it was Racerback, but otherwise it\'s a great shirt. The Mesh zones are where you need them when you really get Sweaty.','Graham',NULL),(136,136,1,'Fits true to size, feels great.','Fits true to size, feels great. I bought three and I won\'t wear anything else when I\'m training.','Patrick',NULL),(137,137,1,'I bought this bag for my daughter','I bought this bag for my daughter because she travels all the time and she loves it! It\'s easy for her to roll and carry by herself even when full. ','Shella',NULL),(138,138,1,'Goes everywhere with me','I\'ve taken this bag to so many places and everything still works. I hate when the threads start to come apart and the zipper gets caught after like 2 uses. So far so good!','Crissy',NULL),(139,139,1,'The material is a little thin','The material is a little thin so I\'m afraid it won\'t last long. The zippers slide really nice and the wheels are good on the pavement. Overall a good purchase.','Alene',NULL),(140,140,1,'OBSESSED with this!','OBSESSED with this! I love that it\'s adjustable! A bit more expensive than I wanted, but TOTALLY worth it.','Cliff',NULL),(141,141,1,'Great but pricey','This totally makes me feel like I\'m actually working my muscles. The adjustable thing is awesome. A bit pricey though.','Fiona',NULL),(142,142,1,'I hate working out...This does not help.','I hate working out...This does not help.it gets tangled really easily.can\'t even get threw 1 work out with it. Returning.','Ardith',NULL),(143,143,1,'Want more resistance','Its great to be able to work out at home and sometimes on my lunch break at work - I wish this provided more resistance, though.','Randy',NULL),(144,144,1,'Agreed. More resistance','Agreed. I can do plenty of exercises with it and its awesome for when I can\'t make it to the gym, but I\'d like more resistance, too.','Keren',NULL),(145,145,1,'Too lazy to go to gym','I use these when I\'m too lazy to go to the gym. Really helps me stay in shape. I have already adjusted several times to increase the tension because I\'m getting stronger!','Madeleine',NULL),(146,146,1,'Do not buy!','Tried to adjust one and the plastic part just snapped in half. Very Disappointed. Do not buy!','Ricky',NULL),(147,147,1,'They work, nothing special. ','They work, nothing special. I had a set that I liked better but my ex stole it.   ','Krystle',NULL),(148,148,1,'Good value for the price','pretty satisfied with this jump rope. good value for the price','Lavonia',NULL),(149,149,1,'I BRING THIS TO ALL MY MEETS!','I BRING THIS TO ALL MY MEETS FOR WARMUP!!! BARELY TAKES UP ANY SPACE IN MY BAG','Andy',NULL),(150,150,1,'perfect for when I\'m too lazy','this is so perfect for when I\'m too lazy to go to the gym. I do a few pushups and then whip out the jump rope and work on my cardio. It\'s a quick workout that makes me feel greaat and I don\'t even have to leave the house','Orville',NULL),(151,151,1,'PURPLES','I bought these pushup grips because they came in purple!! my boyfriend has his own and I love using them but the purple was so perfect for me because I\'m a girly girl at heart','Toya',NULL),(152,152,1,'these are ok','these are ok, but my brother has the military ones and I like them loads better','Johanne',NULL),(153,153,1,'Will whip you into shape!','these things whip you into shape! a month after I got them and used them several times aeach week I could see a huge difference in my muscle tone. very happy with the results!!!  :)','Ashlea',NULL),(154,154,1,'Easy to clean','Wide mouth opening makes it easy to clean! ','Olimpia',NULL),(155,155,1,'Perfect weight','I always found 10 lb weights too light and 20 lb too heavy. This is just right!','Danielle',NULL),(156,156,1,'should\'ve got a while ago','I don\'t know why I didn\'t get this years ago. I\'ve been diligently doing ab workouts every day with little effect. Incorporated this into my routine and BAM! I can see my love handles melting away!','Keith',NULL),(157,157,1,'I love this bag! It\'s cute','I love this bag! It\'s cute and doesn\'t advertise that I\'m going to the gym like a duffel bag.','Dodie',NULL),(158,158,1,'I pack a TON of stuff','I take a TON of stuff to the gym and yoga studio. Way more than I should but this bag still allows me to carry a bunch of it. I like taking it better than any other bag.','Tara',NULL),(159,159,1,'Wish there were pockets ','I like it but I wish there were pockets on the inside instead of just one big space. I didn\'t think it would fit inside my locker but it did.','Chasidy',NULL),(160,160,1,'Motivated by this Bag!','I purchased this bag hoping it would give me more motivation to go to the gym and it has! Not too big, sized just right for me and all my friends love it :)','Tamisha',NULL),(161,161,1,'Wish it had more pocket','Wish it had more pockets, but it\'s still good. A shoulder strap would also have been nice.','Lidia',NULL),(162,162,1,'Fits tons of gear','I take this along whenever I head up to my cabin. Fits tons of gear plus a few of my favorite electronics. And duct tape.','Elizabeth',NULL),(163,163,1,'ok bag for a day\'s hike','ok bag for a day\'s hike around Hawk Mountain. Needs a sturdier top handle tho, things ripped','Sueann',NULL),(164,164,1,'I bike four miles a day to work and back','I bike four miles a day to work and back and I love this thing. It\'s a good size and it\'s pretty comfortable to wear across my back while I ride. So far I have not noticed much wear and tear on the fabric and I\'ve had it for 6 months.','Sadye',NULL),(165,165,1,'I would love this bag EXCEPT . . .','I would love this bag EXCEPT with the case on my Iphone won\'t fit in the cell phone pocket! Why make a pocket for cell phones if it\'s not going to fit an Iphone.','Adena',NULL),(166,166,1,'it\'s really ugly,','Its fine I guess but it\'s really ugly, I picked out a really cute bag for college but my mom got me this one instead.','Tracee',NULL),(167,167,1,'What\'s not to like about this bag?!!','What\'s not to like about this bag?!! It\'s simple, clean and modern, and it fits me perfeclty. The roominess is a big plus when I make multiple trips to the gym then the grocery store then wherever else. LOVE IT! ','Anglea',NULL),(168,168,1,'Did I get floor model?','I must have a floor model or soemthin cuz when I ordered it it came all stained up, some brown crust or somethin. Gross. I requested a refund so we\'ll see. Other than that I think it\'s a quality bag, just disappointed with mine. ','Lasandra',NULL),(169,169,1,'I bought this backpack for my daughter','I bought this backpack for my daughter who\'s going to college this year. Her campus is huge and I was concerned that she would hurt her back lugging all those books around. It seems like there\'s enough padding!','Francesca',NULL),(170,170,1,'I heart this backpack so hard. ','I heart this backpack so hard. The colors are soooo cute and there\'s enough room for all my stuff xoxo ','Susy',NULL),(171,171,1,'Can I give zero stars?','I would give this bag zero stars if I could!!!  All of the zippers fell off the first tim I used it!!!  DON\'T BUY THIS ','Ingeborg',NULL),(172,172,1,'Um, not actually waterproof','This bag is definitely not waterproof. I accidentally left it outside in a downpour, and my clothes got soaked. I\'m disappointed!','Aiko',NULL),(173,173,1,'A roomy duffle','I really love how roomy the duffle is. I\'m a clotheshorse, so I like to take a lot of outfits with me when I go away. I have no problem stuffing it all in. It\'s not a very stylish bag, but it serves its purpose.','Dollie',NULL),(174,174,1,'doesn\'t hold that much','It doesn\'t hold that much, so it\'s really just good for a night or two away. It\'s also pretty plain looking, so for those who like bells and whistles, look elsewhere.','Caroyln',NULL),(175,175,1,'Good bank for small hand','I bought this watch specifically for its band because I have really small wrists and have a hard time finding watches that fit, even ones that say women\'s. This one fit wonderfully and I could even make it smaller!','Desiree',NULL),(176,176,1,'Super sleek, love it. ','Super sleek, love it. I\'m buying another as a gift!','Cecelia',NULL),(177,177,1,'My mom loves it','I bought this watch for my mom to workout with and she loves it. It\'s not too difficult for her to set and she uses it all the time now.','Natosha',NULL),(178,178,1,'Not classical but cool','Even though I\'m a fan of classic/traditional styles, I bought this watch for something different since it\'s fun and I could really use for tracking my sprints. I have no complaints!','Pok',NULL),(179,179,1,'Buckle BROKE','my buckle BROKE off the 2nd time I wore it. And then I had issues getting a replacement even with the warranty. Luma needs to stick to clothing basics because they clearly are out of their league with the more technical stuff. UGH','Grace',NULL),(180,180,1,'It died after  a week','It died after  a week of infuriating malfunctionality! First that little plastic screen that houses the numbers - yeah. it popped off in 24 hours. Okay, no problem i thought, i\'ll just not touch any thing vital. Then the metal back popped off and landed in the toilet so there was just no recovering that. THEN  the buckle broke! In the trash it went!','Nadia',NULL),(181,181,1,'The strap broke','The strap broke, which made me think I have fat wrists but I don\'t.','Laronda',NULL),(182,182,1,'Pieces kept coming off','Pieces kept coming off.','Colleen',NULL),(183,183,1,'Keeps excellent time and is pretty tough','Keeps excellent time and is pretty tough! Still no scratches or scuffs after a year of wearing it.','Denese',NULL),(184,184,1,'Has been through quite a few adventures ','Has been through quite a few adventures and vacations with me and still looks and runs great. That includes plenty of trips to water parks with the kids! ','Joette',NULL),(185,185,1,'Rides up during workouts','Rides up a bit during workouts but otherwise it\'s pretty comfy! I like the hood.','Gala',NULL),(186,186,1,'Great for cooler runs. ','Great for cooler runs. ','Shonta',NULL),(187,187,1,'I literally wear this everywhere','I literally wear this everywhere even out to dinner!','Kathrine',NULL),(188,188,1,'I can\'t get enough of this hoodie','I can\'t get enough of this hoodie. It\'s so comfortable, I hate taking it off! I\'m buying it in more colors now so that I can wear it more without people realizing that I wear the same thing every day ;)','Olene',NULL),(189,189,1,'Not really flattering','Not really flattering for my body type','Scarlet',NULL),(190,190,1,'Softest hoodie ever','This hoodie may be the softest thing I\'ve ever touched! It\'s so perfect for curling up on a chilly day. I wore it hiking on a really cold day last November and it kept me really warm. My only issue is that it\'s kind of plain and unflattering. I would love to wear it all the time but it makes me look a little frumpy. Luma, I need this fabric with a more stylish design!','Martina',NULL),(191,191,1,'The fabric stains easily','The fabric stains easily but otherwise I\'m a big fan. I don\'t usually like to wear pullovers but the zipper makes it easy to get on and off.','Elly',NULL),(192,192,1,'I wear it to class','I usually just wear it to class but it\'s definitely comfortable and light enough that you could work out in it.','Temeka',NULL),(193,193,1,'Zipper is goofy','Honestly this hoodie is okay but I do not get thezipper. Why not just make a full length zipper? I would rather have no zipper.','Julieann',NULL),(194,194,1,'Needs long sleeves please','The fleece fabric is really nice, but I hate the short-sleeve design. Can you please make this with long sleeves? It\'ll keep me warmer!','Louisa',NULL),(195,195,1,'My favorite hoodie','This is definitely my favorite hoodie in my closet. I wouldn\'t wear it if it was freezing out, but it\'s a great extra layer on normal mornings.','Joelle',NULL),(196,196,1,'Not very stylish','It\'s kinda average and I don\'t know if I would get it again. With the right color combination, it might look ok, but the combo I have and the short sleeve style doesn\'t make it very stylish.','Jonna',NULL),(197,197,1,'Kept me warm','So I borrowed this from my mom and I have to say It\'s not my style but I was super cold and it did the job. ','Jeanelle',NULL),(198,198,1,'Great value','The sleeves are definitely thicker than you realize, which is a good thing! The photo is a little misleading because it makes the hoodie look thin but it\'s really quite substantial! Great value. ','Oma',NULL),(199,199,1,'Best hoodies I\'ve owned.','im planning on buying another one of these in another color. the best hoodie ive ever owned.','Beatris',NULL),(200,200,1,'Love it!','Walking our St. Benard is pretty serious exercise - you WILL sweat trying to keep up with him. This hoodie keeps me just warm enough and doesn\'t get bogged down with sweat. Love it! ','Georgeann',NULL),(201,201,1,'Fall weather jogs or walks','Perfect for fall weather jogs or walks on cool evenings. The sweat-wicking fabric works wonders, keeps the hoodie dry after you\'ve cooled down so you\'re not cold and wet (which I can\'t stand).','Stefany',NULL),(202,202,1,'Soft but not wrm','Definitely not as warm as I hoped, but its super soft. I\'ll wear it when I need another layer.','Lilliam',NULL),(203,203,1,'Ultra comfy','This is my go-to jacket when I\'m running in the morning. It keeps me warm and is ultra comfy.','Sadye',NULL),(204,204,1,'Pocket too small for mp3','The mp3 pocket barely fits my device. I was hoping for a slightly larger pocket.','Rolande',NULL),(205,205,1,'Fitted, awesome','Can I please wear this every day?! Would that be weird? It\'s fitted, which is awesome because I hate frumpy sweatshirts. And the fleece is a dream!','Elvina',NULL),(206,206,1,'Shrinks a lot','Mine shrunk to! :( I gave it to my little sister.','Alesha',NULL),(207,207,1,'Shrunk right away!','So annoyed! I loved this, but then it shrunk after I washed it once! It\'s adorable but now the sleeves are too short. Returning. :(','Tennille',NULL),(208,208,1,'my new fave zip up','OMG, I\'ve found my new fave zip up!! I live in this thing! I\'m just mad their arent more colors.','Lakeesha',NULL),(209,209,1,'Only shirt I wear anywmore','I wear this to class so often, my friend asked me if I actually own any other shirts!','Charlyn',NULL),(210,210,1,'it\'s so light and really long!','it\'s so light and really long! I wear it with jeans, yoga pants, whatever!','Regenia',NULL),(211,211,1,'Wish I\'d bought the tshirt','Love the material, but the hood kind of flops around. I should have bought the t-shirt instead of the hoodie.','Juliette',NULL),(212,212,1,'Fleece inside, sweater outside','I love wearing fleece, but I hate how it pills and picks up fluff and cat hair. This hoodie is perfect, because it\'s a fleece on the inside and a sweater on the outside. I wear it around the house all the time in the winter.','Anamaria',NULL),(213,213,1,'Great for hiking and camping','Great hoodie for hiking and camping in the fall. I really wish the pockets were bigger, though, I can\'t get my hands in them when I\'m wearing gloves.','Tiffiny',NULL),(214,214,1,'Super warm.','Super warm. My mom bought this for me for when I have to go watch my stupid brother play middle school football in 30 degree weather.','Cara',NULL),(215,215,1,'This is REALLY comfortable!','This is REALLY comfortable! It\'s a little too bulky to run or bike in, but for cold-weather hikes it\'s awesome.','Nadene',NULL),(216,216,1,'Thumb holes rock!','Thumb holes rock!','Tawny',NULL),(217,217,1,'REALLY lightweight.','OK this jacket is REALLY lightweight. But if it\'s really cold, you have to wear it with baselayers or you\'ll freeze. It\'s a good buy, but be prepared!','Illa',NULL),(218,218,1,'Nice for skiing','Looks good and feels good. It\'s nice for skiing because it blocks the wind and keeps you warm, but doesn\'t get too hot after you start sweating.','Ela',NULL),(219,219,1,'Most comfortable jacket','I have never worn such a comfortable jacket!!!  It\'s really thin and moves well with your body, I have no idea how it manages to keep you so warm. And if you\'ll be in really cold weather, you can easily add some extra layers underneath and still be comfortable.','Kecia',NULL),(220,220,1,'a little short for me','It\'s a little short for my loooooooooooooong torso, but it\'s still comfy and cute. Good for short runs.','Johna',NULL),(221,221,1,'Square shape','Makes me look like a square. Literally, like a square shape.','Jessi',NULL),(222,222,1,'This is my go-to jacket','This is my go-to jacket when I\'m running in the rain or cold! It\'s warm but lightweight, totally waterproof, and I love the colors!','Kellye',NULL),(223,223,1,'I wear this pretty much every day!','I wear this pretty much every day! The material is really soft and it goes with everything!','Marvella',NULL),(224,224,1,'Horrible unflatterung design','It\'s called not making clothes that are boxy and unflattering. Heard of it?','May',NULL),(225,225,1,'The actual color is brighter','The actual color is brighter than it looks in the photo, but thats why I like it for jogging in the neighborhood at night ','Chasidy',NULL),(226,226,1,'Big back pocket','my fave part is the back pocket. I needed a place to keep my cell phone safe when I run','Wava',NULL),(227,227,1,'Everyone loves this jacket on me','I got this jacket for tennis practice since its in my schools color and everyone on the team loves it!!','Kristyn',NULL),(228,228,1,'Rain proof?','I don\'t know if this jacket would be good for a whole day outside in the snow. It says waterproof but mine got pretty soaked one day when it was raining. ','Janna',NULL),(229,229,1,'Overheated','I agree with that other reviewer. I get very overheated while wearing this jacket while shoveling snow. ','Venetta',NULL),(230,230,1,'Great colors!','I\'m into the colors cause they\'re great for night skiing-but I overheated really fast in this jacket','Demetrice',NULL),(231,231,1,'This is the most dependable piece I own.','This is the most dependable piece I own. You\'ll rarely me without this on. (except in the summer)','Mathilde',NULL),(232,232,1,'Not for cold weather','This really doesn\'t deliver on the insulating part. I can\'t say I would throw this on in really chilly temperatures-need a coat.','Eda',NULL),(233,233,1,'Perfect, perfect, perfect in every way. ','Perfect, perfect, perfect in every way. I love the quilting and it keeps me toasty warm.','Denyse',NULL),(234,234,1,'Awesome bottoms ','Awesome bottoms for working out or just relaxing at the house.','Ashlee',NULL),(235,235,1,'Great for yoga','I\'m not a fan of really tight or compressed pants so I love these for my yoga classes (not so much for hot yoga, though). ','Nyla',NULL),(236,236,1,'Yoga is for hippees','I bought these to hang out in not for yoga. yoga is for hippees!','Judith',NULL),(237,237,1,'I can\'t stop lookin in the mirror! ','I can\'t stop lookin in the mirror! ','Isadora',NULL),(238,238,1,'Want more colors','Guys. I have like 10 pairs of these cause they\'re so comfy, natch! Please make more colors!','Isela',NULL),(239,239,1,'I have 5 pairs','I literally have about 5 pairs of these in my drawer. I don\'t just wear them to yoga though. Oh no! I wear them on a normal Saturday around town. Love them!','Dannielle',NULL),(240,240,1,'These pants move so well!','These pants move so well! They provide nice coverage so when I\'m in Downward Dog, I don\'t have to worry. I don\'t know about this Cooltech technology though. I sweat in them, so they definitely don\'t keep me dry. They\'re pretty warm!','Deloise',NULL),(241,241,1,'Seams separated righth away','I wear them once and the seams started to separate! Not constructed well at all. With the kazillion other yoga pants out there, there\'s no excuse for this!','Rosann',NULL),(242,242,1,'high waistband, no muffin top!','Love the cut and the high waistband. Bye bye, muffin top!','Lily',NULL),(243,243,1,'Relaxing','My favorite part of the day is when I get to come home, take my work pants off and slip these on. Sooo soft and perfect for relaxing.','Brittany',NULL),(244,244,1,'LOVE, LOVE, LOVE.  ','LOVE, LOVE, LOVE. They are so comfy and good for anything. I have two toddlers, so I rarely get a chance to finish my morning stretches and yoga, let alone get changed afterward before I get interrupted by my kids. Sometimes I will be making lunch and realize that I\'m still wearing these! They\'re so comfy and good for anything. It\'s nice to know that if I need to run out on a quick errand, I won\'t look like a total bum even if I forgot to change.','Brittni',NULL),(245,245,1,'NOT flattering.','NOT flattering. My boyfriend bought me these cuz he loves the way yoga pants look. I wore them once and he said I should return them then we broke up :(','Pamela',NULL),(246,246,1,'These are soft and stretchy','These are soft and stretchy enough but don\'t draw sweat away. ','Tarra',NULL),(247,247,1,'I bought these for yoga','I bought these for yoga but they make better pajama bottoms. I like a tighter fit for yoga.','Lue',NULL),(248,248,1,'These pants are so cute!','These pants are so cute! I like them better for lounging than exercising, though. The material gets a little too hot when I\'m working out.','Mavis',NULL),(249,249,1,'good for PJs but that\'s about it','good for PJs but that\'s about it','Kemberly',NULL),(250,250,1,'These are my favorite pants. ','These are my favorite pants. Super cute and soooo comfy.','Tashina',NULL),(251,251,1,'Soooooooooooooo light!','Soooooooooooooo light!','Beverlee',NULL),(252,252,1,'Cute.','Cute.','Latarsha',NULL),(253,253,1,'I really dig this shirt for races','I really dig this shirt for races, it makes me feel like I\'m flying.','Lorena',NULL),(254,254,1,'This shirt is decent for running','This shirt is pretty good! I\'m a long distance runner and it keeps me pretty comfortable, although these companies always act like their shirts are magical and really it\'s just pretty basic stuff. Still it\'s a decent shirt and I would recommend it. Just don\'t expect it to change your life.','Allyson',NULL),(255,255,1,'Wish it was longer','fits kind of awkward wish it was longer','Chloe',NULL),(256,256,1,'Fits my large head TG','So I have a really large head and I love this shirt bc the neckline is so stretchy! Honestly I have gotten stuck in other running shirts with the really small collar hahahahaha so embarrassing!!! !!','Hsiu',NULL),(257,257,1,'Flatters my big build','I have broad, strong shoulders and this top is one of the very few that flatters my build. 5 stars for sure!','Annamaria',NULL),(258,258,1,'Fits my fiancee better','My fiance accidentally put this on when he was getting dressed and it fit him better than it fits me?? ','Lang',NULL),(259,259,1,'Fabric is great for sport','I do think the fabric is great for sports but the cut and style are weeeird.','Becki',NULL),(260,260,1,'Doesn\'t help my figure one bit','The contored design is NOT really contored. I rarely wear this top out because it doesn\'t do anything for my figure.','Hellen',NULL),(261,261,1,'What\'s with the sleeve cut?','What\'s with the sleeve cut? I don\'t even have linebacker shoulders but I feel like the sleeves are cutting off circulation to my arms!','Pearle',NULL),(262,262,1,'Light, comfy','Light, comfy, does a good job shedding sweat.','Slyvia',NULL),(263,263,1,'Light but tight','This shirt is very light but a TIGHT fit! Almost compression-tight.','Nell',NULL),(264,264,1,'Looks and feels aweseom ','Really like the seams. Looks and feels awesome!','Skye',NULL),(265,265,1,'Really close-fitting. Do not love.','Really close-fitting. Do not love.','Amberly',NULL),(266,266,1,'Not at all soft','There\'s a ton of other t-shirts I\'d choose over this one. It\'s not soft at all and the fabric feels like sandpaper next to my skin-was really hoping for better.','Ashli',NULL),(267,267,1,'This T is a no brainer-solid color','This T is a no brainer-solid color, pairs with everything, and keeps me cool. What more could I want during my run?','Ruth',NULL),(268,268,1,'Thank you! ','Thank you! I\'m so sick of inappropriate workout clothes. This is exactly what I was looking for. Cover yourselves up, ladies!','Sonja',NULL),(269,269,1,'Um, NOT flattering at ALL.','Um, NOT flattering at ALL. Too tight and short.','Candie',NULL),(270,270,1,'Like the color .sleeves were too tight. ','Like the color .sleeves were too tight. felt constricted.','Elmira',NULL),(271,271,1,'Sooooooooooo soft! ','Sooooooooooo soft! Nice and long too.','Nyla',NULL),(272,272,1,'Cute, comfy. ','Cute, comfy. A little overpriced though.','Hollie',NULL),(273,273,1,'I love that it\'s so lightweight. ','I love that it\'s so lightweight. I can wear it under jackets and vests without feeling like a stuffed sausage.','Celestine',NULL),(274,274,1,'who doesn\'t love a racerback, amiright?!','who doesn\'t love a racerback, amiright?!','Irma',NULL),(275,275,1,'I where this AAALLLLL the time','I where this AAALLLLL the time to workout! Its so comfy and cute! I just wish it was a little longer.','Gidget',NULL),(276,276,1,'soft but a little tight','soft but a little tight for my liking.','Tatiana',NULL),(277,277,1,'Love the fabric, but it\'s huge!','Love the fabric, but it\'s huge! I look like a homeless person in it.','Maisie',NULL),(278,278,1,'Soft','seriously, I can\'t get over how soft this tank top is. Do you have anything else made with it?','Karine',NULL),(279,279,1,'omg I love this tank top, it\'s perfect','omg I love this tank top, it\'s perfect for running and yoga. The fabric is so soft and stretchy!','Bree',NULL),(280,280,1,'cool and dry','What I rally love here is that it does the job of keeping me cool and dry.  I\'m a big guy and sweat A LOT! Even after a day of gulf, I\'m still dry and comfortable. The problem is that the sleeves are very tight - actually bought a second shirt because i split the armpit/sleeve area of the first. Do yourself a favor and order a size bigger.  ','Lakeisha',NULL),(281,281,1,'Not great','Not great - buttons are too small and hurt my fingers trying to button it. I\'ve seen better designs...','Collette',NULL),(282,282,1,'What a versatile shirt!','What a versatile shirt! Not only does it feel very soft compared to my old worn out polos, but it also does the job promised. I like going out after my gamefor drinks so I look good then too and don\'t need to change into something fresh. ','Adaline',NULL),(283,283,1,'So comfortable I almost feel barefoot. T','So comfortable I almost feel barefoot. The treads on these is so intricate and deep, so they can be hard to clean. ','Karisa',NULL),(284,284,1,'On the plus side, the perforated cushion','On the plus side, the perforated cushioning  is really soft and reduces friction. However, they seem to absorb sweat and don\'t dry very quickly, which causes a lot of odor. ','Evelyn',NULL),(285,285,1,'I threw them out when the mushy lining s','I threw them out when the mushy lining started to ooze. ','Markita',NULL),(286,286,1,'Beyond perfection! I always get tons of ','Beyond perfection! I always get tons of compliments when I wear these out.','Manuela',NULL),(287,287,1,'These look awesome with EVERYTHING! Hone','These look awesome with EVERYTHING! Honestly, there\'s nothing you can wear that won\'t look perfect with these. Preppy and retro! Love them!','Gwen',NULL),(288,288,1,'The suede upper makes these pretty hard ','The suede upper makes these pretty hard to wear if its raining outside! The sneaker designers really weren\'t thinking on this one. Cute design though!','Jovan',NULL),(289,289,1,'Love a preppy sneaker! These are still a','Love a preppy sneaker! These are still adorable but not as casual as running shoes! Love them!','Shellie',NULL),(290,290,1,'These are my favorite new pair of sneake','These are my favorite new pair of sneakers! I just hate that they get dirty really fast.','Dena',NULL),(291,291,1,'Have had these for quite a while and the','Have had these for quite a while and they\'re still my go-to pair for every morning jog. Really hold up well and still feel good.','Evalyn',NULL),(292,292,1,'Really comfy and awesome for running or ','Really comfy and awesome for running or checking out trails at the park. ','Adele',NULL),(293,293,1,'Velcro straps?? Are you kidding me? Am I','Velcro straps?? Are you kidding me? Am I two years old? The bottom is cool though!','Star',NULL),(294,294,1,'Cool-looking kicks! I\'d wear them anywhe','Cool-looking kicks! I\'d wear them anywhere not just the gym or running. They\'ll look great with everything!','Nikki',NULL),(295,295,1,'I absolutely love these trainers. I can ','I absolutely love these trainers. I can get on the gym floor so quick becuz i don\'t have to tie any annoying ties.','Rosy',NULL),(296,296,1,'Don\'t like the strap on top; gets too lo','Don\'t like the strap on top; gets too loose sometimes','Aleen',NULL),(297,297,1,'Love the no laces and they feel really g','Love the no laces and they feel really good- wear em all the time!','Dannette',NULL),(298,298,1,'I love these for when I walk the boardwa','I love these for when I walk the boardwalk with my grandaughter. They seem pretty hip and I got lots of compliments on them from the ladies at the bingo night','Lita',NULL),(299,299,1,'These looked really ugly on my feet when','These looked really ugly on my feet when I got them. The picture online is much more flattering than the reality. I\'m bummed. ','Joyce',NULL),(300,300,1,'I can appreciate the concept, but I thin','I can appreciate the concept, but I think I\'ll be going back to regular laced sneakers from now on, they just didn\'t seem to fit my feet as well I guess because my feet are so narrow. People with narrow feet shouldn\'t buy these!','Gertrud',NULL),(301,301,1,'I couldn\'t live without these. I wear th','I couldn\'t live without these. I wear them everywhere, not just running. They feel like I don\'t have anything on my feet, and their so, so comfortble.','Leonia',NULL),(302,302,1,'These are really well made and so lightw','These are really well made and so lightweight. I\'ll definitely be buying more of these.','Nadene',NULL),(303,303,1,'Want these in every single color Luma ma','Want these in every single color Luma makes! I am the first to say that I\'m a couch potatoe, I don\'t run at all. I wear these to the mall for shopping instead. :)','Min',NULL),(304,304,1,'Ummm, fashion? If you say so. They\'re co','Ummm, fashion? If you say so. They\'re comfy and all, but these shoes are hideous.','Katy',NULL),(305,305,1,'Cute and comfortable definitely. The ela','Cute and comfortable definitely. The elastic streteched out a bit too much but I still wear them.','Laurice',NULL),(306,306,1,'Love love LOVE!!!  I can\'t get enough of ','Love love LOVE!!!  I can\'t get enough of these shoes. They are SUPER comfy and go with everything!','Kara',NULL),(307,307,1,'It was really hard to find the right siz','It was really hard to find the right size for these. I had to send them back 3 times before I got a pair that fit. Really aggravating!!!  I ended up having to get two sizes larger than I usually wear and a wide, which I\'ve never worn before in my life. Sizing is messed up do yourself a favor, go to the store and try them on.','Angeline',NULL),(308,308,1,'VERY LIGHTWEIGHT COMFY-GOOD SHOES','VERY LIGHTWEIGHT COMFY-GOOD SHOES','Marita',NULL),(309,309,1,'Wore these for a year and they started f','Wore these for a year and they started falling apart. For the price I guess I\'ll just get another pair cuz I do like them. But I think a shoe should last longer. It\'s not like I can take my sneakers to a cobbler haha','Pura',NULL),(310,310,1,'I am in love with these shoes and will b','I am in love with these shoes and will buy them until they don\'t make them anymore. I run every day in them and I\'m still on my first pair after a whole year. They\'re SO comfy.','Natashia',NULL),(311,311,1,'Design is adorable-when you have cute wo','Design is adorable-when you have cute workout gear, exercising is fun. I\'d buy these again.','Brigitte',NULL),(312,312,1,'Have no idea what all the fuss is about ','Have no idea what all the fuss is about with these. I don\'t know, maybe I just bought the wrong size, but these are so uncomfortable. They dig into my toes and I always end up with blisters. Their cute but will look elsewhere.','Roseline',NULL),(313,313,1,'Pic is WAY different then the real thing','Pic is WAY different then the real thing! My mom wouldn\'t even wear these there so ugly! Can I give a 0 rating?','Garnett',NULL),(314,314,1,'Meh, I\'m not hating them, but I\'m not in','Meh, I\'m not hating them, but I\'m not in love. The eyelet part looks way different online and the elastic band felt really tight. They are pretty comfy other than that.','Eugena',NULL),(315,315,1,'I\'m a mom on the go and I love these sho','I\'m a mom on the go and I love these shoes! They\'re comfy, cute and easy to slip on. What more could you ask for?','Elina',NULL),(316,316,1,'Not exactly true to size','Not exactly true to size but still very comfortable. ','Mistie',NULL),(317,317,1,'Snug fit without being too tight','Snug fit without being too tight and no irritation or chafing. ','Ming',NULL),(318,318,1,'bra stays comfy and dry','I play field hockey and it gets crazy hot outside - bra stays comfy and pretty dry. Recommended!','Mei',NULL),(319,319,1,'One of my favorites b/c no chafing!','One of my favorites b/c no chafing!','Bernetta',NULL),(320,320,1,'Doesn\'t fit me. Luma fail.','Doesn\'t fit me. Luma fail.','Roxie',NULL),(321,321,1,'does not fit. worthless.','does not fit. worthless.','Ardelia',NULL),(322,322,1,'So, so awesome. Great Support!','So, so awesome. Great Support! I just can\'t wait for the day that I\'m comfortable enough with my midriff to wear this sans shirt, because the pattern is really cute!!','Dorcas',NULL),(323,323,1,'I love this bra','I have a B cup and I love how this bra feels! It has a really firm fit but it doesn\'t feel too tight. I wish every bra felt like this!','Cayla',NULL),(324,324,1,'So comfortable','If I could wear this sports bra every day, I definitely would. It\'s so so comfortable and washes well.','Tonya',NULL),(325,325,1,'It\'s an average bra','It\'s an average bra-nothing to write home about. I don\'t like how the straps dig into my shoulders, and it really doesn\'t provide that much support.','Eartha',NULL),(326,326,1,'Make this with patterns','I wish they made this bra with patterns because I like to look good at the gym. This is a little blah, but still cute. I would never wear it by itself.','Jammie',NULL),(327,327,1,'Cute gym top','So, it doesn\'t say that theres no shelf bra. BEWARE! Other than that, cute gym top.','Lorena',NULL),(328,328,1,'Cute, stretchy top!','Cute, stretchy top! Perfect for people with zero body fat.','Modesta',NULL),(329,329,1,'I got every color','I am a compulsive hoarder of workout gear so of course I had to have this in every color. I feel better after I buy them all because it\'s a good price!','Ayanna',NULL),(330,330,1,'unflattering. Ugh.','unflattering. Ugh. The elastic was literaly digging into my skin. I got my exact size so I thought I\'d be good. All set.','Avelina',NULL),(331,331,1,'Training bra?','Makes me feel like I\'m wearing a training bra. Comfy though.','Maribel',NULL),(332,332,1,'Sizes are off','I had to order 3 sizes before I found my fit. The sizes do NOT line up. I did like it in the end. Just took too long to get there.','Krystina',NULL),(333,333,1,'Makes me feel so snug! WHOO! ','Makes me feel so snug! WHOO! ','Concepcion',NULL),(334,334,1,'Could be flirtier.','Could be flirtier.','Emerald',NULL),(335,335,1,'Not for non-petite','Watch out if you\'re shapely like me - this tiny thing makes it hard to breath! ','Teofila',NULL),(336,336,1,'one of my favorites','I do a lot of different exercises and this tank - I have 2 of them - is one of my favorites. It\'s really soft and stays drier than other tops I\'ve had.','Elza',NULL),(337,337,1,'Zero support/modesty','I would never wear this bra to anything but a low impact class like yoga. There\'s zero support and absolutely no modesty. Was hoping for better!','Shaunte',NULL),(338,338,1,'Not for high impact','Definitely not good for anything high-impact, but it\'s very stylish for yoga or something else low impact.','Merrie',NULL),(339,339,1,'A regular or me','This is in regular rotation at the gym. Its colorful and looks kinda cute under my exercise tanks.','Pearl',NULL),(340,340,1,'Great fit - love the v-neck design! ','Great fit - love the v-neck design! ','Thalia',NULL),(341,341,1,'The seams bother me','Some of the seams bother me during certain workouts but otherwise very comfortable','Carma',NULL),(342,342,1,'A sweet n sporty look for the gym','Always a sweet n sporty look for the gym! Keeps me cool and the seams don\'t rub up against me like some of my other tanks.','Maryanna',NULL),(343,343,1,'Good choice for working out','Good choice for working out and stylin\' enough to wear when I\'m hanging with friends on hot days. Also washes really well! ','Elfriede',NULL),(344,344,1,'I love the look','I love the look of this top, but I wasn\'t too crazy about the fit. The medium was too big in my opinion.','Yan',NULL),(345,345,1,'Huge arm holes??','I don\'t know why the arm holes are so big. It looked ok in the photo but in person they\'re really wide. It\'s really comfortable but that bugs me.','Valorie',NULL),(346,346,1,'Super cute!!!  I love it','Super cute!!!  I love it and want more colors. I really like running in this tank because it\'s not too tight.','Mikkel',NULL);
/*!40000 ALTER TABLE `[[dbprefix]]review_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]review_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review_entity` (
  `entity_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review entity ID',
  `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Review entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review_entity`
--

LOCK TABLES `[[dbprefix]]review_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]review_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]review_entity` VALUES (1,'product'),(2,'customer'),(3,'category');
/*!40000 ALTER TABLE `[[dbprefix]]review_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review_entity_summary`
--

DROP TABLE IF EXISTS `[[dbprefix]]review_entity_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review_entity_summary` (
  `primary_id` bigint NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity ID',
  `entity_pk_value` bigint NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `entity_type` smallint NOT NULL DEFAULT '0' COMMENT 'Entity type ID',
  `reviews_count` smallint NOT NULL DEFAULT '0' COMMENT 'Qty of reviews',
  `rating_summary` smallint NOT NULL DEFAULT '0' COMMENT 'Summarized rating',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  UNIQUE KEY `[[DBPREFIX]]REVIEW_ENTITY_SUMMARY_ENTITY_PK_VALUE_STORE_ID_ENTITY_TYPE` (`entity_pk_value`,`store_id`,`entity_type`),
  KEY `[[DBPREFIX]]REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]REVIEW_ENTITY_SUMMARY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb3 COMMENT='Review aggregates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review_entity_summary`
--

LOCK TABLES `[[dbprefix]]review_entity_summary` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]review_entity_summary` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]review_entity_summary` VALUES (1,1,1,2,50,0),(2,1,1,2,50,1),(3,6,1,3,67,0),(4,6,1,3,67,1),(5,3,1,3,67,0),(6,3,1,3,67,1),(7,2,1,2,90,0),(8,2,1,2,90,1),(9,4,1,3,67,0),(10,4,1,3,67,1),(11,5,1,2,70,0),(12,5,1,2,70,1),(13,37,1,3,87,0),(14,37,1,3,87,1),(15,40,1,3,73,0),(16,40,1,3,73,1),(17,38,1,3,47,0),(18,38,1,3,47,1),(19,36,1,2,80,0),(20,36,1,2,80,1),(21,39,1,4,65,0),(22,39,1,4,65,1),(23,270,1,2,90,0),(24,270,1,2,90,1),(25,286,1,2,90,0),(26,286,1,2,90,1),(27,414,1,3,53,0),(28,414,1,3,53,1),(29,302,1,3,93,0),(30,302,1,3,93,1),(31,398,1,3,80,0),(32,398,1,3,80,1),(33,318,1,2,50,0),(34,318,1,2,50,1),(35,334,1,3,67,0),(36,334,1,3,67,1),(37,350,1,2,70,0),(38,350,1,2,70,1),(39,366,1,2,70,0),(40,366,1,2,70,1),(41,737,1,3,47,0),(42,737,1,3,47,1),(43,750,1,3,47,0),(44,750,1,3,47,1),(45,763,1,2,70,0),(46,763,1,2,70,1),(47,776,1,3,87,0),(48,776,1,3,87,1),(49,789,1,3,73,0),(50,789,1,3,73,1),(51,558,1,3,80,0),(52,558,1,3,80,1),(53,574,1,2,90,0),(54,574,1,2,90,1),(55,526,1,2,60,0),(56,526,1,2,60,1),(57,446,1,3,67,0),(58,446,1,3,67,1),(59,462,1,3,80,0),(60,462,1,3,80,1),(61,542,1,2,70,0),(62,542,1,2,70,1),(63,606,1,3,67,0),(64,606,1,3,67,1),(65,622,1,4,65,0),(66,622,1,4,65,1),(67,478,1,3,73,0),(68,478,1,3,73,1),(69,590,1,3,60,0),(70,590,1,3,60,1),(71,494,1,3,80,0),(72,494,1,3,80,1),(73,510,1,3,53,0),(74,510,1,3,53,1),(75,893,1,3,80,0),(76,893,1,3,80,1),(77,911,1,3,73,0),(78,911,1,3,73,1),(79,924,1,3,60,0),(80,924,1,3,60,1),(81,937,1,3,73,0),(82,937,1,3,73,1),(83,950,1,2,70,0),(84,950,1,2,70,1),(85,963,1,3,87,0),(86,963,1,3,87,1),(87,976,1,2,60,0),(88,976,1,2,60,1),(89,989,1,3,67,0),(90,989,1,3,67,1),(91,638,1,4,55,0),(92,638,1,4,55,1),(93,654,1,3,80,0),(94,654,1,3,80,1),(95,670,1,3,53,0),(96,670,1,3,53,1),(97,676,1,4,70,0),(98,676,1,4,70,1),(99,7,1,3,80,0),(100,7,1,3,80,1),(101,20,1,3,67,0),(102,20,1,3,67,1),(103,18,1,2,60,0),(104,18,1,2,60,1),(105,23,1,3,60,0),(106,23,1,3,60,1),(107,17,1,3,93,0),(108,17,1,3,93,1),(109,19,1,3,87,0),(110,19,1,3,87,1),(111,15,1,1,60,0),(112,15,1,1,60,1),(113,16,1,2,100,0),(114,16,1,2,100,1),(115,8,1,3,67,0),(116,8,1,3,67,1),(117,9,1,2,70,0),(118,9,1,2,70,1),(119,12,1,2,90,0),(120,12,1,2,90,1),(121,14,1,3,67,0),(122,14,1,3,67,1),(123,10,1,2,80,0),(124,10,1,2,80,1),(125,11,1,3,73,0),(126,11,1,3,73,1),(127,13,1,3,60,0),(128,13,1,3,60,1),(129,42,1,3,67,0),(130,42,1,3,67,1),(131,44,1,2,70,0),(132,44,1,2,70,1),(133,43,1,3,53,0),(134,43,1,3,53,1),(135,41,1,2,80,0),(136,41,1,2,80,1),(137,1044,1,3,87,0),(138,1044,1,3,87,1),(139,1060,1,3,67,0),(140,1060,1,3,67,1),(141,1076,1,3,60,0),(142,1076,1,3,60,1),(143,1092,1,3,60,0),(144,1092,1,3,60,1),(145,1108,1,3,80,0),(146,1108,1,3,80,1),(147,1114,1,2,80,0),(148,1114,1,2,80,1),(149,1220,1,3,67,0),(150,1220,1,3,67,1),(151,1236,1,4,70,0),(152,1236,1,4,70,1),(153,1252,1,3,87,0),(154,1252,1,3,87,1),(155,1268,1,2,90,0),(156,1268,1,2,90,1),(157,1284,1,3,87,0),(158,1284,1,3,87,1),(159,1380,1,3,87,0),(160,1380,1,3,87,1),(161,1300,1,3,67,0),(162,1300,1,3,67,1),(163,1316,1,2,60,0),(164,1316,1,2,60,1),(165,1332,1,3,87,0),(166,1332,1,3,87,1),(167,1348,1,3,60,0),(168,1348,1,3,60,1),(169,1364,1,3,87,0),(170,1364,1,3,87,1),(171,1819,1,2,80,0),(172,1819,1,2,80,1),(173,1826,1,3,93,0),(174,1826,1,3,93,1),(175,1833,1,3,67,0),(176,1833,1,3,67,1),(177,1840,1,4,80,0),(178,1840,1,4,80,1),(179,1847,1,2,60,0),(180,1847,1,2,60,1),(181,1854,1,3,67,0),(182,1854,1,3,67,1),(183,1572,1,3,87,0),(184,1572,1,3,87,1),(185,1412,1,3,73,0),(186,1412,1,3,73,1),(187,1428,1,4,60,0),(188,1428,1,4,60,1),(189,1444,1,2,60,0),(190,1444,1,2,60,1),(191,1588,1,3,73,0),(192,1588,1,3,73,1),(193,1476,1,2,60,0),(194,1476,1,2,60,1),(195,1492,1,3,47,0),(196,1492,1,3,47,1),(197,1508,1,3,73,0),(198,1508,1,3,73,1),(199,1524,1,3,80,0),(200,1524,1,3,80,1),(201,1540,1,3,87,0),(202,1540,1,3,87,1),(203,1556,1,3,60,0),(204,1556,1,3,60,1),(205,1919,1,3,60,0),(206,1919,1,3,60,1),(207,1935,1,3,80,0),(208,1935,1,3,80,1),(209,1951,1,2,90,0),(210,1951,1,2,90,1),(211,1967,1,2,80,0),(212,1967,1,2,80,1),(213,1983,1,3,73,0),(214,1983,1,3,73,1),(215,1990,1,2,70,0),(216,1990,1,2,70,1),(217,1997,1,3,67,0),(218,1997,1,3,67,1),(219,2003,1,3,93,0),(220,2003,1,3,93,1),(221,2010,1,3,67,0),(222,2010,1,3,67,1),(223,2017,1,3,80,0),(224,2017,1,3,80,1),(225,2024,1,3,73,0),(226,2024,1,3,73,1),(227,2040,1,3,60,0),(228,2040,1,3,60,1),(229,1604,1,4,75,0),(230,1604,1,4,75,1),(231,1620,1,4,60,0),(232,1620,1,4,60,1),(233,1636,1,3,67,0),(234,1636,1,3,67,1),(235,1652,1,3,60,0),(236,1652,1,3,60,1),(237,1668,1,3,40,0),(238,1668,1,3,40,1),(239,1764,1,3,73,0),(240,1764,1,3,73,1),(241,1780,1,1,80,0),(242,1780,1,1,80,1),(243,1796,1,3,60,0),(244,1796,1,3,60,1),(245,1812,1,2,70,0),(246,1812,1,2,70,1),(247,1684,1,2,80,0),(248,1684,1,2,80,1),(249,1700,1,3,53,0),(250,1700,1,3,53,1);
/*!40000 ALTER TABLE `[[dbprefix]]review_entity_summary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review_status`
--

DROP TABLE IF EXISTS `[[dbprefix]]review_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review_status` (
  `status_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Status ID',
  `status_code` varchar(32) NOT NULL COMMENT 'Status code',
  PRIMARY KEY (`status_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Review statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review_status`
--

LOCK TABLES `[[dbprefix]]review_status` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]review_status` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved');
/*!40000 ALTER TABLE `[[dbprefix]]review_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]review_store`
--

DROP TABLE IF EXISTS `[[dbprefix]]review_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]review_store` (
  `review_id` bigint unsigned NOT NULL COMMENT 'Review ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`review_id`,`store_id`),
  KEY `[[DBPREFIX]]REVIEW_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]REVIEW_STORE_REVIEW_ID_[[DBPREFIX]]REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `[[dbprefix]]review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]REVIEW_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Review Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]review_store`
--

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

--
-- Table structure for table `[[dbprefix]]sales_bestsellers_aggregated_daily`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_bestsellers_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_bestsellers_aggregated_daily` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_BESTSELLERS_AGGRED_DAILY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_bestsellers_aggregated_daily`
--

LOCK TABLES `[[dbprefix]]sales_bestsellers_aggregated_daily` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_daily` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_daily` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_bestsellers_aggregated_monthly`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_bestsellers_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_bestsellers_aggregated_monthly` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_917F1D21C8B65498447CACB6C2C45EC5` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_bestsellers_aggregated_monthly`
--

LOCK TABLES `[[dbprefix]]sales_bestsellers_aggregated_monthly` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_monthly` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_monthly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_bestsellers_aggregated_yearly`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_bestsellers_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_bestsellers_aggregated_yearly` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_C2B58A114880F6D0AF2DE1C5DADF9AF1` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_bestsellers_aggregated_yearly`
--

LOCK TABLES `[[dbprefix]]sales_bestsellers_aggregated_yearly` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_yearly` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_bestsellers_aggregated_yearly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_creditmemo`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_creditmemo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_creditmemo` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email',
  `creditmemo_status` int DEFAULT NULL COMMENT 'Creditmemo Status',
  `state` int DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID',
  `invoice_id` int DEFAULT NULL COMMENT 'Invoice ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_STATE` (`state`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_SEND_EMAIL` (`send_email`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `[[DBPREFIX]]SALES_CREDITMEMO_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_CREDITMEMO_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_creditmemo`
--

LOCK TABLES `[[dbprefix]]sales_creditmemo` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_creditmemo` VALUES (1,1,NULL,0.0000,0.0000,0.0000,1.0000,39.6400,NULL,34.6400,5.0000,34.6400,NULL,5.0000,0.0000,1.0000,0.0000,32.0000,0.0000,32.0000,0.0000,39.6400,NULL,2.6400,0.0000,2.6400,2,NULL,NULL,NULL,2,3,4,NULL,'USD','USD','USD','USD',NULL,'000000001','[[regtime]]','[[regtime]]',0.0000,0.0000,NULL,NULL,5.0000,5.0000,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_creditmemo_comment`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_creditmemo_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_creditmemo_comment` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `FK_5387631F2834DD79690F101F14F382AF` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_creditmemo_comment`
--

LOCK TABLES `[[dbprefix]]sales_creditmemo_comment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_creditmemo_grid`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_creditmemo_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_creditmemo_grid` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `state` int DEFAULT NULL COMMENT 'Status',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order Status',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` smallint DEFAULT NULL COMMENT 'Customer Group ID',
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `order_base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Order Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_STATE` (`state`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_9C333DEACC23DC368A7AFA455B8ED6D1` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_creditmemo_grid`
--

LOCK TABLES `[[dbprefix]]sales_creditmemo_grid` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_grid` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_creditmemo_grid` VALUES (1,'000000001','[[regtime]]','[[regtime]]',2,'000000002','[[regtime]]','Veronica Costello',2,39.6400,'closed',1,'6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Veronica Costello','roni_cost@example.com',1,'checkmo','Flat Rate - Fixed',32.0000,5.0000,NULL,NULL,39.6400);
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_creditmemo_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_creditmemo_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_creditmemo_item` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text COMMENT 'Ratio of tax in the creditmemo item over tax of the order item',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `FK_101F8955078B497273D57F534EA8BB34` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_creditmemo_item`
--

LOCK TABLES `[[dbprefix]]sales_creditmemo_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_creditmemo_item` VALUES (1,1,32.0000,2.6400,32.0000,NULL,32.0000,NULL,34.6400,2.6400,34.6400,1.0000,NULL,32.0000,34.6400,34.6400,1492,2,NULL,NULL,'WS08-XS-Blue','Minerva LumaTech&trade; V-Tee',0.0000,0.0000,NULL,'[]',NULL,0.0000,NULL,0.0000,NULL,NULL,NULL,0.0000);
/*!40000 ALTER TABLE `[[dbprefix]]sales_creditmemo_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_order_statuses`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_order_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_order_statuses` (
  `status` varchar(255) NOT NULL COMMENT 'status',
  `feed_data` mediumtext NOT NULL COMMENT 'Feed Data',
  `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modified At',
  PRIMARY KEY (`status`),
  KEY `[[DBPREFIX]]SALES_DATA_EXPORTER_ORDER_STATUSES_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Statuses Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_order_statuses`
--

LOCK TABLES `[[dbprefix]]sales_data_exporter_order_statuses` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_order_statuses` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_data_exporter_order_statuses` VALUES ('canceled','{\"status\":\"canceled\",\"label\":\"Canceled\"}','[[regtime]]'),('closed','{\"status\":\"closed\",\"label\":\"Closed\"}','[[regtime]]'),('complete','{\"status\":\"complete\",\"label\":\"Complete\"}','[[regtime]]'),('fraud','{\"status\":\"fraud\",\"label\":\"Suspected Fraud\"}','[[regtime]]'),('holded','{\"status\":\"holded\",\"label\":\"On Hold\"}','[[regtime]]'),('payment_review','{\"status\":\"payment_review\",\"label\":\"Payment Review\"}','[[regtime]]'),('paypal_canceled_reversal','{\"status\":\"paypal_canceled_reversal\",\"label\":\"PayPal Canceled Reversal\"}','[[regtime]]'),('paypal_reversed','{\"status\":\"paypal_reversed\",\"label\":\"PayPal Reversed\"}','[[regtime]]'),('pending','{\"status\":\"pending\",\"label\":\"Pending\"}','[[regtime]]'),('pending_payment','{\"status\":\"pending_payment\",\"label\":\"Pending Payment\"}','[[regtime]]'),('pending_paypal','{\"status\":\"pending_paypal\",\"label\":\"Pending PayPal\"}','[[regtime]]'),('processing','{\"status\":\"processing\",\"label\":\"Processing\"}','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_order_statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_order_statuses_index_batches`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_order_statuses_index_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_order_statuses_index_batches` (
  `batch_number` int NOT NULL COMMENT 'Batch Number',
  `status` varchar(32) NOT NULL COMMENT 'Status',
  PRIMARY KEY (`batch_number`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_data_exporter_order_statuses_index_batches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_order_statuses_index_batches`
--

LOCK TABLES `[[dbprefix]]sales_data_exporter_order_statuses_index_batches` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_order_statuses_index_batches` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_data_exporter_order_statuses_index_batches` VALUES (1,'canceled'),(1,'closed'),(1,'complete'),(1,'fraud'),(1,'holded'),(1,'payment_review'),(1,'paypal_canceled_reversal'),(1,'paypal_reversed'),(1,'pending'),(1,'pending_payment'),(1,'pending_paypal'),(1,'processing');
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_order_statuses_index_batches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_order_statuses_index_sequence`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_order_statuses_index_sequence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_order_statuses_index_sequence` (
  `i` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto Increment ID',
  PRIMARY KEY (`i`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_data_exporter_order_statuses_index_sequence';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_order_statuses_index_sequence`
--

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

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_orders`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_orders` (
  `id` int unsigned NOT NULL COMMENT 'ID',
  `mode` varchar(255) NOT NULL COMMENT 'Order Payment Mode',
  `feed_data` mediumtext NOT NULL COMMENT 'Feed Data',
  `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modified At',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]SALES_DATA_EXPORTER_ORDERS_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Orders Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_orders`
--

LOCK TABLES `[[dbprefix]]sales_data_exporter_orders` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_data_exporter_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_orders_index_batches`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_orders_index_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_orders_index_batches` (
  `batch_number` int NOT NULL COMMENT 'Batch Number',
  `entity_id` int unsigned NOT NULL COMMENT 'Entity Id',
  PRIMARY KEY (`batch_number`,`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_data_exporter_orders_index_batches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_orders_index_batches`
--

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

--
-- Table structure for table `[[dbprefix]]sales_data_exporter_orders_index_sequence`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_data_exporter_orders_index_sequence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_data_exporter_orders_index_sequence` (
  `i` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto Increment ID',
  PRIMARY KEY (`i`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_data_exporter_orders_index_sequence';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_data_exporter_orders_index_sequence`
--

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

--
-- Table structure for table `[[dbprefix]]sales_invoice`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoice` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID',
  `is_used_for_refund` smallint unsigned DEFAULT NULL COMMENT 'Is Used For Refund',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email',
  `can_void_flag` smallint unsigned DEFAULT NULL COMMENT 'Can Void Flag',
  `state` int DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRAND_TOTAL` (`grand_total`),
  KEY `[[DBPREFIX]]SALES_INVOICE_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_STATE` (`state`),
  KEY `[[DBPREFIX]]SALES_INVOICE_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_SEND_EMAIL` (`send_email`),
  KEY `[[DBPREFIX]]SALES_INVOICE_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICE_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoice`
--

LOCK TABLES `[[dbprefix]]sales_invoice` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_invoice` VALUES (1,1,36.3900,0.0000,2.3900,2.3900,0.0000,0.0000,0.0000,1.0000,36.3900,5.0000,31.3900,31.3900,0.0000,5.0000,1.0000,1.0000,29.0000,29.0000,0.0000,2,NULL,1,NULL,NULL,0,2,1,'USD',NULL,'USD','USD','USD','000000001','[[regtime]]','[[regtime]]',0.0000,0.0000,0.0000,0.0000,5.0000,5.0000,NULL,NULL,NULL,NULL),(2,1,39.6400,0.0000,2.6400,2.6400,0.0000,0.0000,0.0000,1.0000,39.6400,5.0000,34.6400,34.6400,0.0000,5.0000,1.0000,1.0000,32.0000,32.0000,0.0000,4,NULL,2,NULL,NULL,0,2,3,'USD',NULL,'USD','USD','USD','000000002','[[regtime]]','[[regtime]]',0.0000,0.0000,0.0000,0.0000,5.0000,5.0000,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_invoice_comment`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoice_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoice_comment` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` smallint unsigned DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICE_COMMENT_PARENT_ID_[[DBPREFIX]]SALES_INVOICE_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoice_comment`
--

LOCK TABLES `[[dbprefix]]sales_invoice_comment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_invoice_grid`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoice_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoice_grid` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `state` int DEFAULT NULL COMMENT 'State',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int DEFAULT NULL,
  `payment_method` varchar(128) DEFAULT NULL COMMENT 'Payment Method',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_STATE` (`state`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`),
  KEY `[[DBPREFIX]]SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  FULLTEXT KEY `FTI_A0EE7B3CDB178999DE2AC511FD6ACE5D` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoice_grid`
--

LOCK TABLES `[[dbprefix]]sales_invoice_grid` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_grid` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_invoice_grid` VALUES (1,'000000001',2,1,'Main Website\nMain Website Store\nDefault Store View',1,'000000001','[[regtime]]','Veronica Costello','roni_cost@example.com',1,'checkmo','USD','USD','USD','USD','Veronica Costello','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Flat Rate - Fixed',29.0000,5.0000,36.3900,'[[regtime]]','[[regtime]]',36.3900),(2,'000000002',2,1,'Main Website\nMain Website Store\nDefault Store View',2,'000000002','[[regtime]]','Veronica Costello','roni_cost@example.com',1,'checkmo','USD','USD','USD','USD','Veronica Costello','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Flat Rate - Fixed',32.0000,5.0000,39.6400,'[[regtime]]','[[regtime]]',39.6400);
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_invoice_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoice_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoice_item` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text COMMENT 'Ratio of tax invoiced over tax of the order item',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICE_ITEM_PARENT_ID_[[DBPREFIX]]SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoice_item`
--

LOCK TABLES `[[dbprefix]]sales_invoice_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_invoice_item` VALUES (1,1,29.0000,2.3900,29.0000,NULL,29.0000,NULL,31.3900,2.3900,31.3900,1.0000,NULL,29.0000,31.3900,31.3900,1428,1,NULL,NULL,'WS03-XS-Red','Iris Workout Top',0.0000,0.0000,NULL,'[]',NULL,0.0000,NULL,0.0000,NULL,NULL,NULL,0.0000),(2,2,32.0000,2.6400,32.0000,NULL,32.0000,NULL,34.6400,2.6400,34.6400,1.0000,NULL,32.0000,34.6400,34.6400,1492,2,NULL,NULL,'WS08-XS-Blue','Minerva LumaTech&trade; V-Tee',0.0000,0.0000,NULL,'[]',NULL,0.0000,NULL,0.0000,NULL,NULL,NULL,0.0000);
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoice_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_invoiced_aggregated`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoiced_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoiced_aggregated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `orders_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICED_AGGREGATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Invoiced Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoiced_aggregated`
--

LOCK TABLES `[[dbprefix]]sales_invoiced_aggregated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoiced_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoiced_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_invoiced_aggregated_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_invoiced_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_invoiced_aggregated_order` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `orders_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_INVOICED_AGGRED_ORDER_PERIOD_STORE_ID_ORDER_STS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_INVOICED_AGGRED_ORDER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Invoiced Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_invoiced_aggregated_order`
--

LOCK TABLES `[[dbprefix]]sales_invoiced_aggregated_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoiced_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_invoiced_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `state` varchar(32) DEFAULT NULL COMMENT 'State',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `protect_code` varchar(255) DEFAULT NULL COMMENT 'Protect Code',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Canceled',
  `base_discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Invoiced',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `base_shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Canceled',
  `base_shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Invoiced',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Refunded',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `base_subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Canceled',
  `base_subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Invoiced',
  `base_subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Refunded',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Canceled',
  `base_tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Invoiced',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `base_total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Canceled',
  `base_total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced',
  `base_total_invoiced_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced Cost',
  `base_total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Offline Refunded',
  `base_total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Online Refunded',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `base_total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Base Total Qty Ordered',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Canceled',
  `discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Invoiced',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Canceled',
  `shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Invoiced',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Refunded',
  `store_to_base_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `store_to_order_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Canceled',
  `subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Invoiced',
  `subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Refunded',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Tax Invoiced',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Total Canceled',
  `total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Total Invoiced',
  `total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Offline Refunded',
  `total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Online Refunded',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty Ordered',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `can_ship_partially` smallint unsigned DEFAULT NULL COMMENT 'Can Ship Partially',
  `can_ship_partially_item` smallint unsigned DEFAULT NULL COMMENT 'Can Ship Partially Item',
  `customer_is_guest` smallint unsigned DEFAULT NULL COMMENT 'Customer Is Guest',
  `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID',
  `customer_group_id` int DEFAULT NULL,
  `edit_increment` int DEFAULT NULL COMMENT 'Edit Increment',
  `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email',
  `forced_shipment_with_invoice` smallint unsigned DEFAULT NULL COMMENT 'Forced Do Shipment With Invoice',
  `payment_auth_expiration` int DEFAULT NULL COMMENT 'Payment Authorization Expiration',
  `quote_address_id` int DEFAULT NULL COMMENT 'Quote Address ID',
  `quote_id` int DEFAULT NULL COMMENT 'Quote ID',
  `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `base_total_due` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Due',
  `payment_authorization_amount` decimal(20,4) DEFAULT NULL COMMENT 'Payment Authorization Amount',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `total_due` decimal(20,4) DEFAULT NULL COMMENT 'Total Due',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `applied_rule_ids` varchar(128) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_firstname` varchar(128) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_lastname` varchar(128) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_middlename` varchar(128) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_prefix` varchar(32) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_suffix` varchar(32) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_taxvat` varchar(32) DEFAULT NULL COMMENT 'Customer Taxvat',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `ext_customer_id` varchar(32) DEFAULT NULL COMMENT 'Ext Customer ID',
  `ext_order_id` varchar(32) DEFAULT NULL COMMENT 'Ext Order ID',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `hold_before_state` varchar(32) DEFAULT NULL COMMENT 'Hold Before State',
  `hold_before_status` varchar(32) DEFAULT NULL COMMENT 'Hold Before Status',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `original_increment_id` varchar(50) DEFAULT NULL COMMENT 'Original Increment ID',
  `relation_child_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child ID',
  `relation_child_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Real ID',
  `relation_parent_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent ID',
  `relation_parent_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Real ID',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `shipping_method` varchar(120) DEFAULT NULL,
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `x_forwarded_for` varchar(255) DEFAULT NULL COMMENT 'X Forwarded For',
  `customer_note` text COMMENT 'Customer Note',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `total_item_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Total Item Count',
  `customer_gender` int DEFAULT NULL COMMENT 'Customer Gender',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `coupon_rule_name` varchar(255) DEFAULT NULL COMMENT 'Coupon Sales Rule Name',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `paypal_ipn_customer_notified` int DEFAULT '0' COMMENT 'Paypal Ipn Customer Notified',
  `dispute_status` varchar(45) DEFAULT NULL COMMENT 'Braintree Dispute Status',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_STATUS` (`status`),
  KEY `[[DBPREFIX]]SALES_ORDER_STATE` (`state`),
  KEY `[[DBPREFIX]]SALES_ORDER_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_ORDER_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_QUOTE_ID` (`quote_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_ORDER_SEND_EMAIL` (`send_email`),
  KEY `[[DBPREFIX]]SALES_ORDER_EMAIL_SENT` (`email_sent`),
  KEY `[[DBPREFIX]]SALES_ORDER_STORE_ID_STATE_CREATED_AT` (`store_id`,`state`,`created_at`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order`
--

LOCK TABLES `[[dbprefix]]sales_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order` VALUES (1,'processing','processing',NULL,'[[protect_code]]','Flat Rate - Fixed',0,1,1,0.0000,NULL,0.0000,NULL,36.3900,5.0000,NULL,5.0000,NULL,0.0000,NULL,29.0000,NULL,29.0000,NULL,2.3900,NULL,2.3900,NULL,1.0000,1.0000,NULL,36.3900,0.0000,NULL,NULL,36.3900,NULL,NULL,0.0000,NULL,0.0000,NULL,36.3900,5.0000,NULL,5.0000,NULL,0.0000,NULL,0.0000,0.0000,29.0000,NULL,29.0000,NULL,2.3900,NULL,2.3900,NULL,NULL,36.3900,NULL,NULL,36.3900,1.0000,NULL,NULL,NULL,0,1,2,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,0.0000,31.3900,36.3900,NULL,0.0000,31.3900,36.3900,1.0000,'1973-12-15 00:00:00','000000001','1','USD','roni_cost@example.com','Veronica','Costello',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,'flatrate_flatrate','USD','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'[[regtime]]','[[regtime]]',1,2,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,5.0000,5.0000,NULL,NULL,0,NULL),(2,'closed','closed',NULL,'[[protect_code1]]','Flat Rate - Fixed',0,1,1,0.0000,NULL,0.0000,0.0000,39.6400,5.0000,NULL,5.0000,5.0000,0.0000,0.0000,32.0000,NULL,32.0000,32.0000,2.6400,NULL,2.6400,2.6400,1.0000,1.0000,NULL,39.6400,0.0000,39.6400,NULL,39.6400,NULL,39.6400,0.0000,NULL,0.0000,0.0000,39.6400,5.0000,NULL,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,32.0000,NULL,32.0000,32.0000,2.6400,NULL,2.6400,2.6400,NULL,39.6400,39.6400,NULL,39.6400,1.0000,39.6400,NULL,NULL,0,1,4,1,NULL,NULL,NULL,NULL,NULL,NULL,2,3,0.0000,0.0000,0.0000,0.0000,0.0000,34.6400,0.0000,NULL,0.0000,34.6400,0.0000,1.0000,'1973-12-15 00:00:00','000000002','1','USD','roni_cost@example.com','Veronica','Costello',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,'flatrate_flatrate','USD','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'[[regtime]]','[[regtime]]',1,2,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,5.0000,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_address`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_address` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID',
  `customer_address_id` int DEFAULT NULL COMMENT 'Customer Address ID',
  `quote_address_id` int DEFAULT NULL COMMENT 'Quote Address ID',
  `region_id` int DEFAULT NULL COMMENT 'Region ID',
  `customer_id` int DEFAULT NULL COMMENT 'Customer ID',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `region` varchar(255) DEFAULT NULL COMMENT 'Region',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Postcode',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Lastname',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL COMMENT 'City',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `telephone` varchar(255) DEFAULT NULL COMMENT 'Phone Number',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'Firstname',
  `address_type` varchar(255) DEFAULT NULL COMMENT 'Address Type',
  `prefix` varchar(255) DEFAULT NULL COMMENT 'Prefix',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middlename',
  `suffix` varchar(255) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `vat_id` text COMMENT 'Vat ID',
  `vat_is_valid` smallint DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text COMMENT 'Vat Request ID',
  `vat_request_date` text COMMENT 'Vat Request Date',
  `vat_request_success` smallint DEFAULT NULL COMMENT 'Vat Request Success',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_ADDRESS_PARENT_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_address`
--

LOCK TABLES `[[dbprefix]]sales_order_address` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_address` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_address` VALUES (1,1,1,2,33,NULL,NULL,'Michigan','49628-7978','Costello','6146 Honey Bluff Parkway','Calder','roni_cost@example.com','(555) 229-3326','US','Veronica','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,1,1,1,33,NULL,NULL,'Michigan','49628-7978','Costello','6146 Honey Bluff Parkway','Calder','roni_cost@example.com','(555) 229-3326','US','Veronica','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,2,1,4,33,NULL,NULL,'Michigan','49628-7978','Costello','6146 Honey Bluff Parkway','Calder','roni_cost@example.com','(555) 229-3326','US','Veronica','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,2,1,3,33,NULL,NULL,'Michigan','49628-7978','Costello','6146 Honey Bluff Parkway','Calder','roni_cost@example.com','(555) 229-3326','US','Veronica','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_aggregated_created`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_aggregated_created` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_AGGREGATED_CREATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Aggregated Created';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_aggregated_created`
--

LOCK TABLES `[[dbprefix]]sales_order_aggregated_created` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_aggregated_created` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_aggregated_updated`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_aggregated_updated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_aggregated_updated`
--

LOCK TABLES `[[dbprefix]]sales_order_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_data_exporter_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_data_exporter_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_data_exporter_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_order_data_exporter_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_data_exporter_cl`
--

LOCK TABLES `[[dbprefix]]sales_order_data_exporter_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_data_exporter_cl` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_data_exporter_cl` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,2),(9,2),(10,2),(11,2),(12,2),(13,2),(14,2),(15,2),(16,2);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_data_exporter_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_grid`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_grid` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `order_currency_code` varchar(255) DEFAULT NULL COMMENT 'Order Currency Code',
  `shipping_name` varchar(255) DEFAULT NULL COMMENT 'Shipping Name',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group` varchar(255) DEFAULT NULL COMMENT 'Customer Group',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `payment_method` varchar(255) DEFAULT NULL COMMENT 'Payment Method',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `pickup_location_code` varchar(255) DEFAULT NULL COMMENT 'Pickup Location Code',
  `dispute_status` varchar(45) DEFAULT NULL COMMENT 'Braintree Dispute Status',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_STATUS` (`status`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_BILLING_NAME` (`billing_name`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_ORDER_GRID_PICKUP_LOCATION_CODE` (`pickup_location_code`),
  FULLTEXT KEY `FTI_B1EE20E09A9B65FBC10BE8CC9A273F85` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_grid`
--

LOCK TABLES `[[dbprefix]]sales_order_grid` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_grid` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_grid` VALUES (1,'processing',1,'Main Website\nMain Website Store\nDefault Store View',1,36.3900,36.3900,36.3900,36.3900,'000000001','USD','USD','Veronica Costello','Veronica Costello','[[regtime]]','[[regtime]]','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Flat Rate - Fixed','roni_cost@example.com','1',29.0000,5.0000,'Veronica Costello','checkmo',NULL,NULL,NULL),(2,'closed',1,'Main Website\nMain Website Store\nDefault Store View',1,39.6400,39.6400,39.6400,39.6400,'000000002','USD','USD','Veronica Costello','Veronica Costello','[[regtime]]','[[regtime]]','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Flat Rate - Fixed','roni_cost@example.com','1',32.0000,5.0000,'Veronica Costello','checkmo',39.6400,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_item` (
  `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `order_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order ID',
  `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_item_id` int unsigned DEFAULT NULL COMMENT 'Quote Item ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `product_options` longtext COMMENT 'Product Options',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `is_qty_decimal` smallint unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'No Discount',
  `qty_backordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Backordered',
  `qty_canceled` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Canceled',
  `qty_invoiced` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Invoiced',
  `qty_ordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `qty_refunded` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Refunded',
  `qty_shipped` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Shipped',
  `base_cost` decimal(12,4) DEFAULT '0.0000' COMMENT 'Base Cost',
  `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `base_price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price',
  `original_price` decimal(20,4) DEFAULT NULL COMMENT 'Original Price',
  `base_original_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Original Price',
  `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Invoiced',
  `base_tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Invoiced',
  `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Invoiced',
  `base_discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Invoiced',
  `amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Amount Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Amount Refunded',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Invoiced',
  `base_row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Invoiced',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `ext_order_item_id` varchar(255) DEFAULT NULL COMMENT 'Ext Order Item ID',
  `locked_do_invoice` smallint unsigned DEFAULT NULL COMMENT 'Locked Do Invoice',
  `locked_do_ship` smallint unsigned DEFAULT NULL COMMENT 'Locked Do Ship',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `tax_canceled` decimal(12,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `discount_tax_compensation_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Canceled',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID',
  `gift_message_available` int DEFAULT NULL COMMENT 'Gift Message Available',
  `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  PRIMARY KEY (`item_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_ITEM_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_ITEM_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_item`
--

LOCK TABLES `[[dbprefix]]sales_order_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_item` VALUES (1,1,NULL,NULL,1,'[[regtime]]','[[regtime]]',1428,'configurable','{\"info_buyRequest\":{\"qty\":1,\"super_attribute\":{\"142\":\"166\",\"93\":\"58\"},\"options\":[]},\"attributes_info\":[{\"label\":\"Size\",\"value\":\"XS\",\"option_id\":142,\"option_value\":\"166\"},{\"label\":\"Color\",\"value\":\"Red\",\"option_id\":93,\"option_value\":\"58\"}],\"simple_name\":\"Iris Workout Top-XS-Red\",\"simple_sku\":\"WS03-XS-Red\",\"product_calculations\":1,\"shipment_type\":0}',1.0000,NULL,'WS03-XS-Red','Iris Workout Top',NULL,'1',NULL,0,0,NULL,0.0000,1.0000,1.0000,0.0000,1.0000,NULL,29.0000,29.0000,29.0000,29.0000,8.2500,2.3900,2.3900,2.3900,2.3900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,29.0000,29.0000,29.0000,29.0000,1.0000,NULL,NULL,NULL,NULL,NULL,31.3900,31.3900,31.3900,31.3900,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,2,NULL,NULL,1,'[[regtime]]','[[regtime]]',1492,'configurable','{\"info_buyRequest\":{\"qty\":\"1.0000\",\"super_attribute\":{\"142\":\"166\",\"93\":\"50\"},\"options\":[]},\"attributes_info\":[{\"label\":\"Size\",\"value\":\"XS\",\"option_id\":142,\"option_value\":\"166\"},{\"label\":\"Color\",\"value\":\"Blue\",\"option_id\":93,\"option_value\":\"50\"}],\"simple_name\":\"Minerva LumaTech&trade; V-Tee-XS-Blue\",\"simple_sku\":\"WS08-XS-Blue\",\"product_calculations\":1,\"shipment_type\":0}',1.0000,NULL,'WS08-XS-Blue','Minerva LumaTech&trade; V-Tee',NULL,'1',NULL,0,0,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,NULL,32.0000,32.0000,32.0000,32.0000,8.2500,2.6400,2.6400,2.6400,2.6400,0.0000,0.0000,0.0000,0.0000,0.0000,32.0000,32.0000,32.0000,32.0000,32.0000,32.0000,1.0000,NULL,NULL,NULL,NULL,NULL,34.6400,34.6400,34.6400,34.6400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,2.6400,2.6400,0.0000,0.0000,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_payment`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_payment` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `base_shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Captured',
  `shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Captured',
  `amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Amount Refunded',
  `base_amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid',
  `amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Amount Canceled',
  `base_amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Authorized',
  `base_amount_paid_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid Online',
  `base_amount_refunded_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded Online',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Amount Paid',
  `amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Amount Authorized',
  `base_amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Ordered',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded',
  `amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Amount Ordered',
  `base_amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Canceled',
  `quote_payment_id` int DEFAULT NULL COMMENT 'Quote Payment ID',
  `additional_data` text COMMENT 'Additional Data',
  `cc_exp_month` varchar(12) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_ss_start_year` varchar(12) DEFAULT NULL COMMENT 'Cc Ss Start Year',
  `echeck_bank_name` varchar(128) DEFAULT NULL COMMENT 'Echeck Bank Name',
  `method` varchar(128) DEFAULT NULL COMMENT 'Method',
  `cc_debug_request_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Request Body',
  `cc_secure_verify` varchar(32) DEFAULT NULL COMMENT 'Cc Secure Verify',
  `protection_eligibility` varchar(32) DEFAULT NULL COMMENT 'Protection Eligibility',
  `cc_approval` varchar(32) DEFAULT NULL COMMENT 'Cc Approval',
  `cc_last_4` varchar(100) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_status_description` varchar(32) DEFAULT NULL COMMENT 'Cc Status Description',
  `echeck_type` varchar(32) DEFAULT NULL COMMENT 'Echeck Type',
  `cc_debug_response_serialized` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Serialized',
  `cc_ss_start_month` varchar(128) DEFAULT NULL COMMENT 'Cc Ss Start Month',
  `echeck_account_type` varchar(255) DEFAULT NULL COMMENT 'Echeck Account Type',
  `last_trans_id` varchar(255) DEFAULT NULL COMMENT 'Last Trans ID',
  `cc_cid_status` varchar(32) DEFAULT NULL COMMENT 'Cc Cid Status',
  `cc_owner` varchar(128) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_type` varchar(32) DEFAULT NULL COMMENT 'Cc Type',
  `po_number` varchar(32) DEFAULT NULL COMMENT 'Po Number',
  `cc_exp_year` varchar(4) DEFAULT NULL COMMENT 'Cc Exp Year',
  `cc_status` varchar(4) DEFAULT NULL COMMENT 'Cc Status',
  `echeck_routing_number` varchar(32) DEFAULT NULL COMMENT 'Echeck Routing Number',
  `account_status` varchar(32) DEFAULT NULL COMMENT 'Account Status',
  `anet_trans_method` varchar(32) DEFAULT NULL COMMENT 'Anet Trans Method',
  `cc_debug_response_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Body',
  `cc_ss_issue` varchar(32) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `echeck_account_name` varchar(32) DEFAULT NULL COMMENT 'Echeck Account Name',
  `cc_avs_status` varchar(32) DEFAULT NULL COMMENT 'Cc Avs Status',
  `cc_number_enc` varchar(128) DEFAULT NULL,
  `cc_trans_id` varchar(32) DEFAULT NULL COMMENT 'Cc Trans ID',
  `address_status` varchar(32) DEFAULT NULL COMMENT 'Address Status',
  `additional_information` text COMMENT 'Additional Information',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_PAYMENT_PARENT_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_payment`
--

LOCK TABLES `[[dbprefix]]sales_order_payment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_payment` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_payment` VALUES (1,1,5.0000,5.0000,NULL,36.3900,NULL,NULL,NULL,NULL,5.0000,5.0000,36.3900,NULL,36.3900,NULL,NULL,NULL,36.3900,NULL,NULL,NULL,NULL,NULL,NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(2,2,5.0000,5.0000,39.6400,39.6400,NULL,NULL,NULL,NULL,5.0000,5.0000,39.6400,NULL,39.6400,5.0000,5.0000,39.6400,39.6400,NULL,NULL,NULL,NULL,NULL,NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}');
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_status`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_status` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_status`
--

LOCK TABLES `[[dbprefix]]sales_order_status` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing');
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_status_data_exporter_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_status_data_exporter_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_status_data_exporter_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Order status',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]sales_order_status_data_exporter_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_status_data_exporter_cl`
--

LOCK TABLES `[[dbprefix]]sales_order_status_data_exporter_cl` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_data_exporter_cl` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_status_data_exporter_cl` VALUES (1,'pending'),(2,'pending_payment'),(3,'processing'),(4,'holded'),(5,'complete'),(6,'closed'),(7,'canceled'),(8,'fraud'),(9,'payment_review'),(10,'pending_paypal'),(11,'paypal_reversed'),(12,'paypal_canceled_reversal');
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_data_exporter_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_status_history`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_status_history` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `entity_name` varchar(32) DEFAULT NULL COMMENT 'Shows what entity history is bind to.',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_STS_HISTORY_PARENT_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Status History';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_status_history`
--

LOCK TABLES `[[dbprefix]]sales_order_status_history` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_history` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_status_history` VALUES (1,2,1,0,'We refunded $39.64 offline.','closed','[[regtime]]','creditmemo');
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_status_label`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_status_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_status_label` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`,`store_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_STATUS_LABEL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_STS_LBL_STS_[[DBPREFIX]]SALES_ORDER_STS_STS` FOREIGN KEY (`status`) REFERENCES `[[dbprefix]]sales_order_status` (`status`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_status_label`
--

LOCK TABLES `[[dbprefix]]sales_order_status_label` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_status_state`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_status_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_status_state` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `state` varchar(32) NOT NULL COMMENT 'Label',
  `is_default` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default',
  `visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Visible on front',
  PRIMARY KEY (`status`,`state`),
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_STS_STATE_STS_[[DBPREFIX]]SALES_ORDER_STS_STS` FOREIGN KEY (`status`) REFERENCES `[[dbprefix]]sales_order_status` (`status`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_status_state`
--

LOCK TABLES `[[dbprefix]]sales_order_status_state` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_state` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_status_state` VALUES ('canceled','canceled',1,1),('closed','closed',1,1),('complete','complete',1,1),('fraud','payment_review',0,1),('fraud','processing',0,1),('holded','holded',1,1),('payment_review','payment_review',1,1),('pending','new',1,1),('pending_payment','pending_payment',1,0),('processing','processing',1,1);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_status_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_tax`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_tax` (
  `tax_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax ID',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `percent` decimal(12,4) DEFAULT NULL COMMENT 'Percent',
  `amount` decimal(20,4) DEFAULT NULL COMMENT 'Amount',
  `priority` int NOT NULL COMMENT 'Priority',
  `position` int NOT NULL COMMENT 'Position',
  `base_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount',
  `process` smallint NOT NULL COMMENT 'Process',
  `base_real_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Real Amount',
  PRIMARY KEY (`tax_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Tax Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_tax`
--

LOCK TABLES `[[dbprefix]]sales_order_tax` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_tax` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_tax` VALUES (1,1,'US-MI-*-Rate 1','US-MI-*-Rate 1',8.2500,2.3900,0,0,2.3900,0,2.3900),(2,2,'US-MI-*-Rate 1','US-MI-*-Rate 1',8.2500,2.6400,0,0,2.6400,0,2.6400);
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_tax` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_order_tax_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_order_tax_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_order_tax_item` (
  `tax_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Item ID',
  `tax_id` int unsigned NOT NULL COMMENT 'Tax ID',
  `item_id` int unsigned DEFAULT NULL COMMENT 'Item ID',
  `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item',
  `amount` decimal(20,4) NOT NULL COMMENT 'Tax amount for the item and tax rate',
  `base_amount` decimal(20,4) NOT NULL COMMENT 'Base tax amount for the item and tax rate',
  `real_amount` decimal(20,4) NOT NULL COMMENT 'Real tax amount for the item and tax rate',
  `real_base_amount` decimal(20,4) NOT NULL COMMENT 'Real base tax amount for the item and tax rate',
  `associated_item_id` int unsigned DEFAULT NULL COMMENT 'Id of the associated item',
  `taxable_item_type` varchar(32) NOT NULL COMMENT 'Type of the taxable item',
  PRIMARY KEY (`tax_item_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`),
  KEY `FK_C5158D2E6E4CE4AE5A4588108F277924` (`associated_item_id`),
  KEY `[[DBPREFIX]]SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`),
  CONSTRAINT `FK_C5158D2E6E4CE4AE5A4588108F277924` FOREIGN KEY (`associated_item_id`) REFERENCES `[[dbprefix]]sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_TAX_ITEM_ITEM_ID_[[DBPREFIX]]SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `[[dbprefix]]sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_ORDER_TAX_ITEM_TAX_ID_[[DBPREFIX]]SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `[[dbprefix]]sales_order_tax` (`tax_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Tax Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_order_tax_item`
--

LOCK TABLES `[[dbprefix]]sales_order_tax_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_tax_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_order_tax_item` VALUES (1,1,NULL,8.2500,2.3900,2.3900,2.3900,2.3900,NULL,'product'),(2,2,NULL,8.2500,2.6400,2.6400,2.6400,2.6400,NULL,'product');
/*!40000 ALTER TABLE `[[dbprefix]]sales_order_tax_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_payment_transaction`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_payment_transaction` (
  `transaction_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Transaction ID',
  `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID',
  `order_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order ID',
  `payment_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Payment ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `parent_txn_id` varchar(100) DEFAULT NULL COMMENT 'Parent Txn ID',
  `txn_type` varchar(15) DEFAULT NULL COMMENT 'Txn Type',
  `is_closed` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Closed',
  `additional_information` blob COMMENT 'Additional Information',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`),
  KEY `[[DBPREFIX]]SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`),
  KEY `[[DBPREFIX]]SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`),
  CONSTRAINT `FK_73B7F4264FB521058F4E709F99A54F3A` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_A76BCDC6CC14CF321955BB90C26EF2B1` FOREIGN KEY (`payment_id`) REFERENCES `[[dbprefix]]sales_order_payment` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_PAYMENT_TRANSACTION_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_payment_transaction`
--

LOCK TABLES `[[dbprefix]]sales_payment_transaction` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_payment_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_refunded_aggregated`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_refunded_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_refunded_aggregated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_REFUNDED_AGGREGATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Refunded Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_refunded_aggregated`
--

LOCK TABLES `[[dbprefix]]sales_refunded_aggregated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_refunded_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_refunded_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_refunded_aggregated_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_refunded_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_refunded_aggregated_order` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_REFUNDED_AGGRED_ORDER_PERIOD_STORE_ID_ORDER_STS` (`period`,`store_id`,`order_status`),
  KEY `[[DBPREFIX]]SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_REFUNDED_AGGRED_ORDER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Refunded Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_refunded_aggregated_order`
--

LOCK TABLES `[[dbprefix]]sales_refunded_aggregated_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_refunded_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_refunded_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_sequence_meta`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_sequence_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_sequence_meta` (
  `meta_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Prefix',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `sequence_table` varchar(64) NOT NULL COMMENT 'table for sequence',
  PRIMARY KEY (`meta_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='sales_sequence_meta';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_sequence_meta`
--

LOCK TABLES `[[dbprefix]]sales_sequence_meta` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_sequence_meta` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_sequence_meta` VALUES (1,'order',0,'[[dbprefix]]sequence_order_0'),(2,'invoice',0,'[[dbprefix]]sequence_invoice_0'),(3,'creditmemo',0,'[[dbprefix]]sequence_creditmemo_0'),(4,'shipment',0,'[[dbprefix]]sequence_shipment_0'),(5,'order',1,'[[dbprefix]]sequence_order_1'),(6,'invoice',1,'[[dbprefix]]sequence_invoice_1'),(7,'creditmemo',1,'[[dbprefix]]sequence_creditmemo_1'),(8,'shipment',1,'[[dbprefix]]sequence_shipment_1');
/*!40000 ALTER TABLE `[[dbprefix]]sales_sequence_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_sequence_profile`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_sequence_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_sequence_profile` (
  `profile_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `meta_id` int unsigned NOT NULL COMMENT 'Meta_id',
  `prefix` varchar(32) DEFAULT NULL COMMENT 'Prefix',
  `suffix` varchar(32) DEFAULT NULL COMMENT 'Suffix',
  `start_value` int unsigned NOT NULL DEFAULT '1' COMMENT 'Start value for sequence',
  `step` int unsigned NOT NULL DEFAULT '1' COMMENT 'Step for sequence',
  `max_value` int unsigned NOT NULL COMMENT 'MaxValue for sequence',
  `warning_value` int unsigned NOT NULL COMMENT 'WarningValue for sequence',
  `is_active` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'isActive flag',
  PRIMARY KEY (`profile_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`),
  CONSTRAINT `FK_FF2697E40702A51DC607A883D7D1418F` FOREIGN KEY (`meta_id`) REFERENCES `[[dbprefix]]sales_sequence_meta` (`meta_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='sales_sequence_profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_sequence_profile`
--

LOCK TABLES `[[dbprefix]]sales_sequence_profile` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_sequence_profile` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_sequence_profile` VALUES (1,1,NULL,NULL,1,1,4294967295,4294966295,1),(2,2,NULL,NULL,1,1,4294967295,4294966295,1),(3,3,NULL,NULL,1,1,4294967295,4294966295,1),(4,4,NULL,NULL,1,1,4294967295,4294966295,1),(5,5,NULL,NULL,1,1,4294967295,4294966295,1),(6,6,NULL,NULL,1,1,4294967295,4294966295,1),(7,7,NULL,NULL,1,1,4294967295,4294966295,1),(8,8,NULL,NULL,1,1,4294967295,4294966295,1);
/*!40000 ALTER TABLE `[[dbprefix]]sales_sequence_profile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipment`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipment` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `customer_id` int DEFAULT NULL COMMENT 'Customer ID',
  `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID',
  `shipment_status` int DEFAULT NULL COMMENT 'Shipment Status',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `packages` text COMMENT 'Packed Products in Packages',
  `shipping_label` mediumblob COMMENT 'Shipping Label Content',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_SEND_EMAIL` (`send_email`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `[[DBPREFIX]]SALES_SHIPMENT_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALES_SHIPMENT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipment`
--

LOCK TABLES `[[dbprefix]]sales_shipment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_shipment` VALUES (1,1,NULL,1.0000,NULL,NULL,1,1,1,2,NULL,'000000001','[[regtime]]','[[regtime]]','[]',NULL,NULL,NULL),(2,1,NULL,1.0000,NULL,NULL,2,1,3,4,NULL,'000000002','[[regtime]]','[[regtime]]','[]',NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipment_comment`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipment_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipment_comment` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `FK_189F8F82DC76F0FCED78AFF20039A3A2` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipment_comment`
--

LOCK TABLES `[[dbprefix]]sales_shipment_comment` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipment_grid`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipment_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipment_grid` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_increment_id` varchar(32) NOT NULL COMMENT 'Order Increment ID',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `order_created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Order Increment ID',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `shipment_status` int DEFAULT NULL COMMENT 'Shipment Status',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `billing_name` varchar(128) DEFAULT NULL COMMENT 'Billing Name',
  `shipping_name` varchar(128) DEFAULT NULL COMMENT 'Shipping Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int DEFAULT NULL,
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_0660C059FCD64B594430BAD2A34B0BA9` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipment_grid`
--

LOCK TABLES `[[dbprefix]]sales_shipment_grid` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_grid` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_shipment_grid` VALUES (1,'000000001',1,'000000001',1,'[[regtime]]','Veronica Costello',1.0000,NULL,'processing','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Veronica Costello','Veronica Costello','roni_cost@example.com',1,'checkmo','Flat Rate - Fixed','[[regtime]]','[[regtime]]'),(2,'000000002',1,'000000002',2,'[[regtime]]','Veronica Costello',1.0000,NULL,'processing','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','6146 Honey Bluff Parkway,Calder,Michigan,49628-7978','Veronica Costello','Veronica Costello','roni_cost@example.com',1,'checkmo','Flat Rate - Fixed','[[regtime]]','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipment_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipment_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipment_item` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `product_id` int DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_SHIPMENT_ITEM_PARENT_ID_[[DBPREFIX]]SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipment_item`
--

LOCK TABLES `[[dbprefix]]sales_shipment_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_item` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sales_shipment_item` VALUES (1,1,NULL,29.0000,1.0000,1.0000,1428,1,NULL,NULL,'Iris Workout Top','WS03-XS-Red'),(2,2,NULL,32.0000,1.0000,1.0000,1492,2,NULL,NULL,'Minerva LumaTech&trade; V-Tee','WS08-XS-Blue');
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipment_track`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipment_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipment_track` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `order_id` int unsigned NOT NULL COMMENT 'Order ID',
  `track_number` text COMMENT 'Number',
  `description` text COMMENT 'Description',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `carrier_code` varchar(32) DEFAULT NULL COMMENT 'Carrier Code',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`),
  KEY `[[DBPREFIX]]SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`),
  CONSTRAINT `[[DBPREFIX]]SALES_SHIPMENT_TRACK_PARENT_ID_[[DBPREFIX]]SALES_SHIPMENT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Track';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipment_track`
--

LOCK TABLES `[[dbprefix]]sales_shipment_track` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipment_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipping_aggregated`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipping_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipping_aggregated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_9BA127FB00B9D4A14A37F6574D5E1628` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `[[DBPREFIX]]SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_SHIPPING_AGGREGATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Shipping Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipping_aggregated`
--

LOCK TABLES `[[dbprefix]]sales_shipping_aggregated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipping_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipping_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sales_shipping_aggregated_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]sales_shipping_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sales_shipping_aggregated_order` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_FFC00FD9A23ABEF57E740B0115D76980` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `[[DBPREFIX]]SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALES_SHPP_AGGRED_ORDER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Shipping Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sales_shipping_aggregated_order`
--

LOCK TABLES `[[dbprefix]]sales_shipping_aggregated_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipping_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sales_shipping_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule` (
  `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `uses_per_customer` int NOT NULL DEFAULT '0' COMMENT 'Uses Per Customer',
  `is_active` smallint NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `conditions_serialized` mediumtext COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing',
  `is_advanced` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Advanced',
  `product_ids` text COMMENT 'Product Ids',
  `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `discount_qty` decimal(12,4) DEFAULT NULL COMMENT 'Discount Qty',
  `discount_step` int unsigned NOT NULL DEFAULT '0' COMMENT 'Discount Step',
  `apply_to_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Apply To Shipping',
  `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  `is_rss` smallint NOT NULL DEFAULT '0' COMMENT 'Is Rss',
  `coupon_type` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Coupon Type',
  `use_auto_generation` smallint NOT NULL DEFAULT '0' COMMENT 'Use Auto Generation',
  `uses_per_coupon` int NOT NULL DEFAULT '0' COMMENT 'User Per Coupon',
  `simple_free_shipping` smallint unsigned DEFAULT NULL COMMENT 'Simple Free Shipping',
  PRIMARY KEY (`rule_id`),
  KEY `[[DBPREFIX]]SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule`
--

LOCK TABLES `[[dbprefix]]salesrule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]salesrule` VALUES (1,'Buy 3 tee shirts and get the 4th free','Buy 3 tee shirts and get the 4th free',NULL,NULL,0,1,'{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Found\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\",\"attribute\":\"category_ids\",\"operator\":\"()\",\"value\":\"25,16\",\"is_value_processed\":false,\"attribute_scope\":null}]}]}','{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\"}',0,1,NULL,0,'buy_x_get_y',1.0000,NULL,3,0,0,1,1,0,0,0),(2,'Spend $50 or more - shipping is free!','Free shipping on any purchase over $50',NULL,NULL,0,1,'{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Address\",\"attribute\":\"base_subtotal\",\"operator\":\">=\",\"value\":\"50\",\"is_value_processed\":false}]}','{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\"}',0,1,NULL,0,'by_percent',0.0000,NULL,0,0,0,1,1,0,0,2),(3,'20% OFF Ever $200-plus purchase!*','Shopping cart price rule for the cart over $200. Does not applied on other sales items',NULL,NULL,0,1,'{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Address\",\"attribute\":\"base_subtotal\",\"operator\":\">=\",\"value\":\"200\",\"is_value_processed\":false}]}','{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"0\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\",\"attribute\":\"category_ids\",\"operator\":\"==\",\"value\":\"6\",\"is_value_processed\":false,\"attribute_scope\":null},{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\",\"attribute\":\"sale\",\"operator\":\"==\",\"value\":\"1\",\"is_value_processed\":false,\"attribute_scope\":null}]}]}',0,1,NULL,0,'by_percent',20.0000,NULL,0,0,0,1,1,0,0,0),(4,'$4 Luma water bottle (save 70%)','Use promo code H20 at checkout',NULL,NULL,1,1,'{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Found\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\"}]}','{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\",\"conditions\":[{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\",\"attribute\":\"sku\",\"operator\":\"==\",\"value\":\"24-UG06\",\"is_value_processed\":false,\"attribute_scope\":null}]}',0,1,NULL,0,'by_percent',70.0000,NULL,0,0,0,1,2,0,0,0);
/*!40000 ALTER TABLE `[[dbprefix]]salesrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_coupon`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_coupon` (
  `coupon_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Coupon ID',
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `usage_limit` int unsigned DEFAULT NULL COMMENT 'Usage Limit',
  `usage_per_customer` int unsigned DEFAULT NULL COMMENT 'Usage Per Customer',
  `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  `expiration_date` datetime DEFAULT NULL COMMENT 'Expiration Date',
  `is_primary` smallint unsigned DEFAULT NULL COMMENT 'Is Primary',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon Code Creation Date',
  `type` smallint DEFAULT '0' COMMENT 'Coupon Code Type',
  PRIMARY KEY (`coupon_id`),
  UNIQUE KEY `[[DBPREFIX]]SALESRULE_COUPON_CODE` (`code`),
  UNIQUE KEY `[[DBPREFIX]]SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_RULE_ID` (`rule_id`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_COUPON_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_coupon`
--

LOCK TABLES `[[dbprefix]]salesrule_coupon` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]salesrule_coupon` VALUES (1,4,'H20',0,1,0,NULL,1,'[[regtime]]',0);
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_coupon_aggregated`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_coupon_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_coupon_aggregated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_CBEFEADB1C2A9B55DFAD3BE4F646432A` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Coupon Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_coupon_aggregated`
--

LOCK TABLES `[[dbprefix]]salesrule_coupon_aggregated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_coupon_aggregated_order`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_coupon_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_coupon_aggregated_order` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_D1503F028B39D307208B5D4A55397962` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_COUPON_AGGRED_ORDER_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Coupon Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_coupon_aggregated_order`
--

LOCK TABLES `[[dbprefix]]salesrule_coupon_aggregated_order` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_coupon_aggregated_updated`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_coupon_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_coupon_aggregated_updated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_9EAC53B231F77BB66B08377A38D018A0` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `FK_6C3A3678E3576613EF8DC515B44E3B30` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_coupon_aggregated_updated`
--

LOCK TABLES `[[dbprefix]]salesrule_coupon_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_coupon_usage`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_coupon_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_coupon_usage` (
  `coupon_id` int unsigned NOT NULL COMMENT 'Coupon ID',
  `customer_id` int unsigned NOT NULL COMMENT 'Customer ID',
  `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  PRIMARY KEY (`coupon_id`,`customer_id`),
  KEY `[[DBPREFIX]]SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `FK_6A5DE9DEF99C62F7A570746C7D477433` FOREIGN KEY (`coupon_id`) REFERENCES `[[dbprefix]]salesrule_coupon` (`coupon_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_COUPON_USAGE_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon Usage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_coupon_usage`
--

LOCK TABLES `[[dbprefix]]salesrule_coupon_usage` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_usage` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_coupon_usage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_customer`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_customer` (
  `rule_customer_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer ID',
  `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `times_used` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  PRIMARY KEY (`rule_customer_id`),
  KEY `[[DBPREFIX]]SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`),
  KEY `[[DBPREFIX]]SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_CSTR_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_CUSTOMER_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Customer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_customer`
--

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

--
-- Table structure for table `[[dbprefix]]salesrule_customer_group`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_customer_group` (
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `[[DBPREFIX]]SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `FK_F599EAF5E3C8694AB0B05FD19A9F7C41` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_CUSTOMER_GROUP_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_customer_group`
--

LOCK TABLES `[[dbprefix]]salesrule_customer_group` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_customer_group` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]salesrule_customer_group` VALUES (1,0),(2,0),(3,0),(4,0),(1,1),(2,1),(3,1),(4,1),(1,2),(2,2),(3,2),(4,2),(1,3),(2,3),(3,3),(4,3);
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_label`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_label` (
  `label_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Label ID',
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  PRIMARY KEY (`label_id`),
  UNIQUE KEY `[[DBPREFIX]]SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`),
  KEY `[[DBPREFIX]]SALESRULE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_LABEL_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_LABEL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_label`
--

LOCK TABLES `[[dbprefix]]salesrule_label` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_product_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_product_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_product_attribute` (
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`),
  KEY `[[DBPREFIX]]SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `[[DBPREFIX]]SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `FK_5C6FB5B778D1DB61AA765B7085E71E13` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_PRD_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_PRD_ATTR_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Product Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_product_attribute`
--

LOCK TABLES `[[dbprefix]]salesrule_product_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_product_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]salesrule_product_attribute` VALUES (1,1,0,105),(1,1,1,105),(1,1,2,105),(1,1,3,105),(3,1,0,105),(3,1,0,147),(3,1,1,105),(3,1,1,147),(3,1,2,105),(3,1,2,147),(3,1,3,105),(3,1,3,147),(4,1,0,74),(4,1,1,74),(4,1,2,74),(4,1,3,74);
/*!40000 ALTER TABLE `[[dbprefix]]salesrule_product_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]salesrule_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]salesrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]salesrule_website` (
  `rule_id` int unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `[[DBPREFIX]]SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `[[DBPREFIX]]SALESRULE_WEBSITE_RULE_ID_[[DBPREFIX]]SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SALESRULE_WEBSITE_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]salesrule_website`
--

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

--
-- Table structure for table `[[dbprefix]]search_query`
--

DROP TABLE IF EXISTS `[[dbprefix]]search_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]search_query` (
  `query_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Query ID',
  `query_text` varchar(255) DEFAULT NULL COMMENT 'Query text',
  `num_results` int unsigned NOT NULL DEFAULT '0' COMMENT 'Num results',
  `popularity` int unsigned NOT NULL DEFAULT '0' COMMENT 'Popularity',
  `redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `display_in_terms` smallint NOT NULL DEFAULT '1' COMMENT 'Display in terms',
  `is_active` smallint DEFAULT '1' COMMENT 'Active status',
  `is_processed` smallint DEFAULT '0' COMMENT 'Processed status',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated at',
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `[[DBPREFIX]]SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`),
  KEY `[[DBPREFIX]]SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  KEY `[[DBPREFIX]]SEARCH_QUERY_IS_PROCESSED` (`is_processed`),
  KEY `[[DBPREFIX]]SEARCH_QUERY_STORE_ID_NUM_RESULTS_POPULARITY` (`store_id`,`num_results`,`popularity`),
  CONSTRAINT `[[DBPREFIX]]SEARCH_QUERY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Search query table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]search_query`
--

LOCK TABLES `[[dbprefix]]search_query` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]search_query` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]search_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]search_synonyms`
--

DROP TABLE IF EXISTS `[[dbprefix]]search_synonyms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]search_synonyms` (
  `group_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group ID',
  `synonyms` text NOT NULL COMMENT 'list of synonyms making up this group',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID - identifies the store view these synonyms belong to',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID - identifies the website ID these synonyms belong to',
  PRIMARY KEY (`group_id`),
  KEY `[[DBPREFIX]]SEARCH_SYNONYMS_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`),
  FULLTEXT KEY `[[DBPREFIX]]SEARCH_SYNONYMS_SYNONYMS` (`synonyms`),
  CONSTRAINT `[[DBPREFIX]]SEARCH_SYNONYMS_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]SEARCH_SYNONYMS_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='table storing various synonyms groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]search_synonyms`
--

LOCK TABLES `[[dbprefix]]search_synonyms` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]search_synonyms` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]search_synonyms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sendfriend_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]sendfriend_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sendfriend_log` (
  `log_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `ip` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Customer IP address',
  `time` int unsigned NOT NULL DEFAULT '0' COMMENT 'Log time',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`log_id`),
  KEY `[[DBPREFIX]]SENDFRIEND_LOG_IP` (`ip`),
  KEY `[[DBPREFIX]]SENDFRIEND_LOG_TIME` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Send to friend function log storage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sendfriend_log`
--

LOCK TABLES `[[dbprefix]]sendfriend_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sendfriend_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sendfriend_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_creditmemo_0`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_creditmemo_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_creditmemo_0` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_creditmemo_0`
--

LOCK TABLES `[[dbprefix]]sequence_creditmemo_0` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_creditmemo_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_creditmemo_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_creditmemo_1`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_creditmemo_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_creditmemo_1` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_creditmemo_1`
--

LOCK TABLES `[[dbprefix]]sequence_creditmemo_1` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_creditmemo_1` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]sequence_creditmemo_1` VALUES (1);
/*!40000 ALTER TABLE `[[dbprefix]]sequence_creditmemo_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_invoice_0`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_invoice_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_invoice_0` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_invoice_0`
--

LOCK TABLES `[[dbprefix]]sequence_invoice_0` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_invoice_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_invoice_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_invoice_1`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_invoice_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_invoice_1` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_invoice_1`
--

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

--
-- Table structure for table `[[dbprefix]]sequence_order_0`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_order_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_order_0` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_order_0`
--

LOCK TABLES `[[dbprefix]]sequence_order_0` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_order_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_order_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_order_1`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_order_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_order_1` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_order_1`
--

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

--
-- Table structure for table `[[dbprefix]]sequence_shipment_0`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_shipment_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_shipment_0` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_shipment_0`
--

LOCK TABLES `[[dbprefix]]sequence_shipment_0` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_shipment_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sequence_shipment_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sequence_shipment_1`
--

DROP TABLE IF EXISTS `[[dbprefix]]sequence_shipment_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sequence_shipment_1` (
  `sequence_value` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sequence_shipment_1`
--

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

--
-- Table structure for table `[[dbprefix]]session`
--

DROP TABLE IF EXISTS `[[dbprefix]]session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]session` (
  `session_id` varchar(255) NOT NULL COMMENT 'Session Id',
  `session_expires` int unsigned NOT NULL DEFAULT '0' COMMENT 'Date of Session Expiration',
  `session_data` mediumblob NOT NULL COMMENT 'Session Data',
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Database Sessions Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]session`
--


--
-- Table structure for table `[[dbprefix]]setup_module`
--

DROP TABLE IF EXISTS `[[dbprefix]]setup_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]setup_module` (
  `module` varchar(50) NOT NULL COMMENT 'Module',
  `schema_version` varchar(50) DEFAULT NULL COMMENT 'Schema Version',
  `data_version` varchar(50) DEFAULT NULL COMMENT 'Data Version',
  PRIMARY KEY (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Module versions registry';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]setup_module`
--

LOCK TABLES `[[dbprefix]]setup_module` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]setup_module` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]setup_module` VALUES ('Magento_DataExporter','42.0.1','42.0.1'),('Magento_QueryXml','42.0.0','42.0.0'),('Magento_Securitytxt','1.0.0','1.0.0'),('Magento_ServicesConnector','1.1.0','1.1.0'),('Magento_ServicesId','1.1.0','1.1.0'),('Magento_ServicesIdLayout','1.0.0','1.0.0'),('PayPal_Braintree','4.6.1','4.6.1');
/*!40000 ALTER TABLE `[[dbprefix]]setup_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]shipping_tablerate`
--

DROP TABLE IF EXISTS `[[dbprefix]]shipping_tablerate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]shipping_tablerate` (
  `pk` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `website_id` int NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code',
  `dest_region_id` int NOT NULL DEFAULT '0' COMMENT 'Destination Region ID',
  `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)',
  `condition_name` varchar(30) NOT NULL COMMENT 'Rate Condition name',
  `condition_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Rate condition value',
  `price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `cost` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Cost',
  PRIMARY KEY (`pk`),
  UNIQUE KEY `UNQ_50E5FB6F6AB78252AFB1BF28E771F980` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COMMENT='Shipping Tablerate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]shipping_tablerate`
--

LOCK TABLES `[[dbprefix]]shipping_tablerate` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]shipping_tablerate` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]shipping_tablerate` VALUES (1,1,'US',0,'*','package_value_with_discount',0.0000,15.0000,0.0000),(2,1,'US',0,'*','package_value_with_discount',50.0000,10.0000,0.0000),(3,1,'US',0,'*','package_value_with_discount',100.0000,5.0000,0.0000),(4,1,'US',2,'*','package_value_with_discount',0.0000,20.0000,0.0000),(5,1,'US',2,'*','package_value_with_discount',50.0000,15.0000,0.0000),(6,1,'US',2,'*','package_value_with_discount',100.0000,10.0000,0.0000),(7,1,'US',21,'*','package_value_with_discount',0.0000,20.0000,0.0000),(8,1,'US',21,'*','package_value_with_discount',50.0000,15.0000,0.0000),(9,1,'US',21,'*','package_value_with_discount',100.0000,10.0000,0.0000);
/*!40000 ALTER TABLE `[[dbprefix]]shipping_tablerate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]sitemap`
--

DROP TABLE IF EXISTS `[[dbprefix]]sitemap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]sitemap` (
  `sitemap_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sitemap ID',
  `sitemap_type` varchar(32) DEFAULT NULL COMMENT 'Sitemap Type',
  `sitemap_filename` varchar(32) DEFAULT NULL COMMENT 'Sitemap Filename',
  `sitemap_path` varchar(255) DEFAULT NULL COMMENT 'Sitemap Path',
  `sitemap_time` timestamp NULL DEFAULT NULL COMMENT 'Sitemap Time',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`sitemap_id`),
  KEY `[[DBPREFIX]]SITEMAP_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]SITEMAP_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='XML Sitemap';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]sitemap`
--

LOCK TABLES `[[dbprefix]]sitemap` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]sitemap` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]sitemap` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]store`
--

DROP TABLE IF EXISTS `[[dbprefix]]store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]store` (
  `store_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Group ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Name',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Sort Order',
  `is_active` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Activity',
  PRIMARY KEY (`store_id`),
  UNIQUE KEY `[[DBPREFIX]]STORE_CODE` (`code`),
  KEY `[[DBPREFIX]]STORE_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`),
  KEY `[[DBPREFIX]]STORE_GROUP_ID` (`group_id`),
  CONSTRAINT `[[DBPREFIX]]STORE_GROUP_ID_[[DBPREFIX]]STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `[[dbprefix]]store_group` (`group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]STORE_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Stores';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]store`
--

LOCK TABLES `[[dbprefix]]store` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]store` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1);
/*!40000 ALTER TABLE `[[dbprefix]]store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]store_data_exporter_cl`
--

DROP TABLE IF EXISTS `[[dbprefix]]store_data_exporter_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]store_data_exporter_cl` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]store_data_exporter_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]store_data_exporter_cl`
--

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

--
-- Table structure for table `[[dbprefix]]store_group`
--

DROP TABLE IF EXISTS `[[dbprefix]]store_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]store_group` (
  `group_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Group Name',
  `root_category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Root Category ID',
  `default_store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Default Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Store group unique code',
  PRIMARY KEY (`group_id`),
  UNIQUE KEY `[[DBPREFIX]]STORE_GROUP_CODE` (`code`),
  KEY `[[DBPREFIX]]STORE_GROUP_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`),
  CONSTRAINT `[[DBPREFIX]]STORE_GROUP_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Store Groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]store_group`
--

LOCK TABLES `[[dbprefix]]store_group` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]store_group` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store');
/*!40000 ALTER TABLE `[[dbprefix]]store_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]store_website`
--

DROP TABLE IF EXISTS `[[dbprefix]]store_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]store_website` (
  `website_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Website ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `name` varchar(64) DEFAULT NULL COMMENT 'Website Name',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `default_group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Default Group ID',
  `is_default` smallint unsigned DEFAULT '0' COMMENT 'Defines Is Website Default',
  PRIMARY KEY (`website_id`),
  UNIQUE KEY `[[DBPREFIX]]STORE_WEBSITE_CODE` (`code`),
  KEY `[[DBPREFIX]]STORE_WEBSITE_SORT_ORDER` (`sort_order`),
  KEY `[[DBPREFIX]]STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Websites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]store_website`
--

LOCK TABLES `[[dbprefix]]store_website` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]store_website` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1);
/*!40000 ALTER TABLE `[[dbprefix]]store_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]stores_data_exporter`
--

DROP TABLE IF EXISTS `[[dbprefix]]stores_data_exporter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]stores_data_exporter` (
  `id` int unsigned NOT NULL COMMENT 'ID',
  `feed_data` mediumtext NOT NULL COMMENT 'Feed Data',
  `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modified At',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]STORES_DATA_EXPORTER_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Stores Feed Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]stores_data_exporter`
--

LOCK TABLES `[[dbprefix]]stores_data_exporter` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]stores_data_exporter` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]stores_data_exporter` VALUES (1,'{\"store_view_id\":\"1\",\"store_id\":1,\"website_id\":1,\"store_view_name\":\"Default Store View\",\"store_name\":\"Main Website Store\",\"website_name\":\"Main Website\"}','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]stores_data_exporter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]stores_data_exporter_index_batches`
--

DROP TABLE IF EXISTS `[[dbprefix]]stores_data_exporter_index_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]stores_data_exporter_index_batches` (
  `batch_number` int NOT NULL COMMENT 'Batch Number',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  PRIMARY KEY (`batch_number`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]stores_data_exporter_index_batches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]stores_data_exporter_index_batches`
--

LOCK TABLES `[[dbprefix]]stores_data_exporter_index_batches` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]stores_data_exporter_index_batches` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]stores_data_exporter_index_batches` VALUES (1,1);
/*!40000 ALTER TABLE `[[dbprefix]]stores_data_exporter_index_batches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]stores_data_exporter_index_sequence`
--

DROP TABLE IF EXISTS `[[dbprefix]]stores_data_exporter_index_sequence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]stores_data_exporter_index_sequence` (
  `i` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto Increment ID',
  PRIMARY KEY (`i`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='[[dbprefix]]stores_data_exporter_index_sequence';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]stores_data_exporter_index_sequence`
--

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

--
-- Table structure for table `[[dbprefix]]tax_calculation`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_calculation` (
  `tax_calculation_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation ID',
  `tax_calculation_rate_id` int NOT NULL COMMENT 'Tax Calculation Rate ID',
  `tax_calculation_rule_id` int NOT NULL COMMENT 'Tax Calculation Rule ID',
  `customer_tax_class_id` smallint NOT NULL COMMENT 'Customer Tax Class ID',
  `product_tax_class_id` smallint NOT NULL COMMENT 'Product Tax Class ID',
  PRIMARY KEY (`tax_calculation_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`),
  KEY `IDX_DC62AA3A0515973AF9E40AD22777C73A` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`),
  CONSTRAINT `FK_2B652BD3CC9AD34C7A2B33BAA2AB9BBB` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `[[dbprefix]]tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_469DCE2C6AFE66A67F19F89821271A06` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]TAX_CALC_CSTR_TAX_CLASS_ID_[[DBPREFIX]]TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `[[dbprefix]]tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]TAX_CALC_PRD_TAX_CLASS_ID_[[DBPREFIX]]TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `[[dbprefix]]tax_class` (`class_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_calculation`
--

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

--
-- Table structure for table `[[dbprefix]]tax_calculation_rate`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_calculation_rate` (
  `tax_calculation_rate_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate ID',
  `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country ID',
  `tax_region_id` int NOT NULL COMMENT 'Tax Region ID',
  `tax_postcode` varchar(21) DEFAULT NULL COMMENT 'Tax Postcode',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `rate` decimal(12,4) NOT NULL COMMENT 'Rate',
  `zip_is_range` smallint DEFAULT NULL COMMENT 'Zip Is Range',
  `zip_from` int unsigned DEFAULT NULL COMMENT 'Zip From',
  `zip_to` int unsigned DEFAULT NULL COMMENT 'Zip To',
  PRIMARY KEY (`tax_calculation_rate_id`),
  KEY `[[DBPREFIX]]TAX_CALC_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_RATE_CODE` (`code`),
  KEY `IDX_A3AD8DCACB38995910B5FDF5D42127A2` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_calculation_rate`
--

LOCK TABLES `[[dbprefix]]tax_calculation_rate` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]tax_calculation_rate` VALUES (1,'US',12,'*','US-CA-*-Rate 1',8.2500,NULL,NULL,NULL),(2,'US',43,'*','US-NY-*-Rate 1',8.3750,NULL,NULL,NULL),(3,'US',33,'*','US-MI-*-Rate 1',8.2500,NULL,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tax_calculation_rate_title`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rate_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_calculation_rate_title` (
  `tax_calculation_rate_title_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title ID',
  `tax_calculation_rate_id` int NOT NULL COMMENT 'Tax Calculation Rate ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  PRIMARY KEY (`tax_calculation_rate_title_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_D28111D1128C56F7BE39EF301F9F32B2` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rate Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_calculation_rate_title`
--

LOCK TABLES `[[dbprefix]]tax_calculation_rate_title` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tax_calculation_rule`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_calculation_rule` (
  `tax_calculation_rule_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `priority` int NOT NULL COMMENT 'Priority',
  `position` int NOT NULL COMMENT 'Position',
  `calculate_subtotal` int NOT NULL COMMENT 'Calculate off subtotal option',
  PRIMARY KEY (`tax_calculation_rule_id`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`),
  KEY `[[DBPREFIX]]TAX_CALCULATION_RULE_CODE` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_calculation_rule`
--

LOCK TABLES `[[dbprefix]]tax_calculation_rule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rule` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]tax_calculation_rule` VALUES (1,'Rule1',0,0,0);
/*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tax_class`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_class` (
  `class_id` smallint NOT NULL AUTO_INCREMENT COMMENT 'Class ID',
  `class_name` varchar(255) NOT NULL COMMENT 'Class Name',
  `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type',
  PRIMARY KEY (`class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Class';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_class`
--

LOCK TABLES `[[dbprefix]]tax_class` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_class` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER');
/*!40000 ALTER TABLE `[[dbprefix]]tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tax_order_aggregated_created`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_order_aggregated_created` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_A719D9444F7B979B92D2369CE724F9D0` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `[[DBPREFIX]]TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]TAX_ORDER_AGGREGATED_CREATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Order Aggregation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_order_aggregated_created`
--

LOCK TABLES `[[dbprefix]]tax_order_aggregated_created` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_created` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tax_order_aggregated_updated`
--

DROP TABLE IF EXISTS `[[dbprefix]]tax_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tax_order_aggregated_updated` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_6C22B67A5EB5D08555BC3FA3F54DD8F3` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `[[DBPREFIX]]TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tax_order_aggregated_updated`
--

LOCK TABLES `[[dbprefix]]tax_order_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tfa_country_codes`
--

DROP TABLE IF EXISTS `[[dbprefix]]tfa_country_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tfa_country_codes` (
  `country_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID',
  `code` varchar(2) NOT NULL COMMENT 'Country code',
  `name` varchar(255) NOT NULL COMMENT 'Country name',
  `dial_code` varchar(255) NOT NULL COMMENT 'Prefix',
  PRIMARY KEY (`country_id`),
  KEY `[[DBPREFIX]]TFA_COUNTRY_CODES_CODE` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=242 DEFAULT CHARSET=utf8mb3 COMMENT='tfa_country_codes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tfa_country_codes`
--

LOCK TABLES `[[dbprefix]]tfa_country_codes` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tfa_country_codes` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]tfa_country_codes` VALUES (1,'IL','Israel','+972'),(2,'AF','Afghanistan','+93'),(3,'AL','Albania','+355'),(4,'DZ','Algeria','+213'),(5,'AS','AmericanSamoa','+1 684'),(6,'AD','Andorra','+376'),(7,'AO','Angola','+244'),(8,'AI','Anguilla','+1 264'),(9,'AG','Antigua and Barbuda','+1268'),(10,'AR','Argentina','+54'),(11,'AM','Armenia','+374'),(12,'AW','Aruba','+297'),(13,'AU','Australia','+61'),(14,'AT','Austria','+43'),(15,'AZ','Azerbaijan','+994'),(16,'BS','Bahamas','+1 242'),(17,'BH','Bahrain','+973'),(18,'BD','Bangladesh','+880'),(19,'BB','Barbados','+1 246'),(20,'BY','Belarus','+375'),(21,'BE','Belgium','+32'),(22,'BZ','Belize','+501'),(23,'BJ','Benin','+229'),(24,'BM','Bermuda','+1 441'),(25,'BT','Bhutan','+975'),(26,'BA','Bosnia and Herzegovina','+387'),(27,'BW','Botswana','+267'),(28,'BR','Brazil','+55'),(29,'IO','British Indian Ocean Territory','+246'),(30,'BG','Bulgaria','+359'),(31,'BF','Burkina Faso','+226'),(32,'BI','Burundi','+257'),(33,'KH','Cambodia','+855'),(34,'CM','Cameroon','+237'),(35,'CA','Canada','+1'),(36,'CV','Cape Verde','+238'),(37,'KY','Cayman Islands','+ 345'),(38,'CF','Central African Republic','+236'),(39,'TD','Chad','+235'),(40,'CL','Chile','+56'),(41,'CN','China','+86'),(42,'CX','Christmas Island','+61'),(43,'CO','Colombia','+57'),(44,'KM','Comoros','+269'),(45,'CG','Congo','+242'),(46,'CK','Cook Islands','+682'),(47,'CR','Costa Rica','+506'),(48,'HR','Croatia','+385'),(49,'CU','Cuba','+53'),(50,'CY','Cyprus','+537'),(51,'CZ','Czech Republic','+420'),(52,'DK','Denmark','+45'),(53,'DJ','Djibouti','+253'),(54,'DM','Dominica','+1 767'),(55,'DO','Dominican Republic','+1 849'),(56,'EC','Ecuador','+593'),(57,'EG','Egypt','+20'),(58,'SV','El Salvador','+503'),(59,'GQ','Equatorial Guinea','+240'),(60,'ER','Eritrea','+291'),(61,'EE','Estonia','+372'),(62,'ET','Ethiopia','+251'),(63,'FO','Faroe Islands','+298'),(64,'FJ','Fiji','+679'),(65,'FI','Finland','+358'),(66,'FR','France','+33'),(67,'GF','French Guiana','+594'),(68,'PF','French Polynesia','+689'),(69,'GA','Gabon','+241'),(70,'GM','Gambia','+220'),(71,'GE','Georgia','+995'),(72,'DE','Germany','+49'),(73,'GH','Ghana','+233'),(74,'GI','Gibraltar','+350'),(75,'GR','Greece','+30'),(76,'GL','Greenland','+299'),(77,'GD','Grenada','+1 473'),(78,'GP','Guadeloupe','+590'),(79,'GU','Guam','+1 671'),(80,'GT','Guatemala','+502'),(81,'GN','Guinea','+224'),(82,'GW','Guinea-Bissau','+245'),(83,'GY','Guyana','+595'),(84,'HT','Haiti','+509'),(85,'HN','Honduras','+504'),(86,'HU','Hungary','+36'),(87,'IS','Iceland','+354'),(88,'IN','India','+91'),(89,'ID','Indonesia','+62'),(90,'IQ','Iraq','+964'),(91,'IE','Ireland','+353'),(92,'IL','Israel','+972'),(93,'IT','Italy','+39'),(94,'JM','Jamaica','+1 876'),(95,'JP','Japan','+81'),(96,'JO','Jordan','+962'),(97,'KZ','Kazakhstan','+7 7'),(98,'KE','Kenya','+254'),(99,'KI','Kiribati','+686'),(100,'KW','Kuwait','+965'),(101,'KG','Kyrgyzstan','+996'),(102,'LV','Latvia','+371'),(103,'LB','Lebanon','+961'),(104,'LS','Lesotho','+266'),(105,'LR','Liberia','+231'),(106,'LI','Liechtenstein','+423'),(107,'LT','Lithuania','+370'),(108,'LU','Luxembourg','+352'),(109,'MG','Madagascar','+261'),(110,'MW','Malawi','+265'),(111,'MY','Malaysia','+60'),(112,'MV','Maldives','+960'),(113,'ML','Mali','+223'),(114,'MT','Malta','+356'),(115,'MH','Marshall Islands','+692'),(116,'MQ','Martinique','+596'),(117,'MR','Mauritania','+222'),(118,'MU','Mauritius','+230'),(119,'YT','Mayotte','+262'),(120,'MX','Mexico','+52'),(121,'MC','Monaco','+377'),(122,'MN','Mongolia','+976'),(123,'ME','Montenegro','+382'),(124,'MS','Montserrat','+1664'),(125,'MA','Morocco','+212'),(126,'MM','Myanmar','+95'),(127,'NA','Namibia','+264'),(128,'NR','Nauru','+674'),(129,'NP','Nepal','+977'),(130,'NL','Netherlands','+31'),(131,'AN','Netherlands Antilles','+599'),(132,'NC','New Caledonia','+687'),(133,'NZ','New Zealand','+64'),(134,'NI','Nicaragua','+505'),(135,'NE','Niger','+227'),(136,'NG','Nigeria','+234'),(137,'NU','Niue','+683'),(138,'NF','Norfolk Island','+672'),(139,'MP','Northern Mariana Islands','+1 670'),(140,'NO','Norway','+47'),(141,'OM','Oman','+968'),(142,'PK','Pakistan','+92'),(143,'PW','Palau','+680'),(144,'PA','Panama','+507'),(145,'PG','Papua New Guinea','+675'),(146,'PY','Paraguay','+595'),(147,'PE','Peru','+51'),(148,'PH','Philippines','+63'),(149,'PL','Poland','+48'),(150,'PT','Portugal','+351'),(151,'PR','Puerto Rico','+1 939'),(152,'QA','Qatar','+974'),(153,'RO','Romania','+40'),(154,'RW','Rwanda','+250'),(155,'WS','Samoa','+685'),(156,'SM','San Marino','+378'),(157,'SA','Saudi Arabia','+966'),(158,'SN','Senegal','+221'),(159,'RS','Serbia','+381'),(160,'SC','Seychelles','+248'),(161,'SL','Sierra Leone','+232'),(162,'SG','Singapore','+65'),(163,'SK','Slovakia','+421'),(164,'SI','Slovenia','+386'),(165,'SB','Solomon Islands','+677'),(166,'ZA','South Africa','+27'),(167,'GS','South Georgia and the South Sandwich Islands','+500'),(168,'ES','Spain','+34'),(169,'LK','Sri Lanka','+94'),(170,'SD','Sudan','+249'),(171,'SR','Suriname','+597'),(172,'SZ','Swaziland','+268'),(173,'SE','Sweden','+46'),(174,'CH','Switzerland','+41'),(175,'TJ','Tajikistan','+992'),(176,'TH','Thailand','+66'),(177,'TG','Togo','+228'),(178,'TK','Tokelau','+690'),(179,'TO','Tonga','+676'),(180,'TT','Trinidad and Tobago','+1 868'),(181,'TN','Tunisia','+216'),(182,'TR','Turkey','+90'),(183,'TM','Turkmenistan','+993'),(184,'TC','Turks and Caicos Islands','+1 649'),(185,'TV','Tuvalu','+688'),(186,'UG','Uganda','+256'),(187,'UA','Ukraine','+380'),(188,'AE','United Arab Emirates','+971'),(189,'GB','United Kingdom','+44'),(190,'US','United States','+1'),(191,'UY','Uruguay','+598'),(192,'UZ','Uzbekistan','+998'),(193,'VU','Vanuatu','+678'),(194,'WF','Wallis and Futuna','+681'),(195,'YE','Yemen','+967'),(196,'ZM','Zambia','+260'),(197,'ZW','Zimbabwe','+263'),(198,'AX','land Islands',''),(199,'BO','Bolivia, Plurinational State of','+591'),(200,'BN','Brunei Darussalam','+673'),(201,'CC','Cocos (Keeling) Islands','+61'),(202,'CD','Congo, The Democratic Republic of the','+243'),(203,'CI','Cote d\'Ivoire','+225'),(204,'FK','Falkland Islands (Malvinas)','+500'),(205,'GG','Guernsey','+44'),(206,'VA','Holy See (Vatican City State)','+379'),(207,'HK','Hong Kong','+852'),(208,'IR','Iran, Islamic Republic of','+98'),(209,'IM','Isle of Man','+44'),(210,'JE','Jersey','+44'),(211,'KP','Korea, Democratic People\'s Republic of','+850'),(212,'KR','Korea, Republic of','+82'),(213,'LA','Lao People\'s Democratic Republic','+856'),(214,'LY','Libyan Arab Jamahiriya','+218'),(215,'MO','Macao','+853'),(216,'MK','Macedonia, The Former Yugoslav Republic of','+389'),(217,'FM','Micronesia, Federated States of','+691'),(218,'MD','Moldova, Republic of','+373'),(219,'MZ','Mozambique','+258'),(220,'PS','Palestinian Territory, Occupied','+970'),(221,'PN','Pitcairn','+872'),(222,'RE','Réunion','+262'),(223,'RU','Russia','+7'),(224,'BL','Saint Barthélemy','+590'),(225,'SH','Saint Helena, Ascension and Tristan Da Cunha','+290'),(226,'KN','Saint Kitts and Nevis','+1 869'),(227,'LC','Saint Lucia','+1 758'),(228,'MF','Saint Martin','+590'),(229,'PM','Saint Pierre and Miquelon','+508'),(230,'VC','Saint Vincent and the Grenadines','+1 784'),(231,'ST','Sao Tome and Principe','+239'),(232,'SO','Somalia','+252'),(233,'SJ','Svalbard and Jan Mayen','+47'),(234,'SY','Syrian Arab Republic','+963'),(235,'TW','Taiwan, Province of China','+886'),(236,'TZ','Tanzania, United Republic of','+255'),(237,'TL','Timor-Leste','+670'),(238,'VE','Venezuela, Bolivarian Republic of','+58'),(239,'VN','Viet Nam','+84'),(240,'VG','Virgin Islands, British','+1 284'),(241,'VI','Virgin Islands, U.S.','+1 340');
/*!40000 ALTER TABLE `[[dbprefix]]tfa_country_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]tfa_user_config`
--

DROP TABLE IF EXISTS `[[dbprefix]]tfa_user_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]tfa_user_config` (
  `config_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID',
  `user_id` int unsigned NOT NULL COMMENT 'User ID',
  `encoded_providers` text COMMENT 'Encoded providers list',
  `encoded_config` text COMMENT 'Encoded providers configuration',
  `default_provider` varchar(255) DEFAULT NULL COMMENT 'Default provider',
  PRIMARY KEY (`config_id`),
  KEY `[[DBPREFIX]]TFA_USER_CONFIG_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` (`user_id`),
  CONSTRAINT `[[DBPREFIX]]TFA_USER_CONFIG_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='tfa_user_config';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]tfa_user_config`
--

LOCK TABLES `[[dbprefix]]tfa_user_config` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]tfa_user_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]tfa_user_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]theme`
--

DROP TABLE IF EXISTS `[[dbprefix]]theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]theme` (
  `theme_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier',
  `parent_id` int DEFAULT NULL COMMENT 'Parent ID',
  `theme_path` varchar(255) DEFAULT NULL COMMENT 'Theme Path',
  `theme_title` varchar(255) NOT NULL COMMENT 'Theme Title',
  `preview_image` varchar(255) DEFAULT NULL COMMENT 'Preview Image',
  `is_featured` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Theme Featured',
  `area` varchar(255) NOT NULL COMMENT 'Theme Area',
  `type` smallint NOT NULL COMMENT 'Theme type: 0:physical, 1:virtual, 2:staging',
  `code` text COMMENT 'Full theme code, including package',
  PRIMARY KEY (`theme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Core theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]theme`
--

LOCK TABLES `[[dbprefix]]theme` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]theme` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]theme` VALUES (1,NULL,'Magento/blank','Magento Blank','preview_image_66c6fb2ce59d9.jpeg',0,'frontend',0,'Magento/blank'),(2,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(3,1,'Magento/luma','Magento Luma','preview_image_66c6fb2d0b142.jpeg',0,'frontend',0,'Magento/luma');
/*!40000 ALTER TABLE `[[dbprefix]]theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]theme_file`
--

DROP TABLE IF EXISTS `[[dbprefix]]theme_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]theme_file` (
  `theme_files_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier',
  `theme_id` int unsigned NOT NULL COMMENT 'Theme ID',
  `file_path` varchar(255) DEFAULT NULL COMMENT 'Relative path to file',
  `file_type` varchar(32) NOT NULL COMMENT 'File Type',
  `content` longtext NOT NULL COMMENT 'File Content',
  `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Temporary File',
  PRIMARY KEY (`theme_files_id`),
  KEY `[[DBPREFIX]]THEME_FILE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `[[DBPREFIX]]THEME_FILE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Core theme files';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]theme_file`
--

LOCK TABLES `[[dbprefix]]theme_file` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]theme_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]theme_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]translation`
--

DROP TABLE IF EXISTS `[[dbprefix]]translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]translation` (
  `key_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation',
  `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `translate` varchar(255) DEFAULT NULL COMMENT 'Translate',
  `locale` varchar(20) NOT NULL DEFAULT 'en_US' COMMENT 'Locale',
  `crc_string` bigint NOT NULL DEFAULT '1591228201' COMMENT 'Translation String CRC32 Hash',
  PRIMARY KEY (`key_id`),
  UNIQUE KEY `[[DBPREFIX]]TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`),
  CONSTRAINT `[[DBPREFIX]]TRANSLATION_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Translations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]translation`
--

LOCK TABLES `[[dbprefix]]translation` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]ui_bookmark`
--

DROP TABLE IF EXISTS `[[dbprefix]]ui_bookmark`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]ui_bookmark` (
  `bookmark_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier',
  `user_id` int unsigned NOT NULL COMMENT 'User ID',
  `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace',
  `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier',
  `current` smallint NOT NULL COMMENT 'Mark current bookmark per user and identifier',
  `title` varchar(255) DEFAULT NULL COMMENT 'Bookmark title',
  `config` longtext COMMENT 'Bookmark config',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bookmark created at',
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Bookmark updated at',
  PRIMARY KEY (`bookmark_id`),
  KEY `[[DBPREFIX]]UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`),
  CONSTRAINT `[[DBPREFIX]]UI_BOOKMARK_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Bookmark';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]ui_bookmark`
--

LOCK TABLES `[[dbprefix]]ui_bookmark` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]ui_bookmark` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]ui_bookmark` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]url_rewrite`
--

DROP TABLE IF EXISTS `[[dbprefix]]url_rewrite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]url_rewrite` (
  `url_rewrite_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code',
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `request_path` varchar(255) DEFAULT NULL COMMENT 'Request Path',
  `target_path` varchar(255) DEFAULT NULL COMMENT 'Target Path',
  `redirect_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Redirect Type',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description',
  `is_autogenerated` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is rewrite generated automatically flag',
  `metadata` varchar(255) DEFAULT NULL COMMENT 'Meta data for url rewrite',
  PRIMARY KEY (`url_rewrite_id`),
  UNIQUE KEY `[[DBPREFIX]]URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`),
  KEY `[[DBPREFIX]]URL_REWRITE_TARGET_PATH` (`target_path`),
  KEY `[[DBPREFIX]]URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`),
  KEY `[[DBPREFIX]]URL_REWRITE_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]URL_REWRITE_IS_AUTOGENERATED_METADATA` (`is_autogenerated`,`metadata`)
) ENGINE=InnoDB AUTO_INCREMENT=327 DEFAULT CHARSET=utf8mb3 COMMENT='Url Rewrites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]url_rewrite`
--

LOCK TABLES `[[dbprefix]]url_rewrite` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]url_rewrite` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]url_rewrite` VALUES (1,'cms-page',1,'no-route','cms/page/view/page_id/1',0,1,NULL,1,NULL),(2,'cms-page',2,'home','cms/page/view/page_id/2',0,1,NULL,1,NULL),(3,'cms-page',3,'enable-cookies','cms/page/view/page_id/3',0,1,NULL,1,NULL),(4,'cms-page',4,'privacy-policy-cookie-restriction-mode','cms/page/view/page_id/4',0,1,NULL,1,NULL),(5,'category',3,'gear.html','catalog/category/view/id/3',0,1,NULL,1,NULL),(6,'category',4,'gear/bags.html','catalog/category/view/id/4',0,1,NULL,1,NULL),(7,'category',5,'gear/fitness-equipment.html','catalog/category/view/id/5',0,1,NULL,1,NULL),(8,'category',6,'gear/watches.html','catalog/category/view/id/6',0,1,NULL,1,NULL),(9,'category',7,'collections.html','catalog/category/view/id/7',0,1,NULL,1,NULL),(10,'category',8,'collections/yoga-new.html','catalog/category/view/id/8',0,1,NULL,1,NULL),(11,'product',1,'joust-duffle-bag.html','catalog/product/view/id/1',0,1,NULL,1,NULL),(12,'product',1,'gear/joust-duffle-bag.html','catalog/product/view/id/1/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(13,'product',1,'gear/bags/joust-duffle-bag.html','catalog/product/view/id/1/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(14,'product',2,'strive-shoulder-pack.html','catalog/product/view/id/2',0,1,NULL,1,NULL),(15,'product',2,'gear/strive-shoulder-pack.html','catalog/product/view/id/2/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(16,'product',2,'collections/strive-shoulder-pack.html','catalog/product/view/id/2/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(17,'product',2,'gear/bags/strive-shoulder-pack.html','catalog/product/view/id/2/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(18,'product',3,'crown-summit-backpack.html','catalog/product/view/id/3',0,1,NULL,1,NULL),(19,'product',3,'gear/crown-summit-backpack.html','catalog/product/view/id/3/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(20,'product',3,'gear/bags/crown-summit-backpack.html','catalog/product/view/id/3/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(21,'product',4,'wayfarer-messenger-bag.html','catalog/product/view/id/4',0,1,NULL,1,NULL),(22,'product',4,'gear/wayfarer-messenger-bag.html','catalog/product/view/id/4/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(23,'product',4,'collections/wayfarer-messenger-bag.html','catalog/product/view/id/4/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(24,'product',4,'gear/bags/wayfarer-messenger-bag.html','catalog/product/view/id/4/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(25,'product',4,'collections/yoga-new/wayfarer-messenger-bag.html','catalog/product/view/id/4/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(26,'product',5,'rival-field-messenger.html','catalog/product/view/id/5',0,1,NULL,1,NULL),(27,'product',5,'gear/rival-field-messenger.html','catalog/product/view/id/5/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(28,'product',5,'collections/rival-field-messenger.html','catalog/product/view/id/5/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(29,'product',5,'gear/bags/rival-field-messenger.html','catalog/product/view/id/5/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(30,'product',5,'collections/yoga-new/rival-field-messenger.html','catalog/product/view/id/5/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(31,'product',6,'fusion-backpack.html','catalog/product/view/id/6',0,1,NULL,1,NULL),(32,'product',6,'gear/fusion-backpack.html','catalog/product/view/id/6/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(33,'product',6,'gear/bags/fusion-backpack.html','catalog/product/view/id/6/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(34,'product',7,'impulse-duffle.html','catalog/product/view/id/7',0,1,NULL,1,NULL),(35,'product',7,'gear/impulse-duffle.html','catalog/product/view/id/7/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(36,'product',7,'gear/bags/impulse-duffle.html','catalog/product/view/id/7/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(37,'product',8,'voyage-yoga-bag.html','catalog/product/view/id/8',0,1,NULL,1,NULL),(38,'product',8,'gear/voyage-yoga-bag.html','catalog/product/view/id/8/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(39,'product',8,'gear/bags/voyage-yoga-bag.html','catalog/product/view/id/8/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(40,'product',9,'compete-track-tote.html','catalog/product/view/id/9',0,1,NULL,1,NULL),(41,'product',9,'gear/compete-track-tote.html','catalog/product/view/id/9/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(42,'product',9,'gear/bags/compete-track-tote.html','catalog/product/view/id/9/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(43,'product',10,'savvy-shoulder-tote.html','catalog/product/view/id/10',0,1,NULL,1,NULL),(44,'product',10,'gear/savvy-shoulder-tote.html','catalog/product/view/id/10/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(45,'product',10,'collections/savvy-shoulder-tote.html','catalog/product/view/id/10/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(46,'product',10,'gear/bags/savvy-shoulder-tote.html','catalog/product/view/id/10/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(47,'product',11,'endeavor-daytrip-backpack.html','catalog/product/view/id/11',0,1,NULL,1,NULL),(48,'product',11,'gear/endeavor-daytrip-backpack.html','catalog/product/view/id/11/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(49,'product',11,'collections/endeavor-daytrip-backpack.html','catalog/product/view/id/11/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(50,'product',11,'gear/bags/endeavor-daytrip-backpack.html','catalog/product/view/id/11/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(51,'product',12,'driven-backpack.html','catalog/product/view/id/12',0,1,NULL,1,NULL),(52,'product',12,'gear/driven-backpack.html','catalog/product/view/id/12/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(53,'product',12,'gear/bags/driven-backpack.html','catalog/product/view/id/12/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(54,'product',13,'overnight-duffle.html','catalog/product/view/id/13',0,1,NULL,1,NULL),(55,'product',13,'gear/overnight-duffle.html','catalog/product/view/id/13/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(56,'product',13,'collections/overnight-duffle.html','catalog/product/view/id/13/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(57,'product',13,'gear/bags/overnight-duffle.html','catalog/product/view/id/13/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(58,'product',13,'collections/yoga-new/overnight-duffle.html','catalog/product/view/id/13/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(59,'product',14,'push-it-messenger-bag.html','catalog/product/view/id/14',0,1,NULL,1,NULL),(60,'product',14,'gear/push-it-messenger-bag.html','catalog/product/view/id/14/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(61,'product',14,'collections/push-it-messenger-bag.html','catalog/product/view/id/14/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(62,'product',14,'gear/bags/push-it-messenger-bag.html','catalog/product/view/id/14/category/4',0,1,NULL,1,'{\"category_id\":\"4\"}'),(63,'product',15,'affirm-water-bottle.html','catalog/product/view/id/15',0,1,NULL,1,NULL),(64,'product',15,'gear/affirm-water-bottle.html','catalog/product/view/id/15/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(65,'product',15,'gear/fitness-equipment/affirm-water-bottle.html','catalog/product/view/id/15/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(66,'product',16,'dual-handle-cardio-ball.html','catalog/product/view/id/16',0,1,NULL,1,NULL),(67,'product',16,'gear/dual-handle-cardio-ball.html','catalog/product/view/id/16/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(68,'product',16,'collections/dual-handle-cardio-ball.html','catalog/product/view/id/16/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(69,'product',16,'gear/fitness-equipment/dual-handle-cardio-ball.html','catalog/product/view/id/16/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(70,'product',17,'zing-jump-rope.html','catalog/product/view/id/17',0,1,NULL,1,NULL),(71,'product',17,'gear/zing-jump-rope.html','catalog/product/view/id/17/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(72,'product',17,'gear/fitness-equipment/zing-jump-rope.html','catalog/product/view/id/17/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(73,'product',18,'pursuit-lumaflex-trade-tone-band.html','catalog/product/view/id/18',0,1,NULL,1,NULL),(74,'product',18,'gear/pursuit-lumaflex-trade-tone-band.html','catalog/product/view/id/18/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(75,'product',18,'gear/fitness-equipment/pursuit-lumaflex-trade-tone-band.html','catalog/product/view/id/18/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(76,'product',19,'go-get-r-pushup-grips.html','catalog/product/view/id/19',0,1,NULL,1,NULL),(77,'product',19,'gear/go-get-r-pushup-grips.html','catalog/product/view/id/19/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(78,'product',19,'collections/go-get-r-pushup-grips.html','catalog/product/view/id/19/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(79,'product',19,'gear/fitness-equipment/go-get-r-pushup-grips.html','catalog/product/view/id/19/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(80,'product',19,'collections/yoga-new/go-get-r-pushup-grips.html','catalog/product/view/id/19/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(81,'product',20,'quest-lumaflex-trade-band.html','catalog/product/view/id/20',0,1,NULL,1,NULL),(82,'product',20,'gear/quest-lumaflex-trade-band.html','catalog/product/view/id/20/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(83,'product',20,'gear/fitness-equipment/quest-lumaflex-trade-band.html','catalog/product/view/id/20/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(84,'product',21,'sprite-foam-yoga-brick.html','catalog/product/view/id/21',0,1,NULL,1,NULL),(85,'product',21,'gear/sprite-foam-yoga-brick.html','catalog/product/view/id/21/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(86,'product',21,'gear/fitness-equipment/sprite-foam-yoga-brick.html','catalog/product/view/id/21/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(87,'product',22,'sprite-foam-roller.html','catalog/product/view/id/22',0,1,NULL,1,NULL),(88,'product',22,'gear/sprite-foam-roller.html','catalog/product/view/id/22/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(89,'product',22,'gear/fitness-equipment/sprite-foam-roller.html','catalog/product/view/id/22/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(90,'product',23,'harmony-lumaflex-trade-strength-band-kit.html','catalog/product/view/id/23',0,1,NULL,1,NULL),(91,'product',23,'gear/harmony-lumaflex-trade-strength-band-kit.html','catalog/product/view/id/23/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(92,'product',23,'gear/fitness-equipment/harmony-lumaflex-trade-strength-band-kit.html','catalog/product/view/id/23/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(93,'product',36,'aim-analog-watch.html','catalog/product/view/id/36',0,1,NULL,1,NULL),(94,'product',36,'gear/aim-analog-watch.html','catalog/product/view/id/36/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(95,'product',36,'gear/watches/aim-analog-watch.html','catalog/product/view/id/36/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(96,'product',37,'endurance-watch.html','catalog/product/view/id/37',0,1,NULL,1,NULL),(97,'product',37,'gear/endurance-watch.html','catalog/product/view/id/37/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(98,'product',37,'gear/watches/endurance-watch.html','catalog/product/view/id/37/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(99,'product',38,'summit-watch.html','catalog/product/view/id/38',0,1,NULL,1,NULL),(100,'product',38,'gear/summit-watch.html','catalog/product/view/id/38/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(101,'product',38,'collections/summit-watch.html','catalog/product/view/id/38/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(102,'product',38,'gear/watches/summit-watch.html','catalog/product/view/id/38/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(103,'product',38,'collections/yoga-new/summit-watch.html','catalog/product/view/id/38/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(104,'product',39,'cruise-dual-analog-watch.html','catalog/product/view/id/39',0,1,NULL,1,NULL),(105,'product',39,'gear/cruise-dual-analog-watch.html','catalog/product/view/id/39/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(106,'product',39,'collections/cruise-dual-analog-watch.html','catalog/product/view/id/39/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(107,'product',39,'gear/watches/cruise-dual-analog-watch.html','catalog/product/view/id/39/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(108,'product',39,'collections/yoga-new/cruise-dual-analog-watch.html','catalog/product/view/id/39/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(109,'product',40,'dash-digital-watch.html','catalog/product/view/id/40',0,1,NULL,1,NULL),(110,'product',40,'gear/dash-digital-watch.html','catalog/product/view/id/40/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(111,'product',40,'collections/dash-digital-watch.html','catalog/product/view/id/40/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(112,'product',40,'gear/watches/dash-digital-watch.html','catalog/product/view/id/40/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(113,'product',40,'collections/yoga-new/dash-digital-watch.html','catalog/product/view/id/40/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(114,'product',41,'luma-analog-watch.html','catalog/product/view/id/41',0,1,NULL,1,NULL),(115,'product',41,'gear/luma-analog-watch.html','catalog/product/view/id/41/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(116,'product',41,'gear/watches/luma-analog-watch.html','catalog/product/view/id/41/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(117,'product',42,'bolo-sport-watch.html','catalog/product/view/id/42',0,1,NULL,1,NULL),(118,'product',42,'gear/bolo-sport-watch.html','catalog/product/view/id/42/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(119,'product',42,'gear/watches/bolo-sport-watch.html','catalog/product/view/id/42/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(120,'product',43,'clamber-watch.html','catalog/product/view/id/43',0,1,NULL,1,NULL),(121,'product',43,'gear/clamber-watch.html','catalog/product/view/id/43/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(122,'product',43,'gear/watches/clamber-watch.html','catalog/product/view/id/43/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(123,'product',44,'didi-sport-watch.html','catalog/product/view/id/44',0,1,NULL,1,NULL),(124,'product',44,'gear/didi-sport-watch.html','catalog/product/view/id/44/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(125,'product',44,'collections/didi-sport-watch.html','catalog/product/view/id/44/category/7',0,1,NULL,1,'{\"category_id\":\"7\"}'),(126,'product',44,'gear/watches/didi-sport-watch.html','catalog/product/view/id/44/category/6',0,1,NULL,1,'{\"category_id\":\"6\"}'),(127,'product',44,'collections/yoga-new/didi-sport-watch.html','catalog/product/view/id/44/category/8',0,1,NULL,1,'{\"category_id\":\"8\"}'),(128,'product',45,'sprite-yoga-companion-kit.html','catalog/product/view/id/45',0,1,NULL,1,NULL),(129,'product',45,'gear/sprite-yoga-companion-kit.html','catalog/product/view/id/45/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(130,'product',45,'gear/fitness-equipment/sprite-yoga-companion-kit.html','catalog/product/view/id/45/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(131,'product',46,'set-of-sprite-yoga-straps.html','catalog/product/view/id/46',0,1,NULL,1,NULL),(132,'product',46,'gear/set-of-sprite-yoga-straps.html','catalog/product/view/id/46/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(133,'product',46,'gear/fitness-equipment/set-of-sprite-yoga-straps.html','catalog/product/view/id/46/category/5',0,1,NULL,1,'{\"category_id\":\"5\"}'),(134,'category',9,'training.html','catalog/category/view/id/9',0,1,NULL,1,NULL),(135,'category',10,'training/training-video.html','catalog/category/view/id/10',0,1,NULL,1,NULL),(136,'category',11,'men.html','catalog/category/view/id/11',0,1,NULL,1,NULL),(137,'category',12,'men/tops-men.html','catalog/category/view/id/12',0,1,NULL,1,NULL),(138,'category',13,'men/bottoms-men.html','catalog/category/view/id/13',0,1,NULL,1,NULL),(139,'category',14,'men/tops-men/jackets-men.html','catalog/category/view/id/14',0,1,NULL,1,NULL),(140,'category',15,'men/tops-men/hoodies-and-sweatshirts-men.html','catalog/category/view/id/15',0,1,NULL,1,NULL),(141,'category',16,'men/tops-men/tees-men.html','catalog/category/view/id/16',0,1,NULL,1,NULL),(142,'category',17,'men/tops-men/tanks-men.html','catalog/category/view/id/17',0,1,NULL,1,NULL),(143,'category',18,'men/bottoms-men/pants-men.html','catalog/category/view/id/18',0,1,NULL,1,NULL),(144,'category',19,'men/bottoms-men/shorts-men.html','catalog/category/view/id/19',0,1,NULL,1,NULL),(145,'category',20,'women.html','catalog/category/view/id/20',0,1,NULL,1,NULL),(146,'category',21,'women/tops-women.html','catalog/category/view/id/21',0,1,NULL,1,NULL),(147,'category',22,'women/bottoms-women.html','catalog/category/view/id/22',0,1,NULL,1,NULL),(148,'category',23,'women/tops-women/jackets-women.html','catalog/category/view/id/23',0,1,NULL,1,NULL),(149,'category',24,'women/tops-women/hoodies-and-sweatshirts-women.html','catalog/category/view/id/24',0,1,NULL,1,NULL),(150,'category',25,'women/tops-women/tees-women.html','catalog/category/view/id/25',0,1,NULL,1,NULL),(151,'category',26,'women/tops-women/tanks-women.html','catalog/category/view/id/26',0,1,NULL,1,NULL),(152,'category',27,'women/bottoms-women/pants-women.html','catalog/category/view/id/27',0,1,NULL,1,NULL),(153,'category',28,'women/bottoms-women/shorts-women.html','catalog/category/view/id/28',0,1,NULL,1,NULL),(154,'category',29,'promotions.html','catalog/category/view/id/29',0,1,NULL,1,NULL),(155,'category',30,'promotions/women-sale.html','catalog/category/view/id/30',0,1,NULL,1,NULL),(156,'category',31,'promotions/men-sale.html','catalog/category/view/id/31',0,1,NULL,1,NULL),(157,'category',32,'promotions/pants-all.html','catalog/category/view/id/32',0,1,NULL,1,NULL),(158,'category',33,'promotions/tees-all.html','catalog/category/view/id/33',0,1,NULL,1,NULL),(159,'category',34,'collections/erin-recommends.html','catalog/category/view/id/34',0,1,NULL,1,NULL),(160,'category',35,'collections/performance-fabrics.html','catalog/category/view/id/35',0,1,NULL,1,NULL),(161,'category',36,'collections/eco-friendly.html','catalog/category/view/id/36',0,1,NULL,1,NULL),(162,'product',62,'chaz-kangeroo-hoodie.html','catalog/product/view/id/62',0,1,NULL,1,NULL),(163,'product',78,'teton-pullover-hoodie.html','catalog/product/view/id/78',0,1,NULL,1,NULL),(164,'product',94,'bruno-compete-hoodie.html','catalog/product/view/id/94',0,1,NULL,1,NULL),(165,'product',110,'frankie-sweatshirt.html','catalog/product/view/id/110',0,1,NULL,1,NULL),(166,'product',126,'hollister-backyard-sweatshirt.html','catalog/product/view/id/126',0,1,NULL,1,NULL),(167,'product',142,'stark-fundamental-hoodie.html','catalog/product/view/id/142',0,1,NULL,1,NULL),(168,'product',158,'hero-hoodie.html','catalog/product/view/id/158',0,1,NULL,1,NULL),(169,'product',174,'oslo-trek-hoodie.html','catalog/product/view/id/174',0,1,NULL,1,NULL),(170,'product',190,'abominable-hoodie.html','catalog/product/view/id/190',0,1,NULL,1,NULL),(171,'product',206,'mach-street-sweatshirt.html','catalog/product/view/id/206',0,1,NULL,1,NULL),(172,'product',222,'grayson-crewneck-sweatshirt.html','catalog/product/view/id/222',0,1,NULL,1,NULL),(173,'product',238,'ajax-full-zip-sweatshirt.html','catalog/product/view/id/238',0,1,NULL,1,NULL),(174,'product',254,'marco-lightweight-active-hoodie.html','catalog/product/view/id/254',0,1,NULL,1,NULL),(175,'product',270,'beaumont-summit-kit.html','catalog/product/view/id/270',0,1,NULL,1,NULL),(176,'product',286,'hyperion-elements-jacket.html','catalog/product/view/id/286',0,1,NULL,1,NULL),(177,'product',302,'kenobi-trail-jacket.html','catalog/product/view/id/302',0,1,NULL,1,NULL),(178,'product',318,'orion-two-tone-fitted-jacket.html','catalog/product/view/id/318',0,1,NULL,1,NULL),(179,'product',334,'lando-gym-jacket.html','catalog/product/view/id/334',0,1,NULL,1,NULL),(180,'product',350,'taurus-elements-shell.html','catalog/product/view/id/350',0,1,NULL,1,NULL),(181,'product',366,'mars-heattech-trade-pullover.html','catalog/product/view/id/366',0,1,NULL,1,NULL),(182,'product',382,'typhon-performance-fleece-lined-jacket.html','catalog/product/view/id/382',0,1,NULL,1,NULL),(183,'product',398,'jupiter-all-weather-trainer.html','catalog/product/view/id/398',0,1,NULL,1,NULL),(184,'product',414,'montana-wind-jacket.html','catalog/product/view/id/414',0,1,NULL,1,NULL),(185,'product',430,'proteus-fitness-jackshirt.html','catalog/product/view/id/430',0,1,NULL,1,NULL),(186,'product',446,'gobi-heattec-reg-tee.html','catalog/product/view/id/446',0,1,NULL,1,NULL),(187,'product',462,'helios-evercool-trade-tee.html','catalog/product/view/id/462',0,1,NULL,1,NULL),(188,'product',478,'ryker-lumatech-trade-tee-crew-neck.html','catalog/product/view/id/478',0,1,NULL,1,NULL),(189,'product',494,'atomic-endurance-running-tee-v-neck.html','catalog/product/view/id/494',0,1,NULL,1,NULL),(190,'product',510,'atomic-endurance-running-tee-crew-neck.html','catalog/product/view/id/510',0,1,NULL,1,NULL),(191,'product',526,'balboa-persistence-tee.html','catalog/product/view/id/526',0,1,NULL,1,NULL),(192,'product',542,'zoltan-gym-tee.html','catalog/product/view/id/542',0,1,NULL,1,NULL),(193,'product',558,'aero-daily-fitness-tee.html','catalog/product/view/id/558',0,1,NULL,1,NULL),(194,'product',574,'ryker-lumatech-trade-tee-v-neck.html','catalog/product/view/id/574',0,1,NULL,1,NULL),(195,'product',590,'logan-heattec-reg-tee.html','catalog/product/view/id/590',0,1,NULL,1,NULL),(196,'product',606,'deion-long-sleeve-evercool-trade-tee.html','catalog/product/view/id/606',0,1,NULL,1,NULL),(197,'product',622,'strike-endurance-tee.html','catalog/product/view/id/622',0,1,NULL,1,NULL),(198,'product',638,'erikssen-cooltech-trade-fitness-tank.html','catalog/product/view/id/638',0,1,NULL,1,NULL),(199,'product',654,'tristan-endurance-tank.html','catalog/product/view/id/654',0,1,NULL,1,NULL),(200,'product',670,'primo-endurance-tank.html','catalog/product/view/id/670',0,1,NULL,1,NULL),(201,'product',676,'helios-endurance-tank.html','catalog/product/view/id/676',0,1,NULL,1,NULL),(202,'product',682,'rocco-gym-tank.html','catalog/product/view/id/682',0,1,NULL,1,NULL),(203,'product',688,'vulcan-weightlifting-tank.html','catalog/product/view/id/688',0,1,NULL,1,NULL),(204,'product',694,'argus-all-weather-tank.html','catalog/product/view/id/694',0,1,NULL,1,NULL),(205,'product',700,'sparta-gym-tank.html','catalog/product/view/id/700',0,1,NULL,1,NULL),(206,'product',706,'sinbad-fitness-tank.html','catalog/product/view/id/706',0,1,NULL,1,NULL),(207,'product',712,'tiberius-gym-tank.html','catalog/product/view/id/712',0,1,NULL,1,NULL),(208,'product',718,'atlas-fitness-tank.html','catalog/product/view/id/718',0,1,NULL,1,NULL),(209,'product',724,'cassius-sparring-tank.html','catalog/product/view/id/724',0,1,NULL,1,NULL),(210,'product',737,'caesar-warm-up-pant.html','catalog/product/view/id/737',0,1,NULL,1,NULL),(211,'product',750,'viktor-lumatech-trade-pant.html','catalog/product/view/id/750',0,1,NULL,1,NULL),(212,'product',763,'geo-insulated-jogging-pant.html','catalog/product/view/id/763',0,1,NULL,1,NULL),(213,'product',776,'supernova-sport-pant.html','catalog/product/view/id/776',0,1,NULL,1,NULL),(214,'product',789,'kratos-gym-pant.html','catalog/product/view/id/789',0,1,NULL,1,NULL),(215,'product',802,'mithra-warmup-pant.html','catalog/product/view/id/802',0,1,NULL,1,NULL),(216,'product',815,'thorpe-track-pant.html','catalog/product/view/id/815',0,1,NULL,1,NULL),(217,'product',828,'zeppelin-yoga-pant.html','catalog/product/view/id/828',0,1,NULL,1,NULL),(218,'product',841,'livingston-all-purpose-tight.html','catalog/product/view/id/841',0,1,NULL,1,NULL),(219,'product',854,'orestes-yoga-pant.html','catalog/product/view/id/854',0,1,NULL,1,NULL),(220,'product',867,'aether-gym-pant.html','catalog/product/view/id/867',0,1,NULL,1,NULL),(221,'product',880,'cronus-yoga-pant.html','catalog/product/view/id/880',0,1,NULL,1,NULL),(222,'product',893,'cobalt-cooltech-trade-fitness-short.html','catalog/product/view/id/893',0,1,NULL,1,NULL),(223,'product',898,'apollo-running-short.html','catalog/product/view/id/898',0,1,NULL,1,NULL),(224,'product',911,'meteor-workout-short.html','catalog/product/view/id/911',0,1,NULL,1,NULL),(225,'product',924,'torque-power-short.html','catalog/product/view/id/924',0,1,NULL,1,NULL),(226,'product',937,'hawkeye-yoga-short.html','catalog/product/view/id/937',0,1,NULL,1,NULL),(227,'product',950,'lono-yoga-short.html','catalog/product/view/id/950',0,1,NULL,1,NULL),(228,'product',963,'rapha-sports-short.html','catalog/product/view/id/963',0,1,NULL,1,NULL),(229,'product',976,'orestes-fitness-short.html','catalog/product/view/id/976',0,1,NULL,1,NULL),(230,'product',989,'troy-yoga-short.html','catalog/product/view/id/989',0,1,NULL,1,NULL),(231,'product',1002,'sol-active-short.html','catalog/product/view/id/1002',0,1,NULL,1,NULL),(232,'product',1015,'arcadio-gym-short.html','catalog/product/view/id/1015',0,1,NULL,1,NULL),(233,'product',1028,'pierce-gym-short.html','catalog/product/view/id/1028',0,1,NULL,1,NULL),(234,'product',1044,'mona-pullover-hoodlie.html','catalog/product/view/id/1044',0,1,NULL,1,NULL),(235,'product',1060,'hera-pullover-hoodie.html','catalog/product/view/id/1060',0,1,NULL,1,NULL),(236,'product',1076,'autumn-pullie.html','catalog/product/view/id/1076',0,1,NULL,1,NULL),(237,'product',1092,'miko-pullover-hoodie.html','catalog/product/view/id/1092',0,1,NULL,1,NULL),(238,'product',1108,'selene-yoga-hoodie.html','catalog/product/view/id/1108',0,1,NULL,1,NULL),(239,'product',1114,'daphne-full-zip-hoodie.html','catalog/product/view/id/1114',0,1,NULL,1,NULL),(240,'product',1130,'phoebe-zipper-sweatshirt.html','catalog/product/view/id/1130',0,1,NULL,1,NULL),(241,'product',1146,'cassia-funnel-sweatshirt.html','catalog/product/view/id/1146',0,1,NULL,1,NULL),(242,'product',1162,'ariel-roll-sleeve-sweatshirt.html','catalog/product/view/id/1162',0,1,NULL,1,NULL),(243,'product',1178,'helena-hooded-fleece.html','catalog/product/view/id/1178',0,1,NULL,1,NULL),(244,'product',1194,'eos-v-neck-hoodie.html','catalog/product/view/id/1194',0,1,NULL,1,NULL),(245,'product',1210,'circe-hooded-ice-fleece.html','catalog/product/view/id/1210',0,1,NULL,1,NULL),(246,'product',1220,'stellar-solar-jacket.html','catalog/product/view/id/1220',0,1,NULL,1,NULL),(247,'product',1236,'josie-yoga-jacket.html','catalog/product/view/id/1236',0,1,NULL,1,NULL),(248,'product',1252,'augusta-pullover-jacket.html','catalog/product/view/id/1252',0,1,NULL,1,NULL),(249,'product',1268,'ingrid-running-jacket.html','catalog/product/view/id/1268',0,1,NULL,1,NULL),(250,'product',1284,'riona-full-zip-jacket.html','catalog/product/view/id/1284',0,1,NULL,1,NULL),(251,'product',1300,'inez-full-zip-jacket.html','catalog/product/view/id/1300',0,1,NULL,1,NULL),(252,'product',1316,'adrienne-trek-jacket.html','catalog/product/view/id/1316',0,1,NULL,1,NULL),(253,'product',1332,'jade-yoga-jacket.html','catalog/product/view/id/1332',0,1,NULL,1,NULL),(254,'product',1348,'nadia-elements-shell.html','catalog/product/view/id/1348',0,1,NULL,1,NULL),(255,'product',1364,'neve-studio-dance-jacket.html','catalog/product/view/id/1364',0,1,NULL,1,NULL),(256,'product',1380,'juno-jacket.html','catalog/product/view/id/1380',0,1,NULL,1,NULL),(257,'product',1396,'olivia-1-4-zip-light-jacket.html','catalog/product/view/id/1396',0,1,NULL,1,NULL),(258,'product',1412,'gabrielle-micro-sleeve-top.html','catalog/product/view/id/1412',0,1,NULL,1,NULL),(259,'product',1428,'iris-workout-top.html','catalog/product/view/id/1428',0,1,NULL,1,NULL),(260,'product',1444,'layla-tee.html','catalog/product/view/id/1444',0,1,NULL,1,NULL),(261,'product',1460,'elisa-evercool-trade-tee.html','catalog/product/view/id/1460',0,1,NULL,1,NULL),(262,'product',1476,'juliana-short-sleeve-tee.html','catalog/product/view/id/1476',0,1,NULL,1,NULL),(263,'product',1492,'minerva-lumatech-trade-v-tee.html','catalog/product/view/id/1492',0,1,NULL,1,NULL),(264,'product',1508,'tiffany-fitness-tee.html','catalog/product/view/id/1508',0,1,NULL,1,NULL),(265,'product',1524,'karissa-v-neck-tee.html','catalog/product/view/id/1524',0,1,NULL,1,NULL),(266,'product',1540,'diva-gym-tee.html','catalog/product/view/id/1540',0,1,NULL,1,NULL),(267,'product',1556,'radiant-tee.html','catalog/product/view/id/1556',0,1,NULL,1,NULL),(268,'product',1572,'gwyn-endurance-tee.html','catalog/product/view/id/1572',0,1,NULL,1,NULL),(269,'product',1588,'desiree-fitness-tee.html','catalog/product/view/id/1588',0,1,NULL,1,NULL),(270,'product',1604,'electra-bra-top.html','catalog/product/view/id/1604',0,1,NULL,1,NULL),(271,'product',1620,'erica-evercool-sports-bra.html','catalog/product/view/id/1620',0,1,NULL,1,NULL),(272,'product',1636,'celeste-sports-bra.html','catalog/product/view/id/1636',0,1,NULL,1,NULL),(273,'product',1652,'prima-compete-bra-top.html','catalog/product/view/id/1652',0,1,NULL,1,NULL),(274,'product',1668,'lucia-cross-fit-bra.html','catalog/product/view/id/1668',0,1,NULL,1,NULL),(275,'product',1684,'bella-tank.html','catalog/product/view/id/1684',0,1,NULL,1,NULL),(276,'product',1700,'zoe-tank.html','catalog/product/view/id/1700',0,1,NULL,1,NULL),(277,'product',1716,'nora-practice-tank.html','catalog/product/view/id/1716',0,1,NULL,1,NULL),(278,'product',1732,'nona-fitness-tank.html','catalog/product/view/id/1732',0,1,NULL,1,NULL),(279,'product',1748,'leah-yoga-top.html','catalog/product/view/id/1748',0,1,NULL,1,NULL),(280,'product',1764,'chloe-compete-tank.html','catalog/product/view/id/1764',0,1,NULL,1,NULL),(281,'product',1780,'maya-tunic.html','catalog/product/view/id/1780',0,1,NULL,1,NULL),(282,'product',1796,'antonia-racer-tank.html','catalog/product/view/id/1796',0,1,NULL,1,NULL),(283,'product',1812,'breathe-easy-tank.html','catalog/product/view/id/1812',0,1,NULL,1,NULL),(284,'product',1819,'karmen-yoga-pant.html','catalog/product/view/id/1819',0,1,NULL,1,NULL),(285,'product',1826,'emma-leggings.html','catalog/product/view/id/1826',0,1,NULL,1,NULL),(286,'product',1833,'ida-workout-parachute-pant.html','catalog/product/view/id/1833',0,1,NULL,1,NULL),(287,'product',1840,'cora-parachute-pant.html','catalog/product/view/id/1840',0,1,NULL,1,NULL),(288,'product',1847,'sahara-leggings.html','catalog/product/view/id/1847',0,1,NULL,1,NULL),(289,'product',1854,'diana-tights.html','catalog/product/view/id/1854',0,1,NULL,1,NULL),(290,'product',1861,'aeon-capri.html','catalog/product/view/id/1861',0,1,NULL,1,NULL),(291,'product',1868,'bardot-capri.html','catalog/product/view/id/1868',0,1,NULL,1,NULL),(292,'product',1875,'carina-basic-capri.html','catalog/product/view/id/1875',0,1,NULL,1,NULL),(293,'product',1882,'daria-bikram-pant.html','catalog/product/view/id/1882',0,1,NULL,1,NULL),(294,'product',1889,'sylvia-capri.html','catalog/product/view/id/1889',0,1,NULL,1,NULL),(295,'product',1896,'deirdre-relaxed-fit-capri.html','catalog/product/view/id/1896',0,1,NULL,1,NULL),(296,'product',1903,'portia-capri.html','catalog/product/view/id/1903',0,1,NULL,1,NULL),(297,'product',1919,'fiona-fitness-short.html','catalog/product/view/id/1919',0,1,NULL,1,NULL),(298,'product',1935,'maxima-drawstring-short.html','catalog/product/view/id/1935',0,1,NULL,1,NULL),(299,'product',1951,'gwen-drawstring-bike-short.html','catalog/product/view/id/1951',0,1,NULL,1,NULL),(300,'product',1967,'artemis-running-short.html','catalog/product/view/id/1967',0,1,NULL,1,NULL),(301,'product',1983,'bess-yoga-short.html','catalog/product/view/id/1983',0,1,NULL,1,NULL),(302,'product',1990,'angel-light-running-short.html','catalog/product/view/id/1990',0,1,NULL,1,NULL),(303,'product',1997,'echo-fit-compression-short.html','catalog/product/view/id/1997',0,1,NULL,1,NULL),(304,'product',2003,'sybil-running-short.html','catalog/product/view/id/2003',0,1,NULL,1,NULL),(305,'product',2010,'mimi-all-purpose-short.html','catalog/product/view/id/2010',0,1,NULL,1,NULL),(306,'product',2017,'ana-running-short.html','catalog/product/view/id/2017',0,1,NULL,1,NULL),(307,'product',2024,'ina-compression-short.html','catalog/product/view/id/2024',0,1,NULL,1,NULL),(308,'product',2040,'erika-running-short.html','catalog/product/view/id/2040',0,1,NULL,1,NULL),(321,'category',37,'sale.html','catalog/category/view/id/37',0,1,NULL,1,NULL),(322,'category',38,'what-is-new.html','catalog/category/view/id/38',0,1,NULL,1,NULL),(323,'category',39,'collections/performance-new.html','catalog/category/view/id/39',0,1,NULL,1,NULL),(324,'category',40,'collections/eco-new.html','catalog/category/view/id/40',0,1,NULL,1,NULL),(325,'cms-page',5,'about-us','cms/page/view/page_id/5',0,1,NULL,1,NULL),(326,'cms-page',6,'customer-service','cms/page/view/page_id/6',0,1,NULL,1,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]url_rewrite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]variable`
--

DROP TABLE IF EXISTS `[[dbprefix]]variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]variable` (
  `variable_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code',
  `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name',
  PRIMARY KEY (`variable_id`),
  UNIQUE KEY `[[DBPREFIX]]VARIABLE_CODE` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]variable`
--

LOCK TABLES `[[dbprefix]]variable` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]variable` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]variable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]variable_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]variable_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]variable_value` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID',
  `variable_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Variable ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `plain_value` text COMMENT 'Plain Text Value',
  `html_value` text COMMENT 'Html Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`),
  KEY `[[DBPREFIX]]VARIABLE_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]VARIABLE_VALUE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]VARIABLE_VALUE_VARIABLE_ID_[[DBPREFIX]]VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `[[dbprefix]]variable` (`variable_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Variable Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]variable_value`
--

LOCK TABLES `[[dbprefix]]variable_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]variable_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]variable_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]vault_payment_token`
--

DROP TABLE IF EXISTS `[[dbprefix]]vault_payment_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]vault_payment_token` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `website_id` int unsigned DEFAULT NULL COMMENT 'Website ID',
  `public_hash` varchar(128) NOT NULL COMMENT 'Hash code for using on frontend',
  `payment_method_code` varchar(128) NOT NULL COMMENT 'Payment method code',
  `type` varchar(128) NOT NULL COMMENT 'Type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Expires At',
  `gateway_token` varchar(255) NOT NULL COMMENT 'Gateway Token',
  `details` text COMMENT 'Details',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_visible` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`),
  UNIQUE KEY `UNQ_8A3A66ADA892E72943DABBC512E7BA4B` (`payment_method_code`,`customer_id`,`gateway_token`),
  KEY `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` (`customer_id`),
  CONSTRAINT `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Vault tokens of payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]vault_payment_token`
--

LOCK TABLES `[[dbprefix]]vault_payment_token` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]vault_payment_token_order_payment_link`
--

DROP TABLE IF EXISTS `[[dbprefix]]vault_payment_token_order_payment_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]vault_payment_token_order_payment_link` (
  `order_payment_id` int unsigned NOT NULL COMMENT 'Order payment ID',
  `payment_token_id` int unsigned NOT NULL COMMENT 'Payment token ID',
  PRIMARY KEY (`order_payment_id`,`payment_token_id`),
  KEY `FK_9DDDB313998578BE4AC6CAA0A85DD75C` (`payment_token_id`),
  CONSTRAINT `FK_9DDDB313998578BE4AC6CAA0A85DD75C` FOREIGN KEY (`payment_token_id`) REFERENCES `[[dbprefix]]vault_payment_token` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_F2B3983591CCBE38509B9B3399D03DB2` FOREIGN KEY (`order_payment_id`) REFERENCES `[[dbprefix]]sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Order payments to vault token';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]vault_payment_token_order_payment_link`
--

LOCK TABLES `[[dbprefix]]vault_payment_token_order_payment_link` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token_order_payment_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token_order_payment_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]weee_tax`
--

DROP TABLE IF EXISTS `[[dbprefix]]weee_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]weee_tax` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `country` varchar(2) DEFAULT NULL COMMENT 'Country',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  `state` int NOT NULL DEFAULT '0' COMMENT 'State',
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`value_id`),
  KEY `[[DBPREFIX]]WEEE_TAX_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]WEEE_TAX_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]WEEE_TAX_COUNTRY` (`country`),
  KEY `[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID_[[DBPREFIX]]EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]WEEE_TAX_COUNTRY_[[DBPREFIX]]DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `[[dbprefix]]directory_country` (`country_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]WEEE_TAX_ENTITY_ID_[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]WEEE_TAX_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Weee Tax';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]weee_tax`
--

LOCK TABLES `[[dbprefix]]weee_tax` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]weee_tax` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]weee_tax` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]widget`
--

DROP TABLE IF EXISTS `[[dbprefix]]widget`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]widget` (
  `widget_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Widget ID',
  `widget_code` varchar(255) DEFAULT NULL COMMENT 'Widget code for template directive',
  `widget_type` varchar(255) DEFAULT NULL COMMENT 'Widget Type',
  `parameters` text COMMENT 'Parameters',
  PRIMARY KEY (`widget_id`),
  KEY `[[DBPREFIX]]WIDGET_WIDGET_CODE` (`widget_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Preconfigured Widgets';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]widget`
--

LOCK TABLES `[[dbprefix]]widget` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]widget` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]widget` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]widget_instance`
--

DROP TABLE IF EXISTS `[[dbprefix]]widget_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]widget_instance` (
  `instance_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance ID',
  `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type',
  `theme_id` int unsigned NOT NULL COMMENT 'Theme ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Widget Title',
  `store_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Store ids',
  `widget_parameters` text COMMENT 'Widget parameters',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order',
  PRIMARY KEY (`instance_id`),
  KEY `[[DBPREFIX]]WIDGET_INSTANCE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `[[DBPREFIX]]WIDGET_INSTANCE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='Instances of Widget for Package Theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]widget_instance`
--

LOCK TABLES `[[dbprefix]]widget_instance` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]widget_instance` VALUES (1,'Magento\\Cms\\Block\\Widget\\Block',3,'Contact us info','0','{\"block_id\":\"2\"}',0),(2,'Magento\\Cms\\Block\\Widget\\Block',3,'Footer Links','0','{\"block_id\":\"1\"}',0),(3,'Magento\\Cms\\Block\\Widget\\Block',3,'Sale Left Menu','0','{\"block_id\":\"3\"}',0),(4,'Magento\\Cms\\Block\\Widget\\Block',3,'Gear Left Menu','0','{\"block_id\":\"4\"}',0),(5,'Magento\\Cms\\Block\\Widget\\Block',3,'Men\'s Left Menu','0','{\"block_id\":\"5\"}',0),(6,'Magento\\Cms\\Block\\Widget\\Block',3,'Women\'s Left Menu','0','{\"block_id\":\"6\"}',0),(7,'Magento\\Cms\\Block\\Widget\\Block',3,'What\'s New Left Menu','0','{\"block_id\":\"7\"}',0),(8,'Magento\\Cms\\Block\\Widget\\Block',3,'Women Category Content','0','{\"block_id\":\"8\"}',0),(9,'Magento\\Cms\\Block\\Widget\\Block',3,'Training Category Content','0','{\"block_id\":\"9\"}',0),(10,'Magento\\Cms\\Block\\Widget\\Block',3,'Men Category Content','0','{\"block_id\":\"10\"}',0),(11,'Magento\\Cms\\Block\\Widget\\Block',3,'Gear Category Content','0','{\"block_id\":\"11\"}',0),(12,'Magento\\Cms\\Block\\Widget\\Block',3,'New Products Category Content','0','{\"block_id\":\"13\"}',0),(13,'Magento\\Cms\\Block\\Widget\\Block',3,'Sale Category Content','0','{\"block_id\":\"12\"}',0),(14,'Magento\\Cms\\Block\\Widget\\Block',3,'Home Page','0','{\"block_id\":\"14\"}',0),(15,'Magento\\Cms\\Block\\Widget\\Block',3,'Performance Fabrics','0','{\"block_id\":\"15\"}',0),(16,'Magento\\Cms\\Block\\Widget\\Block',3,'Eco Friendly','0','{\"block_id\":\"16\"}',0),(17,'Magento\\Cms\\Block\\Widget\\Block',3,'Login Info','0','{\"block_id\":\"17\"}',0);
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]widget_instance_page`
--

DROP TABLE IF EXISTS `[[dbprefix]]widget_instance_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]widget_instance_page` (
  `page_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page ID',
  `instance_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance ID',
  `page_group` varchar(25) DEFAULT NULL COMMENT 'Block Group Type',
  `layout_handle` varchar(255) DEFAULT NULL COMMENT 'Layout Handle',
  `block_reference` varchar(255) DEFAULT NULL COMMENT 'Container',
  `page_for` varchar(25) DEFAULT NULL COMMENT 'For instance entities',
  `entities` text COMMENT 'Catalog entities (comma separated)',
  `page_template` varchar(255) DEFAULT NULL COMMENT 'Path to widget template',
  PRIMARY KEY (`page_id`),
  KEY `[[DBPREFIX]]WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`),
  CONSTRAINT `FK_8CEB8E4A49C1C3B5DA3955BA7D727D5D` FOREIGN KEY (`instance_id`) REFERENCES `[[dbprefix]]widget_instance` (`instance_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COMMENT='Instance of Widget on Page';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]widget_instance_page`
--

LOCK TABLES `[[dbprefix]]widget_instance_page` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]widget_instance_page` VALUES (1,1,'pages','contact_index_index','content.top','all','','widget/static_block/default.phtml'),(2,2,'all_pages','default','cms_footer_links_container','all','','widget/static_block/default.phtml'),(3,3,'anchor_categories','catalog_category_view_type_layered','sidebar.main','specific','37','widget/static_block/default.phtml'),(4,4,'anchor_categories','catalog_category_view_type_layered','sidebar.main','specific','3','widget/static_block/default.phtml'),(5,5,'anchor_categories','catalog_category_view_type_layered','sidebar.main','specific','11','widget/static_block/default.phtml'),(6,6,'anchor_categories','catalog_category_view_type_layered','sidebar.main','specific','20','widget/static_block/default.phtml'),(7,7,'anchor_categories','catalog_category_view_type_layered','sidebar.main','specific','38','widget/static_block/default.phtml'),(8,8,'anchor_categories','catalog_category_view_type_layered','content.top','specific','20','widget/static_block/default.phtml'),(9,9,'anchor_categories','catalog_category_view_type_layered','content.top','specific','9','widget/static_block/default.phtml'),(10,10,'anchor_categories','catalog_category_view_type_layered','content.top','specific','11','widget/static_block/default.phtml'),(11,11,'anchor_categories','catalog_category_view_type_layered','content.top','specific','3','widget/static_block/default.phtml'),(12,12,'anchor_categories','catalog_category_view_type_layered','content.top','specific','38','widget/static_block/default.phtml'),(13,13,'anchor_categories','catalog_category_view_type_layered','content.top','specific','37','widget/static_block/default.phtml'),(14,14,'pages','cms_index_index','content','all','','widget/static_block/default.phtml'),(15,15,'anchor_categories','catalog_category_view_type_layered','content.top','specific','39','widget/static_block/default.phtml'),(16,16,'anchor_categories','catalog_category_view_type_layered','content.top','specific','40','widget/static_block/default.phtml'),(17,17,'pages','customer_account_login','customer.login.container','all','','widget/static_block/default.phtml');
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]widget_instance_page_layout`
--

DROP TABLE IF EXISTS `[[dbprefix]]widget_instance_page_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]widget_instance_page_layout` (
  `page_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Page ID',
  `layout_update_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update ID',
  PRIMARY KEY (`layout_update_id`,`page_id`),
  KEY `[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`),
  CONSTRAINT `FK_4A92EC86A64E5198C495C2359162AD22` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]widget_instance_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_79179AAD75F12559E0DB3AD9C51FF5BD` FOREIGN KEY (`layout_update_id`) REFERENCES `[[dbprefix]]layout_update` (`layout_update_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Layout updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]widget_instance_page_layout`
--

LOCK TABLES `[[dbprefix]]widget_instance_page_layout` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page_layout` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]widget_instance_page_layout` VALUES (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(10,10),(11,11),(12,12),(13,13),(14,14),(15,15),(16,16),(17,17);
/*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]wishlist`
--

DROP TABLE IF EXISTS `[[dbprefix]]wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]wishlist` (
  `wishlist_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID',
  `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `shared` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Sharing flag (0 or 1)',
  `sharing_code` varchar(32) DEFAULT NULL COMMENT 'Sharing encrypted code',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Last updated date',
  PRIMARY KEY (`wishlist_id`),
  UNIQUE KEY `[[DBPREFIX]]WISHLIST_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]WISHLIST_SHARED` (`shared`),
  CONSTRAINT `[[DBPREFIX]]WISHLIST_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist main Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]wishlist`
--

LOCK TABLES `[[dbprefix]]wishlist` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]wishlist_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]wishlist_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]wishlist_item` (
  `wishlist_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID',
  `wishlist_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Wishlist ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time',
  `description` text COMMENT 'Short description of wish list item',
  `qty` decimal(12,4) NOT NULL COMMENT 'Qty',
  PRIMARY KEY (`wishlist_item_id`),
  KEY `[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),
  KEY `[[DBPREFIX]]WISHLIST_ITEM_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]WISHLIST_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID_[[DBPREFIX]]WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `[[dbprefix]]wishlist` (`wishlist_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]wishlist_item`
--

LOCK TABLES `[[dbprefix]]wishlist_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]wishlist_item_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]wishlist_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]wishlist_item_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `wishlist_item_id` int unsigned NOT NULL COMMENT 'Wishlist Item ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `FK_50A2E7BB0F31EC0BC615E7F5040A12AC` (`wishlist_item_id`),
  CONSTRAINT `FK_50A2E7BB0F31EC0BC615E7F5040A12AC` FOREIGN KEY (`wishlist_item_id`) REFERENCES `[[dbprefix]]wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist Item Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]wishlist_item_option`
--

LOCK TABLES `[[dbprefix]]wishlist_item_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist_item_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]wishlist_item_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'magento247p2sd'
--

--
-- Final view structure for view `[[dbprefix]]inventory_stock_1`
--

/*!50001 DROP VIEW IF EXISTS `[[dbprefix]]inventory_stock_1`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb3 */;
/*!50001 SET character_set_results     = utf8mb3 */;
/*!50001 SET collation_connection      = utf8mb3_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 SQL SECURITY INVOKER */
/*!50001 VIEW `[[dbprefix]]inventory_stock_1` AS select distinct `legacy_stock_status`.`product_id` AS `product_id`,`legacy_stock_status`.`website_id` AS `website_id`,`legacy_stock_status`.`stock_id` AS `stock_id`,`legacy_stock_status`.`qty` AS `quantity`,`legacy_stock_status`.`stock_status` AS `is_salable`,`product`.`sku` AS `sku` from (`[[dbprefix]]cataloginventory_stock_status` `legacy_stock_status` join `[[dbprefix]]catalog_product_entity` `product` on((`legacy_stock_status`.`product_id` = `product`.`entity_id`))) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on [[regtime]]

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_category_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_category_entity` FOR EACH ROW BEGIN
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`parent_id` <=> OLD.`parent_id`) OR NOT(NEW.`created_at` <=> OLD.`created_at`) OR NOT(NEW.`path` <=> OLD.`path`) OR NOT(NEW.`position` <=> OLD.`position`) OR NOT(NEW.`level` <=> OLD.`level`) OR NOT(NEW.`children_count` <=> OLD.`children_count`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_category_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_int_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_category_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_int_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_category_entity_int` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_entity_int_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_category_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_category_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_product_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_category_product` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_product_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_category_product` FOR EACH ROW BEGIN
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`category_id` <=> OLD.`category_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`position` <=> OLD.`position`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`category_id` <=> OLD.`category_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`position` <=> OLD.`position`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`category_id` <=> OLD.`category_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`position` <=> OLD.`position`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_category_product_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_category_product` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_bundle_selection_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_bundle_selection` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`parent_product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_bundle_selection_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_bundle_selection` FOR EACH ROW BEGIN
IF (NOT(NEW.`selection_id` <=> OLD.`selection_id`) OR NOT(NEW.`option_id` <=> OLD.`option_id`) OR NOT(NEW.`parent_product_id` <=> OLD.`parent_product_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`position` <=> OLD.`position`) OR NOT(NEW.`is_default` <=> OLD.`is_default`) OR NOT(NEW.`selection_price_type` <=> OLD.`selection_price_type`) OR NOT(NEW.`selection_price_value` <=> OLD.`selection_price_value`) OR NOT(NEW.`selection_qty` <=> OLD.`selection_qty`) OR NOT(NEW.`selection_can_change_qty` <=> OLD.`selection_can_change_qty`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`parent_product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_bundle_selection_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_bundle_selection` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`parent_product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity` FOR EACH ROW BEGIN
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`type_id` <=> OLD.`type_id`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`has_options` <=> OLD.`has_options`) OR NOT(NEW.`required_options` <=> OLD.`required_options`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`type_id` <=> OLD.`type_id`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`has_options` <=> OLD.`has_options`) OR NOT(NEW.`required_options` <=> OLD.`required_options`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`type_id` <=> OLD.`type_id`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`has_options` <=> OLD.`has_options`) OR NOT(NEW.`required_options` <=> OLD.`required_options`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_datetime_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_datetime` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_datetime_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_datetime` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_datetime_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_datetime` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_decimal_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_decimal` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_decimal_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_decimal` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_decimal_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_decimal` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_int_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_int_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_int` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_int_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_text_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_text` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_text_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_text` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_text_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_text` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_tier_price_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_tier_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_tier_price_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_tier_price` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`all_groups` <=> OLD.`all_groups`) OR NOT(NEW.`customer_group_id` <=> OLD.`customer_group_id`) OR NOT(NEW.`qty` <=> OLD.`qty`) OR NOT(NEW.`value` <=> OLD.`value`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`percentage_value` <=> OLD.`percentage_value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`all_groups` <=> OLD.`all_groups`) OR NOT(NEW.`customer_group_id` <=> OLD.`customer_group_id`) OR NOT(NEW.`qty` <=> OLD.`qty`) OR NOT(NEW.`value` <=> OLD.`value`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`percentage_value` <=> OLD.`percentage_value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_tier_price_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_tier_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_varchar_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_entity_varchar` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_varchar_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_entity_varchar` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_entity_varchar_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_entity_varchar` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_link_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_link` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_link_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_link` FOR EACH ROW BEGIN
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`linked_product_id` <=> OLD.`linked_product_id`) OR NOT(NEW.`link_type_id` <=> OLD.`link_type_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`linked_product_id` <=> OLD.`linked_product_id`) OR NOT(NEW.`link_type_id` <=> OLD.`link_type_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`linked_product_id` <=> OLD.`linked_product_id`) OR NOT(NEW.`link_type_id` <=> OLD.`link_type_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`linked_product_id` <=> OLD.`linked_product_id`) OR NOT(NEW.`link_type_id` <=> OLD.`link_type_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`linked_product_id` <=> OLD.`linked_product_id`) OR NOT(NEW.`link_type_id` <=> OLD.`link_type_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_link_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_link` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_attribute_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalogrule_product_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_super_link_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_super_link` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_super_link_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_super_link` FOR EACH ROW BEGIN
IF (NOT(NEW.`link_id` <=> OLD.`link_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`parent_id` <=> OLD.`parent_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_super_link_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_super_link` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_website_after_insert` AFTER INSERT ON `[[dbprefix]]catalog_product_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_website_after_update` AFTER UPDATE ON `[[dbprefix]]catalog_product_website` FOR EACH ROW BEGIN
IF (NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
IF (NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalog_product_website_after_delete` AFTER DELETE ON `[[dbprefix]]catalog_product_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogsearch_fulltext_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_category_cl` (`entity_id`) VALUES (OLD.`product_id`);
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]cataloginventory_stock_item_after_insert` AFTER INSERT ON `[[dbprefix]]cataloginventory_stock_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]cataloginventory_stock_item_after_update` AFTER UPDATE ON `[[dbprefix]]cataloginventory_stock_item` FOR EACH ROW BEGIN
IF (NOT(NEW.`item_id` <=> OLD.`item_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`stock_id` <=> OLD.`stock_id`) OR NOT(NEW.`qty` <=> OLD.`qty`) OR NOT(NEW.`min_qty` <=> OLD.`min_qty`) OR NOT(NEW.`use_config_min_qty` <=> OLD.`use_config_min_qty`) OR NOT(NEW.`is_qty_decimal` <=> OLD.`is_qty_decimal`) OR NOT(NEW.`backorders` <=> OLD.`backorders`) OR NOT(NEW.`use_config_backorders` <=> OLD.`use_config_backorders`) OR NOT(NEW.`min_sale_qty` <=> OLD.`min_sale_qty`) OR NOT(NEW.`use_config_min_sale_qty` <=> OLD.`use_config_min_sale_qty`) OR NOT(NEW.`max_sale_qty` <=> OLD.`max_sale_qty`) OR NOT(NEW.`use_config_max_sale_qty` <=> OLD.`use_config_max_sale_qty`) OR NOT(NEW.`is_in_stock` <=> OLD.`is_in_stock`) OR NOT(NEW.`low_stock_date` <=> OLD.`low_stock_date`) OR NOT(NEW.`notify_stock_qty` <=> OLD.`notify_stock_qty`) OR NOT(NEW.`use_config_notify_stock_qty` <=> OLD.`use_config_notify_stock_qty`) OR NOT(NEW.`manage_stock` <=> OLD.`manage_stock`) OR NOT(NEW.`use_config_manage_stock` <=> OLD.`use_config_manage_stock`) OR NOT(NEW.`stock_status_changed_auto` <=> OLD.`stock_status_changed_auto`) OR NOT(NEW.`use_config_qty_increments` <=> OLD.`use_config_qty_increments`) OR NOT(NEW.`qty_increments` <=> OLD.`qty_increments`) OR NOT(NEW.`use_config_enable_qty_inc` <=> OLD.`use_config_enable_qty_inc`) OR NOT(NEW.`enable_qty_increments` <=> OLD.`enable_qty_increments`) OR NOT(NEW.`is_decimal_divided` <=> OLD.`is_decimal_divided`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]cataloginventory_stock_item_after_delete` AFTER DELETE ON `[[dbprefix]]cataloginventory_stock_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]cataloginventory_stock_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_after_insert` AFTER INSERT ON `[[dbprefix]]catalogrule` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogrule_rule_cl` (`entity_id`) VALUES (NEW.`rule_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_after_update` AFTER UPDATE ON `[[dbprefix]]catalogrule` FOR EACH ROW BEGIN
IF (NOT(NEW.`rule_id` <=> OLD.`rule_id`) OR NOT(NEW.`name` <=> OLD.`name`) OR NOT(NEW.`description` <=> OLD.`description`) OR NOT(NEW.`from_date` <=> OLD.`from_date`) OR NOT(NEW.`to_date` <=> OLD.`to_date`) OR NOT(NEW.`is_active` <=> OLD.`is_active`) OR NOT(NEW.`conditions_serialized` <=> OLD.`conditions_serialized`) OR NOT(NEW.`actions_serialized` <=> OLD.`actions_serialized`) OR NOT(NEW.`stop_rules_processing` <=> OLD.`stop_rules_processing`) OR NOT(NEW.`sort_order` <=> OLD.`sort_order`) OR NOT(NEW.`simple_action` <=> OLD.`simple_action`) OR NOT(NEW.`discount_amount` <=> OLD.`discount_amount`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalogrule_rule_cl` (`entity_id`) VALUES (NEW.`rule_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_after_delete` AFTER DELETE ON `[[dbprefix]]catalogrule` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalogrule_rule_cl` (`entity_id`) VALUES (OLD.`rule_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_product_price_after_insert` AFTER INSERT ON `[[dbprefix]]catalogrule_product_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_product_price_after_update` AFTER UPDATE ON `[[dbprefix]]catalogrule_product_price` FOR EACH ROW BEGIN
IF (NOT(NEW.`rule_product_price_id` <=> OLD.`rule_product_price_id`) OR NOT(NEW.`rule_date` <=> OLD.`rule_date`) OR NOT(NEW.`customer_group_id` <=> OLD.`customer_group_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`rule_price` <=> OLD.`rule_price`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`latest_start_date` <=> OLD.`latest_start_date`) OR NOT(NEW.`earliest_end_date` <=> OLD.`earliest_end_date`)) THEN INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]catalogrule_product_price_after_delete` AFTER DELETE ON `[[dbprefix]]catalogrule_product_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]catalog_product_price_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]inventory_source_item_after_insert` AFTER INSERT ON `[[dbprefix]]inventory_source_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]inventory_cl` (`entity_id`) VALUES (NEW.`source_item_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]inventory_source_item_after_update` AFTER UPDATE ON `[[dbprefix]]inventory_source_item` FOR EACH ROW BEGIN
IF (NOT(NEW.`source_item_id` <=> OLD.`source_item_id`) OR NOT(NEW.`source_code` <=> OLD.`source_code`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`quantity` <=> OLD.`quantity`) OR NOT(NEW.`status` <=> OLD.`status`)) THEN INSERT IGNORE INTO `[[dbprefix]]inventory_cl` (`entity_id`) VALUES (NEW.`source_item_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]inventory_source_item_after_delete` AFTER DELETE ON `[[dbprefix]]inventory_source_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]inventory_cl` (`entity_id`) VALUES (OLD.`source_item_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_after_insert` AFTER INSERT ON `[[dbprefix]]sales_order` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_after_update` AFTER UPDATE ON `[[dbprefix]]sales_order` FOR EACH ROW BEGIN
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`state` <=> OLD.`state`) OR NOT(NEW.`status` <=> OLD.`status`) OR NOT(NEW.`coupon_code` <=> OLD.`coupon_code`) OR NOT(NEW.`protect_code` <=> OLD.`protect_code`) OR NOT(NEW.`shipping_description` <=> OLD.`shipping_description`) OR NOT(NEW.`is_virtual` <=> OLD.`is_virtual`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`customer_id` <=> OLD.`customer_id`) OR NOT(NEW.`base_discount_amount` <=> OLD.`base_discount_amount`) OR NOT(NEW.`base_discount_canceled` <=> OLD.`base_discount_canceled`) OR NOT(NEW.`base_discount_invoiced` <=> OLD.`base_discount_invoiced`) OR NOT(NEW.`base_discount_refunded` <=> OLD.`base_discount_refunded`) OR NOT(NEW.`base_grand_total` <=> OLD.`base_grand_total`) OR NOT(NEW.`base_shipping_amount` <=> OLD.`base_shipping_amount`) OR NOT(NEW.`base_shipping_canceled` <=> OLD.`base_shipping_canceled`) OR NOT(NEW.`base_shipping_invoiced` <=> OLD.`base_shipping_invoiced`) OR NOT(NEW.`base_shipping_refunded` <=> OLD.`base_shipping_refunded`) OR NOT(NEW.`base_shipping_tax_amount` <=> OLD.`base_shipping_tax_amount`) OR NOT(NEW.`base_shipping_tax_refunded` <=> OLD.`base_shipping_tax_refunded`) OR NOT(NEW.`base_subtotal` <=> OLD.`base_subtotal`) OR NOT(NEW.`base_subtotal_canceled` <=> OLD.`base_subtotal_canceled`) OR NOT(NEW.`base_subtotal_invoiced` <=> OLD.`base_subtotal_invoiced`) OR NOT(NEW.`base_subtotal_refunded` <=> OLD.`base_subtotal_refunded`) OR NOT(NEW.`base_tax_amount` <=> OLD.`base_tax_amount`) OR NOT(NEW.`base_tax_canceled` <=> OLD.`base_tax_canceled`) OR NOT(NEW.`base_tax_invoiced` <=> OLD.`base_tax_invoiced`) OR NOT(NEW.`base_tax_refunded` <=> OLD.`base_tax_refunded`) OR NOT(NEW.`base_to_global_rate` <=> OLD.`base_to_global_rate`) OR NOT(NEW.`base_to_order_rate` <=> OLD.`base_to_order_rate`) OR NOT(NEW.`base_total_canceled` <=> OLD.`base_total_canceled`) OR NOT(NEW.`base_total_invoiced` <=> OLD.`base_total_invoiced`) OR NOT(NEW.`base_total_invoiced_cost` <=> OLD.`base_total_invoiced_cost`) OR NOT(NEW.`base_total_offline_refunded` <=> OLD.`base_total_offline_refunded`) OR NOT(NEW.`base_total_online_refunded` <=> OLD.`base_total_online_refunded`) OR NOT(NEW.`base_total_paid` <=> OLD.`base_total_paid`) OR NOT(NEW.`base_total_qty_ordered` <=> OLD.`base_total_qty_ordered`) OR NOT(NEW.`base_total_refunded` <=> OLD.`base_total_refunded`) OR NOT(NEW.`discount_amount` <=> OLD.`discount_amount`) OR NOT(NEW.`discount_canceled` <=> OLD.`discount_canceled`) OR NOT(NEW.`discount_invoiced` <=> OLD.`discount_invoiced`) OR NOT(NEW.`discount_refunded` <=> OLD.`discount_refunded`) OR NOT(NEW.`grand_total` <=> OLD.`grand_total`) OR NOT(NEW.`shipping_amount` <=> OLD.`shipping_amount`) OR NOT(NEW.`shipping_canceled` <=> OLD.`shipping_canceled`) OR NOT(NEW.`shipping_invoiced` <=> OLD.`shipping_invoiced`) OR NOT(NEW.`shipping_refunded` <=> OLD.`shipping_refunded`) OR NOT(NEW.`shipping_tax_amount` <=> OLD.`shipping_tax_amount`) OR NOT(NEW.`shipping_tax_refunded` <=> OLD.`shipping_tax_refunded`) OR NOT(NEW.`store_to_base_rate` <=> OLD.`store_to_base_rate`) OR NOT(NEW.`store_to_order_rate` <=> OLD.`store_to_order_rate`) OR NOT(NEW.`subtotal` <=> OLD.`subtotal`) OR NOT(NEW.`subtotal_canceled` <=> OLD.`subtotal_canceled`) OR NOT(NEW.`subtotal_invoiced` <=> OLD.`subtotal_invoiced`) OR NOT(NEW.`subtotal_refunded` <=> OLD.`subtotal_refunded`) OR NOT(NEW.`tax_amount` <=> OLD.`tax_amount`) OR NOT(NEW.`tax_canceled` <=> OLD.`tax_canceled`) OR NOT(NEW.`tax_invoiced` <=> OLD.`tax_invoiced`) OR NOT(NEW.`tax_refunded` <=> OLD.`tax_refunded`) OR NOT(NEW.`total_canceled` <=> OLD.`total_canceled`) OR NOT(NEW.`total_invoiced` <=> OLD.`total_invoiced`) OR NOT(NEW.`total_offline_refunded` <=> OLD.`total_offline_refunded`) OR NOT(NEW.`total_online_refunded` <=> OLD.`total_online_refunded`) OR NOT(NEW.`total_paid` <=> OLD.`total_paid`) OR NOT(NEW.`total_qty_ordered` <=> OLD.`total_qty_ordered`) OR NOT(NEW.`total_refunded` <=> OLD.`total_refunded`) OR NOT(NEW.`can_ship_partially` <=> OLD.`can_ship_partially`) OR NOT(NEW.`can_ship_partially_item` <=> OLD.`can_ship_partially_item`) OR NOT(NEW.`customer_is_guest` <=> OLD.`customer_is_guest`) OR NOT(NEW.`customer_note_notify` <=> OLD.`customer_note_notify`) OR NOT(NEW.`billing_address_id` <=> OLD.`billing_address_id`) OR NOT(NEW.`customer_group_id` <=> OLD.`customer_group_id`) OR NOT(NEW.`edit_increment` <=> OLD.`edit_increment`) OR NOT(NEW.`email_sent` <=> OLD.`email_sent`) OR NOT(NEW.`send_email` <=> OLD.`send_email`) OR NOT(NEW.`forced_shipment_with_invoice` <=> OLD.`forced_shipment_with_invoice`) OR NOT(NEW.`payment_auth_expiration` <=> OLD.`payment_auth_expiration`) OR NOT(NEW.`quote_address_id` <=> OLD.`quote_address_id`) OR NOT(NEW.`quote_id` <=> OLD.`quote_id`) OR NOT(NEW.`shipping_address_id` <=> OLD.`shipping_address_id`) OR NOT(NEW.`adjustment_negative` <=> OLD.`adjustment_negative`) OR NOT(NEW.`adjustment_positive` <=> OLD.`adjustment_positive`) OR NOT(NEW.`base_adjustment_negative` <=> OLD.`base_adjustment_negative`) OR NOT(NEW.`base_adjustment_positive` <=> OLD.`base_adjustment_positive`) OR NOT(NEW.`base_shipping_discount_amount` <=> OLD.`base_shipping_discount_amount`) OR NOT(NEW.`base_subtotal_incl_tax` <=> OLD.`base_subtotal_incl_tax`) OR NOT(NEW.`base_total_due` <=> OLD.`base_total_due`) OR NOT(NEW.`payment_authorization_amount` <=> OLD.`payment_authorization_amount`) OR NOT(NEW.`shipping_discount_amount` <=> OLD.`shipping_discount_amount`) OR NOT(NEW.`subtotal_incl_tax` <=> OLD.`subtotal_incl_tax`) OR NOT(NEW.`total_due` <=> OLD.`total_due`) OR NOT(NEW.`weight` <=> OLD.`weight`) OR NOT(NEW.`customer_dob` <=> OLD.`customer_dob`) OR NOT(NEW.`increment_id` <=> OLD.`increment_id`) OR NOT(NEW.`applied_rule_ids` <=> OLD.`applied_rule_ids`) OR NOT(NEW.`base_currency_code` <=> OLD.`base_currency_code`) OR NOT(NEW.`customer_email` <=> OLD.`customer_email`) OR NOT(NEW.`customer_firstname` <=> OLD.`customer_firstname`) OR NOT(NEW.`customer_lastname` <=> OLD.`customer_lastname`) OR NOT(NEW.`customer_middlename` <=> OLD.`customer_middlename`) OR NOT(NEW.`customer_prefix` <=> OLD.`customer_prefix`) OR NOT(NEW.`customer_suffix` <=> OLD.`customer_suffix`) OR NOT(NEW.`customer_taxvat` <=> OLD.`customer_taxvat`) OR NOT(NEW.`discount_description` <=> OLD.`discount_description`) OR NOT(NEW.`ext_customer_id` <=> OLD.`ext_customer_id`) OR NOT(NEW.`ext_order_id` <=> OLD.`ext_order_id`) OR NOT(NEW.`global_currency_code` <=> OLD.`global_currency_code`) OR NOT(NEW.`hold_before_state` <=> OLD.`hold_before_state`) OR NOT(NEW.`hold_before_status` <=> OLD.`hold_before_status`) OR NOT(NEW.`order_currency_code` <=> OLD.`order_currency_code`) OR NOT(NEW.`original_increment_id` <=> OLD.`original_increment_id`) OR NOT(NEW.`relation_child_id` <=> OLD.`relation_child_id`) OR NOT(NEW.`relation_child_real_id` <=> OLD.`relation_child_real_id`) OR NOT(NEW.`relation_parent_id` <=> OLD.`relation_parent_id`) OR NOT(NEW.`relation_parent_real_id` <=> OLD.`relation_parent_real_id`) OR NOT(NEW.`remote_ip` <=> OLD.`remote_ip`) OR NOT(NEW.`shipping_method` <=> OLD.`shipping_method`) OR NOT(NEW.`store_currency_code` <=> OLD.`store_currency_code`) OR NOT(NEW.`store_name` <=> OLD.`store_name`) OR NOT(NEW.`x_forwarded_for` <=> OLD.`x_forwarded_for`) OR NOT(NEW.`customer_note` <=> OLD.`customer_note`) OR NOT(NEW.`created_at` <=> OLD.`created_at`) OR NOT(NEW.`total_item_count` <=> OLD.`total_item_count`) OR NOT(NEW.`customer_gender` <=> OLD.`customer_gender`) OR NOT(NEW.`discount_tax_compensation_amount` <=> OLD.`discount_tax_compensation_amount`) OR NOT(NEW.`base_discount_tax_compensation_amount` <=> OLD.`base_discount_tax_compensation_amount`) OR NOT(NEW.`shipping_discount_tax_compensation_amount` <=> OLD.`shipping_discount_tax_compensation_amount`) OR NOT(NEW.`base_shipping_discount_tax_compensation_amnt` <=> OLD.`base_shipping_discount_tax_compensation_amnt`) OR NOT(NEW.`discount_tax_compensation_invoiced` <=> OLD.`discount_tax_compensation_invoiced`) OR NOT(NEW.`base_discount_tax_compensation_invoiced` <=> OLD.`base_discount_tax_compensation_invoiced`) OR NOT(NEW.`discount_tax_compensation_refunded` <=> OLD.`discount_tax_compensation_refunded`) OR NOT(NEW.`base_discount_tax_compensation_refunded` <=> OLD.`base_discount_tax_compensation_refunded`) OR NOT(NEW.`shipping_incl_tax` <=> OLD.`shipping_incl_tax`) OR NOT(NEW.`base_shipping_incl_tax` <=> OLD.`base_shipping_incl_tax`) OR NOT(NEW.`coupon_rule_name` <=> OLD.`coupon_rule_name`) OR NOT(NEW.`gift_message_id` <=> OLD.`gift_message_id`) OR NOT(NEW.`paypal_ipn_customer_notified` <=> OLD.`paypal_ipn_customer_notified`) OR NOT(NEW.`dispute_status` <=> OLD.`dispute_status`)) THEN INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_after_delete` AFTER DELETE ON `[[dbprefix]]sales_order` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_item_after_insert` AFTER INSERT ON `[[dbprefix]]sales_order_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`order_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_item_after_update` AFTER UPDATE ON `[[dbprefix]]sales_order_item` FOR EACH ROW BEGIN
IF (NOT(NEW.`item_id` <=> OLD.`item_id`) OR NOT(NEW.`order_id` <=> OLD.`order_id`) OR NOT(NEW.`parent_item_id` <=> OLD.`parent_item_id`) OR NOT(NEW.`quote_item_id` <=> OLD.`quote_item_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`created_at` <=> OLD.`created_at`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`product_type` <=> OLD.`product_type`) OR NOT(NEW.`product_options` <=> OLD.`product_options`) OR NOT(NEW.`weight` <=> OLD.`weight`) OR NOT(NEW.`is_virtual` <=> OLD.`is_virtual`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`name` <=> OLD.`name`) OR NOT(NEW.`description` <=> OLD.`description`) OR NOT(NEW.`applied_rule_ids` <=> OLD.`applied_rule_ids`) OR NOT(NEW.`additional_data` <=> OLD.`additional_data`) OR NOT(NEW.`is_qty_decimal` <=> OLD.`is_qty_decimal`) OR NOT(NEW.`no_discount` <=> OLD.`no_discount`) OR NOT(NEW.`qty_backordered` <=> OLD.`qty_backordered`) OR NOT(NEW.`qty_canceled` <=> OLD.`qty_canceled`) OR NOT(NEW.`qty_invoiced` <=> OLD.`qty_invoiced`) OR NOT(NEW.`qty_ordered` <=> OLD.`qty_ordered`) OR NOT(NEW.`qty_refunded` <=> OLD.`qty_refunded`) OR NOT(NEW.`qty_shipped` <=> OLD.`qty_shipped`) OR NOT(NEW.`base_cost` <=> OLD.`base_cost`) OR NOT(NEW.`price` <=> OLD.`price`) OR NOT(NEW.`base_price` <=> OLD.`base_price`) OR NOT(NEW.`original_price` <=> OLD.`original_price`) OR NOT(NEW.`base_original_price` <=> OLD.`base_original_price`) OR NOT(NEW.`tax_percent` <=> OLD.`tax_percent`) OR NOT(NEW.`tax_amount` <=> OLD.`tax_amount`) OR NOT(NEW.`base_tax_amount` <=> OLD.`base_tax_amount`) OR NOT(NEW.`tax_invoiced` <=> OLD.`tax_invoiced`) OR NOT(NEW.`base_tax_invoiced` <=> OLD.`base_tax_invoiced`) OR NOT(NEW.`discount_percent` <=> OLD.`discount_percent`) OR NOT(NEW.`discount_amount` <=> OLD.`discount_amount`) OR NOT(NEW.`base_discount_amount` <=> OLD.`base_discount_amount`) OR NOT(NEW.`discount_invoiced` <=> OLD.`discount_invoiced`) OR NOT(NEW.`base_discount_invoiced` <=> OLD.`base_discount_invoiced`) OR NOT(NEW.`amount_refunded` <=> OLD.`amount_refunded`) OR NOT(NEW.`base_amount_refunded` <=> OLD.`base_amount_refunded`) OR NOT(NEW.`row_total` <=> OLD.`row_total`) OR NOT(NEW.`base_row_total` <=> OLD.`base_row_total`) OR NOT(NEW.`row_invoiced` <=> OLD.`row_invoiced`) OR NOT(NEW.`base_row_invoiced` <=> OLD.`base_row_invoiced`) OR NOT(NEW.`row_weight` <=> OLD.`row_weight`) OR NOT(NEW.`base_tax_before_discount` <=> OLD.`base_tax_before_discount`) OR NOT(NEW.`tax_before_discount` <=> OLD.`tax_before_discount`) OR NOT(NEW.`ext_order_item_id` <=> OLD.`ext_order_item_id`) OR NOT(NEW.`locked_do_invoice` <=> OLD.`locked_do_invoice`) OR NOT(NEW.`locked_do_ship` <=> OLD.`locked_do_ship`) OR NOT(NEW.`price_incl_tax` <=> OLD.`price_incl_tax`) OR NOT(NEW.`base_price_incl_tax` <=> OLD.`base_price_incl_tax`) OR NOT(NEW.`row_total_incl_tax` <=> OLD.`row_total_incl_tax`) OR NOT(NEW.`base_row_total_incl_tax` <=> OLD.`base_row_total_incl_tax`) OR NOT(NEW.`discount_tax_compensation_amount` <=> OLD.`discount_tax_compensation_amount`) OR NOT(NEW.`base_discount_tax_compensation_amount` <=> OLD.`base_discount_tax_compensation_amount`) OR NOT(NEW.`discount_tax_compensation_invoiced` <=> OLD.`discount_tax_compensation_invoiced`) OR NOT(NEW.`base_discount_tax_compensation_invoiced` <=> OLD.`base_discount_tax_compensation_invoiced`) OR NOT(NEW.`discount_tax_compensation_refunded` <=> OLD.`discount_tax_compensation_refunded`) OR NOT(NEW.`base_discount_tax_compensation_refunded` <=> OLD.`base_discount_tax_compensation_refunded`) OR NOT(NEW.`tax_canceled` <=> OLD.`tax_canceled`) OR NOT(NEW.`discount_tax_compensation_canceled` <=> OLD.`discount_tax_compensation_canceled`) OR NOT(NEW.`tax_refunded` <=> OLD.`tax_refunded`) OR NOT(NEW.`base_tax_refunded` <=> OLD.`base_tax_refunded`) OR NOT(NEW.`discount_refunded` <=> OLD.`discount_refunded`) OR NOT(NEW.`base_discount_refunded` <=> OLD.`base_discount_refunded`) OR NOT(NEW.`weee_tax_applied` <=> OLD.`weee_tax_applied`) OR NOT(NEW.`weee_tax_applied_amount` <=> OLD.`weee_tax_applied_amount`) OR NOT(NEW.`weee_tax_applied_row_amount` <=> OLD.`weee_tax_applied_row_amount`) OR NOT(NEW.`weee_tax_disposition` <=> OLD.`weee_tax_disposition`) OR NOT(NEW.`weee_tax_row_disposition` <=> OLD.`weee_tax_row_disposition`) OR NOT(NEW.`base_weee_tax_applied_amount` <=> OLD.`base_weee_tax_applied_amount`) OR NOT(NEW.`base_weee_tax_applied_row_amnt` <=> OLD.`base_weee_tax_applied_row_amnt`) OR NOT(NEW.`base_weee_tax_disposition` <=> OLD.`base_weee_tax_disposition`) OR NOT(NEW.`base_weee_tax_row_disposition` <=> OLD.`base_weee_tax_row_disposition`) OR NOT(NEW.`gift_message_id` <=> OLD.`gift_message_id`) OR NOT(NEW.`gift_message_available` <=> OLD.`gift_message_available`) OR NOT(NEW.`free_shipping` <=> OLD.`free_shipping`)) THEN INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`order_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_item_after_delete` AFTER DELETE ON `[[dbprefix]]sales_order_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (OLD.`order_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_status_after_insert` AFTER INSERT ON `[[dbprefix]]sales_order_status` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_status_data_exporter_cl` (`entity_id`) VALUES (NEW.`status`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_status_after_update` AFTER UPDATE ON `[[dbprefix]]sales_order_status` FOR EACH ROW BEGIN
IF (NOT(NEW.`status` <=> OLD.`status`) OR NOT(NEW.`label` <=> OLD.`label`)) THEN INSERT IGNORE INTO `[[dbprefix]]sales_order_status_data_exporter_cl` (`entity_id`) VALUES (NEW.`status`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_order_status_after_delete` AFTER DELETE ON `[[dbprefix]]sales_order_status` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_status_data_exporter_cl` (`entity_id`) VALUES (OLD.`status`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_payment_transaction_after_insert` AFTER INSERT ON `[[dbprefix]]sales_payment_transaction` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`order_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_payment_transaction_after_update` AFTER UPDATE ON `[[dbprefix]]sales_payment_transaction` FOR EACH ROW BEGIN
IF (NOT(NEW.`transaction_id` <=> OLD.`transaction_id`) OR NOT(NEW.`parent_id` <=> OLD.`parent_id`) OR NOT(NEW.`order_id` <=> OLD.`order_id`) OR NOT(NEW.`payment_id` <=> OLD.`payment_id`) OR NOT(NEW.`txn_id` <=> OLD.`txn_id`) OR NOT(NEW.`parent_txn_id` <=> OLD.`parent_txn_id`) OR NOT(NEW.`txn_type` <=> OLD.`txn_type`) OR NOT(NEW.`is_closed` <=> OLD.`is_closed`) OR NOT(NEW.`additional_information` <=> OLD.`additional_information`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (NEW.`order_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]sales_payment_transaction_after_delete` AFTER DELETE ON `[[dbprefix]]sales_payment_transaction` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]sales_order_data_exporter_cl` (`entity_id`) VALUES (OLD.`order_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_after_insert` AFTER INSERT ON `[[dbprefix]]store` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_after_update` AFTER UPDATE ON `[[dbprefix]]store` FOR EACH ROW BEGIN
IF (NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`code` <=> OLD.`code`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`group_id` <=> OLD.`group_id`) OR NOT(NEW.`name` <=> OLD.`name`) OR NOT(NEW.`sort_order` <=> OLD.`sort_order`) OR NOT(NEW.`is_active` <=> OLD.`is_active`)) THEN INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_after_delete` AFTER DELETE ON `[[dbprefix]]store` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (OLD.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_group_after_insert` AFTER INSERT ON `[[dbprefix]]store_group` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_group_after_update` AFTER UPDATE ON `[[dbprefix]]store_group` FOR EACH ROW BEGIN
IF (NOT(NEW.`group_id` <=> OLD.`group_id`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`name` <=> OLD.`name`) OR NOT(NEW.`root_category_id` <=> OLD.`root_category_id`) OR NOT(NEW.`default_store_id` <=> OLD.`default_store_id`) OR NOT(NEW.`code` <=> OLD.`code`)) THEN INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_group_after_delete` AFTER DELETE ON `[[dbprefix]]store_group` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (OLD.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_website_after_insert` AFTER INSERT ON `[[dbprefix]]store_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_website_after_update` AFTER UPDATE ON `[[dbprefix]]store_website` FOR EACH ROW BEGIN
IF (NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`code` <=> OLD.`code`) OR NOT(NEW.`name` <=> OLD.`name`) OR NOT(NEW.`sort_order` <=> OLD.`sort_order`) OR NOT(NEW.`default_group_id` <=> OLD.`default_group_id`) OR NOT(NEW.`is_default` <=> OLD.`is_default`)) THEN INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (NEW.`website_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 */ /*!50003 TRIGGER `trg_[[dbprefix]]store_website_after_delete` AFTER DELETE ON `[[dbprefix]]store_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `[[dbprefix]]store_data_exporter_cl` (`entity_id`) VALUES (OLD.`website_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

Hacked By AnonymousFox1.0, Coded By AnonymousFox